2007-08-28 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
2
3         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
4         IsKeyLocked.
5
6 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
7
8         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
9         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
10
11 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
12
13         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
14         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
15
16 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
17
18         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
19
20 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
21
22         * GridEntry.cs: Implement GetService.
23
24 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
25
26         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
27         for label editting, make sure we focus back on the TreeView.
28         [Fixes bug #82590]
29
30 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
31
32         * ListView.cs: Add some 2.0 overrides.
33
34 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
35
36         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
37         because getter dont returns right value before handle creation. Thanks 
38         to George. Fixes #82569.  
39
40 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
41
42         * Theme.cs: Revert last patch, it causes error under win32. 
43
44 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
45
46         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
47         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
48         logical Desktop rather than the physical file system location. Fixes #82603. 
49
50 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
51
52         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
53         for the patch. Fixes #82568.
54
55 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
56
57         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
58         methods.
59
60 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
61
62         * ListViewInsertionMark.cs: New stubbed class.
63
64 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
65
66         * FolderBrowserDialog.cs: When adding folder, immediately create the
67         directory with temporary name and rename the directory when editing
68         finishes. This matches MS. Ensure the node for the new folder is 
69         selected and LabelEdit is disabled, when editing is either finished
70         or cancelled.
71
72 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
73
74         * TreeView.cs: When editing label of node, ensure node is visible.
75
76 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
77
78         * PropertyGridView.cs: Set the value only if it has changed.
79
80 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
81
82         * ListView.cs: Some more code refactoring to add support sorting
83         with groups (now for Details view). Remove unused code also.
84
85 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
86
87         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
88         Not a big fan of reacting immediately to a field in an EventArg, but that's
89         the way it's done.  (This is part of the previous commit that got left out.)
90
91 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
92
93         * FolderBrowserDialog.cs: Removed need for separate description field.
94         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
95         has focus when dialog box is displayed again, regardless of what
96         button was pressed the previous time. Set RootFolder and SelectedPath
97         each time dialog box is displayed. This ensures the treeview is
98         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
99         when it does not have focus. Added support for more special folders.
100
101 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
102
103         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
104         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
105         it resets the edit_args.
106         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
107         [Fixes bug #82577]
108
109 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
110
111         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
112         button to match MS. Provide more meaningful exception message for
113         invalid RootFolder value. Use zero-length string when SelectedPath
114         is set to null. Allow non-rooted paths in SelectedPath, but ignore
115         them in FolderBrowserTreeView. Allow folders to be created in
116         RootFolder. Fixes bug #82576.
117
118 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
119
120         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
121         since we need to take into account the group headers and the margin
122         between them.
123         * ListViewGroup.cs: Add a rows field to store the number of rows per
124         group.
125
126 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
127
128         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
129           Anyways, let's just follow the lead.
130
131 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
132
133         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
134         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
135         controls in GetPreferredSizeCore.
136         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
137         [Fixes bug #82488]
138
139 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
140
141         * PrintDialog.cs: Need to instantiate the form variable here too.
142
143 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
144
145         * ListView.cs: Do some reorganization to support sorting in groups,
146         by doing the layout sequentially in ListView.Items. Also add support
147         for the Default Group, which should be available for items with no
148         group assigned.
149         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
150         for storing layout info also.
151         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
152         collection, as well as providing internal members to do a traversal
153         including the default group (needed when doing layout/drawing).
154         * ThemeWin32Classic.cs: When drawing group headers use internal
155         ListViewGroupCollection members to take into account the default
156         group.
157
158 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
159
160         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
161
162 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
163
164         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
165         been created.  If handle is created, we want arror keys.  If we are editing
166         a node, we want things like enter, esc, home, end, page up, page down.
167         Allows Esc to work for FolderBrowserDialog.
168
169 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
170
171         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
172         they close when ESC is pressed.  Thanks Andy!
173
174 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
175
176         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
177         This way we can tell if this is a CommonDialog provided with mono, or one
178         that is being implemented outside by a developer.  If it is an external one,
179         the developer is responsible for showing their own form.  We were showing
180         our blank form after the developer showed his.
181         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
182         PageSetupDialog.cs: Instantiate form variable in our constructor.
183         [Fixes bug #82531]
184
185 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
186
187         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
188         and always return true.  [Fixes bug #81616]
189
190 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
191
192         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
193         TextBox.  [Fixes bug #82549]
194
195 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
196
197         * FileDialog.cs: When Save/Open is clicked and no filename is selected
198         or entered then do not close the dialog. Fixes bug #82539. Removed
199         CWLs.
200
201 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
202
203         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
204         code to this method. It is calling every time filter changes. This method
205         will help to fix the bug #80887.
206
207 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
208
209         * CheckBox.cs: Implement AutoSize calculation.
210
211 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
212
213         * CheckBox.cs: Use new 2.0 rendering for 2.0.
214         * Theme.cs: Method declarations for 2.0 rendering path.
215         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
216
217 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
218
219         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
220
221 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
222
223         * ListViewGroupCollection.cs: Implement AddRange the right way, to
224         only call Redraw on the parent one time.
225
226 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
227
228         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
229           GetClipboardContent.
230         * DataGridViewCell.cs: Implemented GetClipboardContent,
231           GetEditedFormattedValue, GetFormattedValue.
232         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
233
234 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
235
236         * TableLayoutStyleCollection.cs: corcompare fix.
237
238 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
239
240         * DataObject.cs: Implemented retrieval of convertible / not convertible
241           objects.
242
243 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
244
245         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
246         ourselves.  This ensures the entire old bounds are repainted, in case our new
247         size is smaller.  [Fixes bug #82518]
248
249 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
250
251         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
252         flag to make fast handle of mouse events, without this the mouse move is
253         handled in some manner, whether it is a mouse move or not. Fixes #81588.
254
255 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
256
257         * ListView.cs: When doing layout calculations don't use a ref
258         param to keep the current item; instead use its Index value (this 
259         is specially important when doing the layout with Groups
260         and Items being sparse). Also don't take into account items added to
261         the Group but not yet added to the main ListView.Items collection.
262
263 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
264
265         * ListViewGroupCollection.cs: Forgot to mimic an issue
266         in the indexer (don't assign the ListView owner for new values).
267
268 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
269
270         * ListViewGroupCollection.cs: Make the string indexer use
271         the int based indexer to re-use code, instead of duplicate the code.
272         Also Redraw as needed and take into account null values.
273
274 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
275
276         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
277         [Fixes bug #82481]
278
279 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
280
281         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
282         when other buttons are clicked or navigated to.
283
284 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
285
286         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
287           it's XplatUIX11 that attaches them.
288
289 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
290
291         * DataGridView.cs: If a column has been added, recreate the editing row.
292           Fixes #82226.
293
294 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
295
296         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
297           of the tag to draw. Makes disappearing text show up again.
298
299 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
300
301         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
302           Contents. Fixes #82487.
303
304 2007-08-19  Andreia Gaita  <avidigal@novell.com>
305
306         * Added HtmlElement.cs, HtmlElementCollection.cs, 
307           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
308           
309 2007-08-19  Andreia Gaita  <avidigal@novell.com>
310
311         * BindingSource.cs: Implement this, dispose and getenumerator.
312         * DataGridViewRowCollection.cs: Move the InvalidOperationException
313         out of AddInternal, throw it only on public Add calls. The 
314         UsingWebBrowser sample was blowing up with this when setting the
315         DataSource after adding DataBindings, so it's likely that .net
316         only throws this exception when Add is called directly. 
317         
318         * ToolStripControlHost.cs: Return the hosted control's text
319         property, and not the ToolStripItem one (it would always return
320         the initial value).
321         
322         * HtmlDocument.cs: Implement GetElementById and All
323         * WebBrowser.cs: Remove exception on set_DocumentStream.        
324
325 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
326
327         * Form.cs: Fix the max and min value for opacity (0~1).
328
329 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
330
331         [Fixes #80118]
332         * DataGridTableStyle.cs: Default header font is now null, on getter it 
333         returns datagrid font when is null. On setter permits null.
334
335         * DataGrid.cs:
336         - When ResetHeaderFont set header font to null.
337         - On EndInit set grid_style.DataGrid.
338
339 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
340
341         * TabControl.cs: Fix regression in default padding x.
342
343 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
344
345         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
346
347 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
348
349         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
350         not 2. Fixes #82229.
351
352 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
353
354         * TabControl.cs: Fix tab size when image height is less than text height.
355         Partially fixes #81837.
356
357 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
358
359         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
360         "alt + tab". It works only for Win32, for X11 theres no way to remove window
361         from taskbar and keep it on "alt_tab". Fixes #81722.
362
363 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
364
365         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
366         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
367         Fixes #80877 and #79418.
368
369 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
370
371         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
372         between position and one of the screen borders. Fixes #82349.
373
374 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
375
376         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
377         the MessageBox in the taskbar. Fixes #82457.
378
379 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
380
381         * MessageBox.cs: Fix form size when icon is set and text height is bigger
382         than icon. Fixes #82468.
383
384 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
385
386         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
387         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
388           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
389           Refactored HandleNCCalcSize somewhat to avoid code duplication.
390         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
391           FormBorderStyle to decide if we're calculating a new size from the
392           client size or not. CreateParams: Don't fake tool windows, only the X11
393           backend manages toolwindows manually.
394
395 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
396
397         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
398         ObjectDisposedException.
399
400 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
401
402         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
403         in OnLoad should not have any effect.  [Fixes bug #82470]
404
405 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
406
407         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
408         paint for controls that create their own ToolTipWindow instead of
409         going through ToolTip.
410
411 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
412
413         * ToolTip.cs: Make Hide internal instead of public to match MS API.
414
415 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
416
417         * ListViewGroupCollection.cs: Use generic List instead of an
418         ArrayList, since this collection is 2.0 only.
419
420 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
421
422         * ToolTip.cs (Hide): Made public to make the build work (should
423         this not be public?).
424
425 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
426
427         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
428         ToolTipWindow.
429         * ToolTip.cs: Add an internal Visible property to facilitate transition.
430
431 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
432
433         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
434         PopupEventHandler.cs: Make these internal for 1.1.
435         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
436         use ToolTipWindow internals.
437         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
438         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
439
440 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
441
442         * X11Dnd.cs: Add a null check.
443
444 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
445
446         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
447           nothing else succeeds. Fixes #82453.
448
449 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
450
451         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
452           rectangle if we're painting to another window than the one the paint
453           message was generated on. Simplify the code somewhat, which makes
454           PaintEventEnd also simpler.
455
456 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
457
458         * Control.cs: When changing parent of a form, let the form decide whether
459           XplatUI.SetParent should be called or not.
460         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
461           recreating the handle. If the new parent's handle isn't created, don't
462           recreate our handle, just destroy it. CreateParams: Check if the
463           parent's handle is created before fetching it.
464
465 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
466
467         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
468           Update calls to PaintEventStart/End to take a Message argument.
469         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
470           take a Message argument.
471         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
472           Message argument, and handle the case where we don't paint to the window
473           for which the paint message was generated.
474
475 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
476
477         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
478           Marshal.GetLastWin32Error. Plug nasty memory leak in
479           PaintEventStart/End, we were creating a DC we weren't releasing.
480
481 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
482
483         * ListView.cs: Add Groups support in Details view. Also have a small
484         method to do the layout of the group header. Don't use a separate
485         method to do the groups calculation in Icons view, since our methods
486         are now a little simpler.
487         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
488         `Bounds'.
489         * ThemeWin32Classic.cs: Likewise.
490
491 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
492
493         * Application.cs: Add FilterMessage method and rework our message loop
494         logic to use it.
495
496 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
497
498         * Application.cs: Add some methods and stub a few methods that are
499         pretty much never used.
500
501 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
502
503         * TreeNode.cs: Add some serialization methods.
504
505 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
506
507         * ListView.cs: In ListViewItemCollection have a 
508         'is_main_collection' field to not modify ListViewItem.ListView
509         when using it as ListViewGroup.Items (and not ListView.Items)
510         and also don't modify selection state (.Net behaviour). 
511         Instead, set group for items contained in a ListViewGroup.Items collection.
512         * ListViewItem.cs: Simplify some code in Group setter.
513         * ListViewGroup.cs: use the new .ctor to pass the current instance
514         to the ItemsCollection.
515         * ListViewGroup.cs: Set the ListView property for ListViewGroup
516         instances when adding/removing. Also make Remove use RemoveAt, which
517         should perform better.
518
519 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
520
521         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
522         that crept into the 1.1 profile.
523
524 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
525
526         * ToolBarButton.cs: Implement ImageKey.
527
528 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
529
530         * ToolBar.cs: Implement ScaleControl/ScaleCore.
531
532 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
533
534         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
535           created, it might have gotten destroyed since we last checked. Fixes
536           #82405.
537
538 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
539
540         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
541         tooltip will hide when mouse is moved off the control.
542         [Fixes bug #82407]
543
544 2007-08-11 Andreia Gaita <avidigal@novell.com>
545
546         * WebBrowserBase.cs, WebBrowser.cs: add implementation
547         using Mono.Mozilla for loading and navigating webcontrol
548         with xulrunner.
549         The initial implementation was done on 
550         /trunk/mozembed/tests/browser , and copied here.
551
552 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
553
554         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
555         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
556
557 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
558
559         * DataGridView.cs: Add support for an editing row. Fixes #82226.
560           RowTemplateFull: throw an exception if a column doesn't have a template.
561         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
562           add the row just before it.
563         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
564           selected.
565         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
566           DataGridView field to be able to reach the grid's editing row.
567
568 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
569
570         * ToolTip.cs: If the control's handle hasn't been created when it has a
571         tooltip set on it, don't check to see if we need to show the tooltip.  This
572         check was causing the control's handle to be created.
573         [Fixes bug #82399]
574
575 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
576
577         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
578                                         1.1             2.0
579         Handle Not Created      -1              0
580         Handle Created          0               0
581         [Fixes bug #82371]
582
583 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
584
585         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
586         [Fixes bug #82348]
587
588 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
589
590         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
591         * ToolTip.cs: Implement some properties and owner draw.
592
593 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
594
595         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
596           show them again, since setting visibility causes a paint, causing an
597           endless loop (instead use a temporary and set it all when it's known if
598           they should be shown or not). Fixes #79265.
599
600 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
601
602         * DataGridView.cs: Only do a full column/row selection if a header was
603           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
604           isn't pressed, deselect everything before selecting something.
605
606 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
607
608         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
609           behaviour according to bug #81075 - they are returned in the order they
610           are selected. Fix HitTest to check if the point is within any of the
611           headers. Allow for row/column selection when in ColumnHeader or
612           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
613           the row and column to call when their selected state changes, and
614           updated selected_[rows|columns] whenever SetSelected* is called.
615         * DataGridViewBand.cs: Initialize isRow correctly. Call
616           SetSelected[Row|Column]CoreInternal when the selected state changes, and
617           add a SelectedInternal to avoid StackOverflows.
618         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
619           ReadOnly no matter what.
620         * DataGridViewSelectedColumnCollection.cs,
621           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
622           the items in reverse order (just as MS does...)
623
624 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
625
626         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
627         itself, not part of a mnemonic.  [Fixes bug #82378]
628
629 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
630
631         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
632         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
633           the DGV, the column, the row, or the cell itself is readonly.
634
635 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
636
637         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
638         OSVersion.Platform.
639         * FileDialog.cs: Same.
640         * TextRendered.cs: Same.
641         * FolderBrowserDialog.cs: Same.
642         * TextBoxBase.cs: Same.
643         * Application.cs: Same.
644         * Cursors.cs: Same.
645         * ThemeClearLooks.cs: Same.
646
647 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
648
649         * XplatUI.cs: Added RunningOnUnix property to be used by controls
650         instead of duplicating these checks everywhere.
651         * FileDialog.cs: Use case-insensitive comparison for populating the
652         DirComboBox when not running on unix. Fixes bug #82385.
653         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
654         "Look in".
655
656 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
657
658         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
659           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
660           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
661           cell and column selection with ctrl and shift pressed. Call the correct
662           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
663           the corresponding virtual method (PaintBackground to paint background,
664           etc).
665         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
666           either the column, row or the cell itself is selected.
667         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
668           OnRowsAdded.
669         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
670           here. When the row is selected, don't select all cells. Each cell now
671           queries the row to see if the row is selected.
672
673 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
674
675         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
676           SelectionMode.
677
678 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
679
680         * ListView.cs: In ListViewItemsCollection check that owner is
681         not null before trying to access it (this happens quite often
682         using Groups). Also don't duplicate calls by calling CollectionChanged
683         method.
684
685 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
686
687         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
688         when we are dismissed to clear keyboard mnemonics.
689         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
690         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
691         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
692         was activated by keyboard or the OS tells us to always draw them.
693         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
694         [Fixes bugs #82376, #82377]
695
696 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
697
698         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
699         shot at having it because Alt was pressed.
700         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
701         the first real menu item.
702         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
703         a mnemonic if Text is null.
704         [Fixes bug #82374]
705
706 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
707
708         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
709         search do check whether the item is already contained in the
710         collection or not; instead check if the owner of the item is the same
711         as ours. Also, remove a redundant check in the same method. 
712
713 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
714
715         * Control.cs: Allow the clip region to be set back to null.
716         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
717         [Fixes button still showing up in bug #82370 when Show Through is turned off]
718
719 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
720
721         * GridEntry.cs: Add a null check.
722         * PropertyGrid.cs: When checking for existing grid entries, ignore category
723           entries. Fixes #82297.
724
725 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
726
727         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
728         for 2.0.
729
730 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
731
732         * ListBox.cs: Implement ScaleControl.
733
734 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
735
736         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
737           have a menu strip.
738         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
739           parent has a menu strip. Fixes #81689.
740
741 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
742
743         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
744           moments, so apply some fuzzy logic to determine if the mouse is still
745           inside a control or not. Fixes #82288 (for the third time).
746
747 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
748
749         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
750           Don't create the child if it has been disposed already (may happen if
751           the user closes the form the Load event).
752
753 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
754
755         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
756           #82288.
757
758 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
759
760         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
761           might call us after we've been destroyed, in which case our own private
762           parent field is null. Fixes #82326.
763
764 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
765
766         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
767         check for setting the dropdown's owner.
768
769 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
770
771         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
772         before removing system menu items.
773
774 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
775
776         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
777         folding.
778         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
779         folding.
780         * ToolStrip.cs: Add a null check to mnemonics.
781         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
782         no ConnectedArea.
783         [Fixes most of bug #81689]
784
785 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
786
787         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
788
789 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
790
791         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
792
793 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
794
795         * DataGridViewCell.cs: EditType: returns
796           DataGridViewTextBoxEditingControl always.
797
798 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
799
800         * TextRenderer.cs: Remove the LineLimit string format flag from the
801         DrawString fallback method so that things like buttons that aren't
802         tall enough to draw a full line will still draw part of the text.
803         [Fixes part of bug #82272]
804
805 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
806
807         * DataGridView.cs: Implemented AutoResizeColumn(s).
808         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
809           according to the Alignment.
810         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
811           Implement alignment and padding when painting.
812         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
813           exists.
814         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
815           way.
816         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
817           a column is added.
818
819 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
820
821         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
822         which is internal.
823
824 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
825
826         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
827         hide GetPreferredSize from public API.
828         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
829         * ToolStripItem.cs: Stub out drag and drop methods and events.
830         * ToolStripManager.cs: Stub out Save/LoadSettings.
831         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
832         * ToolStripPanel.cs: Fix corcompare error.
833         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
834         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
835         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
836
837 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
838
839         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
840         bounds height instead of PreferredHeight.  Puts things back the way 
841         they were for height while still fixing the width.  Fixes broken unit
842         tests.
843
844 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
845
846         * Binding.cs: Implement 2.0 constructors and add a null check.
847
848 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
849
850         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
851           and fix row index (off by one).
852
853 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
854
855         * PropertyGridView.cs: Remove debug output.
856
857 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
858
859         * Control.cs: We need to reset the is_created flags when the handle is
860           destroyed. Fixes #82187.
861         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
862           client coordinates if the window doesn't have a parent.
863           Win32GetParent returns the parent or the owner, and for top-level
864           windows with no parent (but with an owner) we were calculating the
865           location from the location of the owner.
866         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
867           form has been disposed.
868         * MdiClient.cs: Add a null-check.
869
870 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
871
872         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
873         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
874         so we can provide an implementation that returns the current width
875         and preferred height.  Allows anchor = right to work with TextBox 2.0.
876         [Fixes bug #82233]
877
878 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
879
880         * ListView.cs: Add support for navigating items in Groups mode, by
881         creating a big matrix containing all rows and cols of all groups. When
882         are in other mode than Details, pressing Up should have a similar
883         behaviour as that one of Down (moving to the next available column if
884         current one doesn't have an item in the requested row). Also, don't
885         proceed to use groups if ShowGroups is false.
886         * ListViewGroup.cs: Add an internal int field to store the starting
887         row of the group (used by the big matrix used for navigating the
888         ListView).
889         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
890         false.
891
892 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
893
894         * ToolStripDropDown.cs: When we do Show, start with the 
895         DefaultDropDownDirection, but if our popup menu is going to off-screen,
896         modify the direction to keep it on screen.  [Fixes bug #82210]
897
898 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
899
900         * FileDialog.cs: Accept any FilterIndex value, and store it
901         unmodified. When FilterIndex is less than 1, or greater than number
902         of filters, then default to first filter. Only add filter extension to
903         file if user did not specifiy an extension. When type of dialog is
904         OpenFileDialog and DefaultExt is set, then only use filter extension
905         if: CheckFileExists is true and no file wih the default extension
906         exists, or CheckFileExists is false, and user specified file does not
907         exist. When CheckFileExists is true, then add first extension of 
908         selected filter that matches existing file. Perform checks for
909         existing file, overwrite and create after extension has been added to
910         file name. When CheckFileExists is true and type is SaveFileDialog,
911         then only consider first filter extension if DefaultExt is set.
912         When CheckFileExists is true, then ignore DefaultExt if file with that
913         extension does not exist. Also perform check for existing file when
914         type is SaveFileDialog. Changed some field to constants.
915
916 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
917
918         * ListView.cs: Take into account the region used by header
919         control when doing the vertical scroll (this way we invalidate
920         the precise area, and don't get any dirty one).
921
922 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
923
924         * FileDialog.cs: Check for valid filterIndex on button open/save. 
925         Fixes #82184.
926
927 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
928
929         * ListView.cs: Update some layout calculations in details view
930         and clean the code in a pair of assignations.
931
932 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
933
934         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
935         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
936         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
937         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
938
939 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
940
941         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
942         performance of thread-safe Graphic methods.  (Thanks rolf!)
943
944 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
945
946         * ListView.cs: When doing the layout calculations, don't calculate
947         scroll bars before handle is created. This is unnecessary and also
948         calculating them before handle creation item causes a number of random
949         bugs (which begin to appear after Chris' big patch for handle creation
950         fixes). 
951
952 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
953
954         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
955         for things that don't have a Graphics object.  Currently, things just use
956         the static Hwnd.bmp_g which is not thread safe.
957
958 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
959
960         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
961           dialog. Fixes #82187.
962
963 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
964
965         * DataGridViewElement.cs: Initialize state.
966         * DataGridView.cs: Forward a few Mouse events to cells. Add
967           GetRowInternal and GetCellInternal that doesn't unshare rows.
968           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
969           don't use the index, but look it up. Add
970           DataGridViewControlCollection.RemoveInternal to remove controls
971           that Remove won't remove (scrollbars, edit control).
972         * DataGridViewColumn.cs: Initialize State correctly.
973         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
974           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
975           implementing this.
976         * DataGridViewRowCollection.cs: Implemented shared rows.
977         * DataGridViewRow.cs: Throw exceptions as MS do.
978         * DataGridViewCell.cs: A few properties are implemented by a
979           Get<Property> method, so move implementation there and remove the
980           NIEX in the method. Add a bunch of OnXInternal that DataGridView
981           calls when necessary.
982         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
983           complicates matters.
984         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
985           unshare any rows.
986
987 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
988
989         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
990         the children controls.  Instead, we will just set up the proper docking for the
991         children controls so we don't have to worry about it.  [Fixes bug #82188]
992
993 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
994
995         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
996         canceling and correct Before/AfterLabelEdit properties as layed out in bug
997         81847.  [Fixes bug #81847]
998
999 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1000
1001         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
1002         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
1003         an explicit size based on the design-time size of the text.  Since our fonts
1004         may not match this explicit size, we tend to cut off the ends of people's labels.
1005
1006 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
1007
1008         * Menu.cs: Add some missing methods to MenuItemCollection.
1009
1010 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1011
1012         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
1013         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
1014         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
1015         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
1016         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
1017         * DataGridViewElement.cs: State defaults to Visible.
1018         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
1019         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
1020
1021 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1022
1023         * Control.cs: Minor 1.1 corcompare fix.
1024
1025 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1026
1027         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
1028         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
1029
1030 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1031
1032         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
1033           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
1034           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
1035           DataGridViewSelectedColumnCollection.cs,
1036           DataGridViewSelectedRowCollection.cs: Corcompare work.
1037
1038 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1039
1040         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
1041         it is autoset by VS2005 designer and the effect is barely noticeable.
1042
1043 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1044
1045         * TreeView.cs: Implement HitTest.
1046
1047 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1048
1049         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
1050           manually adding and removing the control from the Controls
1051           collecftion.
1052         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
1053           EditingControlInternal property that tracks the editing control.
1054           Always keeping the scrollbars in the Controls collection, as MS
1055           testing confirms is the right behaviour.
1056
1057 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1058
1059         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
1060           according to MSDN and new test.
1061
1062 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1063
1064         * TreeNode.cs: Implement ToolTipText.
1065         * TreeView.cs: Implement tooltips, NodeMouse* events.
1066
1067 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1068
1069         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
1070
1071 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1072
1073         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
1074         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
1075
1076 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
1077
1078         * Control.cs, Form.cs, ContainerControl.cs,
1079         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
1080         for misc properties.
1081
1082 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1083
1084         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
1085         * TreeView.cs: Implement StateImageList.
1086
1087 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1088
1089         * Form.cs: Don't check if the current form is the active form before
1090           activating it. Fixes #81904.
1091
1092 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1093
1094         * Form.cs: Don't check if the current form is the active form before
1095           activating it. Fixes #81904.
1096
1097 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1098
1099         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
1100
1101 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1102
1103         * Form.cs: Don't try to position the form after loading if the form was
1104           disposed. Fixes #81969.
1105
1106 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1107
1108         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
1109           properties. Had to change ToolBar into ToolStrip, which required a
1110           few #ifs.
1111
1112 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1113
1114         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
1115           resized, fixes part of #79829 (vertical lines in toolbar).
1116           PropertyGrid: Refactored Populate* to something that's easier to
1117           follow at least for me, as well as splitting it up into several new
1118           methods, required to update only subitems when something has
1119           changed by a popup editor or listbox. Don't use events to check
1120           when any values are changed, since the events are unreliable (we're
1121           changing the objects the events are registered with, and if the
1122           event handling requires the objects to be immutable (objects stored
1123           in hashtables for instance), the events will never be raised).
1124         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
1125           everytime we change a value, since events are unreliable.
1126           DropDownButtonClicked: For the same reason don't compare objects to
1127           check if it has changed or not, it would require all objects to
1128           derive Equals. Fix dialog location on windows, MS is doing weird
1129           things when creating parented forms.
1130         * GridEntry.cs: Add a SelectedObject setter.
1131
1132 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1133
1134         * TreeNode.cs: Add some corcompare attributes.
1135         * TreeNodeCollection.cs: Implement 2.0 stuffs.
1136         * TreeView.cs: Implement some 2.0 stuffs.
1137
1138 2007-07-18  Andreia Gaita  <avidigal@novell.com>
1139
1140         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
1141         for moma.
1142
1143 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1144
1145         * ListBox.cs: Implement custom tab offsets.
1146
1147 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1148
1149         * ToolStripContentPanel.cs: Support System renderer.
1150         * ToolStripControlHost.cs: Set RightToLeft to default to No.
1151
1152 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1153
1154         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
1155
1156 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1157
1158         * CheckBox.cs: Chain TextAlign to base implementation instead of
1159         maintaining another one.
1160
1161 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1162
1163         * ButtonBase.cs: Fix an incorrect string constant.
1164
1165 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1166
1167         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
1168         of creating one for measuring strings.
1169
1170 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1171
1172         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
1173         Implement MaxItemSize.
1174
1175 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
1176
1177         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
1178         for DeviceContext.  Instead, use the static one available in Hwnd.
1179         Informal tests show this saves about 500k on formtest.exe.
1180
1181 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
1182
1183         * ContainerControl.cs: Implement 2.0 AutoScaling.
1184
1185 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1186
1187         * ComboBox.cs: Work around bug #82120 (bug in mcs).
1188
1189 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1190
1191         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
1192         Darken the focus color.
1193
1194 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1195
1196         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
1197         for the checkbox.
1198         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
1199         X, Y instead of a rect for drawing text.
1200         - For ControlPaint.DrawCheckBox, center the check a little better when the
1201         checkbox is odd width.  When drawing a flat checkbox, use a white background
1202         when state != inactive.
1203         [Fixes bugs #82097, 82100]
1204
1205 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
1206
1207         * ListControl.cs: When changing CurrencyManager, disconnect event
1208         handlers from previous one. Fixes bug #81771. Code formatting.
1209
1210 2007-07-15  Andreia Gaita <avidigal@novell.com>
1211
1212         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
1213         full preview invalidation from layout invalidation, and only invalidate
1214         the layout when setting zoom or other properties. Invalidation should
1215         always be done even when resetting properties with the same values as
1216         what is there. Fixes #81744 and #79830.
1217
1218 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1219
1220         * ListView.cs: Implement initial support for Groups. Split some of the
1221         LayoutIcons code to render a partial list of the items (needed by
1222         items contained in ListViewGroup instances). Let the
1223         ListViewItemsCollection.ListView property be modifiable (needed when
1224         using Groups, too).
1225         * ListViewGroup.cs: Use a Bounds property rather than a Location
1226         one. Also invalidate the bounds when they get changed.
1227         * ThemeWin32Classic.cs: When drawing items, also draw the group header
1228         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
1229         method as well.
1230
1231 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1232
1233         * ListView.cs: When space gets pressed and CheckBoxes is true, 
1234         don't invoke the Begin and EndUpdate methods. We are generating 
1235         a redraw of the entire control without need to do so.
1236
1237 2007-07-13  William Holmes <billholmes54@gmail.com> 
1238
1239         * Control.cs: Changing logic in FindFlatForward and 
1240           FindFlatBackward to handle multiple Controls with 
1241           the same TabIndex.  
1242           This fixes bug 81687.
1243
1244 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
1245
1246         * OSFeature.cs: Enable IsPresent.
1247
1248 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1249
1250         * Control.cs: Don't do anything in WmShowWindow if the control has been
1251           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
1252           control is created, put on a form, the control is disposed (the
1253           form is never shown), and then we get a MapNotify, triggering a
1254           WM_SHOWWINDOW.
1255         * Form.cs: Exclude the current form when sending Deactivate to all
1256           MdiChildren.
1257         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
1258           there was a race condition because assigning the handle raises
1259           events, we can get more messages, therefore trying to assign the
1260           handle again, which would fail if any of those event handlers
1261           closed/disposed the control.
1262
1263 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1264
1265         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
1266
1267 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1268
1269         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
1270         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
1271
1272 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1273
1274         * DateTimePicker.cs: If there's no part format specifier, return an
1275           empty string.
1276
1277 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1278
1279         * FlatButtonAppearance.cs: Throw NotSupportedException for a
1280         Transparent BorderColor.
1281
1282 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1283
1284         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
1285           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
1286           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
1287           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
1288           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
1289           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
1290           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
1291           Remove warnings.
1292         * X11Structs.cs: Remove warnings, add ToString implementations.
1293
1294 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1295
1296         * XplatUIX11.cs: Translate min/max size according to the actual min/max
1297           size, and not the current size. Fixes #81798.
1298
1299 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1300
1301         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
1302           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
1303           to the control yet).
1304
1305 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1306
1307         * PropertyGridTextBox.cs: Add a method that sends any forwarded
1308           mousedowns to the contained textbox.
1309         * X11Structs.cs: More ToString implementation.
1310         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
1311           #81791.
1312
1313 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1314
1315         * PropertyGridView.cs: Add a null-check, fixes a few tests.
1316
1317 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
1318
1319         * TableLayoutPanelCellPosition.cs: TypeConverter.
1320
1321 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1322
1323         [ Fixes #79761]
1324         
1325         * PropertyGridTextBox.cs: Propagate any color changes to all contained
1326           controls.
1327         * PropertyGridView.cs: A few color fixes.
1328
1329 2007-07-10  Jackson Harper  <jackson@ximian.com>
1330
1331         * TextControl.cs: Remove some old unused text formatting stuff.
1332
1333 2007-07-10  Jackson Harper  <jackson@ximian.com>
1334
1335         * TreeView.cs: Update full row select invalidation to match the
1336         newer DrawSelection... method.
1337         - Make sure to invalidate the entire width when selecting a new
1338         node, if we have full row selection enabled.
1339
1340 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1341
1342         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
1343           display of properties again.
1344
1345 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
1346
1347         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
1348         to existing collections.
1349
1350 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1351
1352         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
1353         that changed between 1.1 and 2.0.
1354
1355 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1356
1357         * PowerStatus.cs: Added.  This is just a data class, it is filled
1358         in by SystemInformation.
1359
1360 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1361
1362         * Message.cs: Add op_Equality and op_Inequality.
1363
1364 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1365
1366         * MenuStrip.cs: Finish corcompare work.
1367
1368 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1369
1370         * LinkArea.cs: Add op_Equality and op_Inequality.
1371
1372 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1373
1374         * Application.cs: Add MessageLoopCallback delegate.
1375
1376 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1377
1378         * ListBox.cs: First set of 2.0 stuffs.
1379
1380 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1381
1382         * Control.cs: Make an internal Height property we can override
1383         without messing up the public API.
1384         * ListBox.cs: Override HeightInternal to always return the size
1385         the user set.  [Fixes bug #80466]
1386
1387 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
1388
1389         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
1390         paint cell borders if we haven't calculated where they go yet.
1391         [Fixes bugs #82040 and #82041]
1392
1393 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1394
1395         * ListView.cs: In Details view, set the location of item_control
1396         in the (0,0) position (and the header_control is thus on the
1397         item_control). This way the Bounds of the Items are relative to the
1398         ListView control (before this, they had a Bounds value without the
1399         header_control offset, which wasn't matching .Net). Fixes #82004.
1400
1401 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1402
1403         * ListControl.cs: When DataSource is set to null, pass an empty
1404         array of object to SetItemsCore. This is done to clean the items
1405         in the ListContol children. Fixes #81788.
1406
1407 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1408
1409         * ListControl.cs: Add 2.0 stuffs.
1410
1411 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1412
1413         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
1414         Refresh is overkill for just about every repaint request.
1415
1416 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1417
1418         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
1419         so remove my custom Get method and fix the property getter.
1420
1421 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1422
1423         * Label.cs: DefaultMargin for 2.0.
1424
1425 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1426
1427         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
1428         reported issue where other controls with mnemonics would steal strokes
1429         from a selected ComboBox.
1430
1431 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1432
1433         * ScrollOrientation.cs: Make internal for 1.1.
1434         * ScrollEventArgs.cs: Add 2.0 stuffs.
1435
1436 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
1437
1438         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
1439         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
1440         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
1441
1442 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1443
1444         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
1445
1446 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1447
1448         * ListView.cs: Implement the so-incredibly broken 2.0 
1449         VirtualItemsSelectionRangeChanged event.
1450
1451 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1452
1453         * ListView.cs: When enter is pressed and selection is non empty,
1454         an OnItemActivate event must be fired.
1455
1456 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1457
1458         * ListView.cs: Store the FocusedItem information as an
1459         int instead of a ListViewItem (needed by VirtualMode).
1460         Update the calls to SetFocusedItem to pass an index instead of
1461         an item.
1462         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
1463         the Focused state from the owner ListView. 
1464
1465 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1466
1467         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
1468         property. Also, invalidate previous focused item in the mentioned
1469         property (match .Net).
1470
1471 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1472
1473         * ListView.cs: Implement 2.0 FocusedItem property setter.
1474
1475 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1476
1477         * ListView.cs: Implement 2.0 TopItem property setter.
1478
1479 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
1480
1481         * StatusStrip.cs: The default renderer is System.
1482         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
1483         if the user specifies it.
1484         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
1485         if we are ManagerRenderMode.
1486         * ToolStripMenuItem.cs: Calculate our text color better.
1487         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
1488         from Professional to the base class based off working with the System renderer.
1489         * ToolStripSystemRenderer.cs: Added.
1490
1491 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1492
1493         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
1494
1495 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
1496
1497         * ToolTip.cs: Implement 2.0 Tag property.
1498
1499 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1500
1501         * ListView.cs: Implement 2.0 HitTest methods.
1502
1503 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1504
1505         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
1506         item is under the pointer or not (sugar). Also remove the TODO
1507         regarding to the cursor changes in OneClick activation.
1508         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
1509         the subitems use the parent's HotFont if UseItemStyleForSubItems is
1510         true; otherwise don't show the underline style.
1511
1512 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1513
1514         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
1515         the code to retrieve the item at position only one time. Also
1516         change cursor when Activation is ItemActivation.OneClick as well
1517         as invalidate the item if HotTracking is true (to show/hide the
1518         underline style). Add an internal HotItemIndex property to retrieve
1519         the current hot item's index.
1520         * ListViewItem.cs: Add an internal HotFont property to cache the
1521         font used when HotTracking is true and the pointer moves within the
1522         item's borders.
1523         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
1524         HotFont depending on the hot state of the item.
1525
1526 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1527
1528         * ListView.cs: Implement 2.0 HotTracking property.
1529
1530 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1531
1532         * ToolStripControlHost.cs: If our hosted control never got created,
1533         don't try to dispose it.  [Fixes bug #81909]
1534
1535 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1536
1537         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
1538
1539 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1540
1541         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
1542
1543 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1544
1545         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
1546         Details view.
1547         * DrawListViewColumnHeaderEventArgs.cs:
1548         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
1549         using the DrawText () methods.
1550
1551 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
1552
1553         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
1554         background which got erased in my changes yesterday.
1555
1556 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1557
1558         * ListViewItem.cs: Actually set bounds for subitems in Details view
1559         (2.0 feature).
1560         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
1561         can invoke from the owner draw routines if we need it. Also, add
1562         support for Owner draw in Details view.
1563
1564 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1565
1566         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
1567         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
1568         ShowImageMargin setting, properly align text in a ToolStripLabel
1569         hosted on a ToolStripDropDown.
1570
1571 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1572
1573         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
1574         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
1575
1576 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1577
1578         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
1579
1580 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1581
1582         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
1583         location to match ToolStripMenuItems.
1584
1585 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1586
1587         * DrawListViewColumnHeaderEventArgs.cs:
1588         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
1589         column headers in ListView. 
1590
1591 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1592
1593         * UserControl.cs: Implement AutoSize.
1594
1595 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1596
1597         * DrawListViewItemEventArgs.cs:
1598         * ListView.cs:
1599         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
1600         ListView.
1601
1602 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1603
1604         * ToolStripDropDownItemAccessibleObject.cs: Added.
1605         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
1606         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
1607         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
1608         ToolStripTextBox.cs: corcompare work.
1609
1610 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1611
1612         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
1613         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
1614         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
1615                 corcompare.
1616
1617 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1618
1619         * OSFeature.cs: Add IsPresent.
1620         * PrintPreviewControl.cs: Add RightToLeft.
1621         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
1622         * SplitterPanel.cs: Add AutoSizeMode.
1623
1624 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1625
1626         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
1627         * MdiClient.cs: Add 2.0 ScaleControl.
1628         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
1629         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
1630
1631 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1632
1633         * Form.cs: Implement some scaling methods, stub some RTL methods,
1634         corcompare work.
1635
1636 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1637
1638         * Control.cs: corcompare work.
1639         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
1640
1641 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1642
1643         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
1644         ControlPaint 2.0 stuffs.
1645
1646 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1647
1648         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
1649
1650 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1651
1652         * UpDownBase.cs: Add 2.0 stuffs.
1653
1654 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1655
1656         * NumericUpDown.cs: Add 2.0 stuffs.
1657
1658 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1659
1660         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
1661
1662 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1663
1664         * ErrorProvider.cs: Implement 2.0 stuffs.
1665
1666 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1667
1668         * DomainUpDown.cs: Implement 2.0 stuffs.
1669
1670 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1671
1672         * CheckedListBox.cs: Fix RefreshItems signature.
1673
1674 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1675
1676         * PictureBox.cs: Implement 2.0 stuffs.
1677
1678 2007-06-12  Andreia Gaita  <avidigal@novell.com>
1679         
1680         * TabControl.cs: Check if there are tabpages before checking
1681         the selected index - fix #81802 (font changes raise a ResizeTabs
1682         call on controls.add, which blew up nicely with no tabpages)
1683
1684 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1685
1686         * ListView.cs:
1687         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
1688
1689 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1690
1691         * ListView.cs:
1692         * ListViewItem.cs: In VirtualMode the selection information
1693         resides in the ListView, rather than in the Items. Also, throw
1694         InvalidOperationExceptions when VirtualMode is being used and
1695         CheckedItemCollection is accessed.
1696
1697 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1698
1699         * ComboBox.cs: Add ScaleControl.
1700
1701 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1702
1703         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
1704
1705 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1706
1707         * GroupBox.cs: Add 2.0 stuffs.
1708
1709 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1710
1711         * Panel.cs: Add autosize properties/event.
1712
1713 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1714
1715         * Control.cs:
1716         - When we remove a control, remove it from the collection before performing the layout.
1717         - Setup an internal property for explicit_bounds.
1718         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
1719         - Perform a layout when we set a new AutoSizeMode.
1720
1721 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1722
1723         * ScrollableControl.cs: Add 2.0 stuffs.
1724
1725 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1726
1727         * ScrollBar.cs: Add 2.0 stuffs.
1728
1729 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1730
1731         * Splitter.cs: Add 2.0 stuffs.
1732
1733 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1734
1735         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
1736         to have BindingContext simply use base implementation.
1737
1738 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1739
1740         * ColumnHeader.cs: corcompare fix.
1741
1742 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1743
1744         * Button.cs: corcompare fixes.
1745         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
1746
1747 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1748
1749         * Button.cs: Override GetPreferredSizeCore.
1750         * ButtonBase.cs: PerformLayout after changing properties that can affect
1751         AutoSize.  Simplify some mouse/keyboard code.
1752         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
1753         * MouseEventArgs.cs: Make Location internal for 1.1.
1754         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
1755         * Theme.cs: Add CalculateButtonAutoSize.
1756         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
1757
1758 2007-06-05  Miguel de Icaza  <miguel@novell.com>
1759
1760         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
1761
1762 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1763
1764         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
1765         since we can get different item instances every time we retrieve it.
1766
1767 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1768
1769         * ListView.cs: Work around for #81602, since an unkown an pretty
1770         infrequent condition appears only in some systems (old linux boxes, it
1771         seems).
1772
1773 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1774
1775         * Button.cs: Completely reformat and a little refactor to bring
1776         this closer to Mono circa 2007.
1777
1778 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1779
1780         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
1781         to be ButtonBase.Invalidate.
1782
1783 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1784
1785         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
1786
1787 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1788
1789         * ButtonBase.cs: Completely reformat and a little refactor to bring
1790         this closer to Mono circa 2007.
1791
1792 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
1793
1794         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
1795         values for autosize. Fixes #80137.
1796
1797 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1798
1799         * Control.cs: Don't perform layout when AutoSize changes.
1800         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
1801         directly when autosizing, use SetBounds with BoundsSpecified.None.
1802         Fixes unit tests my last commit broke.
1803
1804 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1805
1806         * Control.cs: Perform layout when AutoSize changes.
1807         * Form.cs: Implement AutoSizing.
1808
1809 2007-06-01  Chris Toshok  <toshok@ximian.com>
1810
1811         * DataGrid.cs: remove the XXX'ed check at the top of
1812         ProcessGridKey.  fixes #80464.
1813
1814 2007-06-01  Chris Toshok  <toshok@ximian.com>
1815
1816         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
1817         adding idempotent (add/remove in Edit()), and also make sure we
1818         don't add it until after we set the text, so it's not tripped in
1819         Edit().  Fixes unit test regression.
1820
1821 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1822
1823         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
1824         change is user explicit, not when the layout engine moves stuff.  Fixes
1825         anchoring to bottom and right.  [Fixes bug #81790]
1826
1827 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1828
1829         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
1830
1831 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1832
1833         * ContainerControl.cs: 
1834         Fire enter event for common ancestor if it is not a ContainerControl.
1835         Send focus to the active_control and not the 'value', the active 
1836         control might have been changed in one of the events fired.     
1837         Definitely fixes #80159.
1838
1839 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1840
1841         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
1842
1843 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1844
1845         * PropertyGrid.cs: Anchor the help description to the bottom of the
1846           help panel and refactor SelectGridItem into a
1847           SelectGridItemInternal that can be set to null (and update it to
1848           clear the help texts when it is set to null). Set root item to null
1849           when there's no SelectedObject. Fixes #80438.
1850         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
1851           when we're recalculating after a resize (only).
1852
1853 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1854
1855         * ListView.cs: Implement 2.0 RedrawItems method.
1856
1857 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1858
1859         * ListControl.cs: Disconnect PositionChanged and ItemChanged
1860         handlers from previous data manager when DataSource is set to
1861         null. Fixes #81771.
1862
1863 2007-05-31  Jackson Harper  <jackson@ximian.com>
1864
1865         * TextBoxBase.cs: These seem to be the correct values.
1866
1867 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
1868
1869         * FileDialog.cs: When close dialog with ok set filterindex using combobox
1870         value. Fixes #81784.
1871
1872 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
1873
1874         * Control.cs: Implement 2.0 scaling methods.
1875
1876 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1877
1878         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
1879           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
1880           corcompare issues.
1881
1882 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1883
1884         * ProgressBar.cs: Implemented missing 2.0 members.
1885
1886 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1887
1888         * Control.cs: Corcompare issues.
1889         * MessageBox.cs: Implemented missing 2.0 functions.
1890
1891 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1892
1893         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
1894           Implemented more 2.0 members.
1895
1896 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1897
1898         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
1899           null (strange, but it seems to happen when running unit tests).
1900
1901 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1902
1903         * ContainerControl.cs: Set active_control even earlier, before 
1904         firing any events, and undo it if validation returns false.
1905
1906 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1907
1908         * ContainerControl.cs: Raise Validation and Enter/Leave events
1909         even if there is no Form and set active_control earlier, just
1910         before firing Enter events (toshok's patches). Fixes #80647.
1911
1912 2007-05-30  Jackson Harper  <jackson@ximian.com>
1913
1914         * TextControl.cs: Redid the pageup/pagedown a little to simplify
1915         things and fix bug #81311.
1916
1917 2007-05-30  Jackson Harper  <jackson@ximian.com>
1918
1919         * X11Dnd.cs: Now that we have our own event loop, we need to
1920         cancel when we get a mouseup but it won't be accepted.
1921
1922 2007-05-30  Chris Toshok  <toshok@ximian.com>
1923
1924         * DataGrid.cs (set_CurrentCell): guard against negative
1925         column/row.
1926
1927         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
1928         array index syntax instead of looping over the property names.
1929
1930         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
1931         and set IsInEditOrNavigateMode to false there.
1932
1933 2007-05-30  Jackson Harper  <jackson@ximian.com>
1934
1935         * TreeView.cs: Make sure we don't get a bad visible order when
1936         setting to the top node.  Fixes some misc crashing in
1937         ControlInspector.
1938
1939 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1940
1941         * UserControl.cs: Add 2.0 AutoSizeMode
1942
1943 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1944
1945         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
1946
1947 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1948
1949         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
1950         lines. Fixes #80285. 
1951
1952 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1953
1954         * DataGridColumnStyle.cs: Add char trimming column header text format. 
1955
1956 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1957
1958         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
1959         Fixes #80147.
1960
1961 2007-05-29  Jackson Harper  <jackson@ximian.com>
1962
1963         * TreeNode.cs: Fix off by one on calculating whether or not a node
1964         is visible.
1965
1966 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
1967
1968         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
1969         * ScrollableControl.cs: Force an UpdateDistances when we move the
1970         scrollbars.
1971         [Fixes bug #80605]
1972
1973 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1974
1975         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
1976         update the page setup screen.
1977
1978 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1979
1980         * PageSetupDialog.cs: Fix landscape mode.
1981
1982 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1983
1984         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
1985         IconSizeHorizontalSpacing.
1986
1987 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1988
1989         * ListView.cs: The declaration of prev_tooltip_item should be inside
1990         a NET_2_0 conditional (avoid a warning).
1991
1992 2007-05-28  Andreia Gaita  <avidigal@novell.com>
1993
1994         * PageSetupDialog.cs: Implement PrintPreview control to display
1995         the preview thumbnail. Change unit conversion to use 
1996         PrinterUnitConvert methods.
1997         
1998         Note: there is a huge bug in ms.net where the default margins are 
1999         interpreted as centimeters (?), when in fact they are set in inches. When 
2000         loading the page setup dialog initially (ms.net), the default margins 
2001         are set to 1 inch, and the dialog shows them with value 10, when in fact 
2002         it should be 25 (properly converted). Our dialog doesn't have this bug.
2003         
2004         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
2005         RectangleF.
2006         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
2007
2008 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2009
2010         * ListView.cs:
2011         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
2012         items.
2013
2014 2007-05-28  Andreia Gaita  <avidigal@novell.com>
2015
2016         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
2017         an IntPtr on csc (it builds fine on mcs, could it be a compiler
2018         bug?), convert the ptr to Int32 first.
2019
2020 2007-05-28  Jackson Harper  <jackson@ximian.com>
2021
2022         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
2023         recieved, we will exit the dnd tracking loop.
2024
2025 2007-05-28  Jackson Harper  <jackson@ximian.com>
2026
2027         * X11Dnd.cs: Keep tracking until the xdnd finished event is
2028         recieved. TODO: I should probably stick a timer on the dropped
2029         event, and finish the drag if the XDND Finished event never shows
2030         (because some apps don't seem to send it).
2031
2032 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
2033
2034         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
2035         #81733.
2036
2037 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2038
2039         * MonthCalendar.cs: Only mark the keypresses we actually handle as
2040           handled.
2041
2042 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2043
2044         * MonthCalendar.cs: Set the size after initializing all the relevant
2045           variables. Fixes #81742.
2046
2047 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2048
2049         * KeyEventArgs.cs: Fix typo.
2050
2051 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
2052
2053         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
2054         to match MS. Fixed MinDate to only accept value less than or equal
2055         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
2056         Removed TODO's that are now verified by unit tests.
2057
2058 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
2059
2060         * TreeNodeCollection.cs: Minor corrections to exceptions to match
2061         MS.
2062
2063 2007-05-25  Jackson Harper  <jackson@ximian.com>
2064
2065         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
2066         it's own message loop.
2067         * XplatUIX11.cs: Remove some of the dnd hooks
2068
2069 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
2070
2071         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
2072         instead of MinimizedWindowSize.
2073
2074 2007-05-25  Jackson Harper  <jackson@ximian.com>
2075
2076         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
2077
2078 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2079
2080         * KeyEventArgs.cs: Added SuppressKeyPress.
2081         * Control.cs: Added support for SuppressKeyPress.
2082
2083 2007-05-24  Andreia Gaita  <avidigal@novell.com>
2084
2085         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
2086         problems with PieChart. suppress_validation should not be a counter,
2087         if there are several BeginInit calls, the first EndInit will 
2088         activate validation. Fix exceptions thrown by set_Value.
2089         * UpDownBase.cs: ValidateText only if it's the user editing it.
2090
2091 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2092
2093         * ListControl.cs: FilterItemOnProperty should return the filtered
2094         item proeprty even if DataSource is null. The same applies for
2095         GetItemText. Fixes #80427.
2096
2097 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2098
2099         * Control.cs: If a control doesn't have a parent when it's Dock is
2100         set, but it has children, it needs to do a layout.  Fixes some nested
2101         controls issues.  [Fixes bug #81199]
2102
2103 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2104
2105         * ComboBox.cs: If there are few items in the drop down list, make it
2106           the exact size the items need, no bigger. Fixes #81612.
2107
2108 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2109
2110         * Application.cs: When we have captured the keyboard for a menu,
2111         check for mouse down events in case we need to close the menu.
2112         * Control.cs, Form.cs: Remove mouse down checks for menus.
2113
2114 2007-05-24  Jackson Harper  <jackson@ximian.com>
2115
2116         * TextControl.cs: Handle tabs in non multiline mode a little
2117         differently.
2118
2119 2007-05-24  Jackson Harper  <jackson@ximian.com>
2120
2121         * TextControl.cs: We need to manually break apart tabbed text and
2122         move the tabs, since the system.drawing tabbing mechanism relies
2123         on tab stops.
2124         * TextBoxBase.cs: Move the caret properly when the user enters a
2125         tab.
2126
2127 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2128
2129         * ContainerControl.cs: Don't check CanSelect before calling
2130         ProcessMnemonic.
2131         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
2132         release a KeyboardActive on click if it's not ours.
2133
2134 2007-05-23  Andreia Gaita  <avidigal@novell.com>
2135
2136         * ColumnHeader.cs: Add TypeConverter
2137
2138 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2139
2140         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
2141
2142 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2143
2144         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
2145
2146 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2147
2148         * LinkLabel.cs: Implement public Padding property.
2149
2150 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2151
2152         * LinkLabel.cs: Implement public FlatStyle.
2153
2154 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
2155
2156         * Control.cs: Apply patch from George to call parent.PerformLayout
2157         when Visible is changed.  [Fixes bugs #81118, 81718]
2158
2159 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2160
2161         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
2162
2163 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2164
2165         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
2166
2167 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2168
2169         * ContextMenu.cs: Implement Collapse.
2170
2171 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
2172
2173         * ToolBarButton.cs: Implement Name.
2174
2175 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2176
2177         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
2178         use current_item, it prevents some NRE. Fixes #81675.  
2179
2180 2007-05-22  Andreia Gaita  <avidigal@novell.com>
2181
2182         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
2183         without updating the text.
2184
2185 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2186
2187         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
2188         without calling DeleteObject.  [Should fix bug #81709]
2189
2190 2007-05-22  Jackson Harper  <jackson@ximian.com>
2191
2192         * RichTextBox.cs: Set the line endings correctly, when flushing
2193         RTF text.
2194
2195 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
2196
2197         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
2198          {Width=0,Height=0}.
2199
2200 2007-05-22  Jackson Harper  <jackson@ximian.com>
2201
2202         * TreeView.cs: Setting top with a null node should set to the very
2203         top.
2204
2205 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2206
2207         * Form.cs: ShowDialog: destroy the handle when message loop is
2208           finished, matches MS behaviour. Refactor parts of WmClose into
2209           RaiseCloseEvents, that only raises events if they haven't already
2210           been raised. Fixes #81688 and #81521.
2211         * Application.cs: Don't call close on the form when exiting a modal
2212           loop, it will raise all the (Form)Closed/Closing events again if
2213           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
2214           which doesn'r raise any events it they have been raised before.
2215
2216 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2217
2218         * Control.cs: Add OnPrint.
2219         * ToolStrip.cs: Add GetChildAtPoint.
2220         * ToolStripContainer.cs: Add OnRightToLeftChanged.
2221         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
2222
2223 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2224
2225         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
2226
2227 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2228
2229         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
2230           isn't visible anymore. Fixes #81651.
2231
2232 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2233
2234         * Control.cs: WmShowWindow: Update children's z-order after setting
2235           their parent. SetParent may show the window, thereby corrupting
2236           z-order, since the window will be shown on top.
2237         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
2238           multiple (and redundant) WM_SHOWWINDOW messages.
2239         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
2240           event has already been raised.
2241         * Form.cs: Change is_changing_visible_state to a counter, since
2242           SetVisibleCore can be called recursively. CreateHandle: when
2243           creating mdi children, send (De)Activated events.
2244         * MdiClient.cs: Update use of is_changing_visible_state.
2245         * Application.cs: OnThreadException: Surround exception handling with
2246           try/finally to ensure we always reset the error-handling state
2247           before leaving.
2248
2249 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2250
2251         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
2252           (#81704).
2253
2254 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2255
2256         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
2257         SmallIcon views, now that we have a standarized horizontal spacing.
2258
2259         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
2260         4, just like the other views (Match .Net).
2261
2262 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
2263
2264         * Control.cs: Delay calculating anchor distances until we actually layout.
2265         Always query the WM for the actual size and location it put us at instead of
2266         only when we send negative values.
2267         [Fixes bugs #81694, 81695]
2268
2269 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2270
2271         * Application.cs: Avoid a possible stack overflow when trying to exit
2272           the application.
2273
2274 2007-05-19  Marek Safar  <marek.safar@gmail.com>
2275
2276         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
2277         enum value.
2278
2279 2007-05-19  Andreia Gaita  <avidigal@novell.com>
2280
2281         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
2282         * NumericUpDownAcceleration.cs, 
2283           NumericUpDownAccelerationCollection.cs: Added 2.0
2284           implementation.
2285
2286 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
2287
2288         * RichTextBox.cs: Recalculate the document after the ScrollBars
2289         property is changed. Fixes bug #81681.
2290
2291 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
2292
2293         * DataObject.cs: Implement 2.0 methods.
2294
2295 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2296
2297         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
2298         in the center of the checkbox, not in the left-top corner. 
2299         Fixes #80037.
2300
2301 2007-05-18  Jackson Harper  <jackson@ximian.com>
2302
2303         * RichTextBox.cs: Recalculate the document after the scrollbars
2304         property is changed.
2305         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
2306         81486.
2307
2308 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2309
2310         * CreateParams.cs: Make HasWindowManager marginally faster.
2311         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
2312           into Hwnd so that other drivers can use it as well.
2313         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
2314           the default location from Hwnd. Fixes MDI client windows always
2315           showing up at (0,0) in Windows (Win32 won't set the default
2316           location since the window styles aren't correct).
2317
2318 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
2319
2320         * TreeView.cs: Modified DoubleBuffered to just use the base
2321         implementation.
2322
2323 2007-05-18  Jackson Harper  <jackson@ximian.com>
2324
2325         * TreeView.cs: Set the top node to the last child node when
2326         expanding all
2327         - When we get focus, if there is no selected node, use the top
2328         node.
2329
2330 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
2331
2332         * KeysConverter.cs: Add CanConvertTo.
2333         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
2334         * LinkConverter.cs: Added.
2335
2336 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2337
2338         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
2339         it prevents error when file dont have write access. Fixes #81669 and #81667.  
2340
2341 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2342
2343         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
2344         button text. Fixes #79640.  
2345
2346 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2347
2348         * Control.cs: According to MSDN controls created in the designer theres 
2349         keyboard accelerators visible by default. So included check for design
2350         in ShowKeyboardCuesInternal.  
2351
2352 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2353
2354         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
2355         text. Fixes #81621.  
2356
2357 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2358
2359         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
2360         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
2361
2362 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2363
2364         * Control.cs: Finish implementation of UI State using WmChangeUIState
2365         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
2366         in some controls to check for show_keyboard_cues to draw accell keys "_".  
2367
2368 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2369
2370         * ListBox.cs: When calculating the horizontal scrollbar
2371         in single column mode, don't use values less than 0 for
2372         Maximum. Fixes #81474.
2373
2374 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2375
2376         * ListBox.cs: Throw the some missing exceptions in
2377         ListBox.ObjectCollection methods.
2378
2379 2007-05-17  Jackson Harper  <jackson@ximian.com>
2380
2381         * TextBoxBase.cs: Recalculate the document when the word wrap
2382         value has changed. This fixes 81488.
2383
2384 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2385
2386         * Clipboard.cs: Implement missing GetText overload.
2387
2388 2007-05-17  Chris Toshok  <toshok@ximian.com>
2389
2390         * Control.cs (CheckDataBindings): remove the binding_context arg
2391         to binding.Check.
2392
2393         * CurrencyManager.cs (OnItemChanged): fix this now that
2394         BindingManagerBase is fixed. also remove the comment telling where
2395         the fix should go.  We set transfering_data to true/false around
2396         the call to PushData to keep UpdateIsBinding from being called.
2397         (ListChangedHandler): remove the extra OnMetaDataChanged call for
2398         PropertyDescriptorAdded in the 1.1 case.  The extra call is
2399         actually generated by System.Data generating 2 metadata changed
2400         events of its own per column add.  The fix should go there.  Add a
2401         comment to that affect in our test's Assert.Ignore.
2402
2403         * BindingManagerBase.cs: Rework PullData and PushData slightly.
2404         we keep a boolean flag (transfering_data) that keeps us from
2405         calling UpdateIsBinding multiple times if we re-enter either of
2406         them.
2407
2408         * ControlBindingsCollection.cs (AddCore): remove the
2409         binding_context arg to binding.Check.
2410
2411         * Binding.cs (IsBinding): don't check if we're binding here, just
2412         return our cached value.  we update it in UpdateIsBinding.
2413         (Check): don't take the binding_context arg, we'll just use our
2414         control's.  Also, for some reason MS doesn't use the data member
2415         field when getting the bindingmanager for this binding.  it just
2416         uses the datasource.  Make this method callable multiple times,
2417         and only do the is_null_desc stuff if manager.Position != -1 (so
2418         we don't get an exception accessing manager.Current).
2419         (UpdateIsBinding): move the code from IsBinding here.
2420         (PositionChangedHandler): call Check here to we can initialize
2421         things that require a non- -1 position.
2422
2423 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2424
2425         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
2426         control.
2427
2428 2007-05-17  Andreia Gaita  <avidigal@novell.com>
2429
2430         * TabControl.cs: Add 2.0 methods and events, including
2431         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
2432         * TabPage.cs: Add 2.0 methods
2433
2434 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2435
2436         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
2437         keyboard_cues is properly handled by message method.  
2438
2439 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2440
2441         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
2442
2443 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2444
2445         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
2446
2447 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
2448
2449         * Control.cs: 
2450         - WmUpdateUIState added to handle state changes, it make call to
2451         OnChangeUICues event.
2452         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
2453         SystemInformation.
2454
2455 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
2456
2457         * ImageKeyConverter.cs: Added.
2458         * TreeViewImageKeyConverter.cs: Added.
2459
2460 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2461         
2462         * ToolTips.cs: Update Text if SetToolTip is called for a control
2463         already showing the tooltip, as well as restarting its timer; show
2464         tooltip if we are inside the control bounds by the time of calling
2465         SetToolTip. Inside ShowTooltip remove the check to not show the 
2466         tooltip again for the active control (it is allowed by .Net to 
2467         show the tooltip on the same control multiple times).
2468
2469 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2470
2471         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
2472
2473 2007-05-16  Andreia Gaita <avidigal@novell.com> 
2474
2475         * ContainerControl.cs: only process tab key if there are no 
2476         modifier keys present, otherwise the control does the 
2477         tab processing, if it needs to. Fixes #81622
2478         * TabControl.cs: Fixes calculation for which tab to select on
2479         shift+ctrl+tab.
2480
2481 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2482
2483         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
2484
2485 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
2486
2487         * Control.cs: Make IsInputCharInternal to allow controls to
2488         override it and still match MS API.
2489         * TextBoxBase.cs: Override IsInputCharInternal and always
2490         return true.
2491         [Fixes bug #81616]
2492
2493 2007-05-15  Jackson Harper  <jackson@ximian.com>
2494
2495         * TextBox.cs: Disable some of the menu options when using a
2496         readonly textbox.
2497
2498 2007-05-15  Jackson Harper  <jackson@ximian.com>
2499
2500         * TextBox.cs:
2501         * TextBoxBase.cs:
2502         * RichTextBox.cs: Some new 2.0 methods
2503
2504 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
2505
2506         * FileDialog.cs: On 1.0 profile, do not support multidotted 
2507         extensions.
2508
2509 2007-05-14  Jackson Harper  <jackson@ximian.com>
2510
2511         * TextBoxBase.cs: Implement some of the new 2.0 methods.
2512         * RichTextBox.cs: We need to override these methods on 2.0.
2513         * MaskedTextBox.cs: These are implemented now
2514         * TextControl.cs: This was off by one.
2515
2516 2007-05-14  Jackson Harper  <jackson@ximian.com>
2517
2518         * TextControl.cs: Because the line endings are including in the
2519         text, we don't need to add them in anymore.
2520
2521 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2522
2523         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
2524         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
2525
2526 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2527
2528         * ToolBar.cs: Adjust size to default size when button theres no text and
2529         image, it fixes remaining issues from #81524.
2530
2531 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2532
2533         * ToolBar.cs: 
2534         - When not flat call redraw to recalculate sizes on creare handle to match
2535         win32 behavior.
2536         - Revert 77220 because it causes some regressions in toobar
2537         button.
2538
2539 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2540
2541         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
2542           now actually enters a usable state.
2543
2544 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2545
2546         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
2547         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
2548         3 buttons.
2549
2550 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2551
2552         * ToolBar.cs: Save default_size on create handle to use later for buttons
2553         without text, needed to mimic win32 behavior.
2554
2555 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2556
2557         * ToolBar.cs: Fix button layour to best fit width or height according to
2558         vertical or not. Fixes #81524.
2559
2560 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2561
2562         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
2563         toolbar size info because different styles theres different sizes.
2564         Fixes #81522.
2565
2566 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2567
2568         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
2569         if we are using checkboxes, checked is true, and we have less
2570         than two images in StateImageList; for the 1.1 in the same scenario
2571         draw the first image if we have at least one image in StateImageList.
2572         Fixes part of #81191.
2573
2574 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2575
2576         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
2577         the owner's Items collection on merge.
2578
2579 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2580
2581         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
2582         * ToolStripItemCollection.cs: Lots of fixes to when events get called
2583         and parent/owner gets changed based on gert's unit tests.
2584
2585 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2586
2587         * MaskedTextBox.cs: Started implementing parts of it.
2588
2589 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2590
2591         * ListView.cs: When clicking the checkbox on the items
2592         take into account the double clicks even if we have only
2593         one image in StateImageList (only for 1.0/1.1). Also 
2594         generate an extra change of checked state when we receive
2595         the second click on checkbox (match .Net behaviour). 
2596         Fixes part of #81191.
2597
2598 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2599
2600         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
2601
2602 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2603
2604         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
2605         even if OnLoad is overriden and base.OnLoad is not called.
2606         [Fixes bug #81582]
2607
2608 2007-05-10  Andreia Gaita  <avidigal@novell.com>
2609
2610         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
2611         shame. (I blame my ever-persisting and annoying cold)
2612
2613 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2614
2615         * ListView.cs: Don't eat navigation keys.  Let them flow through to
2616         KeyDown/KeyPress routines.  [Fixes bug #81569]
2617
2618 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2619
2620         * ListView.cs: When handling keys for selecting the item based off
2621         keyboard input, do not consider keys pressed with Alt or Control.  Also,
2622         correctly handle keys when the Shift key is down. [Fixes bug #81578]
2623
2624 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2625
2626         * Control.cs: When using UseWaitCursor, we have to store the requested
2627         Cursor to use when UseWaitCursor is turned off.
2628
2629 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2630
2631         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
2632         to false.
2633         * Application.cs: Use PreProcessControlMessage instead of
2634         PreProcessMessage.
2635         * PreProcessControlMessage.cs: Make internal for 1.1.
2636
2637 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2638
2639         * Control.cs: Add InternalContains focus property, which hast the same
2640         functionality of ContainsFocus, but also including implicit controls.
2641         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
2642         since we need to know if the focus is contained in our implicit
2643         ItemControl when calculating Layout. Fixes part of #80888.
2644
2645 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
2646
2647         * ToolTip.cs: Remove center form string alignment as it must be align to
2648         left.
2649
2650 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
2651
2652         * ToolStripItemCollection.cs: Set the new item's parent and owner
2653         in Insert like we do in Add.  [Fixes bug #81568]
2654
2655 2007-05-08  Jackson Harper  <jackson@ximian.com>
2656
2657         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
2658         - Off by one error in SetTop
2659         - Disable DoubeBuffering
2660         
2661 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2662
2663         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
2664           control as much as necessary in order to make it entirely visible,
2665           instead of centering the control in the container (matches MS
2666           behaviour). CalculateCanvasSize: we need to take the current scroll
2667           position into account when calculating the maximum canvas,
2668           otherwise the following scenario will fail: resize so that the
2669           scrollbars appear, use the scrollbars to scroll, resize again
2670           smaller, and now the canvas size is too small. Recalculate: when
2671           showing scrollbars make sure they start off at 0, and try to scroll
2672           the active control into view. Fixes #79540. HandleScrollBar: don't
2673           scroll anywhere if the scrollbar isn't visible.
2674
2675 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2676
2677         * ListView.cs: When focus changed, call Layout/Invalidate
2678         in the focused item to update the selected state (should show
2679         entire label when ListView is focused, and a part of it if is not).
2680         * ListViewItem.cs: When doing layout for LargeIcon, take into account
2681         for displaying the entire label not only the Focused state of the
2682         item, but also the Focused state of the ListView (match .Net
2683         behaviour).
2684
2685 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2686
2687         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
2688         Implement UseWaitCursor. 
2689
2690 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2691         Applying contributed patch from Sergey Volk.
2692
2693         * Clipboard.cs: Implement SetDataObject retry logic and new overload
2694         of SetDataObject.
2695         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
2696
2697 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2698
2699         * Control.cs: Implement DrawToBitmap.
2700
2701 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2702         Applying contributed patch from Stefan Noack.
2703         
2704         * Control.cs: Add [Get|Set]AutoSizeMode.
2705
2706 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2707
2708         * MdiClient.cs: Unmerge menus when the last child is closed.
2709
2710 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2711
2712         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
2713         * ToolStripManager.cs: Call Merge on DropDowns.
2714         [Fixes bug #81477]
2715
2716 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2717
2718         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
2719           uints.
2720         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
2721           visibility. We can't create forms visible, since we have to set the
2722           owner before making the form visible (otherwise Win32 will do
2723           strange things with task bar icons). The problem is that we set the
2724           internal is_visible to true before creating the control, so
2725           is_changing_visible_state is the only way of determining if we're
2726           in the process of creating the form due to setting Visible=true -
2727           this works because SetVisibleCore explicitly makes the form
2728           visibile afterwards anyways. Fixes #80775.
2729
2730 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2731
2732         * ThemeWin32Classic.cs: When drawing ListViewItems,
2733         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
2734         or LargeIcon _and_ item is not focused (match .Net behaviour).
2735
2736 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2737
2738         * Control.cs, Form.cs: Fix some obsolete method warnings.
2739
2740 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2741
2742         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
2743         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
2744
2745 2007-05-04  Andreia Gaita  <avidigal@novell.com>
2746
2747         * ContainerControl.cs: Fix active_control attribution when going
2748         up the parent chain so that the first parent container gets the control
2749         and the rest of the parent containers get the child containers (skips
2750         non-containers). Fixes #80729
2751
2752 2007-05-04  Randolph Chung  <tausq@debian.org>
2753
2754         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
2755         [Fixes bug #81499]
2756
2757 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2758
2759         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
2760           takes a size parameter, since the CreateParam's size isn't true for
2761           minimized forms. Fixes #81518,
2762
2763 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2764
2765         * Form.cs: Add OnDeactivateInternal.
2766         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
2767
2768 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2769
2770         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
2771           accessing the parent. Fixes #81508.
2772
2773 2007-05-03  Chris Toshok  <toshok@ximian.com>
2774
2775         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
2776         2.0 block, pass listposition + 1 to ChangeRecordState when a row
2777         was added before the current listposition.  Fixes the
2778         TestInsertRowBeforeCurrent unit test.
2779
2780 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
2781
2782         * Application.cs: Add RaiseIdle.
2783         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
2784         XplatUIX11.cs: Implement RaiseIdle.
2785
2786 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
2787         corcompare work: N - Z
2788         * NotifyIcon.cs
2789         * ProgressBar.cs
2790         * RadionButton.cs
2791         * ScrollableControl.cs
2792         * SplitContainer.cs
2793         * SplitterPanel.cs
2794         * StatusBar.cs
2795         * SystemInformation.cs
2796         * TabControl.cs
2797         * TableLayoutControlCollection.cs
2798         * TableLayoutPanel.cs
2799         * TabPage.cs
2800         * ToolBar.cs
2801         * ToolBarButton.cs
2802         * ToolStrip.cs
2803         * ToolStripComboBox.cs
2804         * ToolStripContainer.cs
2805         * ToolStripContentPanel.cs
2806         * ToolStripDropDown.cs
2807         * ToolStripDropDownItem.cs
2808         * ToolStripDropDownMenu.cs
2809         * ToolStripItem.cs
2810         * ToolStripItemCollection.cs
2811         * ToolStripMenuItem.cs
2812         * ToolStripPanel.cs
2813         * ToolStripSplitButton.cs
2814         * ToolTip.cs
2815         * TreeNode.cs
2816         * TreeNodeCollection.cs
2817         * TreeNodeMouseHoverEventArgs.cs
2818         * TreeView.cs
2819
2820 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
2821
2822         * ContextMenu.cs: Add public method Show with alignment property to 2.0
2823         stuff. Thanks aatdark for the patch. 
2824
2825 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2826
2827         * GridItem.cs: Implement 2.0 Tag property.
2828
2829 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
2830
2831         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
2832         count instead of Nodes.Length.  [Fixes bug #81448]
2833
2834 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2835
2836         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
2837         [Fixes bug #81506]
2838
2839 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2840         corcompare work: A - M
2841         * BindingNavigator.cs
2842         * Button.cs
2843         * ButtonBase.cs
2844         * CheckBox.cs
2845         * Control.cs
2846         * FlowLayoutPanel.cs
2847         * Form.cs
2848         * Label.cs
2849         * LinkLabel.cs
2850         * ListView.cs
2851
2852 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2853
2854         * Application.cs: Give toolstrips a chance to process mnemonics.
2855         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
2856         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
2857         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
2858
2859 2007-05-01  Jackson Harper  <jackson@ximian.com>
2860
2861         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
2862         wider area too.
2863         - Don't set the BoundsSpecified
2864
2865 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2866
2867         * Application.cs: When using the toolstrip shortcut mechanism, allow the
2868         message to pass through to a regular control if it hosted by a toolstrip.
2869         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2870         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
2871
2872 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2873
2874         * TextRenderer.cs: Use the flags argument when using the MeasureString
2875         fallback algorithm.
2876
2877 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2878
2879         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
2880         the MDI menu item.  [Fixes bug #81483]
2881
2882 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
2883
2884         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
2885         string. When setting Name to null, use zero-length string instead.
2886
2887 2007-04-29  Andreia Gaita  <avidigal@novell.com>
2888
2889         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
2890         DeselectTab). Implement missing 2.0 TabPageCollection methods
2891         (Add, ContainsKey, RemoveByKey, IndexOfKey)
2892
2893 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
2894
2895         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
2896
2897 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
2898
2899         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
2900         Fixes bug #81479. Include details of exception when LoadFile fails.
2901
2902 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
2903
2904         * DrawListViewSubItemEventArgs.cs: Added missing setter
2905
2906 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2907
2908         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
2909         Hide methods (not complete). Implement missing 2.0 OnPopup event.
2910
2911 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2912
2913         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
2914         removed in ly last commit (it was breaking the Label edit feature).
2915
2916         * ThemeWin32Classic.cs: When drawing a ListViewItem use
2917         StringAlignment.Near for LineAlignment (match .Net).
2918
2919 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2920
2921         * TabControl.cs: Change SetTab so it adds the tabpage to the list
2922         of controls if it isn't already there - was blowing up when doing
2923         tabcontrol.TabPages[i]=new TabPage(). 
2924         SetTab now does a replace by removing the page at the index. 
2925         Add a new InsertTab method that inserts a page in a given index 
2926         instead of replacing. 
2927         Implements TabPageCollection.Insert(int, TabPage).
2928
2929 2007-04-27  Chris Toshok  <toshok@ximian.com>
2930
2931         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
2932         internal handler that can be invoked from our subclasses.)  Also,
2933         add a comment to PushData about how we need to fix it.
2934
2935         * CurrencyManager.cs: tons of changes here.  trying to get things
2936         matching the behavior of .net wrt event orders (ItemChanged,
2937         CurrentChanged, PositionChanged.)  I've implemented a private .net
2938         symbol (ChangeRecordState) that appears in stack traces because
2939         it's actually easier to do this than to effective inline all its
2940         various behaviors at every call site.
2941
2942         * RelatedPropertyManager.cs: guard against an exception here by
2943         not using parent.Current if the position is set to -1 (if the
2944         parent datasource is cleared, for instance).
2945
2946         * Binding.cs: don't parse data in PushData (this might be wrong,
2947         but it jives with MS's behavior.)  Also, don't call PushData when
2948         we get a CurrentChanged event.
2949
2950 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2951
2952         * WebBrowser.cs,
2953           WebBrowserBase.cs,
2954           WebBrowserSiteBase.cs,
2955           HtmlDocument.cs: Added stubbed out classes, no real implementations 
2956           yet.
2957
2958 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2959
2960         * MainMenu.cs: In draw method without parameters call draw method with 
2961         PaintEvent, another one (just rect) adjust rectangle and we dont need it
2962         as Rect property is already adjusted. Fixes #80694.
2963
2964 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
2965
2966         * Application.cs: Need to handle keyboard menu deselection here.
2967         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
2968         navigation, allowing keyboard to work on X11.
2969         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
2970
2971 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2972
2973         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
2974         menu bar. It fixes some drawing issues in menu bar.
2975
2976 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2977
2978         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
2979         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
2980         when <alt> key is pressed.
2981
2982 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
2983
2984         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
2985         example just set visible to false and make this prevent from other problems.
2986         In SystrayAdd always remove pending expose. Fixes #81072.
2987
2988 2007-04-26  Marek Safar  <marek.safar@gmail.com>
2989
2990         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
2991         value is set.
2992
2993 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2994
2995         * ListView.cs: Added three missing 2.0 events and corresponding
2996         EventHandlers. Added the OwnerDraw property.
2997         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
2998
2999 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3000
3001         * DrawListViewItemEventArgs.cs
3002         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
3003
3004 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3005
3006         * TextControl.cs: Fixed typo in constructor
3007
3008 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
3009
3010         * Application.cs: Create a shortcut path so that currently selected
3011         MenuStrips can intercept keyboard events without having focus.
3012         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
3013         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
3014         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
3015         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
3016         generate WM_SYSCOMMAND message in X11 for other platforms.
3017         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
3018         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
3019         * ToolStripSplitButton.cs: Add DefaultItem property.
3020         
3021 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
3022
3023         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
3024         fixes some menu draw problem on Windows with border diferent from default
3025         it also fixes #81403.
3026
3027 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3028
3029         * Form.cs: Refactor WndProc into separate methods, just like Control is
3030           doing it.
3031
3032 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3033
3034         * Control.cs: set_Text: move the call to the driver into a seperate
3035           virtual method so that Form can override it.
3036         * MaskedTextBox.cs: Corcompare fixes.
3037         * Form.cs: Override UpdateWindowText and only update the styles if the
3038           form has been shown (fixes #81405).
3039
3040 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3041
3042         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
3043         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
3044         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
3045         the form lost focus or another control was clicked.
3046
3047 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
3048
3049         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
3050         fixed.
3051
3052 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3053
3054         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
3055           DrawListViewItemEventHandler.cs,
3056           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
3057           Added.
3058         * X11Structs.cs: More ToString implementation.
3059
3060 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3061
3062         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
3063         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
3064
3065 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3066
3067         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
3068           handle.
3069         * FormCollection.cs: Don't add a form if it's already in the
3070           collection.
3071         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
3072           according to behaviour and MSDN. The ownerWin32 is the active
3073           window at the moment when we call ShowDialog, not the context's
3074           main form (the context's main form may open another form that opens
3075           a form with ShowDialog, the win32 owner is the second form). Add
3076           and remove forms to the Application.OpenForms in other places to
3077           better match MS behaviour. Add an IsActive property that raises
3078           On(de)Activated only if the active state has changed (we were
3079           raising OnDeactivated before OnActivated while creating forms).
3080         * Application.cs: Refactor Enabling/Disabling of windows for modal
3081           dialog loops out to separate methods, and restore the thread
3082           context when we quit the method. Fixes #81407.
3083
3084 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3085
3086         * ListView.cs: In ItemControl.HandleClicks, also fire 
3087         2.0 MouseClick or MouseDoubleClick events on the parent,
3088         not only the Click/DoubleClick events.
3089
3090 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3091
3092         * TableLayoutSettings.cs: 
3093         - Added a GetControls method and a support structure to help the 
3094         TypeConverter to enumerate the controls for     serialization. 
3095         - Added a new serialization constructor. 
3096         - Added a isSerialized flag initialized to true on the 
3097         serialization constructor so that the TableLayoutPanel.LayoutSettings 
3098         setter does not throw the designed NotSupportedOperation exception
3099         when the object is built through deserialization.
3100         - Implemented GetObjectData
3101         
3102         * TableLayoutPanel.cs: Added check on LayoutSettings.
3103
3104 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3105
3106         * ListView.cs: Report Click and DoubleClick events to the parent
3107         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
3108         from breaking the click count state when using dialog forms (Control
3109         reports the clicks in a similar fashion). In the previous behaviour
3110         the last WM_LBUTTONUP message in a  double click was sent to the
3111         ListView's form, instead of the ListView, which was breaking the click
3112         count for it. Fixes #80387.
3113
3114 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
3115
3116         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
3117
3118 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3119
3120         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
3121         us from created dropdowns for menu items that do not have subitems.
3122         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
3123         Check HasDropDownItems before calling DropDown so a dropdown will not be
3124         created if it isn't needed.
3125
3126 2007-04-24  Jackson Harper  <jackson@ximian.com>
3127
3128         * TreeView.cs: Set the first node to the selected node when we get
3129         focus if there is no selected node.
3130
3131 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3132
3133         * MimeIcon.cs: remove using blocks so that image streams are
3134         not disposed of. Fixes #80151
3135
3136 2007-04-24  Jackson Harper  <jackson@ximian.com>
3137
3138         * TextBoxBase.cs: Fixup the height of textboxes when the control
3139         is created.
3140
3141 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3142
3143         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
3144         for each ToolStripItem when the parent's RightToLeftChanged is called.
3145
3146 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3147
3148         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
3149           Fixes #80163.
3150         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
3151           property, so that the setter can be overriden too.
3152         * TextBox.cs: Change GetContextMenuInternal() to use
3153           ContextMenuInternal.
3154
3155 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3156
3157         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3158           #81406.
3159
3160 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3161
3162         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3163           #81406.
3164
3165 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3166
3167         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
3168           avoid duplicate work. Mostily skeleton code, it's not working at
3169           all yet.
3170
3171 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
3172
3173         * NotifyIcon.cs : stub for MouseClick event
3174         * Application.cs: stub for SetUnhandledExceptionMode
3175
3176 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
3177
3178         * BindingNavigator.cs : Initial (partial) implementation
3179
3180 2007-04-23  Jackson Harper  <jackson@ximian.com>
3181
3182         * TreeView.cs: Do not create the treeview's handle when setting
3183         the scroll position.
3184         - ExpandAll needs to compute the scrollbars so it knows which
3185         position to set the bar too.
3186         * TreeNode.cs: 
3187         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
3188
3189 2007-04-23  Jackson Harper  <jackson@ximian.com>
3190
3191         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
3192         key. Fixes #81408.
3193
3194 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
3195
3196         * ToolStripItem.cs: Make GetImageSize internal.
3197         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
3198         need to draw an item.  Fixes a reported issue where images on menus
3199         that were not 16x16 were drawing incorrectly.
3200
3201 2007-04-21  Miguel de Icaza  <miguel@novell.com>
3202
3203         * Padding.cs: Use the converter, fixes the resgen2 issue with
3204         XMLNotePad. 
3205
3206 2007-04-21  Jackson Harper  <jackson@ximian.com>
3207
3208         * TreeView.cs: Dont try to unhighlight the selected node if there
3209         isn't a selected node.
3210
3211 2007-04-21  Jackson Harper  <jackson@ximian.com>
3212
3213         * UpDownBase.cs:
3214         * TextBoxBase.cs:
3215         * ListView.cs:
3216         * ListBox.cs:
3217         * TreeView.cs: Use the InternalBorderStyle property to set the
3218         initial border style, this forces the client rectangle to be sized
3219         correctly.
3220
3221 2007-04-20  Jackson Harper  <jackson@ximian.com>
3222
3223         * TreeView.cs: Simplify scrolling to the last node after expanding
3224         all.
3225         - Fix some off by ones with setting the bottom.
3226
3227 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3228
3229         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
3230         that.  We were incorrectly doing it the other way around.  Also,
3231         update ClientSize if we change the BorderStyle before the control
3232         is created.
3233
3234 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3235
3236         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3237         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3238         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
3239         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3240         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3241         Caption to CaptionHeight.
3242         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
3243         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
3244         and FixedFrameBorderSize to return value from current XplatUI driver.
3245         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
3246         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
3247         and FixedFrameBorderSize using win32 API. Renamed Caption to
3248         CaptionHeight.
3249         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
3250         * SystemInformation.cs: Fixed typo in BorderSize.
3251
3252 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3253
3254         * XplatUI.cs: Added MenuAccessKeysUnderlined.
3255         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
3256         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
3257         returning false.
3258         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
3259         value from XplatUI driver.
3260         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
3261         SystemParametersInfo.
3262         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
3263         override.
3264         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
3265         returning false.
3266
3267 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3268
3269         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
3270
3271 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3272
3273         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
3274
3275 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3276
3277         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
3278         MenuStrips that contain ToolStripSeparators.
3279
3280 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3281
3282         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
3283           DefineStdCursorBitmap.
3284         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
3285           has been created off a standard cursor. This is used to get a
3286           bitmap of the standard cursor when Draw or DrawStretched is called
3287           in order to draw the cursor.
3288         * X11Structs.cs: Added XcursorImage and XcursorImages.
3289         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
3290           DefineStdCursorBitmap.
3291         * Cursors.cs: Update all relevant creations of Cursor to use the new
3292           internal constructor.
3293
3294 2007-04-19  Jackson Harper  <jackson@ximian.com>
3295
3296         * TextBox.cs: Move the has_been_focused into the base control, so
3297         some of the text adding methods can manipulate it (probably time
3298         for a better name for this flag too).
3299         - Call a new version of selectall that doesn't scroll
3300         * TextBoxBase.cs: When we append text, if the document is empty,
3301         don't scroll.  If the document has text already, we scroll to the
3302         end of the appended text.
3303         - When the text is changed, we reset the has_been_focused, so the
3304         next time the control gets focused, all the text is selected.
3305
3306 2007-04-19  Jackson Harper  <jackson@ximian.com>
3307
3308         * TextControl.cs: Move the margins to the document, add a method
3309         so the margin sizes can be updated.
3310         * TextBoxBase.cs: When the border style is changed, update the
3311         border sizes.
3312
3313 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
3314
3315         * Control.cs: Respect DefaultPadding.
3316         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
3317         padding into account.
3318         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
3319
3320 2007-04-19  Jackson Harper  <jackson@ximian.com>
3321
3322         * TextControl.cs: Oops, we need to use the ClientRect not the
3323         bounds here.
3324
3325 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3326
3327         * ListView.cs: In ItemControl.ItemsMouseDown, take into
3328         account the double clicks when CheckBoxes are used and
3329         the pointer is inside the checkbox. Fixes part of #81191.
3330
3331 2007-04-18  Jackson Harper  <jackson@ximian.com>
3332
3333         * TextControl.cs: Pressing the end key shouldn't move the caret
3334         past the line ending.
3335         * TextBoxBase.cs: We can still delete if we are in the line
3336         ending and the combine will just kill the existing line ending.
3337
3338 2007-04-18  Jackson Harper  <jackson@ximian.com>
3339
3340         * TextControl.cs: We can't move lines, then invalidate their
3341         bounds, we need to get the old bounds and combine that with the
3342         new bounds.
3343         * TextBoxBase.cs: Before combining two lines for a delete, we need
3344         to invalidate the area of the old line, since that will be moved
3345         in the combine operation.
3346
3347 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
3348
3349         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
3350         with transparent background. Fixes #80482.
3351
3352 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
3353
3354         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
3355         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
3356         [Fixes bug #81391]
3357
3358 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3359
3360         * CreateParams.cs: Add a couple of helper methods and do a less string
3361           concatenation in ToString.
3362         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
3363           overload that takes a Control parameter, since this method may be
3364           called before a control is assigned to the hwnd (from
3365           CreateWindow), and update CreateWindow to use the new overload. In
3366           GetMenuOrigin subtract the title bar from the y position if the
3367           form has a window manager (since we're painting it and not X).
3368         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
3369           CreateParams to calculate the origin (since border sizes may vary).
3370           In ScreenToMenu only subtract the title height if we actually have
3371           a title.
3372         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
3373           mdi children never have menus of themselves.
3374         * InternalWindowManager.cs: Implement menu handling like form does.
3375           Added GetMenuOrigin to calculate the menu origin, can't use the
3376           CreateParams from the form like normally since it's lying.
3377         * Hwnd.cs: Implement GetBorderSize better (in the sense more
3378           windows-like) and add Inflate and comparison operators to the
3379           Borders type. When calculating MenuOrigin and it's a form with a
3380           window manager, use the window manager to calculate it.
3381
3382 2007-04-17  Chris Toshok  <toshok@ximian.com>
3383
3384         * Control.cs (CreateControl): turns out in 2.0 we don't need this
3385         OnBindingContextChanged thing here.  It's only generated from
3386         ContainerControl.OnCreateControl.  Fixes a newly written unit test
3387         - BindingTest.BindingContextChangedTest4.
3388         
3389 2007-04-17  Jackson Harper  <jackson@ximian.com>
3390
3391         * ScrollBar.cs: When setting values, make sure the current
3392         position stays within the new values range.
3393
3394 2007-04-17  Chris Toshok  <toshok@ximian.com>
3395
3396         * Control.cs (CreateControl): talk about a bizarre corner case.
3397         Don't emit OnBindingContextChanged here if we're a parentless
3398         control (i.e. if we're a form.).  Fixes
3399         BindingTest.BindingContextChangedTest2.
3400
3401 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3402
3403         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
3404         from win32. Fixes #81255.
3405
3406 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3407
3408         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
3409         already present in CalculateButtonTextAndImageLayout.
3410
3411 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3412
3413         * XplatUIX11.cs: When setting min/max size for a window we need to
3414           translate the coordinates to x coordinates. Create an overload of
3415           SetWindowMinMax that takes a CreateParams handling this, and change
3416           SetWMStyles to call this function (can't use Control.FromHandle in
3417           the SetWindowMinMax to get the control/CreateParams from the handle
3418           because the handle might not have been assigned to the control
3419           yet). Fixes #81371.
3420
3421 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3422
3423         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
3424         if StateImageList is non-null and it has less than two items (match MS
3425         behaviour). Also, in HandleNavKeys handle the Space key, calling
3426         the new ToggleItemsCheckState method, which tries to change the
3427         checked state of the selected items. Fixes part of #81191.
3428
3429 2007-04-16  Jackson Harper  <jackson@ximian.com>
3430
3431         * RichTextBox.cs: namespace cleanup.
3432
3433 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3434
3435         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
3436
3437 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3438
3439         [Fixes #79447]
3440         * Control.cs: Call invalidate in set_Region.
3441
3442         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
3443         it dont works here.
3444
3445 2007-04-16  Jackson Harper  <jackson@ximian.com>
3446
3447         * TextBoxBase.cs: When enter is pressed, we need to update all
3448         lines below the current.
3449
3450 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
3451
3452         * MdiClient.cs: Implement implicit menu merging for MDI
3453         children.  When a child form is active, if it has a menustrip
3454         and the parent form has a MainMenuStrip, automatically merge
3455         the menus.
3456
3457 2007-04-15  Andreia Gaita  <avidigal@novell.com>
3458
3459         * TabControl.cs: Refactored sizing methods to not repeat
3460         code all over the place. Tab bounds are now calculated
3461         as if alignment is top and single line, and only when 
3462         setting the bounds are the positions adjusted according
3463         to alignment. Replaced hardcoded positions, spacings and
3464         paddings by getting the values the ThemeEngine. 
3465         Fixes #79619.
3466         
3467         * Theme.cs: Change TabControl properties and methods so
3468         that all start with TabControl*. Added more properties
3469         to help remove hardcoded values on tabcontrol.
3470         Add CPDrawBorder3D declaration so the Theming classes
3471         can access it.
3472         
3473         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
3474
3475         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
3476         on the Theming namespace, and call the appropriate methods here.
3477         Change CPDrawBorder3D to public.
3478
3479 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3480
3481         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
3482         the control after firing the OnMouseUp event, instead of sending
3483         the message before the mentioned event. This is so we can match the
3484         MS behaviour. Fixes part of #80385.
3485
3486 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3487
3488         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
3489         RightToLeft property.
3490
3491 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3492
3493         * ToolStrip.cs: Add properties and internal methods to support merging.
3494         * ToolStripItem.cs: Add MergeAction and MergeIndex.
3495         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
3496         not trigger reparenting or layouts.
3497         * ToolStripManager.cs: Add Merge and RevertMerge methods.
3498         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
3499         is hosting the overflow menu.
3500
3501 2007-04-13  Jackson Harper  <jackson@ximian.com>
3502
3503         * TextControl.cs: Set the line ending correctly for the first
3504         inserted line.
3505
3506 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3507
3508         * Theme.cs: Update GetMethod to get the new definition for 
3509         KnownColors.Update (and fix theme color updates).
3510
3511 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
3512
3513         * MessageBox.cs: Fix some test and button position.
3514
3515 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3516
3517         * Form.cs: Consider the implicit controls in
3518         GetRealChildAtPoint. We need it since this method
3519         is called on Form when handling the some messages in
3520         WndProc, and need to consider those implicit ones too.
3521         Fixes #80385.
3522
3523 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
3524
3525         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
3526         if there are no ShortcutKeys set.
3527         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
3528         set, use it when painting.
3529
3530 2007-04-12  Jackson Harper  <jackson@ximian.com>
3531
3532         * TextControl.cs: Fix some off-by-one issues in line duplication
3533         and insertion in the undo manager. Also, overwrite the first tag
3534         of a line on insert, if it is just a zero lengthed tag. This
3535         prevents us from getting an extra stranded tag at the beginning of
3536         the first line.
3537
3538 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
3539
3540         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
3541         to calculated proper size including when handle was not created yet.
3542
3543 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3544
3545         * MdiWindowManager.cs: When moving a form, allow the form to be moved
3546           when the mouse is outside of it's parent's client rectangle. Fixes
3547           #79982 (take 3, part 2).
3548
3549 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3550
3551         * X11Structs.cs: Add a few ToString() overrides.
3552         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
3553           the window location in a window-manager independent way. Reworked
3554           FrameExtents, it now actually works. Reworked AddConfigureNotify
3555           and ReparentNotify handling to use GetTopLevelWindowLocation
3556           instead of the earlier, more hacky solution. Reworked SetWMStyles,
3557           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
3558           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
3559           for all other windows (fixes #81281 part 1), a toolwindow is hidden
3560           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
3561           and generally refactored to do as few calculations as possible
3562           inside the lock.
3563
3564 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
3565
3566         * Theme.cs: Change "reflective-contract" between MWF and SD to 
3567         minimize # of calls, avoid Color serialization and avoid updating 
3568         every "known colors" each time a single one is updated.
3569
3570 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3571
3572         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
3573         when not readonly and the text is explicitly set. Code style updates.
3574         * DataGridTableStyle.cs: Removed extra line.
3575         * DataGrid.cs: Code style updates. Removed extra whitespace.
3576         * DataGridColumnStyle.cs: Code style updates. Removed extra 
3577         whitespace.
3578
3579 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3580
3581         * XplatUIX11.cs: Added comment that "fixes" #80021.
3582
3583 2007-04-09  Jackson Harper  <jackson@ximian.com>
3584
3585         * TextControl.cs: We don't need this -1 on the line count anymore.
3586
3587 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3588
3589         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
3590         entered value to underlying type, and convert it back to a string to
3591         apply formatting. Modified GetFormattedValue to use TypeConverter
3592         if available.
3593
3594 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
3595
3596         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
3597         Use SubItems property when we want to ensure there's at least one
3598         subitem. Modified SubItems property to ensure there's always at least
3599         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
3600         the NRE's reported by MS.
3601
3602 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
3603
3604         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
3605         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
3606         Spaces to tabs. Removed extra tabs.
3607
3608 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
3609
3610         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3611         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
3612
3613 2007-04-06  Jackson Harper  <jackson@ximian.com>
3614
3615         * TextBoxBase.cs: When a delete removes a line, recalculate all
3616         lines below that line (they need to get offsets setup correctly)
3617         and invalidate.
3618
3619 2007-04-05  Jackson Harper  <jackson@ximian.com>
3620
3621         * TextControl.cs: We need to invalidate across the width of the
3622         document when we are invalidating multiple lines.
3623         * TextBoxBase.cs: Don't delete into the line ending.
3624
3625 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3626
3627         * ListView.cs: Restore the check for the MouseHover event
3628         in ListView. It looks like the ListView fires more than one MouseHover
3629         event when HoverSelection is true  _only_ in weird-corner scenarios, but
3630         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
3631         event.
3632
3633 2007-04-05  Mike Kestner  <mkestner@novell.com>
3634
3635         * ListView.cs : raise MouseDown before updating selection.
3636         [Fixes #80373 tab 1&3]
3637
3638 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3639
3640         * ToolStripRenderer.cs: Add static method to mirror image.
3641         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
3642         and RightToLeftAutoMirrorImage.
3643         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
3644
3645 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3646
3647         * ToolStripSplitStackLayout.cs: Support Alignment property.
3648         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
3649
3650 2007-04-05  Jackson Harper  <jackson@ximian.com>
3651
3652         * TextControl.cs: Move around the line endings when crossing line
3653         boundaries.
3654         - When combining lines, strip the ending text off the first line.
3655
3656 2007-04-05  Jackson Harper  <jackson@ximian.com>
3657
3658         * TextControl.cs:
3659         * TextBoxBase.cs: Try to never move the cursor into the line
3660         ending.
3661         
3662 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3663
3664         * ToolStripItem.cs: Make sure we aren't firing mouse events when
3665         the item is disabled.  Also add a few missing methods.
3666
3667 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3668
3669         * ListView.cs: We don't need the MouseEnter/MouseLeave check
3670         to fire just one MouseHover event when HoverSelection is true, since
3671         .Net does fire more than one MouseHover event in that scenario. Also,
3672         fix the selection in HoverSelection, by invoking UpdateMultiSelect
3673         if MultiSelect is true, instead of only setting ListViewItem.Selected.
3674         Finally, we need to reset the Hover logic in MouseMove, even when we
3675         don't have a selected item.
3676
3677 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3678
3679         * ToolStrip.cs: Add several missing methods, properties, and events.
3680
3681 2007-04-04  Chris Toshok  <toshok@ximian.com>
3682
3683         * DataGridTextBoxColumn.cs: set the bounds of the text box to
3684         (0,0,0,0) in Commit, as MS does.
3685
3686         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
3687         make sure we set CurrentRow on a row header click *before* calling
3688         Select.  This moves the current cell (and the textbox) to the new
3689         row.  The call to Select then hides the textbox, giving us the
3690         correct behavior.  Fixes #80362.
3691
3692         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
3693         (ListChangedHandler): reorder the position/current changed events,
3694         and call UpdateIsBinding in the ItemAdded case.
3695
3696         * GridColumnStylesCollection.cs: add some columns events, one of
3697         which raises the CollectionChanged event.
3698
3699 2007-04-04  Jackson Harper  <jackson@ximian.com>
3700
3701         * TextControl.cs: When we delete multiple selection lines
3702         invalidate the selection area, don't need to do that for single
3703         lines because the final update view will handle it.
3704
3705 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3706
3707         * Control.cs: When we CreateControl, we need to also create all of the
3708         control's children.  The child's OnLoad must also fire before the parent's
3709         OnLoad.  Fixes the toolbox size in PDN.
3710
3711 2007-04-04  Jackson Harper  <jackson@ximian.com>
3712
3713         * TextBoxBase.cs: When the user presses enter, insert a line
3714         ending into the text. (Maybe this would be a good spot for
3715         Environment.NewLine).
3716         * TextControl.cs: Remove undo manager hack, line endings get
3717         inserted properly now.
3718         
3719 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3720
3721         * MenuAPI.cs: 
3722         - Remove unneeded parameters in UpdateCursor.
3723         - Fix UpdateCursor to check if menu is active.
3724         - Call UpdateCursor when menu deactivate my click.
3725         [Fixes remaining issues from #80410]
3726
3727 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3728
3729         * Control.cs: GetRealChildAtPoint method added, it make an
3730         recursive child control search for the point. 
3731
3732         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
3733         menu.
3734
3735         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
3736
3737 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3738
3739         * Form.cs: Fix mouse position when send back mouse event after closes
3740         menu.
3741
3742 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3743
3744         * Form.cs: Simplify the BUTTONDOWN for active tracker.
3745
3746 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3747
3748         * Control.cs: Fix an issue where if a user resized a control inside
3749         a sizing method like OnResize, we would overwrite their explicit
3750         value.  Also, only call DefaultSize once in the constructor instead
3751         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
3752         nothing actually changed.
3753
3754 2007-04-03  Jackson Harper  <jackson@ximian.com>
3755
3756         * TextControl.cs: Don't attempt to copy text for lines with no
3757         text in them (technically this shouldn't happen, but we aren't
3758         always inserting line endings when we should be).
3759
3760 2007-04-03  Jackson Harper  <jackson@ximian.com>
3761
3762         * TextBoxBase.cs: Calculate the scrollbars before calculating the
3763         document, because this sets some of the document size properties
3764         that are needed.
3765
3766 2007-04-03  Jackson Harper  <jackson@ximian.com>
3767
3768         * TextBoxBase.cs: We need to calculate maximums even if this is
3769         not a multiline control, because the maxs are used for scrolling.
3770         - Display the caret after doing a page up/down, we need to
3771         manually display it because a proper CaretMoved event isn't
3772         triggered (this is because of the way the math is done to
3773         determine how far to scroll).
3774
3775 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3776
3777         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
3778         (ToolBar was relying on SetBoundsCore to default the values sent 
3779         base off of BoundsSpecified.)
3780
3781 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3782
3783         * DateTimePicker.cs: Change Text so that when a null value or empty
3784           string is assigned to the test we always raise ValueChanged and
3785           TextChanged (earlier implementation would only raise ValueChanged
3786           if the current date value was different from DateTime.Now).
3787
3788 2007-04-03  Andreia Gaita <avidigal@novell.com> 
3789
3790         * ButtonBase: Call update after invalidation, fixes #80194
3791
3792 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3793
3794         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
3795           #79335.
3796
3797 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3798
3799         * XplatUIX11.cs: SetWMStyles: If the control is a form with
3800           FormBorderStyle = None, don't give the window any decorations.
3801           Fixes #81276.
3802
3803 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3804
3805         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3806         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
3807           to check for is a mix of several styles (such as WS_CAPTION for
3808           instance).
3809         * Control.cs: Don't paint an area bigger than the client area when
3810           painting the background colour. Add an internal GetCreateParams.
3811           Update calls to XplatUI.CalculateWindowRect due to API change.
3812         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
3813           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
3814           the size if it hasn't been handled by any windows. When creating
3815           and moving windows, X wants the location of the entire window, but
3816           the size of the client window, so add
3817           TranslateClientRectangleToXClientRectangle,
3818           TranslateWindowSizeToXWindowSIze and
3819           TranslatedXWindowSizeToWindowSize to cope with this, and call them
3820           before every window creation and move. Update CalculateWIndowRect
3821           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
3822           In AddConfigureNotify don't do anything if the hwnd is a zombie
3823           (fixes the BadWindow we were getting while running the tests),
3824           always calculate the offsets when it's a parentless window, not
3825           only when reparented, and translate the window size, since we're
3826           getting the client size of the whole window, excluding entire
3827           window.
3828         * Theme.cs: Added BorderSizableSize.
3829         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3830           anymore. Update calls to XplatUI.CalculateWindowRect due to API
3831           chang
3832         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
3833           change. Fake the window styles here instead of in XplatUIWin32 so
3834           that all back-ends get the same window styles (and it's Form that's
3835           deciding when to use wm, not the Win32 backend anyways)
3836         * Hwnd.cs: Completely reworked GetWindowRectangle and
3837           GetClientRectangle - they are now passed a CreateParams and they
3838           only use Style and ExStyle to determine the rectangles (they should
3839           now work just like Win32AdjustWindowRectEx - though quite a few
3840           special cases are probably missing). They should also be 100%
3841           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
3842           == rect), and all numbers (borders, menu sizes) are taken from the
3843           current theme. Added a GetBorders helper function that will return
3844           the borders for any given CreateParams (including captions and
3845           menus), and GetBorderSize that returns the given border size only.
3846         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
3847           Hwnd.GetClientRectangle.
3848
3849 2007-04-02  Chris Toshok  <toshok@ximian.com>
3850
3851         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
3852         logic between the values we present to the user and the values
3853         which are stored in the column's property.  Also, don't call
3854         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
3855
3856 2007-04-02  Jackson Harper  <jackson@ximian.com>
3857
3858         * TextBoxBase.cs: Scroll faster!
3859
3860 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3861
3862         * StatusStrip.cs: Layout fixes for PDN.
3863         * ToolStrip.cs: Set item's available to true, and placement to main when
3864         added.
3865         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
3866         changing in setter before doing any work, add InternalVisible.
3867         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
3868         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3869         infinite loop.
3870
3871 2007-04-02  Jackson Harper  <jackson@ximian.com>
3872
3873         * TextBox.cs: LBUTTON does not make the textbox select all of it's
3874         text on focus.
3875
3876 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3877
3878         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
3879           Makes ToolStripComboBoxes show up again.
3880
3881 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3882
3883         * ListView.cs: Add a hover_pending field in ListView
3884         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
3885         cycle (we are resetting the MouseHover logic in XplatUI
3886         to handle HoverSelection). Fixes #80429.
3887
3888 2007-04-02  Jackson Harper  <jackson@ximian.com>
3889
3890         * TextControl.cs: Make sure the attributes get set on the last
3891         tag.
3892         - Still have to do the end tag if we have stepped all the ways to
3893         the end.
3894
3895 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3896
3897         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
3898         on an internal libgdiplus call when the information is already 
3899         available via the public API.
3900
3901 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3902
3903         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
3904           control is removed from a control collecftion.
3905         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
3906           Fixes FormPropertyTest (failed on rare occasions).
3907         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
3908           of Win32SetParent (when changing from no parent to a parent it
3909           might add the new parent's location in screen coordinates to this
3910           window's location).
3911         * Form.cs: Rework ChangingParent once again, now the handle is
3912           recreated whenever a FormWindowManager is added or removed (that is
3913           whenever a normal form is parented or abandoned). Also change
3914           CreateParams so that all non-toplevel windows always get the
3915           specified sice (StartupPosition is never considered for
3916           non-TopLevel forms).
3917         * ContainerControl.cs: Add ChildControlRemoved, the container control
3918           needs to be notified when a control is removed from it's
3919           collection, in the case the removed control is the active control.
3920
3921 2007-04-02  Jackson Harper  <jackson@ximian.com>
3922
3923         * RichTextBox.cs: Use the new methods for setting the font and
3924         color, these methods set the specified attribute without
3925         overriding the other attributes.
3926
3927 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3928
3929         * ToolStripPanel.cs: Fixes for better layouts in PDN.
3930
3931 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
3932
3933         * TextBox.cs: Added internal ChangeBackColor method to special-case
3934         Color.Empty. Added check for invalid ScrollBars value.
3935         * TextBoxBase.cs: Added internal ChangeBackColor method.
3936         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
3937         internal ChangeBackColor method to special-case Color.Empty. Added
3938         check for invalid ScrollBars value.
3939
3940 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
3941
3942         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
3943
3944 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3945
3946         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
3947         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
3948         [Based on submitted patch from Olivier Duff.]
3949
3950 2007-03-30  Jackson Harper  <jackson@ximian.com>
3951
3952         * TextBox.cs: Only select all on initial focus if the user has not
3953         specified a selection area.
3954
3955 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3956
3957         * UserControl.cs: Override CreateParams.
3958
3959 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3960
3961         [ Fixes #80995 ]
3962
3963         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3964         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
3965           check for is a mix of several styles (such as WS_CAPTION for instance).
3966         * Control.cs: Don't paint an area bigger than the client area when painting
3967           the background colour. Add an internal GetCreateParams. Update calls to
3968           XplatUI.CalculateWindowRect due to API change.
3969         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
3970           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
3971           hasn't been handled by any windows. When creating and moving windows, X
3972           wants the location of the entire window, but the size of the client
3973           window, so add TranslateClientRectangleToXClientRectangle,
3974           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
3975           to cope with this, and call them before every window creation and move.
3976           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
3977           removing DeriveStyles). In AddConfigureNotify don't do anything if the
3978           hwnd is a zombie (fixes the BadWindow we were getting while running the
3979           tests), always calculate the offsets when it's a parentless window, not
3980           only when reparented, and translate the window size, since we're getting
3981           the client size of the whole window, excluding entire window.
3982         * Theme.cs: Added BorderSizableSize.
3983         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3984           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
3985         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
3986           Fake the window styles here instead of in XplatUIWin32 so that all
3987           back-ends get the same window styles (and it's Form that's deciding when
3988           to use wm, not the Win32 backend anyways)
3989         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
3990           they are now passed a CreateParams and they only use Style and ExStyle
3991           to determine the rectangles (they should now work just like
3992           Win32AdjustWindowRectEx - though quite a few special cases are probably
3993           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
3994           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
3995           sizes) are taken from the current theme. Added a GetBorders helper
3996           function that will return the borders for any given CreateParams
3997           (including captions and menus), and GetBorderSize that returns the given
3998           border size only.
3999         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
4000           Hwnd.GetClientRectangle.
4001
4002 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4003
4004         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
4005           layout of the mdi children is handled by CreateParams. Fixes
4006           #79964,
4007
4008 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4009
4010         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
4011         processed.
4012
4013         * Form.cs: When active tracker mouse down is not processed, send event 
4014         back to control inside mouse position. [Fixes #81227]
4015
4016 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4017
4018         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
4019         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
4020         stealing focus from the active form on Windows.  (Control will be made
4021         visible in ShowWindow.)
4022
4023 2007-03-29  Mike Kestner  <mkestner@novell.com>
4024
4025         * ImageList.cs : add internal Changed event.
4026         * ListView.cs : hook up to StateImageList.Changed to perform
4027         invalidations when the the state icon list changes. [Fixes #81191]
4028
4029 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4030
4031         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
4032         to prevent tooltips from stealing focus from the active form on Windows.
4033
4034 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4035
4036         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
4037
4038         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
4039
4040 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4041
4042         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
4043         balloons.
4044
4045 2007-03-29  Jackson Harper  <jackson@ximian.com>
4046
4047         * TextControl.cs: When deleting text from non multiline textboxes,
4048         we need to update the entire document, because line offsets will
4049         be shifting.
4050
4051 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4052
4053         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
4054         added to theme, now we can create themes that uses diferent notify engines
4055         like notification-daemon from galago project or growl for Mac OS.
4056
4057 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4058
4059         * NotifyIcon.cs: Prevent Balloon to show in task bar.
4060
4061 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4062
4063         * XplatUIX11.cs: Prevent system to open more than one balloon.
4064
4065         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
4066         some compiler warning messages.
4067
4068 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4069
4070         [Fixes #79149]
4071
4072         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
4073
4074         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
4075         implemented, this methods is used by NotifyIcon.BalloonWindow class.
4076
4077         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
4078         systems.
4079
4080 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4081
4082         * ListViewItem.cs: Forgot to make Invalidate internal.
4083
4084 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4085
4086         * ListView.cs: Add a InvalidateSelection method to
4087         invalidate methods which are currently selected, and call
4088         it when setting FullRowSelect and HideSelection, instead of
4089         calling Redraw.
4090
4091 2007-03-28  Chris Toshok  <toshok@ximian.com>
4092
4093         * XplatUIX11.cs (UnmapWindow): reindent this block.
4094
4095         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
4096         the selection_start if we're moving the selection (that is, not
4097         extending it). Fixes bug #80461.
4098
4099 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4100
4101         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
4102         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
4103         create private ControlCollection.
4104
4105 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4106
4107         * Control.cs: We need to call OnVisibleChanged for our implicit
4108         children as well as our normal children.  Fixes scrollbars in
4109         comboboxes not showing up.
4110
4111 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4112
4113         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
4114         the check for IsHandleCreated first.  The check in CreateHandle is not
4115         good enough because CreateHandle can be overriden, and the override 
4116         should not be called if the handle is already created.
4117
4118 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4119
4120         * ToolStrip.cs: Remove MonoTODO for tooltips.
4121         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
4122         * ToolStripContainer.cs: Add custom ControlCollection class.
4123         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
4124         * ToolStripDropDown.cs: Add some missing properties/methods.
4125         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
4126         * ToolStripItem.cs: Remove MonoTODO for tooltips.
4127         * ToolStripManager.cs: Add IsShortcutDefined.
4128         * ToolStripOverflow.cs: Override LayoutEngine.
4129         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
4130         * ToolStripSeparator.cs: Add ImageKey.
4131
4132 2007-03-28  Jackson Harper  <jackson@ximian.com>
4133
4134         * TextControl.cs: If a char delete removes a line ending, we need
4135         to update the ending style.
4136         - Make sure the line ending calcs get called.
4137
4138 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4139
4140         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
4141           it was making the new code not work. Fixed a typo in the new code
4142           as well. Fixes #79826.
4143
4144 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4145
4146         * XplatUIWin32.cs:
4147         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
4148         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
4149         - SystrayBalloon method implemented.
4150         [Add support for notifyicon balloon on win32, #79149]
4151
4152 2007-03-27  Mike Kestner  <mkestner@novell.com>
4153
4154         * ThemeWin32Classic.cs : update StateImageList selection to mirror
4155         the ms behavior when only one image is added to the list.
4156         [Fixes #81191]
4157
4158 2007-03-27  Jackson Harper  <jackson@ximian.com>
4159
4160         * TextControl.cs: Improvements to non multiline line ending
4161         drawing/measuing.
4162
4163 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4164
4165         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
4166
4167 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4168
4169         * NotifyIcon.cs: 
4170         - Balloon message handling added.
4171         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
4172
4173         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
4174         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
4175         to SystrayBalloon to me like other Systray method, also a
4176         handle parameter added.
4177
4178 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4179
4180         * ListView.cs: Show scrollbars even when items.Count == 0
4181         but the columns Width is bigger than the ListView.Width.
4182         Also, when columns.Count == 0 set layout_wd and layout_ht
4183         to the ClientRectangle values, so we don't show any scrollbar
4184         in that case.
4185
4186 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4187
4188         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
4189
4190 2007-03-27  Jackson Harper  <jackson@ximian.com>
4191
4192         * RichTextBox.cs: The RTF library decodes the text properly for us
4193         now.
4194
4195 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4196
4197         * ListView.cs: Display HeaderControl even when columns.Count == 0.
4198         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
4199         ListView header (HeaderControl), instead of Control.BackColor.
4200
4201 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4202
4203         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
4204         Fixes tab control issues where controls would not show up because they
4205         never received their OnVisibleChanged call.
4206
4207 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4208
4209         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
4210         BalloonTipShown).
4211
4212 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4213
4214         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
4215         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
4216         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
4217         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
4218         the handle.  Fix WindowState by using the internal variable until we are 
4219         sure that we've been shown.
4220         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
4221         max or min.
4222         [Fixes bug #81198]
4223
4224 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4225
4226         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
4227           (at least borders). Fixes #79386 on Linux (with a small difference
4228           in behaviour: when trying to resize a caption-less window metacity
4229           shows the sysmenu. Resizing is still possible though).
4230         * XplatUIWin32.cs: When setting window styles send request an extra
4231           WM_NCCALCSIZE when it's a form without title (due to no text and no
4232           caption), since Win32 seems to calculate it wrong the first time we
4233           get the message, though the second time things work as they should.
4234         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
4235           newly reparented window might show up unparented. Update
4236           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
4237           there's no title text. Fixes #79386.
4238
4239 2007-03-27  Mike Kestner  <mkestner@novell.com>
4240
4241         * ListBox.cs : don't perform invalidations if the handle hasn't been
4242         created.  [Fixes #80753]
4243
4244 2007-03-27  Mike Kestner  <mkestner@novell.com>
4245
4246         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
4247         [Fixes #80428]
4248
4249 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4250
4251         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
4252         needed to implement Balloon.
4253
4254 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4255
4256         * ListViewItem.cs: In the constructors that take
4257         an array of strings, don't use ListViewSubItemCollection.AddRange
4258         method to add items, since we need to have a different behaviour (in
4259         the constructors we add an item for each null string, opposed to
4260         the behaviour of AddRange, which adds nothing).
4261
4262 2007-03-26  Andreia Gaita  <avidigal@novell.com>
4263
4264         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
4265
4266 2007-03-26  Jackson Harper  <jackson@ximian.com>
4267
4268         * TextControl.cs: Draw and measure line endings when in non
4269         multiline mode.
4270         - When searching the text, count the end of the last line as a
4271         word boundary.
4272
4273 2007-03-26  Jackson Harper  <jackson@ximian.com>
4274
4275         * RichTextBox.cs: The selection_start and selection_end don't
4276         really track the correct tags for the selection. So we'll manually
4277         compute the correct tag here.
4278
4279 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4280
4281         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
4282           and Continuous styles. Fixes #79469.
4283
4284 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4285
4286         * ToolStrip.cs: Implement Tooltips.
4287         * ToolStripItem.cs: Create internal method for determining tooltip.
4288
4289 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4290
4291         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
4292
4293 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4294
4295         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
4296         it prevents a problem thak keeps icon visible after application 
4297         closes on win32.
4298
4299 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4300
4301         * NotifyIcon.cs: Balloon properties and methods created.
4302
4303         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
4304         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
4305
4306 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
4307
4308         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
4309
4310 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4311
4312         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
4313         parameter indicates which aspects were explicit/user-set.
4314         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
4315
4316 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4317
4318         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
4319         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
4320         SmallChange, and Value (2.0).
4321         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
4322
4323 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4324
4325         * ListView.cs: Always set item_control.Width in LayoutDetails
4326         if View is Details. Setting it later in CalculateScrollBars
4327         in a not-so-corner scenario (the sum of columns width is
4328         not bigger than the ListView width when handle is created, and then
4329         that sum gets bigger by increasing the width of the columns)
4330         causes a very weird recursion path (which shouldn't be happening,
4331         since header_control sets it in CalculateScrollBars too). This bug
4332         appeared after Chris' fixes for handle created issues, so probably
4333         it's related to some handle-creation time.
4334
4335 2007-03-23  Chris Toshok  <toshok@ximian.com>
4336
4337         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
4338         case where there's an add row, just so we don't end up in a case
4339         where it's not displayed (this happens when the row is partially
4340         obscured).  Fixes bug #79574.
4341
4342 2007-03-23  Jackson Harper  <jackson@ximian.com>
4343
4344         * TextControl.cs:
4345         * TextBoxBase.cs:
4346         * RichTextBox.cs: Preserve line endings in the lines text buffer,
4347         also added an enum that represents the line ending type. 
4348
4349 2007-03-23  Andreia Gaita  <avidigal@novell.com>
4350
4351         * NumericUpDown.cs: Fix logic so Text and Value properties are not
4352         messed with in every method call, but only from DownButton, 
4353         UpButton, UpdateEditText() and ValidateText. Fixes #80346
4354
4355 2007-03-23  Chris Toshok  <toshok@ximian.com>
4356
4357         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
4358         format objects if the format spec is "".  Fixes bug #80889.
4359
4360 2007-03-22  Miguel de Icaza  <miguel@novell.com>
4361
4362         * ToolStripPanel.cs (Join): added stubs to build PDN3
4363
4364         * Control.cs (AutoScrollOffset): Add.
4365
4366         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
4367         property, its only implemented for Win32, on X11 it defaults to
4368         some hardcoded value.
4369
4370         * ToolStripItem.cs (AllowDrop): Add property
4371
4372 2007-03-22  Mike Kestner  <mkestner@novell.com>
4373
4374         * ListView.cs : in FullRowSelect Details mode, only enable box
4375         selection if the user clicks over the "item" column outside of the
4376         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
4377
4378 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4379
4380         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
4381           handle is not created yet.
4382         * Form.cs: Select: Don't call CreateHandle if the handle is already
4383           created, avoids a stack overflow on Windows when we are recreating
4384           controls.
4385         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
4386           they are made visible, and override AfterTopMostControl to keep
4387           them on top when other controls are brought to front.
4388           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
4389           or force_*scroll_visible is true (old implementation always shows
4390           scrollbars when needed, no matter what auto_scroll was set to).
4391         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
4392           IsHandleCreated check.
4393
4394 2007-03-22  Andreia Gaita  <avidigal@novell.com>
4395
4396         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
4397         row or col separator.
4398         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
4399
4400 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4401
4402         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
4403
4404 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4405
4406         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
4407         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
4408         every time. Fixes #80410.
4409
4410 2007-03-22  Chris Toshok  <toshok@ximian.com>
4411
4412         * BindingSource.cs (AddNew): partially implement.
4413
4414         remove a couple of NotImplementedException's
4415         to get bug #81148 closed.
4416
4417 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4418
4419         [Fixes #80380]
4420         
4421         * Control.cs:
4422         - UpdateCursor method added to update the screen cursor.
4423         - GetAvailableCursor method added to return cursor for enabled tree,
4424         it searches for cursor on control and it's parent's for enabled control.
4425         - Call UpdateCursor method on setter of Cursor property.
4426         - On setter of Enabled call UpdateCursor when it is false, we need to
4427         change cursor to normal (or to this parent cursor) because cursor 
4428         setting theres no effect to disabled controls.
4429         - Some minor source changes to follow the coding style guidelines.
4430
4431         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
4432         controls.
4433
4434 2007-03-22  Chris Toshok  <toshok@ximian.com>
4435
4436         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
4437         generates.
4438
4439 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4440
4441         * XplatUIX11.cs: Implement default locations for forms.
4442         * Form.cs: Completely rework startup location for forms. Fixes #79964.
4443         * Hwnd.cs: Add previous_child_startup_location (to track the current
4444           startup location for any child forms of the current form) and
4445           previous_main_startup_location (to track the startup location for
4446           the current toplevel form).
4447
4448 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4449
4450         * Control.cs: Don't trigger a layout if an implicit control is added
4451         that isn't visible.  Also, don't notify the owner when an implicit control
4452         is added.  (Owners shouldn't even know about their implicit controls.)
4453
4454 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4455
4456         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
4457         to save some re-layouts.
4458
4459 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
4460
4461         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
4462         [Fixes #81203]
4463
4464 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4465
4466         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
4467         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
4468
4469 2007-03-21  Mike Kestner  <mkestner@novell.com>
4470
4471         * ListView.cs : disable selection update for non-left button clicks
4472         with mods and over selected items.  [Fixes #80524]
4473
4474 2007-03-20  Jackson Harper  <jackson@ximian.com>
4475
4476         * TextControl.cs:
4477         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
4478         \r\r\n, \n.
4479
4480 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4481
4482         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
4483           very probably a more complicated calculation there. Update the
4484           textbox' ForeColor and BackColor when the ComboBox' colors are
4485           changed. Change the border change in LayoutComboBox to only affect
4486           the textbox, not all the calculations there. Seems to fix most of
4487           #79436.
4488
4489 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4490
4491         * ComboBox.cs: Handle Home and End keys as well as all combinations of
4492           modifiers + navigation keys as input keys, enables advanced text
4493           selection in the combobox (like Shift+Left Arrow for instance).
4494           ComboTextBox now overrides Focused and returns whatever
4495           ComboBox.Focused returns, since it really should be focused
4496           whenever the ComboBox is. Fixes #80795. Also make the border around
4497           the text box one pixel bigger, as mentioned in #79436.
4498
4499 2007-03-20  Jackson Harper  <jackson@ximian.com>
4500
4501         * TreeView.cs: Don't offset the images, this was causing some
4502         artifacts when expanding/collapsing with images that were the
4503         exact height of the treenode.
4504
4505 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4506
4507         * TrackBar.cs: Query the theme for the correct value when the mouse
4508           moves and the thumb is pressed. 
4509         * Theme.cs: Added TrackBarValueFromMousePosition
4510         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
4511           implementation was updating the trackbar value when drawing, now
4512           the drawing methods only draw. Fixes #80900. Refactored the
4513           calculations out to TrackBarValueFromMousePosition and
4514           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
4515           according to the mouse position whenever it wants to. Changed the
4516           light coloured pen when drawing the thumb from ControlLight to
4517           ControlLightLight, because the ControlLight is the same colour as
4518           the background so the 3D effect is lost. 
4519
4520 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4521
4522         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
4523         defined. Fixes #80784.
4524
4525 2007-03-20  Marek Habersack  <mhabersack@novell.com>
4526
4527         * ContextMenuStrip.cs: align with the change introduced in
4528         revision 74664.
4529
4530 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4531
4532         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
4533         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
4534         in SetTopmost.
4535
4536 2007-03-19  Chris Toshok  <toshok@ximian.com>
4537
4538         * Control.cs (WmPaint): don't make use of the Handle property
4539         after an event is emitted, as the user could have closed the
4540         form/destroyed the control.  Store the Handle in a local variable
4541         and make use of that.  Fixes bug #80768.
4542
4543 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4544
4545         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
4546         behavior in X11 environments.
4547
4548 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4549
4550         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
4551         because on setter of topmost we dont call SetTopmost when handle is not
4552         created.
4553
4554 2007-03-20  Jackson Harper  <jackson@ximian.com>
4555
4556         * TextControl.cs: Need to use SelectionLength () not
4557         selection_length, since that var is reset to -1.
4558         - Draw the caret when we don't have focus.
4559         * TextBox.cs: The selectall actually doesn't occur until the first
4560         focus.
4561         * TextBoxBase.cs: Need to update the caret position after a
4562         selectall.
4563         
4564 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4565
4566         * ListView.cs: Enable scrolling when using Tile view.
4567
4568 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4569
4570         [Fixes #80902]
4571
4572         * XplatUIDriver.cs: Abstract SetOwner method created.
4573
4574         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
4575         must be implemented and was masked as todo.
4576
4577         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
4578         GWL_HWNDPARENT.
4579
4580         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
4581         cheking for null owner to remove transient. The SetTopmost will be change
4582         on a decond step.
4583
4584         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
4585         SetTopmost. Now owned forms will work properly in win32 and X11.
4586
4587 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4588
4589         * MdiWindowManager.cs: Update function name.
4590         * Form.cs: After closing a form MdiParent is always null.
4591         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
4592           better what it should do: necessary book-keeping when the form is
4593           closed, it should not close the form itself.
4594
4595 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4596
4597         * ListViewItem.cs: Fix back and fore color. The subitems only
4598         use their own colors if they are set, otherwise use the listview's
4599         colors. Don't set default colors on constructor for subitem.
4600         Fixes #79315.
4601
4602 2007-03-19  Mike Kestner  <mkestner@novell.com>
4603
4604         * ListView.cs : make box selection for Details views with 
4605         FullRowSelect conform to MS behavior when clicking in the "item" 
4606         column and clicking outside the defined columns.
4607         [Fixes case 5-6 of #80374]
4608
4609 2007-03-19  Chris Toshok  <toshok@ximian.com>
4610
4611         * ScrollableControl.cs: create the controls from within the ctor,
4612         but don't actually add them until our handle is created.  this
4613         fixes a NRE possibility jpobst found (if you override OnLayout in
4614         a subclass, it's called before your ctor).  Also, add a
4615         IsHandleCreated guard to UpdateSizeGripVisibility as well.
4616
4617 2007-03-19  Jackson Harper  <jackson@ximian.com>
4618
4619         * TextBox.cs: Reduce the amount of invalidation we do.
4620         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
4621         some of them are true by default on MS.
4622         - Add some functions to reduce the amount of invalidates we do.
4623         * TextControl.cs: Less invalidation.
4624
4625 2007-03-19  Chris Toshok  <toshok@ximian.com>
4626
4627         [ Fixes #81773, and *seems* to fix #81553 as well ]
4628
4629         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
4630         AccumulateDestroyedHandles.  We need to do it *after* we send
4631         WM_DESTROY, as the user's code can access Control.Handle in
4632         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
4633         move the WM_DESTROY/zombie handling to before the call to
4634         XDestroyWindow.  For some reason without this ordering
4635         FormTest.RecreateHandle hangs.  This ordering is semantically
4636         equivalent, however, as XDestroyWindow is async anyway.
4637
4638 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
4639
4640         * RichTextBox.cs: Reset backcolor_set after setting default.
4641
4642 2007-03-19  Chris Toshok  <toshok@ximian.com>
4643
4644         * ScrollableControl.cs: the scroll position should not effect the
4645         canvas size.  commit patch from georgegiolfan@yahoo.com, which
4646         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
4647         
4648 2007-03-19  Chris Toshok  <toshok@ximian.com>
4649
4650         * ScrollableControl.cs: clean this up a bit.  create the
4651         scrollbars in the ctor and just show/hide them as needed.  Also,
4652         make hscroll_visible/vscroll_visible internal to Recalculate, and
4653         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
4654         everywhere else.  This seems to fix the scrollbars appearing
4655         beneath the content for me (i have *no* idea why that is,
4656         however.)
4657
4658 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4659
4660         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
4661         some redundacy for stuff in Anchor and Dock that base will take care of.
4662         [Fixes #80762]
4663
4664 2007-03-19  Mike Kestner  <mkestner@novell.com>
4665
4666         * ListView.cs : make box selection for Details views without 
4667         FullRowSelect dependent on the text bounds, not item bounds.
4668         * ListViewItem.cs : add an internal property to obtain the TextBounds
4669         in Details view.  [Fixes case 1-4 of #80374]
4670
4671 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4672
4673         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
4674         we're < 2.0. #78448 && #80316
4675
4676 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4677
4678         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
4679         have the same style available as the previously selected one.  Also,
4680         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
4681
4682 2007-03-19  Jackson Harper  <jackson@ximian.com>
4683
4684         * TextControl.cs: Add an alignment property that all new lines
4685         will be given.
4686         - Make sure to use the align shift when calculating the line's X
4687         position.
4688         * TextBox.cs: Set the alignment on the document as well as on all
4689         the document lines.
4690
4691 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4692
4693         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
4694           throw if setting the parent of an mdichild that already has an
4695           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
4696           AssemblyProductAttribute in the assembly, use the type's namespace (as
4697           MS seems to do). CreateControl: don't create the handle if the control
4698           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
4699           create handle if the control is not a form. Change FocusInternal to
4700           virtual so that it can be overriden by Form.
4701         * TextBox.cs: Update call to FocusInternal.
4702         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
4703           form is not a toplevel form when it's a mdi child, so update is_toplevel
4704           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
4705           hasn't been created. Show (IWin32Window): Don't allow this overload for
4706           toplevel windows. CenterToParent/CenterToScreen/Select: create the
4707           handle as MS does. SetVisibleCore: if called on a MdiChild and the
4708           parent isn't visible yet, save the visibility and restore it when the
4709           parent is made visible.
4710         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
4711           methods, since the visibility of the scrollbars can be changed from
4712           several places, not only from AutoScroll.
4713           [Fixes #81179]
4714
4715 2007-03-19  Jackson Harper  <jackson@ximian.com>
4716
4717         * RichTextBox.cs: Enable shortcuts by default.
4718         * TextBoxBase.cs: Add conditional shortcuts.  
4719
4720 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4721
4722         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
4723
4724 2007-03-19  Chris Toshok  <toshok@ximian.com>
4725
4726         [ Fixes bug #80604]
4727         
4728         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
4729         swallow the message we're waiting on, instead of delivering it, as
4730         this is only used for the WM_SHOWWINDOW raised from
4731         MapWindow/UnmapWindow, and the message needs to be generated
4732         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
4733         before doing the Map/Unmap.  Also make sure that the Hwnd is still
4734         alive after the message has been handled.
4735
4736         *before* the window is shown.
4737
4738         * Control.cs (CreateControl): guard a few more things inside the
4739         if (!is_created) block, as we might end up being called again -
4740         yay .net.
4741         (WmShowWindow): call CreateControl if we're showing the control.
4742
4743 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4744
4745         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
4746           controls without a handle if they have any parent with a handle. In
4747           Dispose add a check whether the handle is created or not before
4748           calling BeginInvoke, this removes the need of the extra disposing
4749           parameter (which was bogus anyway since it didn't prevent the
4750           invoke from happening, it only skipped the check for an existing
4751           handle, meaning that the invoke would call on an inexistent
4752           handle).
4753
4754 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4755
4756         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
4757         appears in taskbar.
4758
4759 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4760
4761         * MessageBox.cs:
4762         - Fixed a problem that dont show help button for messages with 3 buttons.
4763         - Refactory button size and position calculations, now dont use fixed 
4764         values, also fixed button sizes (#80043) and form's border space.
4765         - AddButton method created, now all other AddButton methods call this one.
4766         - Some other source code cosmetic changes.
4767
4768 2007-03-18  Jackson Harper  <jackson@ximian.com>
4769
4770         * RichTextBox.cs: Don't do this all fonts must match check if
4771         there is only one char selected.
4772
4773 2007-03-18  Jackson Harper  <jackson@ximian.com>
4774
4775         * TreeView.cs: ScrollWindow works properly now, so we don't need
4776         to screw around with the scroll area.  This fixes some artifacts
4777         when expanding and collapsing.
4778
4779 2007-03-18  Jackson Harper  <jackson@ximian.com>
4780
4781         * TextBoxBase.cs: Allow updating the selection position when the
4782         cursor is outside the textarea, but we have a capture.
4783         * TextControl.cs: A special case for when the cursor is outside
4784         the bounds of the TB.
4785         
4786 2007-03-18  Jackson Harper  <jackson@ximian.com>
4787
4788         * TextBoxBase.cs: Remove image pasting code for now.  There is no
4789         way to get an image on the clipboard right now anyways.
4790         * TextControl.cs:
4791         * RichTextBox.cs: Use the new RTF Picture class for pictures.
4792
4793 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4794
4795         * MessageBox.cs:
4796         - Set window properties in constructor intead of on CreateParams.
4797         - Remove topmost from Window ExStyle.
4798         - Set ShowInTaskbar to false.
4799         - Set form border to FixedDialog.
4800         - Some cosmetic changes and remove unneeded comments.
4801         - It fixes itens 2,3 and 4 of bug #80043.
4802
4803 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
4804
4805         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
4806         none was explicitly set. Fixes part of bug #79949.
4807
4808 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4809
4810         * ToolStripComboBox.cs: Add AutoComplete*.
4811
4812 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4813
4814         * ToolStripComboBox.cs: Add FlatStyle.
4815
4816 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
4817
4818         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
4819         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
4820
4821 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4822
4823         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
4824           CheckBox.cs, RadioButton.cs, BindingSource.cs,
4825           DataGridColumnStyle.cs: Remove warnings.
4826
4827 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4828
4829         * Menu.cs: MergeMenu: Check menu argument for null before looping over
4830           it.
4831         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
4832           visibility of mdi child forms. FormSizeChangedHandler: update the
4833           maximized size if size has changed while maximized.
4834         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
4835           creating the handle.
4836         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
4837           avoid creating the handle if not created.
4838         * XplatUI.cs: Update debug output.
4839         * XplatUIStructs.cs: Added ToString's for a couple of structs.
4840
4841 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
4842
4843         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
4844         ProcessCmdKey().
4845         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
4846         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
4847         Implement keyboard shortcuts.
4848
4849 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4850
4851         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
4852         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
4853         ColorDialog and all derived classes.
4854
4855 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4856
4857         [ Fixes bug #79828 ]
4858
4859         * ToolBar.cs:
4860         - Rename ToolBarButtonInfor to ToolBarItem.
4861         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
4862         - Maintain an array of ToolBarItem, used instead of ToolBarButton
4863         collection to be able add same button more than one time on a toolbar.
4864         - Refactory all properties and methods to use ToolBarItem. 
4865
4866         * ToolBarButton.cs: 
4867         - Remove all propeties and methods that is now in ToolBarItem.
4868         - Rectangle propery now gets the rectangle from first ToolBarItem to
4869         mimic win32 behavior.
4870         - Size calculation and layout methods also removed.
4871
4872         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
4873         ToolBarItem instead of ToolBarButton to right drawing buttons when
4874         same button/separator was added more than one time to ToolBar.
4875
4876         * ThemeNice.cs: Same as above. 
4877
4878 2007-03-15  Andreia Gaita  <avidigal@novell.com>
4879
4880         * XplatUIX11.cs: Fire extra MouseMove events right after
4881         MouseDown and MouseUp, emulating win32's <censored> behaviour
4882         for apps that rely on it.
4883
4884 2007-03-15  Jackson Harper  <jackson@ximian.com>
4885
4886         * TextControl.cs:
4887         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
4888         it is drawn on the controls client window and there is no NC
4889         area.
4890         - Set the background color to gray on 2.0 when we are readonly.
4891
4892 2007-03-15  Chris Toshok  <toshok@ximian.com>
4893
4894         [ Fixes bug #81144 ]
4895         
4896         * XplatUIX11.cs: implement VirtualScreen independently of
4897         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
4898         property.
4899
4900 2007-03-15  Chris Toshok  <toshok@ximian.com>
4901
4902         * Hwnd.cs: add an internal field for the cached_window_state.
4903
4904         * XplatUIX11.cs: cache the window state, invalidating the cache
4905         (and thus re-querying the X server) only when we see an update to
4906         the _NET_WM_STATE property.
4907
4908 2007-03-15  Chris Toshok  <toshok@ximian.com>
4909
4910         * BindingSource.cs: get a lot of the unit tests working.
4911
4912 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4913
4914         * Control.cs: Modify UpdateStyles to store distances when bounds >=
4915         0 instead of just bounds > 0.  [Fixes bug #80912]
4916
4917 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4918
4919         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
4920         and methods.
4921
4922 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
4923         
4924         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
4925         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
4926         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
4927         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
4928
4929 2007-03-15  Chris Toshok  <toshok@ximian.com>
4930
4931         [ Fixes #81101 ]
4932         
4933         * Control.cs: add Ivan's fix for 81101, with a slight modification
4934         - you can set control.Target to null.
4935
4936 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
4937
4938         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
4939         HideDropDown, use Hide instead to prevent an NRE.
4940         [Fixes bug #81147]
4941
4942 2007-03-14  Jackson Harper  <jackson@ximian.com>
4943
4944         * TextBoxBase.cs: Mess with the creation stuff a little. We need
4945         to calculate the document before the handle is created, in some
4946         cases. (Actually just one case).
4947
4948 2007-03-14  Jackson Harper  <jackson@ximian.com>
4949
4950         * TextBoxBase.cs: Need to display the caret after letting the base
4951         wndproc handle the focus methods, because the caret display
4952         methods check the focus state.
4953         - Try to display the caret after updating it's position with SelectWord.
4954         - Don't need to do an immediate update on this recalc, since there
4955         will be an invalidate anyways.
4956
4957 2007-03-14  Jackson Harper  <jackson@ximian.com>
4958
4959         * TreeView.cs: Some workarounds so that we can match event order a
4960         little better.
4961
4962 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
4963
4964         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
4965         #80803. Avoid NullReferenceException when Control does not have
4966         parent. Fixed different blinkstyle issues. Only subscribe to Tick
4967         event a single time. Only draw error icon when control is created and
4968         visible. Fixes failing unit tests.
4969
4970 2007-03-14  Andreia Gaita  <avidigal@novell.com>
4971
4972         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
4973         Selecting events. Fire Leave and Enter events when changing tabs.
4974
4975 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
4976
4977         * TreeView.cs: Add TreeViewNodeSorter.
4978         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
4979
4980 2007-03-14  Chris Toshok  <toshok@ximian.com>
4981
4982         * Form.cs: go ahead and remove the RecreateHandles that jpobst
4983         removed earlier and I had him add back it.  It turns out metacity
4984         *does* in fact handle the MOTIF_WM_HINTS property changing, it
4985         just doesn't redraw the window titlebar until you resize the
4986         window.  This also means we aren't recreating the entire window
4987         hierarchy on X when you change this property.  And it looks better
4988         on windows, too.
4989
4990 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4991
4992         * ListViewItem.cs:
4993         * ListView.cs: Collecting selection information
4994         is now done in SelectedIndexCollection rather than in
4995         SelectedListViewItemCollection. This is done so we can
4996         have the selection information code in one single place
4997         (virtual mode selection information entirely depends on
4998         SelectedIndexCollection).
4999
5000 2007-03-13  Miguel de Icaza  <miguel@novell.com>
5001
5002         * ErrorProvider.cs: Add stubs for ISupportInitialize
5003
5004 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5005
5006         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
5007         in the right order with the right values, from the Checked property, 
5008         just as MS does (instead of triggering them from ListView).
5009
5010         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
5011
5012 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5013
5014         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
5015         the correct handler in OnItemCheck method (ItemCheckEventHandler 
5016         instead of EventHandler). This used to throw an InvalidCastException.
5017
5018 2007-03-13  Jackson Harper  <jackson@ximian.com>
5019
5020         * TextBoxBase.cs: Calculate the document before the handle is
5021         created, so there isn't an extra invalidate called.
5022
5023 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
5024
5025         * Form.cs: Don't set owner in ShowDialog until we are sure
5026         that we aren't going to throw an exception.  [Fixes bug #80773]
5027
5028 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
5029
5030         * TreeView.cs: Make it compile.
5031
5032 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5033
5034         * Control.cs: Another place we don't call SizeFromClientSize.
5035         * Form.cs: Another place we don't call SizeFromClientSize.
5036         [Fixes bug #81125]
5037
5038 2007-03-12  Jackson Harper  <jackson@ximian.com>
5039
5040         * TreeView.cs: Basically emulating some strangness here with
5041         exanding nodes and setting node positions when windows aren't
5042         created.
5043         - Also attempting to walk the node tree less than previously, and
5044         just use visible order calculations for determining offsets.
5045         - oops made scrolling backwards.
5046         * TreeNode.cs: We need to start nodes with a zero visible order,
5047         because the order calcs are based on the first nodes order.
5048
5049 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5050
5051         * Form.cs: Don't exit the program if RecreateHandle is called on
5052         the main form.
5053
5054 2007-03-12  Chris Toshok  <toshok@ximian.com>
5055
5056         * XEventQueue.cs: remove the use of PostQuitState.
5057
5058         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
5059         WM_QUIT message in GetMessage, return false (and if we're in the
5060         nested WaitForHwndMessage, repost the WM_QUIT message).
5061
5062 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5063
5064         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
5065         or the MaximizeBox properties.  [Part of bug #80640]
5066
5067 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
5068
5069         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
5070         no links.
5071
5072 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5073
5074         * ToolStripItem.cs: Fix some tests I broke by checking Visible
5075         instead of visible.
5076
5077 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
5078
5079         * FileDialog.cs: Use text of File name combobox to determine what
5080         files the user selected. Added tokenizer to parse the file names.
5081         Fixes bug #81123.
5082
5083 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5084
5085         * Control.cs: We can't call SizeFromClientSize in the constructor,
5086         but we still need to do the same work, so make an internal version.
5087         [Fixes bug #80621]
5088
5089 2007-03-12  Jackson Harper  <jackson@ximian.com>
5090
5091         * TreeView.cs:
5092         * TreeNode.cs:
5093         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
5094         IsExpanded.
5095
5096 2007-03-12  Jackson Harper  <jackson@ximian.com>
5097
5098         * TextBoxBase.cs: Now that the handles are being created a little
5099         later, we need to make sure that the document is recalculated when
5100         the handle is created.
5101
5102 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
5103
5104         * Theme.cs: GetLinkFont abstract method added.
5105         
5106         * LinkLabel.cs: 
5107         - Remove CalcTrimRectangle, no longer needed.
5108         - Factor also remove, position issues must be fixed in libgdiplus.
5109         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
5110         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
5111         care about font used to draw links.
5112         - Set TabStop to true when control is "Selectable", control is selectable
5113         when have one or more links. Fixes #80501 (test case is also added).
5114         - Set the LinkArea values after links change, LinkArea values must be
5115         based in first link position and size, a test case was created.
5116         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
5117         the attribute must be true LinkArea.Length > 0. The same was applied to
5118         TabStop.
5119         
5120         * ThemeWin32Classic.cs: 
5121         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
5122         in draw method.
5123         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
5124         color change.
5125         - Draw focus rectangle for every parts focused, including parts that 
5126         is on another line, its because regions returns various rectangles
5127         and not only one. Needed to mimic W32 look.
5128         - Uses Graphics.Clip to delimite region painted, it mean that now 
5129         complete text is passed to DrawString, with this we solve layout
5130         issues without create another text renderer.
5131         - Uses Region.Intersect to fix some flickers problems, now only needed
5132         parts will redrawed.
5133         - This changes fixes #79614 and some other unreported issues, on Linux 
5134         some layout problems still remain, the problem is under 
5135         MeasureCharacterRanges but it is an libgdiplus bug.
5136
5137 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
5138
5139         * TextBox.cs: Set for foreground color.
5140         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
5141         this is already done in Control.
5142
5143 2007-03-10  Jackson Harper  <jackson@ximian.com>
5144
5145         * TextBox.cs: Set the background color, but reset the
5146         backcolor_set flag which is just for the user setting the
5147         background color.
5148
5149 2007-03-09  Chris Toshok  <toshok@ximian.com>
5150
5151         * Control.cs: really remove the call to XplatUI.SetVisible from
5152         CreateHandle(), like I said I did when I merged the branch.
5153
5154         * BindingSource.cs: implement some more of this stuff.
5155
5156 2007-03-09  Jackson Harper  <jackson@ximian.com>
5157
5158         * TextBox.cs: Don't explicitly set our background colors.
5159         * TextControl.cs:
5160         * TextBoxBase.cs: Draw readonly text.
5161         - Need to invalidate when backcolor or readonly are changed.
5162         
5163 2007-03-09  Jackson Harper  <jackson@ximian.com>
5164
5165         * TextBoxBase.cs: Don't set the forecolor until the handle is
5166         created.
5167         - Do not raise OnPaint, and removed some old debug code.
5168
5169 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
5170
5171         * ScrollableControl.cs: Fix mouse wheel scrolling.
5172
5173 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
5174
5175         * Control.cs: Wire up MouseDoubleClick event.
5176
5177 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
5178
5179         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
5180         top or bottom.
5181         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
5182         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
5183         item is added.  This logic was moved to ToolStrip.OnItemAdded.
5184         [Fixes bug #81090]
5185
5186 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5187
5188         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
5189
5190 2007-03-08  Jackson Harper  <jackson@ximian.com>
5191
5192         * TreeView.cs: Show the correct image for selected node (this used
5193         to work, not sure how the code got deleted). Also implemented 2.0 feature
5194         SelectedImageKey.
5195
5196 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5197
5198         * ListView.cs:
5199         * ListViewItem.cs: Cache index in items when retrieving them
5200         in VirtualMode.
5201
5202 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5203
5204         * ToolStripItem.cs: Don't return the explicit_size if we are using 
5205         AutoSize.  Fixes invalidation issue when user has explicitly set a
5206         size and has AutoSize = true.
5207
5208 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5209
5210         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
5211
5212 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5213
5214         * DataGridView.cs: Remove event handler from DataView when a
5215         DataTable is used as DataSource.
5216
5217 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5218
5219         * Control.cs: Create internal setter for client_size to allow it to be
5220         set without triggering resizing code.
5221         * Form.cs: Calculate client_size in constructor, only change client_size
5222         in FormBorderStyle property if Handle has been created.
5223         [Fixes #80574, #80791]
5224
5225 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
5226
5227         * SystemInformation.cs: Add TerminalServerSession.
5228
5229 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5230
5231         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
5232         TreeView code.
5233
5234 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5235
5236         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
5237         Handle before we were supposed to.  Now checks ActivateOnShow property
5238         in Control.
5239         * Control.cs: Add internal ActivateOnShow property.
5240         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
5241         for ActivateOnShow.
5242         * Hwnd.cs Remove no longer needed no_activate field.
5243
5244 2007-03-07  Jackson Harper  <jackson@ximian.com>
5245
5246         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
5247         2.0 properties
5248         * DrawTreeNodeEventHandler.cs: Add
5249         * DrawTreeNodeEventArgs.cs: Correct default value.
5250         
5251 2007-03-07  Chris Toshok  <toshok@ximian.com>
5252
5253         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
5254         to be called before NativeWindow.WndProc.  Put the HwndCreating
5255         magic there to hook up our Hwnd's to handles.
5256
5257 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
5258
5259         * DataGridView.cs: Comment out debug code.
5260
5261 2007-03-07  Chris Toshok  <toshok@ximian.com>
5262
5263         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
5264         to make the rest of the world happy]
5265
5266         * Control.cs (CreateHandle): there's no need to call
5267         XplatUI.SetVisible here, it's effectively done by
5268         XplatUI.CreateWindow on X now, and always was on windows.
5269
5270         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
5271         shortcircuit out of the loop if we have a message loop running on
5272         this thread.
5273
5274         [Changelog from merge]
5275
5276         2007-03-05  Chris Toshok  <toshok@ximian.com>
5277
5278                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
5279                 causes handle creation.
5280
5281         2007-02-28  Chris Toshok  <toshok@ximian.com>
5282
5283                 * ApplicationContext.cs: Add a flag to make sure we only raise the
5284                 ThreadExit event once (ExitThreadCore can be indirectly called
5285                 from a few places.)  I don't like the additional flag, but it
5286                 makes the event ordering/count correct.
5287
5288                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
5289                 without locking the collection.  An enumerator doesn't give us any
5290                 protection from modification anyway.  Lock the thread hash and
5291                 replace the complicated enumerator loop with a foreach.
5292                 (Application.CloseForms): make internal so it can be called from
5293                 ApplicationContext.  This should probably be moved to MWFThread.
5294                 (Application.ExitThread): don't call MWFThread.Current.Exit()
5295                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
5296                 when the runloop exits (in response to WM_QUIT.)
5297                 (Application.RunLoop): add a comment (and check) for
5298                 context.MainForm being null after setting context.MainForm.Visible
5299                 = true.  This is because you're perfectly free to dispose of a
5300                 form in VisibilityChanged.  Chalk this up to another case where we
5301                 need to synchronously generate WM_ACTIVATE from Control.Show.
5302                 Also, add handling for WM_QUIT here so we'll exit the loop.
5303                 
5304                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
5305                 fact that we don't wait if we're only unmapping the whole_window
5306                 makes me a bit nervous, but it doesn't seem to cause any problems
5307                 yet.
5308
5309                 also, add a comment about the stupid, broken and wrong resetting
5310                 of PostQuitState to false in GetMessage().
5311
5312                 In PostQuitMessage, we need to add a WM_QUIT message to the
5313                 thread's queue.  We use the FosterParent to get the right
5314                 handle/hwnd/queue.
5315
5316                 Lastly, in SetVisible, we need to unmap both windows, since the
5317                 waiting only happens when we're unmapping the client window.  So
5318                 now, the *only* time we unmap just the whole_window is in the hack
5319                 for resizing a control to 0,0.
5320                 
5321         2007-02-21  Chris Toshok  <toshok@ximian.com>
5322
5323                 * Application.cs (CloseForms): rewrite this so that we don't
5324                 modify the list while we're traversing it.
5325
5326         2007-02-20  Chris Toshok  <toshok@ximian.com>
5327
5328                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
5329                 of OnHandleCreated.
5330                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
5331                 handle is created.  otherwise we'll create it here.
5332                 (VerticalScrollEvent): same here.
5333
5334                 * Application.cs (CloseForms): call Form.Dispose, don't post
5335                 WM_CLOSE_INTERNAL.
5336
5337                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
5338                 here. Application should Dispose() of the Form's.
5339
5340                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
5341                 WM_DESTROY as well.
5342                 (MapWindow,UnmapWindow): only actually do the waiting for
5343                 SHOWWINDOW if the control we're dealing with is a Form.
5344                 (CreateWindow): if the control isn't a form, SendMessage
5345                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
5346
5347                 * Control.cs (SetVisibleCore): always use is_visible here, not
5348                 value.  If we use value, we can end up re-setting something
5349                 visible if, for instance, you do Control.Hide() in a delegate
5350                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
5351
5352         2007-02-20  Chris Toshok  <toshok@ximian.com>
5353
5354                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
5355                 the message we need.  PeekMessage returning false should not be a
5356                 condition under which we exit the loop.
5357
5358         2007-02-15  Chris Toshok  <toshok@ximian.com>
5359
5360                 * Control.cs (Refresh): only refresh if we've got a handle and are
5361                 visible.
5362                 (CreateAccessibilityInstance): CreateControl() here.
5363                 (UpdateChildrenZOrder): complicate the code loop even more by
5364                 taking into account controls that haven't had their handle
5365                 created, and those that aren't visible.  But on the flip side,
5366                 simplify the code by splitting it into two loops.  one which
5367                 builds up the list of child controls we're interested in, and the
5368                 other that sets the z order of those children.
5369
5370         2007-02-14  Chris Toshok  <toshok@ximian.com>
5371
5372                 * Control.cs: Control.AccessibilityObject causes the control to be
5373                 created, not just the handle.
5374
5375         2007-02-14  Chris Toshok  <toshok@ximian.com>
5376
5377                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
5378                 problem on X where a window might have its handle created (and be
5379                 visible) while the window is unmapped.  calling XConfigureWindow
5380                 on an unmapped window is bad, and generates X errors.
5381
5382         2007-02-13  Chris Toshok  <toshok@ximian.com>
5383
5384                 * Control.cs (CreateHandle): don't loop over our children setting
5385                 their parent here.  do it when in WndProc when we're shown.
5386                 (UpdateChildrenZOrder): make this internal so we can call it from
5387                 ScrollableControl.
5388                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
5389                 creating its handle.  Also, remove the calls to PerformLayout from
5390                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
5391                 OnVisibleChanged only seems to be called directly here for the
5392                 toplevel control.  It's propagated down the window hierarchy by
5393                 calls to child.OnParentVisibleChanged.
5394                 (OnVisibleChanged): don't do layout here - it's done (oddly
5395                 enough, according to a glance at stack traces on ms.net..) in
5396                 ScrollableControl.
5397                 
5398                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
5399                 z order of our children before calling PerformLayout.
5400
5401         2007-02-12  Chris Toshok  <toshok@ximian.com>
5402
5403                 [big change, fixes #80020]
5404                 
5405                 * AccessibleObject.cs: we need to make owner internal again to fix
5406                 some of ControlAccessibleObject.
5407
5408                 * Control.cs: lots of changes here.  add support for WM_CREATE,
5409                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
5410                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
5411                 we create child controls.  leave the MonoTODO's for the
5412                 accessibility calls, but fix the exceptions so the tests pass.
5413
5414                 Add the InvalidOperationExceptions to Invoke methods, and remove a
5415                 couple of InvokeInternal methods we aren't using.
5416                 
5417                 Also, add a couple of CreateHandle calls in places where we know
5418                 the handles are being created but our code doesn't reference
5419                 .Handle.
5420
5421                 Make SetVisibleCore call OnVisibleChange if the handle isn't
5422                 created.  If the handle is created, we rely on XplatUI.SetVisible
5423                 generating the event synchronously.
5424                 
5425                 Lastly, make sure we don't use this.Handle inside CreateHandle,
5426                 because we can call back into client (and that code can dispose of
5427                 the control).
5428
5429                 * XplatUIStructs.cs: misc/cleanup.
5430
5431                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
5432                 although we don't populate the wParam properly.
5433                 (CreateWindow): generate WM_CREATE.
5434                 (MapWindow,UnmapWindow): make these calls synchronous, at great
5435                 performance expense (particularly in the unmap case), to match
5436                 win32 behavior.
5437
5438                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
5439                 to call it.
5440                 (set_MdiParent): don't recreate the handle unless it's been
5441                 created already.
5442                 
5443                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
5444                 it's created.
5445
5446                 * NativeWindow.cs: this is probably the weirdest part of the
5447                 patch.  We need a way to link up the window being created to the
5448                 WM_CREATE message.  Since we can only be creating one window at a
5449                 time on a given thread, we keep track of a per-thread reference so
5450                 we can dispatch it properly.  We also need to keep track of the
5451                 Hwnd currently being created so that the win32 backend doesn't
5452                 have problems.
5453                 
5454                 * XplatUIWin32.cs: a similar change to the one we made in
5455                 NativeWindow.cs.
5456
5457 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5458
5459         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
5460         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
5461         to draw the menu shortcut string.
5462
5463 2007-03-07  Jackson Harper  <jackson@ximian.com>
5464
5465         * TreeNode.cs: Add the 2.0 collapse method.
5466
5467 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5468
5469         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
5470
5471 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5472
5473         * DataGridView.cs: Change DataSource will clear column and row
5474         lists. Call Invalidate() to reflect DataSource change.
5475
5476 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5477
5478         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
5479         and a new row is added to it.
5480
5481 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5482
5483         * DataGridView.cs: Add columns when DataSource is en empty list but
5484         is a System.Data.DataView (from a System.Data.DataTable).
5485
5486 2007-03-06  Andreia Gaita  <avidigal@novell.com>
5487
5488         * Label.cs: Implement AutoEllipsis (2.0)
5489
5490 2007-03-06  Jackson Harper  <jackson@ximian.com>
5491
5492         * TreeView.cs: Implement 2.0 TopNode setter property.
5493         - Use a local var instead of the skipped_nodes field for computing
5494         how many nodes to skip.  Otherwise we won't scroll because the
5495         valuechanged handler checks if skipped_nodes is equal to the new
5496         value.
5497         - Implement 2.0 Sort method.
5498         - Add useless 2.0 DoubleBuffer property
5499         - Implement 2.0 LineColors property.  Lets you change the color of
5500         the lines in the tree. Terribly useful for creating non cohesive
5501         desktops.
5502         - Implement 2.0 image key feature.
5503
5504 2007-03-06  Jackson Harper  <jackson@ximian.com>
5505
5506         * TreeView.cs: We can't get the bounds of the nodes before raising
5507         the AfterSelect event, because that event could change the node's
5508         bounds (scrolling, font change, etc).
5509
5510 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5511
5512         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
5513         * Form.cs: Don't recreate handle when creating FormWindowManager, just
5514           update window styles. In CreateParams us VisibleInternal instead of
5515           VIsible to get the actual visible flag set for this form.
5516         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
5517           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
5518           handle the case when the form is already maximized, in which case
5519           it should be restored. Fixes #81043.
5520
5521 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5522
5523         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
5524
5525 2007-03-05  Jackson Harper  <jackson@ximian.com>
5526
5527         * TreeViewHitTestInfo.cs: implement.
5528
5529 2007-03-05  Jackson Harper  <jackson@ximian.com>
5530
5531         * InternalWindowManager.cs: class status fix.
5532
5533 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5534
5535         * InternalWindowManager.cs: All windows that have a parent
5536         are confined to their parent when they're being moved.
5537         Fixes #80822.
5538
5539 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
5540
5541         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
5542         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
5543
5544 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5545
5546         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
5547           buttons invisible before deciding which ones should be visible
5548           (fixes minimize/maximize buttons showing up in toolwindows). Remove
5549           an unused variable.
5550         * InternalWindowManager.cs: Remove warning.
5551
5552 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5553
5554         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
5555         to throw an InvalidOperationException is virtual mode is being used.
5556
5557 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5558
5559         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
5560         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
5561         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
5562         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
5563         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
5564         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
5565
5566 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5567
5568         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
5569           driver.KeyboardDelay from XplatUI.KeyboardDelay 
5570         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
5571           (patch by Sergey Volk)
5572
5573 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5574
5575         * ToolWindowManager.cs: Added, contains logic for
5576           tool windows.
5577         * CreateParams.cs: Add a few helper methods and an
5578           internal variable to know which control the CreateParams belongs
5579           to.
5580         * Control.cs: Call Form.ChangingParent when the
5581           parent is about to be changed.
5582         * XplatUIX11.cs: DeriveStyles (): Set
5583           caption_height for all windows that have captions and are children.
5584           Update to use ToolWindowManager instead of InternalWindowManager
5585           for ToolWindows.
5586         * XplatUIWin32.cs: Set fake window styles for all
5587           windows that have window managers.
5588         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
5589           now duplicated for mdi windows when they are
5590           maximized, first for the buttons the window itself has, then for
5591           the buttons that appear in the menu bar. Makes things a little
5592           easier). Updated UpdateWindowDecorations, SetWindowState and the
5593           mouse eventhandlers accordingly.
5594         * Form.cs: Add ChangingParent (), contains the
5595           logic of what should happen when the parent changes. In MdiParent
5596           don't set things that ChangingParent () is doing. When handling
5597           WM_CLOSE, we can close the form if there are any other modal forms
5598           and the current form is a descendent of the modal form.
5599         * InternalWindowManager.cs: A lot of refactoring,
5600           the title buttons are now extracted to a separate container class
5601           that takes care of all button code (clicks, tooltips, etc). Moved
5602           Iconic|Maximized|Normal Bounds properties to this class from
5603           MdiWindowManager, so that the window state logic can succeed for
5604           other than mdi wm's. Implemented general window state change logic.
5605           Moved CreateButtons to ThemeWin32Classic, since the theme might
5606           override which buttons are available when as well as the exact
5607           location.
5608         * FormWindowManager.cs: Added, contains logic for
5609           normal forms.
5610         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
5611           which buttons go where (and if they are at all visible). 
5612           Removed special handling of maximized windows, since they aren't special. 
5613           In DrawManagedWindowDecorations don't try to draw the text if it is
5614           empty.
5615         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
5616           use whatever the wm gives us.
5617
5618 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5619
5620         * ButtonBase.cs: Add 2.0 properties.
5621         * Button.cs: Override Draw for 2.0.
5622         * Control.cs: Add Entered and Selected properties.
5623         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
5624         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
5625         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
5626         buttons.
5627         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
5628
5629 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5630
5631         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
5632
5633 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5634
5635         * XplatUIWin32.cs: Register a new class with Windows each time we get
5636         a new ClassStyle.  [Fixes bugs #79432, #80817]
5637         * Controls.cs: Set the correct ClassStyle in CreateParams.
5638         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
5639
5640 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
5641
5642         * ListView.cs: Add fireEvent argument to ReorderColumn since the
5643         ColumnReordered event must not be signaled when modifying DisplayIndex
5644         of a ColumnHeader. Added internal ReorderColumns method which takes
5645         care of drawing, and updating the internal DisplayIndex of the
5646         ColumnHeader. Added AddColumn method which is invoked from
5647         ColumnHeaderCollection when adding or inserting columns, and which
5648         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
5649         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
5650         Recalculated dispay indices after removing a ColumnHeader.
5651         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
5652         match MS. Allows last display index to be returned after ListView
5653         is disposed. Update actual location of ColumnHeader when DisplayIndex
5654         is modified.
5655
5656 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
5657
5658         * LinkLabel.cs: Improve CalcTrimRectangle.
5659         
5660         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
5661
5662 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5663
5664         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
5665         get rectangle as a result value.
5666
5667 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5668
5669         * LinkLabel.cs: Theres some diferences between rectangle return from 
5670         MeasureCharacterRanges and the area used for DrawString to fix this 
5671         CalcMeasurementFactor method was created, it calcules the diferences
5672         to be use later to adjust rectangle in draw operations. Fixes #80473.
5673         
5674         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
5675         to adjust draw rectangle.
5676
5677 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5678
5679         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
5680         text and some other changes to reduce and optimize source code.
5681
5682 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5683
5684         * RadioButton.cs: Implement 2.0 event.
5685         * RelatedImageListAttribute.cs: Implement new class.
5686
5687 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5688
5689         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
5690
5691 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5692
5693         * CheckBox.cs: Implement 2.0 functionality.
5694
5695 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5696
5697         * ListView.cs: Refactor Add and AddRange methods of
5698         ListViewItemCollection, to not update the ListView
5699         everytime an item is added in AddRange. Also move the update
5700         code to a new CollectionChanged method, and call it
5701         from other methods that need it as well (this should also fix some
5702         bugs when Sorting is used).
5703
5704 2007-02-27  Jackson Harper  <jackson@ximian.com>
5705
5706         * TextControl.cs: Try to never let the caret stay in a non-text
5707         tag.
5708         * TextBoxBase.cs: Update the caret.
5709
5710 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
5711
5712         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
5713         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
5714         delete POINT structure, duplicate of one in XplatUIStructs.
5715         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
5716
5717 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
5718
5719         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
5720         edit box since otherwise the Label would immediately be set (even if
5721         the user did not modify the label). In OnKeyDown set Handled to true
5722         if Return or Escape was pressed. In ColumnHeaderCollection unlink
5723         columns that are to be removed. In ListViewItemCollection unlink items
5724         that are to be removed.
5725
5726 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
5727
5728         * TextRenderer.cs: If we set a GDI clip region, we need to clear
5729         it when we are done.  [Fixes bug #80949]
5730
5731 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5732
5733         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
5734
5735 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5736
5737         * ListView.cs: I forgot to commit the changes for ListView 
5738         in my previous patch.
5739
5740 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5741
5742         * Clipboard.cs: Partially implement an overload of SetDataObject.
5743         * Form.cs: Implement ShowWithoutActivation.
5744         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
5745
5746 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5747
5748         This is a first set of changes to make the Virtual mode works,
5749         by avoiding the retrieval of ListViewItem instances until
5750         draw time.
5751
5752         * ListView.cs: Store item position in the ListView instead of the
5753         ListViewItem, this way we don't request the Bounds property of
5754         ListViewItem inside the ListView calculations, as well as cache the item
5755         size in item_size field. Store indexes instead of ListViewItem
5756         instances in the matrix used by icon view. Add a ItemMatrixLocation
5757         struct to hold the row and col info of the matrix info.
5758
5759         * ListViewItem.cs: Don't store the location anymore, and only cache
5760         the rectangles for GetBounds. Use the ListView.GetItemLocation
5761         method to retrieve the actual location.
5762
5763 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5764
5765         * TextRenderer.cs: Add clipping support, thanks to George.
5766         [Fixes bug #80949]
5767
5768 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5769
5770         * ListViewItem.cs: Cancel label edit when item is removed from 
5771         ListView.
5772         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
5773         event before the edit textbox is displayed.  Added CancelEdit method
5774         which is used end to editing while ignoring the value set by the
5775         user. In EndEdit, set focus to ListView to avoid losing focus to
5776         other controls. In ListViewItemCollection.Clear, cancel editing of
5777         any of the items.  In Remove, cancel editing of item being removed.
5778         Avoid udplicate code by modifing RemoveAt to invoke Remove.
5779
5780 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5781
5782         * FileDialog.cs: Update FSEntry when move is successful. Fixes
5783         bug #80948.  
5784
5785 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5786
5787         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
5788         compatible with non X11 systems. Fixes #80901.
5789
5790 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5791
5792         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
5793         whether the item should be unselected and reselect. We do no want this
5794         when we're starting to edit the label. Do not fire the 
5795         SelectedIndexChanged event from ListView when its already been fired
5796         by modifying ListViewItem.Selected. Fixes bug #80943.
5797
5798 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5799
5800         * TextRenderer.cs: Previos commit logic was backwards.
5801
5802 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5803
5804         * TextRenderer.cs: Don't add padding on MeasureText if we were
5805         sent the NoPadding flag.
5806
5807 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5808
5809         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
5810         after DrawButton. To prevent image overlaps button borders SetClip and 
5811         ResetClip added before and after draw image. Fixes #79129.
5812
5813 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5814
5815         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
5816         window size, it fix problem when you run under win32 that theres
5817         Size diferent than ClientSize. Also fix controls size and positions
5818         to mimic Win32. Fixes #80837.
5819
5820 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
5821
5822         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
5823         menu area to fix some problems for non X11 systems. Fixes #80613.
5824
5825 2007-02-22  Jackson Harper  <jackson@ximian.com>
5826
5827         * TreeNode.cs: When a node is expanded, set its is_expanded flag
5828         even if it doesn't have any children.
5829
5830 2007-02-22  Jackson Harper  <jackson@ximian.com>
5831
5832         * TreeView.cs: Calculate the top node 'on the fly', this
5833         eliminates issues where you need to click on the tree before
5834         scrolling it to get the top node computed correctly.
5835         * TreeNodeCollection.cs: We don't need to mess with the top node
5836         anymore.
5837
5838 2007-02-22  Jackson Harper  <jackson@ximian.com>
5839
5840         * DataGridViewRow.cs: Fix typo so height can actually be set.
5841         Patch by Peter Grimm.
5842
5843 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5844
5845         * FileDialog.cs: Fixed support for renaming files and directories.
5846         * ListView.cs: Do not lose focus when edit is canceled. Process
5847         Escape as regular key (to prevent closing of dialogs).
5848
5849 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5850
5851         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
5852         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
5853
5854 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5855
5856         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
5857         did not modify label.
5858         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
5859         modified the text. Reset Label when user presses Escape in edit mode.
5860         Move focus to ListView after having cancelled or finished editing the
5861         label.
5862
5863 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
5864
5865         * ComboBox.cs: Removed unnecessary initializations. Marked items field
5866         private. Clear textbox when Text is set to null and SelectedIndex is
5867         already -1.
5868         * FileDialog.cs: Removed unnecessary initializations. Removed 
5869         workarounds for ComboBox bugs that are now fixed. Modified
5870         DefaultExt, InitialDirectory and Title property to change null to
5871         zero-length string in getters. Avoid directly accessing fields.
5872
5873 2007-02-20  Jackson Harper  <jackson@ximian.com>
5874
5875         * TextControl.cs: Remove RecalAlignments call, that was some
5876         debugging leftovers.
5877         - Don't use the line indent when we shouldn't.
5878         * RichTextBox.cs: Add support for paragraph left indents.
5879
5880 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5881
5882         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
5883         Seems like the class status pages doesn't catch params differences.
5884
5885 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5886
5887         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
5888
5889 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5890
5891         * ComboBox.cs: Setting Text should have no effect if item text of
5892         selected item exactly matches value. First lookup text using
5893         case-sensitive comparison, and fallback to case-insensitive comparison.
5894         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
5895         allow startIndex to be last index. Changed ArgumentOutOfRangeException
5896         paramname to match MS. Restart from first item if string is not found
5897         after startIndex. Fixed paramname of ArgumentNullException that is
5898         thrown for null value in ObjectCollection.Contains.
5899
5900 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5901
5902         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
5903
5904 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5905
5906         * ListControl.cs: In SelectedValue use value.Equals to compare for
5907         equality instead of ==, otherwise it will fail for strings.
5908         Fixes #80794.
5909
5910 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5911         
5912         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
5913         since the caret won't show up unless ShowSelection is true. 
5914         Fixes #80795.
5915
5916 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5917
5918         * Application.cs: When disabling all forms but the main form, do not
5919           disable any descendants of the main form (such as mdi children or
5920           other parented forms). Fixes #80822 on Windows.
5921         * Form.cs: If we have a parent, set the WS_CHILD style.
5922         * Control.cs: Update the window styles if the control whose parent has
5923           changed is a form (the WS_CHILD style has to be switched).
5924
5925 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5926
5927         * XplatUIStructs.cs: MsgUIState structure added.
5928
5929 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5930
5931         * FileDialog.cs: Removed need for separate fileName field. On 2.0
5932         profile, do not check filename(s) for illegal character if filename(s)
5933         were set non-interactively but always check on 1.0 profile. Fixed NRE
5934          in DefaultExt and only strip off first leading dot. Improve exception
5935         message when invalid Filter is set. Do not ignore InitialDirectory if
5936         it does no exist. Store specified Title, and if empty use default
5937         title (depending on type of dialog). Added an internal DialogTitle 
5938         property for retrieving dialog title. Fixed logic of displayed dir to
5939         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
5940         string as its buggy.
5941         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
5942         FileName is a zero-length string (it can never be null). Override 
5943         DialogTitle property to set default title of dialog box.
5944         * SaveFileDialog.cs: Override DialogTitle property to set default
5945         title of dialog box.
5946
5947 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5948
5949         * FileDialog.cs: Modify default text of filename and filetype labels
5950         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
5951         after we've updated the SelectedIndex. Fixes part of bug #80887.
5952         * SaveFileDialog.cs: Set text of filetype label.
5953
5954 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5955
5956         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
5957         label field. Needed by latest Jackson's fixes for ListView.
5958
5959 2007-02-16  Andreia Gaita  <avidigal@novell.com>
5960
5961         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
5962         print preview images.
5963
5964 2007-02-16  Jackson Harper  <jackson@ximian.com>
5965
5966         * ListView.cs: Make AfterLabelEdit work correctly.
5967         * FileDialog.cs: After changing the name of the folder, we have to
5968         make sure that it is created, or that we pop up an error because
5969         it already exists.
5970
5971 2007-02-16  Jackson Harper  <jackson@ximian.com>
5972
5973         * X11Dnd.cs: Implement aliases on mime handlers, so things like
5974         System.String are mapped to text.
5975         - Handle dataobjects, getting all the possible formats out of them
5976         - We dont need the drag event args before we give feedback. This
5977         allows feedback cursors to be immediate before selections have
5978         been converted.
5979
5980 2007-02-16  Jackson Harper  <jackson@ximian.com>
5981
5982         * TextBoxBase.cs: Modified the method for inserting images to
5983         taking a line and position instead of tag and position.
5984         * RichTextBox.cs: Handle PngBlip data by inserting the png image
5985         into the RTF file.
5986         * TextControl.cs: Allow images to be inserted as the first tag of
5987         a line.
5988         - Fix some off by one issues when we assume the first tag is a
5989         text tag, not an image tag.
5990
5991 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5992
5993         * ListView.cs: Set focus to ListView when ItemControl gets a
5994         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
5995         Fixes part of #80467.
5996
5997 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5998
5999         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
6000           validate Text input (if null or empty string reset Value to default
6001           value). Fixes #80830.
6002
6003 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6004
6005         * ListView.cs: Set owner as null for columns and items when
6006         Dispose is invoked. Fixes #80607.
6007
6008 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
6009
6010         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
6011         showing DropDowns, don't show a Grip when doing Flow layout.
6012         [This fixes the toolbox in PDN 2.72.]
6013         * ToolStripItem.cs: Add Anchor property and some internal properties to
6014         reduces needed changes to FlowLayout.
6015         * ToolStripOverflow.cs: Remove unused variable.
6016         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
6017         use it in the layout calculations.
6018
6019 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6020
6021         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
6022         reported in #79640.
6023         
6024         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
6025         size calculation.
6026
6027 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6028
6029         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
6030         MeasureString format, it can make button very large in some cases, it is
6031         strange but is what win32 do.
6032
6033 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6034
6035         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
6036         size calculation.
6037
6038         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
6039         rendering, the value is based on MenuAccessKeysUnderlined.
6040
6041 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6042
6043         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
6044         for most themes.
6045         
6046         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
6047         
6048         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
6049         and use MenuAccessKeysUnderlined instead.
6050
6051 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6052
6053         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
6054         A selected control would not get a Focus call if:
6055                 - the default active control of the container is the same as
6056                   the one that was selected
6057                 - we are switching from one container to another
6058         Under these conditions, the container being selected already has
6059         an active_control, which is the same as the one being activated, 
6060         so set_ActiveControl would always return and not send the Focus
6061         call. Fix to check if the currently active control of the container
6062         is actually focused.
6063
6064 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
6065
6066         * StatusStrip.cs: Implement the spring layout.
6067         * ToolStripControlHost.cs: Make sure the hosted control's visibility
6068         always matches the host.
6069         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
6070         and TextAfterImage.
6071
6072 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6073
6074         * Control.cs: Code reorganization only.
6075           - Reorganize the WndProc cases so that each case has it's own handling method, 
6076           to help with the no-line-numbering stack traces.
6077           - Formatting changes (it's vstudio's fault, really :p)
6078
6079 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6080
6081         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
6082           Thread.CurrentUICulture to match DateTimePicker's (and MS)
6083           behaviour.
6084
6085 2007-02-12  Jackson Harper  <jackson@ximian.com>
6086
6087         * RichTextBox.cs:
6088         * TextBox.cs: By default we have a non multiline document
6089         - use the multiline property instead of the internal variable
6090         * TextBoxBase.cs: Treat multiline and non multiline the same in
6091         most places.
6092         - Use the documents multiline flag instead of tracking it ourself
6093         * TextControl.cs: Attempt at getting multiline to match MS
6094         behavior.  Lines now track an offset, which is either their X or Y
6095         offset depending on whether or not we are in multiline mode.
6096         - Update all the methods to understand that lines have an X value.
6097         - Fix crash in Undo::Duplicate when empty lines are deleted.
6098
6099 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6100
6101         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
6102         code moved to properties PreferredHeight and PreferredWidth. It solve the
6103         all problems when preferred sizes must be recalculated. Fixes #80801.
6104
6105 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6106
6107         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
6108         font height when compatible_text_rendering is false. Partially fix #80801.
6109
6110 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6111
6112         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
6113
6114 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6115
6116         * Form.cs: Improved exception messages in ShowDialog.
6117
6118 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6119
6120         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
6121         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
6122         if not set. Fixes bug #80764. Avoid accessing current_settings field
6123         directly.
6124
6125 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
6126
6127         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
6128         false.
6129
6130         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
6131         public in 2.0 and for easy maintenance and dont break compatibility it is 
6132         internal in 1.1.
6133         
6134 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6135
6136         * ToolStripItem.cs: Implement using images from ImageList.
6137
6138 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6139
6140         * DateTimePicker.cs: Change default date-formatting culture from
6141           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
6142           seems to be the way MS does it.
6143
6144 2007-02-08  Andreia Gaita  <avidigal@novell.com>
6145
6146         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
6147         (the 6 was cut off on the right side)
6148
6149 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6150
6151         * Form.cs: Tell MenuStrips to close when the form is clicked.
6152         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
6153         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
6154         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
6155         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
6156         support for Overflow, where items that do not fit are automatically
6157         reparented to a drop down menu.
6158         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
6159         Also: fixes bug #80747.
6160
6161 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6162
6163         * ComboBox.cs: Remove warning (unused code).
6164         * ScrollableControl.cs: Remove warning for 1.1 profile.
6165
6166 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6167
6168         * Form.cs: Remove a warning.
6169
6170 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6171
6172         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
6173           'g' specifier, not documented anywhere, but seems to always show up
6174           as a single space (might have something to do with the DateTime 'g'
6175           specifier, which is the era format, but since DateTimePicker can't
6176           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
6177           won't crash if the format has an unmatched quote. Now shows
6178           single-character formats correctly. Fixes #80744.
6179
6180 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6181
6182         * StatusStrip.cs: Stretch property needs to call base.Stretch,
6183         not this.Stretch to fix stack overflow. [Fixes bug #80760]
6184
6185 2007-02-07  Chris Toshok  <toshok@ximian.com>
6186
6187         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
6188         background color.  it overwrites the background image we've
6189         already painted.  Fixes #80599.
6190
6191 2007-02-07  Chris Toshok  <toshok@ximian.com>
6192
6193         * DataGrid.cs: return immediately from Edit() when there are no
6194         columns.  Fixes #80662.
6195
6196 2007-02-07  Chris Toshok  <toshok@ximian.com>
6197
6198         * MessageBox.cs: fix #80625.  don't always show the Help button in
6199         2.0.  use the displayHelpButton parameter to determine if we
6200         should show it. Also, make the internal show_help field private.
6201
6202 2007-02-07  Chris Toshok  <toshok@ximian.com>
6203
6204         * Control.cs (SetVisibleCore): check in the proposed patch for
6205         80604, and set is_visible before calling CreateControl.
6206
6207 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
6208
6209         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
6210         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
6211         on it.
6212
6213 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
6214
6215         * MenuAPI.cs: hotkey_active internal field added, it is required because
6216         we need to know when hotkeys must be draw, before this change a keystate
6217         Navigating was used but we can have menu in navigating state without
6218         hotkeys. Fixes #80694.
6219         
6220         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
6221
6222 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6223
6224         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
6225           corresponding events and methods to be internal for 1.1 profile and
6226           public for 2.0 profile (required by SizeGrip).
6227         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
6228           implicit control list). Don't set the size nor the location of the
6229           SizeGrip anymore as it's not needed.
6230         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
6231           draw directly on the captured control (fixes #80656). Removed
6232           ShowGrip (it wasn't used anywhere), redraw (always true), added
6233           GetDefaultSize and GetDefaultRectangle to calculate defaults.
6234         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
6235           be called from SizeGrip.
6236
6237 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6238
6239         * Timer.cs: Throw ArgumentException if Interval <= 0.
6240
6241 2007-02-05  Jackson Harper  <jackson@ximian.com>
6242
6243         * TreeView.cs: We need to check scrollbar visibility when window
6244         visibility is updated, because non visible trees don't ever add
6245         scrollbars.
6246         * Cursor.cs: We want the override cursor to be reset to NULL when
6247         we set current cursor to the default cursor.
6248
6249 2007-02-05  Jackson Harper  <jackson@ximian.com>
6250
6251         * TextControl.cs: Don't have crlfs when we are non multiline.
6252         - Consolidate the line position.
6253
6254 2007-02-05  Jackson Harper  <jackson@ximian.com>
6255
6256         * X11Keyboard.cs: BACK+CTRL gets a special char code.
6257
6258 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6259
6260         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
6261           handling LeaveNotify->NotifyUngrab in order to send
6262           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
6263           after calling XUngrabPointer, so we call WindowUngrabbed directly
6264           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
6265         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
6266           MouseCaptureChanged correctly. Also create handles if changing
6267           Capture (matches MS behaviour).
6268
6269 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6270
6271         * SizeGrip.cs: Make the last change 2.0 only.
6272
6273 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6274
6275         * SizeGrip.cs: If resizing and the capture is lost, revert any size
6276           changes to initial size (fixes #80597).
6277
6278 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6279
6280         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
6281
6282 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6283
6284         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
6285           background) and only allow dragging if enabled. This way the
6286           sizegrip can be used to fill the open square that otherwise would
6287           have been shown in the bottom right corner of ScrollableControl
6288           when ScrollableControl is not suppose to support sizing.
6289         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
6290           sizegrip is shown and enabled, and hook up with necessary events.
6291
6292 2007-02-01  Chris Toshok  <toshok@ximian.com>
6293
6294         * DataGridTextBoxColumn.cs: clean up the
6295         GetFormattedString/GetColumnValueAtRow combination of functions.
6296         Also fix UpdateUI, and the initial state of
6297         IsInEditOrNavigateMode.
6298
6299         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
6300         aren't supposed to scroll the textbox here, we're supposed to
6301         scroll the datagrid.
6302
6303 2007-02-01  Chris Toshok  <toshok@ximian.com>
6304
6305         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
6306         setting the position.
6307
6308 2007-02-01  Chris Toshok  <toshok@ximian.com>
6309
6310         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
6311         here, since the most recent focus fixes keep us from generating
6312         the Leave event when our textbox gets focus.
6313         (Edit): we should be passing null for the column style's
6314         instantText parameter.
6315         
6316 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
6317
6318         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
6319         raised.  Fixes menu text/icons not showing up in PDN.
6320
6321 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6322
6323         * Control.cs: Remove code in constructor that makes every
6324         control with WS_CHILD set have initial location -1, -1.
6325
6326 2007-01-31  Jackson Harper  <jackson@ximian.com>
6327
6328         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
6329         XplatUIX11.
6330         * XplatUIX11.cs: Give teh keyboard to teh dnd.
6331
6332 2007-01-31  Jackson Harper  <jackson@ximian.com>
6333
6334         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
6335         - Remove some debug code.
6336
6337 2007-01-31  Jackson Harper  <jackson@ximian.com>
6338
6339         * XplatUIX11.cs: If you set the override cursor during a grab, it
6340         should actually override the grab cursor.  This comes into play
6341         when you are setting custom cursors in a DND feedback method.
6342
6343 2007-01-31  Jackson Harper  <jackson@ximian.com>
6344
6345         * X11Dnd.cs: Add support for handling the QueryContinue and
6346         GiveFeedback events.
6347         - Cancel drag and drop actions when the escape key is clicked.
6348         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
6349         can handle the ESCAPE key.
6350         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
6351         done when dnd events are continued after the button is released.
6352         - Add a new helper method so that dnd can translate key events.
6353
6354 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
6355
6356         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
6357         make it more obvious what is happening.
6358
6359 2007-01-30  Jackson Harper  <jackson@ximian.com>
6360
6361         * XplatUIX11.cs: Don't break when handling button release in drag
6362         and drop operations. We need that BUTTONUP message to get through
6363         so capture is released.
6364         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
6365         this is handled automatically when the mouse is down.
6366
6367 2007-01-30  Jackson Harper  <jackson@ximian.com>
6368
6369         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
6370         is closed, so we need to make sure that we aren't changing the
6371         dialog result when the OK (Open or Save) button has been clicked
6372         and we are closing the window ourselves.  Note we don't need to
6373         worry about the cache being written in this case, because it was
6374         already done in the previous FilOk call.
6375
6376 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6377         
6378         * DateTimePicker.cs: Remove a warning.
6379         * ComboBox.cs: Remove a couple of warnings.
6380
6381 2007-01-29  Chris Toshok  <toshok@ximian.com>
6382
6383         * XplatUIX11.cs: don't crash, and remove the icon if the user has
6384         set one, if SetIcon is passed a null icon.
6385
6386 2007-01-29  Andreia Gaita  <avidigal@novell.com>
6387
6388         * TextBox.cs: Redraw when the password characters changes
6389         * TextControl.cs: Check if textbox has a password char and draw 
6390         a line of password chars instead of the text in the line. LineTag gets 
6391         an extra Draw() method which allows document.Draw to override the text 
6392         that will be drawn. Removes 1024 char limitation on length of passworded 
6393         lines.
6394
6395 2007-01-29  Jackson Harper  <jackson@ximian.com>
6396
6397         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
6398         single chars is not.
6399
6400 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
6401
6402         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
6403         one pixel.  Fix a StackOverflowException caused by an overload wrongly
6404         calling itself.
6405
6406 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
6407
6408         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
6409         also remove ProcessArrowKey and put the code inside ProcessKeys.
6410
6411 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
6412
6413         * PaddingConverter.cs: Added.
6414
6415 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6416         
6417         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
6418         ShowPanels is false (fixes #80600). Only draw up to 127 characters
6419         of text (fixes #80601). For panels clip the text to draw to the
6420         panel (fixes #80603).
6421
6422 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6423
6424         * ComboBox.cs: Fixed implementation of ResetText.
6425
6426 2007-01-25  Jackson Harper  <jackson@ximian.com>
6427
6428         * TextControl.cs: For the last char of a line we need to use the
6429         line size, not that chars width, since it won't actually be
6430         computed since the right side of a char is based on the start of
6431         the left side of the next char, and the next char does not exist.
6432
6433 2007-01-25  Chris Toshok  <toshok@ximian.com>
6434
6435         * Splitter.cs: fix the new unit tests, and reindent some switch
6436         statements.
6437
6438 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6439
6440         * ComboBox.cs: Implemented 2.0 methods and events.
6441         * TextBoxBase.cs: Added OnTextUpdate, so that
6442         ComboBox.ComboTextBox can inform ComboBox of it.
6443
6444 2007-01-25  Jackson Harper  <jackson@ximian.com>
6445
6446         * TextControl.cs: Respect ShowSelection when deciding whether or
6447         not to display the caret, this allows comboboxes to have carets
6448         when the combotextbox does not have focus.
6449
6450 2007-01-25  Jackson Harper  <jackson@ximian.com>
6451
6452         * TextControl.cs: Add a Suspend/Resume for updating, basically the
6453         same as the Suspend/Resume for recalc, except this will do actual
6454         Invalidates.
6455         - New Undo manager, works much like the MS version.
6456         - Implemented Redo
6457         * TextBoxBase.cs: The Cut operation is undoable.
6458
6459 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6460         
6461         * TextBoxBase.cs: Don't antialias text. Makes it look way better
6462         on Windows (no difference on Linux).    
6463
6464 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6465
6466         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
6467         we don't want to activate any windows. Fixes #79433.
6468
6469 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
6470
6471         - ButtonBase.cs: Fix capitalization of parameter: disposing.
6472         [Fixes bug #80609]
6473
6474 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
6475
6476         * FileDialog.cs:
6477         - Move to using System.ComponentModel.EventHandlerList
6478         - Replace Refresh with Invalidate
6479         - Clear the mime filecache on closing
6480         - Some other memory reducing work. After beeing closed FD now uses
6481           only about 300 KB for the fdo mime stuff plus the memory of the
6482           cached icons.
6483         * Mime.cs: Changed coding style and removed unnecessary commented
6484         code. Some more memory memory reducing work.
6485
6486 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6487
6488         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
6489         a few other missing 2.0 properties.
6490         * Theme.cs: Added DrawFlatStyleComboBox.
6491         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
6492
6493 2007-01-24  Chris Toshok  <toshok@ximian.com>
6494
6495         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
6496         wake_waiting flag, not just when there's data to be read.  if we
6497         don't, then future wakeup's won't reach us and we'll be doomed to
6498         wait for the entire 1 second timeout forever (unless there are X
6499         events to be had).
6500
6501 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6502
6503         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
6504         until you pass Items.Count, not Items.Count - 1 like 1.1.
6505
6506 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
6507
6508         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
6509
6510 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6511
6512         * ToolStripContainer.cs: The recent Dock fix exposed that I was
6513         adding the panels in the wrong order.
6514
6515 2007-01-24  Jackson Harper  <jackson@ximian.com>
6516
6517         * TextBoxBase.cs: When we move the caret we also need to move the
6518         selection, this fixes some random crashing after doing select
6519         text, unselect, delete a char, paste.
6520
6521 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6522
6523         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
6524
6525 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6526
6527         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
6528         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
6529         * ToolBar.cs: Force redraw in BackgroundImageChanged.
6530
6531 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6532
6533         * ToolBar.cs:
6534         - Implement support for vertical toolbars. Fixes #80539;
6535         - Call LayoutToolBar when resize, it fix some other problems in layout.
6536         - Rename requested_height to requested_size, as we can have width on it
6537         when toolbar is vertical.
6538         - Create a private property "Vertical" that uses Dock to verify when 
6539         toolbar is vertical or not.
6540         - Set ControlStyles when change Dock property.
6541         - Refactory in LayoutToolBar to have better variables names and to support
6542         vertical toolbars.
6543         - Fixes default value for ButtonSize when button count is equal zero, size
6544         must be (39, 36) test case writed.
6545
6546 2007-01-23  Chris Toshok  <toshok@ximian.com>
6547
6548         * Control.cs: fix the checks so that they work correctly for mdi
6549         parents/children.
6550
6551 2007-01-23  Chris Toshok  <toshok@ximian.com>
6552
6553         * Control.cs: ControlCollection seems to have super-secret
6554         abstraction breaking knowledge of Mdi containers.  allow MdiClient
6555         to add toplevel controls.
6556
6557 2007-01-23  Chris Toshok  <toshok@ximian.com>
6558
6559         * Control.cs: throw an ArgumentException if a toplevel control is
6560         added to our control collection from ControlCollection.Add, as
6561         well as from ControlCollection.IList.Add.  This fixes the
6562         ControlSetTopLevelTest.TestTopLevelAdd unit test.
6563
6564         Also, in ControlCollection.IList.Add, don't through an
6565         ArgumentNullException, throw an ArgumentException, when value ==
6566         null.  This matches MS.
6567
6568 2007-01-23  Chris Toshok  <toshok@ximian.com>
6569
6570         * BindingSource.cs: initial, incomplete, implementation of
6571         BindingSource.
6572
6573 2007-01-23  Jackson Harper  <jackson@ximian.com>
6574
6575         * TextControl.cs:
6576         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
6577         that I can fix a broken unit test (TextBoxTest::ClearUndo)
6578         
6579 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6580
6581         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
6582
6583 2007-01-23  Andreia Gaita  <avidigal@novell.com>
6584
6585         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
6586         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
6587         IndexOfKey() for 2.0
6588
6589 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6590
6591         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
6592         to prevent it from changing z-order.
6593         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
6594         leave UI updates in MdiWindowManager.
6595         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
6596         1 sized (NC handling goes weird on Linux otherwise).
6597         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
6598         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
6599         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
6600         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
6601         and SetWindowState(s) to allow for changing the size of an activated child
6602         before activating it (reduces a lot of flicker).
6603
6604 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6605
6606         * Form.cs: Changing FormBorderStyle has different semantics based
6607         on whether the Form is visible or not.  If not visible, don't change
6608         the Size.  But InvalidateNC needs to be called to force the window
6609         to pick up the changes and redraw itself.  [Fixes bug #80574]
6610
6611 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6612
6613         [Moma work]
6614         * ContainerControl.cs: ProcessCmdKey.
6615         * ErrorProvider.cs: new constructor.
6616         * Form.cs: fix AutoValidateEvent compiler warning.
6617         * Label.cs: fix OnAutoSizeChanged compiler warning.
6618         * MenuStrip.cs: fix CanOverflow compiler warning.
6619         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
6620         * TextBox.cs: Dispose.
6621         * ToolStrip.cs: CanOverflow, re-enable double buffering.
6622         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
6623         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
6624         * ToolStripItem.cs: Overflow, RightToLeft properties.
6625
6626 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6627
6628         * Form.cs: Move the layout of the main form to MdiWindowManager.
6629         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
6630         do a layout of the main window to update MdiClient's client area to
6631         the right area. Fixes #80533. Remove the calculation of nc size, 
6632         it was just wrong and the correct one is the same as for 
6633         InternalWindowManager. 
6634
6635 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
6636
6637         * Control.cs: Setting Anchor or Dock needs to reset the other
6638         to its default.  [Fixes bug #80556]
6639
6640 2007-01-20  Chris Toshok  <toshok@ximian.com>
6641
6642         * CheckedListBox.cs: class status changes.
6643
6644         * ScrollableControl.cs: same.
6645
6646         * RichTextBox.cs: same.
6647
6648         * ContainerControl.cs: same.
6649
6650         * ListView.cs: same.
6651
6652         * NotifyIcon.cs: same.
6653
6654         * MenuStrip.cs: same.
6655
6656         * RadioButton.cs: same.
6657
6658         * CheckBox.cs: same.
6659
6660         * PrintPreviewDialog.cs: same.
6661
6662         * Form.cs: same.
6663
6664 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
6665
6666         * TreeNode.cs: Apply Alan's patch for Name property.
6667
6668 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6669         
6670         * Form.cs: Implemented SizeGripStyle.
6671         * SizeGrip.cs: Check for minimum and maximum size for the
6672         control being resized and only resize if size has actually
6673         changed.
6674
6675 2007-01-19  Chris Toshok  <toshok@ximian.com>
6676
6677         * DataGridColumnStyle.cs: stop setting _readonly in the
6678         PropertyDescriptor setter.  fixes a unit test failure.
6679
6680         also, rename ParentReadOnly to TableStyleReadOnly, and have it
6681         just consult our table style (if we have one).  We don't need to
6682         consult the datagrid readonly attribute because that's passed in
6683         as the _ro arg to Edit.  this simplifies things a little.
6684         
6685         * DataGrid.cs: use CurrentColumn instead of
6686         current_cell.ColumnNumber just to simplify some of the code.
6687
6688         switch the order of some things in the CurrentCell setter to keep
6689         the previous cell from getting a textbox again -
6690         EnsureCellVisibility causes scrolling to happen, which calls Edit.
6691         So we need to set the new cell before calling it.
6692         
6693         call Edit in OnEnter, as does Microsoft.
6694         
6695         also, make sure the current table style isn't the one we create
6696         initially when checking to see if it's different than the one
6697         we're setting it to in BindColumns (this fixes #80421).
6698
6699         * GridTableStylesCollection.cs: table styles can have "" for a
6700         mapping name.  part of the fix for #80421.
6701
6702         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
6703         Edit significantly.
6704
6705 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6706
6707         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
6708         and less GDI object leaky-er.
6709
6710 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6711
6712         * LinkLabel.cs: Add opaque control style
6713
6714 2007-01-18  Jackson Harper  <jackson@ximian.com>
6715
6716         * TextControl.cs: Calculate width properly.
6717         - Don't store the tag's X offset, this can be figured out very
6718         easily.
6719         - When getting the caret tag make sure to get the last empty tag.
6720
6721 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6722
6723         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
6724         [Fixes bug #79959]
6725
6726         * Control.cs: Color.Empty shouldn't count for previous transparent
6727         redraw changes.
6728
6729 2007-01-18  Jackson Harper  <jackson@ximian.com>
6730
6731         * TextBox.cs:
6732         * RichTextBox.cs:
6733         * TextControl.cs: Starting to merge in some pieces of my older
6734         undo work.  Basically just some slight cleanup of the undo API.
6735
6736 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6737
6738         * TrackBar.cs: Fix signature of RightToLeftLayout.
6739         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
6740         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
6741         * Application.cs: Implemented UseWaitCursor.
6742
6743 2007-01-18  Jackson Harper  <jackson@ximian.com>
6744
6745         * TextControl.cs: We can't skip tags if any part of the tag is
6746         visible.
6747
6748 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6749
6750         * ContainerControl.cs: Override OnLayout.
6751
6752 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6753
6754         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
6755
6756         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
6757         everything else.
6758
6759 2007-01-18  Chris Toshok  <toshok@ximian.com>
6760
6761         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
6762         (leftover from the container_selected days, I'd wager).  fixes bug
6763         #80546.
6764
6765 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6766
6767         * Control.cs: Apply patch from George to fix the new testcase on
6768         bug #80451.  We can't just check for Color.Transparent, we need 
6769         to check if the back color's alpha channel is < 255.
6770
6771 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6772
6773         * Form.cs: Move setting show_icon = true to before the constructor
6774         so that the base constructor has that information when it calculates
6775         the form's size.  Was causing forms to be (6, 6) bigger than they
6776         were supposed to be.  Thanks for catching this Rolf!
6777
6778 2007-01-18  Jackson Harper  <jackson@ximian.com>
6779
6780         * TextControl.cs: When replacing a selection we need to invalidate
6781         from the initial selection start, because selection start is moved
6782         to the end of the replacement.
6783
6784 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6785
6786         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
6787
6788 2007-01-18  Chris Toshok  <toshok@ximian.com>
6789
6790         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
6791         I just added.
6792
6793 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
6794
6795         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
6796         layout methods and properties from ToolBarButton must be available
6797         into ToolBarButtonInfo.
6798
6799 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6800
6801         * Control.cs: If the control has a transparent background, we
6802         need to refresh it when it moves and when it's parent's background
6803         image changes.  [Fixes bug #80451]
6804
6805 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6806
6807         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
6808
6809 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6810
6811         * XplatUIWin32.cs: Implement proper double buffering for Windows.
6812         [Fixes bug #80447, and probably speeds up things as well]
6813
6814 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6815
6816         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
6817         * XplatUIWin32.cs: We need to recalculate NC size after changing 
6818         window style to toolwindow (otherwise the client rectangle will be
6819         3 pixels to small for some reason).
6820         * MdiWindowManager.cs: Revert NC size calculations to match how
6821         they are calculated only based on window styles (to match
6822         Win32AdjustWindowRectEx, since otherwise when setting size or 
6823         location, Control will call Win32AdjustWindowRectEx to update client 
6824         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
6825         calculate a different value of client size causing another paint 
6826         (and flickering))
6827         * InternalWindowManager.cs: When moving or resizing a window only
6828         update size or location if they actually changed.
6829         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
6830         (seems to match Windows behaviour better). Cleaned up 
6831         ManagedWindowDecorations to draw what's needed and nothing else
6832         (was drawing borders and lines where they shouldn't be)
6833         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
6834         (style = 0xFFFF) and takes into account caption height when 
6835         calculating window rectangle.   
6836
6837 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6838
6839         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
6840         can be added to toolbar multiple times, we need to maintain a list of 
6841         button information for each positions.
6842
6843 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6844
6845         * ToolBar.cs: Some small stetic changes.
6846
6847 2007-01-16  Jackson Harper  <jackson@ximian.com>
6848
6849         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
6850         that allow us to have nested recalc = false blocks.
6851         - Add paste support for images in the RichTextBox
6852         * RichTextBox.cs: flush the text after the color is changed, so
6853         the change takes effect.
6854         - Use SuspendRecalc
6855         - Some extra debugging info
6856         * TextControl.cs: Tags no longer track their length, it is just
6857         computed from the next tags length, this makes things a little
6858         simpler and reduces places that we have to track length changes.
6859         - Refactored the linetag class a little so we could make it
6860         a base class for different kinds of tags
6861         - Created a image tag, a tag that can have a single image inserted
6862         into it
6863         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
6864         that we can call suspend multiple times.
6865         - Add some debugging methods
6866
6867 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6868
6869         * MdiClient.cs: Add ActivatePreviousChild for 
6870         mdi child window navigation.
6871         * Form.cs: Use MdiClient.ActivateNextChild/
6872         ActivatePreviousChild instead of Form.SelectNextControl
6873         to select the next/previous child since 
6874         SelectNextControl doesn't do it in the same order
6875         as mdi children should do it.
6876
6877 2007-01-16  Chris Toshok  <toshok@ximian.com>
6878
6879         * Control.cs: remove container_selected field.
6880
6881 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6882
6883         * MdiClient.cs: Update main form's ActiveChild when
6884         updating keyboard focus for the mdi child.
6885
6886 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
6887
6888         * Control.cs: PreferredSize fix.
6889
6890         * Form.cs: Add several 2.0 events, properties, and methods.
6891
6892 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
6893
6894         * Form.cs: Provide meaningful message when MdiParent is assigned a
6895         Form that is not an MdiContainer.
6896
6897 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6898
6899         * MdiClient.cs: Update main form's ActiveChild when
6900         activating a mdi child.
6901
6902 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6903
6904         * MdiWindowManager.cs: Fix NRE when merging menus and main form
6905         doesn't have a menu.
6906
6907         * Form.cs: Request NCRecalc after creating a mdi child window.
6908         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
6909         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
6910         
6911         * MdiClient.cs: Add new method SendFocusToActiveChild that either
6912         sends keyboard focus to the active child, or to the MdiClient
6913         if there are no child forms.
6914         
6915 2007-01-15  Chris Toshok  <toshok@ximian.com>
6916
6917         * ListView.cs: drop the *Internal overrides, just do our work in
6918         ItemControl's WndProc instead.
6919
6920         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
6921         of the various controls, and forward the events properly (in the
6922         same manner as MS) from the textbox to the UpDown.  Also the
6923         ActiveControl of the UpDownBase gets set properly now.  Finally,
6924         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
6925
6926         * NumericUpDown.cs: set Text in the ctor.
6927
6928         * DomainUpDown.cs: call UpdateEditText in the ctor.
6929         
6930         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
6931         so even a Selectable = false textbox can be focused if you click
6932         in it.  Go figure.
6933
6934         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
6935         just add their handling in their respective WndProc's.  Also add
6936         an explicit FocusInternal method that doesn't consult CanFocus
6937         before calling Select(this).
6938
6939         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
6940         do our work in WndProc instead.
6941
6942         * TabControl.cs: same.
6943
6944         * ComboBox.cs: same.
6945
6946 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6947
6948         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
6949         Fixes #80006.
6950
6951 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
6952
6953         * ListViewItem.cs:
6954         * ThemeWin32Classic.cs: Don't draw the item text outside
6955         item bounds in Details view, as well as use trimming.
6956         Fixes bug #80376.
6957
6958 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6959
6960         * Form.cs: Implement Form.ShowIcon.
6961         
6962         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
6963         null, which when combined with the DlgModalFrame window style removes
6964         the icon from the title bar.
6965
6966 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6967
6968         * Control.cs: Call OnMouseClick after OnClick. (2.0)
6969
6970 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6971
6972         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
6973         menu when mdi child windows theres a menu, uses insert to get icon
6974         at first position. Partially fix #80006.
6975
6976 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6977
6978         * Clipboard.cs: Implement 2.0 methods.
6979
6980 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6981
6982         * Menu.cs: Implement Insert method of MenuItemCollection class
6983         to fix MenuMerge.
6984
6985 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6986
6987         * ListView.cs: Implement 2.0 FindItemWithText method.
6988
6989 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
6990
6991         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
6992         to calculate menu bar size. Fixes #80290.
6993
6994 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
6995
6996         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
6997
6998 2007-01-11  Chris Toshok  <toshok@ximian.com>
6999
7000         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
7001         initial form.
7002
7003 2007-01-11  Chris Toshok  <toshok@ximian.com>
7004
7005         * LinkLabel.cs: make sure to call base.Select in our Select method
7006         if it turns out we're going to be selected (i.e. if we have a link
7007         that is going to receive focus).  That way our container's
7008         ActiveControl is updated properly.
7009
7010 2007-01-11  Chris Toshok  <toshok@ximian.com>
7011
7012         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
7013         they have 1 or more links.  this fixes the crash gert reported.
7014
7015 2007-01-11  Andreia Gaita  <avidigal@novell.com>
7016
7017         * ContainerControl.cs: Remove ContainerSelected flag, not needed
7018         anymore.
7019
7020         * Control.cs (Controls.Add): Check if control to be added to the collection
7021         is a top level control, and throw an ArgumentException if it is.
7022         Remove ContainerSelectedFlag, not needed anymore.
7023
7024         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
7025         top most control doesn't activate the form. This fixes a problem in the
7026         MessageBox, where the default button wouldn't get focus because the form
7027         was activated before being Loaded - when the Owner is set, SetTopMost is
7028         called, and it would activate it.
7029
7030 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
7031
7032         * Button.cs: When clicked and setting the parent form's DialogResult,
7033         use FindForm instead of Parent, since parent could be a container
7034         control and not the Form.  Fixes bug #80495.
7035
7036 2007-01-10  Chris Toshok  <toshok@ximian.com>
7037
7038         * Form.cs: move the call to SendControlFocus into the same
7039         is_loaded check.
7040
7041 2007-01-10  Chris Toshok  <toshok@ximian.com>
7042
7043         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
7044         It breaks in the face of the new ActiveControl stuff, and should
7045         be unnecessary.
7046
7047         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
7048         activecontrol's focus if it's not already set, after we set
7049         ActiveControl, but before we call OnActivated.  Re-fixes #79667
7050         after the previous focus/active control fixes regressed it.
7051
7052         * Control.cs: reindent some code.
7053         
7054 2007-01-10  Chris Toshok  <toshok@ximian.com>
7055
7056         * Splitter.cs: clearing some outstanding changes from my tree.
7057         Replace all accesses (not writes) to the internal dock_style field
7058         with the Dock property.
7059
7060 2007-01-10  Chris Toshok  <toshok@ximian.com>
7061
7062         * Control.cs: make FireEnter, FireLeave, FireValidating, and
7063         FireValidated virtual.
7064
7065         * Form.cs: override and don't chain up calls to FireEnter and
7066         FireLeave.
7067
7068 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7069
7070         * ListView.cs: Add more text padding space when using
7071         auto resize for columns (the previous value didn't work fine).
7072
7073         * ThemeWin32Classic.cs: Update text position inside columns,
7074         to match the appeareance of .Net.
7075
7076         * ColumnHeader.cs: When using auto resize, only the Width should
7077         depend on the sub items, not the Height. Also, set width after
7078         auto resizing (the value of Width should never remain as -1 or -2).
7079
7080 2007-01-10  Chris Toshok  <toshok@ximian.com>
7081
7082         * Application.cs: fix compilation errors when debug is enabled.
7083
7084 2007-01-10  Chris Toshok  <toshok@ximian.com>
7085
7086         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
7087         add some nice ascii art pictures and explanation of the process).
7088         (GetMostDeeplyNestedActiveControl): new utility function we need
7089         because our ActiveControl can refer to a child container with its
7090         own ActiveControl.
7091
7092         * Form.cs (OnActivated): remove the call to SelectActiveControl
7093         from here, since you can override this method and not chain up,
7094         and winforms still sets the active control.
7095         (OnCreateControl): also remove the unnecessary SelectActiveControl
7096         call from here.
7097         (WndProc): it's actually called from the WM_ACTIVATE block, just
7098         before calling OnActivated.
7099
7100         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
7101         inside the else.  the ActiveControl setter will end up setting
7102         focus on @control.  This keeps us from setting it again (and
7103         generating an extra LostFocus/GotFocus pair).
7104         (Select (bool, bool)): reindent.
7105
7106 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
7107
7108         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
7109         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
7110         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
7111         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
7112         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
7113         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
7114         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
7115         ToolStripTextBox.cs: Another wave of corcompare work.
7116
7117 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7118
7119         * ColumnHeader.cs: Implement 2.0 AutoResize method using
7120         the Width property.
7121
7122         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
7123         methods by callling Column.AutoResize method on columns.
7124
7125 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7126
7127         * Control.cs: Provide proper implementations of PreferredSize
7128         and GetPreferredSize (2.0).
7129
7130 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7131
7132         * Form.cs: Remove one character (!) to make my previous OnClosing
7133         stuff work for modal windows like MessageBox.
7134
7135 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7136
7137         * ListView.cs:
7138         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
7139         ListView.Columns to get the last displayed column. Fixes #80452.
7140
7141 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
7142
7143         * Label.cs, LinkLabel.cs: Source code identation fixes.
7144
7145 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
7146
7147         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
7148         we dont need to invalidate only borders because when we invalidate four
7149         border lines the invalidate's generates a complete redraw of button, 
7150         because it now invalidate a complete rect some other redraws operations
7151         are fixed. Fixes #80196.
7152         
7153         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
7154         Remove ToolBarInvalidateEntireButton as it is not used.
7155
7156 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7157         
7158         * Form.cs: Make sure that both OnClosing and OnFormClosing are
7159         called for 2.0 profile.
7160         * CloseReason.cs: Make class internal for 1.1.
7161
7162 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7163
7164         * ToolStripManager.cs: Implement FindToolStrip functionality.
7165         * ToolStrip.cs: Register and unregister with ToolStripManager.
7166
7167 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
7168
7169         * Control.cs: This was messy.  2.0 moves much of ControlCollection
7170         to ArrangedElementCollection.  Implemented this with as few #if's as 
7171         possible (which is still too many).
7172
7173 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
7174
7175         * Control.cs: Implement SizeFromClientSize() [2.0].
7176
7177 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
7178
7179         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
7180         use Theme.BorderSize to calculate area instead of static value 1, 
7181         by the way use new BorderStaticSize instead     Border3DSize when 
7182         border_static is true. Fixes #79537.
7183         
7184         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
7185         
7186         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
7187         it is not needed.
7188
7189 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7190
7191         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
7192
7193 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7194
7195         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
7196         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
7197         
7198         * Hwnd.cs: 
7199         - border_static field added, it will used to define when a control 
7200         theres 3D border but it must be static (thin).
7201         - In GetWindowRectangle use Theme.BorderSize to calculate area 
7202         instead of static value 1, by the way use new BorderStaticSize instead
7203         Border3DSize when border_static is true.
7204
7205         * XplatUIX11.cs, XplatUIOSX.cs: 
7206         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
7207         
7208         * Theme.cs: BorderStaticSize field added.
7209
7210 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7211
7212         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
7213
7214 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7215
7216         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
7217         mimic same behavior than win32 that set border only in CreateParams,
7218         it fix problems under CreateParams overrides. Fix #79442 and partial
7219         fix #79537.
7220         
7221         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
7222         of thi control you must call recreate handle. 
7223         
7224         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
7225         need to do anything as RecreateHangle will take care about borders.
7226
7227 2007-01-05  Mike Kestner  <mkestner@novell.com>
7228
7229         * ListView.cs: hack to eliminate Lost/Got focus notifications on
7230         cycles between the ItemControl and parent.  Fixes #80388.
7231
7232 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7233
7234         * Control.cs: Lazy init layout engine. Do not directly use 
7235         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
7236
7237 2007-01-05  Chris Toshok  <toshok@ximian.com>
7238
7239         * DataGrid.cs: don't forceably rebind columns in SetDataSource
7240         unless our list manager has changed (i.e. unless we have reason to
7241         believe our columns have changed).  Fixes #80422.
7242         
7243         also, disable the call do BindColumns in
7244         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
7245         1.1 the event isn't raised in response to a column addition on a
7246         table.)
7247
7248 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7249
7250         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
7251         that inheritors can not call it if they choose.  Fixes bug #80456.
7252
7253 2007-01-05  Andreia Gaita  <avidigal@novell.com>
7254
7255         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
7256         doesn't blow up with a null exception on marshalling.
7257         
7258 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7259
7260         * Control.cs: Implement several 2.0 protected properties and methods.
7261         Ensure that all necessary events are being called when properties
7262         are set.
7263
7264 2007-01-05  Mike Kestner  <mkestner@novell.com>
7265
7266         * ListView.cs: implement PgUp/PgDn for Details view.  Also
7267         fixes First/LastVisibleIndex to use the item_control.ClientRect 
7268         instead of the parent control.  Fixes #80378.
7269
7270 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
7271
7272         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
7273           determine whether to use yard-pound or not (bug #78399).
7274
7275 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
7276
7277         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
7278         problems. So it is time to bring back the old popupbutton colors.
7279
7280 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7281
7282         * ColumnHeader.cs:
7283         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
7284         property by using the internal information of the
7285         columns order in ListView.
7286
7287 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
7288
7289         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
7290         Add 2.0 Tag properties.
7291
7292         * LinkArea.cs: Add 2.0 ToString method.
7293
7294 2007-01-03  Chris Toshok  <toshok@ximian.com>
7295
7296         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
7297         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
7298         when we're editing, which fixes #80047.
7299
7300 2007-01-03  Chris Toshok  <toshok@ximian.com>
7301
7302         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
7303         #80404.
7304
7305 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
7306
7307         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
7308         property and implementation.
7309
7310         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
7311         for MdiWindowListItem property.
7312
7313         * ToolStripDropDown.cs: Don't consider hidden menu items while
7314         laying out the menu.
7315
7316 2007-01-03  Andreia Gaita  <avidigal@novell.com>
7317
7318         * SendKeys.cs: window handle is not needed in win32, so just
7319         get the active window for X after parsing keys and don't use
7320         it when building the message; it is passed by parameter to the 
7321         Xplat method and used there to build the message instead. Also,
7322         wait for events to be processed on SendWait, as opposed to Send,
7323         which doesn't wait :) Playing with threads and Send() completely 
7324         hangs on ms.net, only SendWait() works.
7325         
7326         XplatUIX11.cs
7327         X11Display.cs: Check for valid window handle.
7328
7329 2007-01-03  Jackson Harper  <jackson@ximian.com>
7330
7331         * TextControl.cs: Need to prevent wrap calculations when replacing
7332         text (this was there before i removed it accidently).
7333         - Don't update the cursor during the positioning, just set it to
7334         selection_start at the end of the operaion.
7335
7336 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7337
7338         * Control.cs:
7339         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
7340         
7341 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7342
7343         * MonthCalendar.cs: Added Click and DoubleClick events again,
7344         but this time they only hide Control's Click and DoubleClick.
7345         
7346 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
7347
7348         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
7349         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
7350
7351 2007-01-02  Jackson Harper  <jackson@ximian.com>
7352
7353         * TextBoxBase.cs: We move the caret with the split now, so we
7354         don't need to explicitly move the caret after splitting.  This
7355         fixes the caret bumping down an extra line on Enter.
7356
7357 2007-01-02  Miguel de Icaza  <miguel@novell.com>
7358
7359         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
7360         2.72). 
7361
7362         * ScrollableControl.cs: Add Scroll event.
7363
7364 2007-01-02  Mike Kestner  <mkestner@novell.com>
7365
7366         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
7367         to fix all hdr height padding codepaths.  Fixes #80207.
7368
7369 2007-01-02  Chris Toshok  <toshok@ximian.com>
7370
7371         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
7372         setting it to the Control defaults anyway, and it being after the
7373         Dock set was screwing up layout.
7374         (set_Dock): don't short circuit out of setting base.Dock.  Also,
7375         no need to call UpdateStatusBar here, as it'll be re-layed out if
7376         it needs to be.
7377
7378 2007-01-02  Mike Kestner  <mkestner@novell.com>
7379
7380         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
7381         to header height for width == -1. Fixes the rest of #80207.
7382
7383 2007-01-02  Mike Kestner  <mkestner@novell.com>
7384
7385         * ListView.cs: rework the mouse event forwarding everaldo added
7386         to translate the coordinates to the parent control not
7387         raise the parent events until after we've done our work. Hover
7388         needs more work, in the case where HoverSelection is on, because
7389         the item control receives more than one MouseHover per Enter
7390         event, so we need to ensure only the "first" hover gets forwarded.
7391         Opening a minor bug for that.
7392
7393 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
7394
7395         * CheckedListBox.cs: Fixed SelectionMode to match MS.
7396         * ListControl.cs: Implemented AllowSelection property. Removed extra
7397         tabs.
7398         * ListBox.cs: Implemented AllowSelection property.
7399
7400 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7401
7402         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
7403         SelectedItem, it prevent for errors when you must disable item
7404         before perform click. Fixes #80409.
7405
7406 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7407
7408         * MenuAPI.cs: Prevent second level and beyond submenus to close
7409         until first level when move out side of popup.
7410         
7411 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7412
7413         * MenuAPI.cs:
7414         - Down submenu positin in three pixels.
7415         - Closes sub menu when mouse leaves from menu. Fixes #80402.
7416
7417 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7418
7419         * ThemeWin32Classic.cs:
7420         - Fix popup menu size adding one pixel on the top.
7421         - Down menu item border from two to one to mimic Win32.
7422         - Some source identation fixes. 
7423
7424 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7425
7426         * ThemeWin32Classic.cs: Use float numbers to calculate size and
7427         position of menu arrows, it fix wrong arrow size.
7428
7429 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7430
7431         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
7432         instead of line, it simplify draw operation and fix it using 3D
7433         borders to mimic Win32.
7434
7435 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
7436
7437         * StatusStrip.cs: Add implementation of the sizing grip.
7438
7439         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
7440         StatusStrip rendering.
7441
7442 2006-12-31  Chris Toshok  <toshok@ximian.com>
7443
7444         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
7445         override the layout style (anchor/dock) of the control.  assign to
7446         Dock instead.  Fixes bug #80416.
7447
7448         * ToolStrip.cs: same.
7449
7450 2006-12-31  Andreia Gaita  <avidigal@novell.com>
7451
7452         * ContainerControl.cs: Use ContainerSelected flag to check if 
7453         a Container is directly selected, or if Select is called on a 
7454         non-container. If a container is directly selected, focus events 
7455         should not be raised.
7456         Apply #80411 patch to throw exception on set_ActiveControl if 
7457         control is the same as the current one.
7458         
7459         * Control.cs: Use ContainerSelected flag (see above).
7460         Add invalidation check to raise event but not invalidate if 
7461         dimensions are 0.       
7462         Apply #80411 patch.
7463         
7464
7465 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
7466
7467         * MenuAPI.cs: After click, dont close popup menu when menu is
7468         ContextMenu. Fixes #80399.
7469
7470 2006-12-30  Chris Toshok  <toshok@ximian.com>
7471
7472         * ContainerControl.cs: make sure we throw the exception if the
7473         container control doesn't contain the control we're setting
7474         ActiveControl to.
7475
7476 2006-12-30  Chris Toshok  <toshok@ximian.com>
7477
7478         * Control.cs (SetTopLevel): fix the exception raised by
7479         SetTopLevel for child controls.
7480         (set_Anchor): call UpdateDistances when setting the anchor type.
7481         This fixes bug #80336.
7482
7483 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7484
7485         * Theme.cs: For now, revert back to 8pt font.
7486
7487 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
7488
7489         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
7490         Fixes #80395.
7491
7492 2006-12-29  Chris Toshok  <toshok@ximian.com>
7493
7494         * Control.cs: reorder the code in OnResize to give the same event
7495         ordering as MS.
7496
7497 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7498
7499         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
7500         TileHorizontally and TileVertically.
7501         
7502 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
7503
7504         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
7505         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
7506         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
7507         Corrected copyright and email adress.
7508
7509 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7510
7511         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
7512         of Exception in FullPath property if no TreeView is associated with
7513         the TreeNode.
7514
7515 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7516
7517         * Theme.cs: Marked default_font as private, and initialize it in ctor
7518         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
7519         on 2.0 profile.
7520         * ThemeGtk.cs: Removed default_font intialization.
7521         * ThemeWin32Classic.cs: Removed default_font initialization.
7522
7523 2006-12-28  Chris Toshok  <toshok@ximian.com>
7524
7525         * Control.cs: fix a couple of place where we were creating handles
7526         more aggressively than we should be.  Fixes ControlRefresh unit
7527         tests.
7528
7529 2006-12-28  Chris Toshok  <toshok@ximian.com>
7530
7531         * Control.cs: contrary to what the comment said, Control.Dock does
7532         not supercede Control.Anchor - the last one you assign to decides
7533         the layout behavior.  so we need to keep track of which was the
7534         last set.  Also, fix some of the affected property arguments in
7535         PerformLayout calls, and remove an redundant parent.PerformLayout
7536         call in OnResized.
7537
7538         Add a VisibleInternal property, which returns is_visible.  We
7539         can/should get rid of all the usage of this field elsewhere.
7540
7541 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7542         
7543         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
7544         control style, not DoubleBuffer. Added UseDoubleBuffering property
7545         that indicates whether doublebuffering is enabled and supported.
7546         (comment from and code based on Gert Driesen's patch in #80324).
7547         Fixes #80324.
7548
7549 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7550         
7551         * Control.cs: Fixed a NRE.
7552
7553 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7554
7555         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
7556         for 2.0.
7557
7558 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7559
7560         * Control.cs: Rewrote double buffering, now a seperate
7561         class handles all the buffering, no Graphics is disposed of
7562         until the painting is finished (earlier implementation 
7563         would crash if the control was resized in the OnPaint, 
7564         since it would cause the double buffer to be recreated
7565         and the old one disposed), a separate Graphics is 
7566         created for every paint (MS behaviour and anyways the state
7567         of the Graphics would have to be saved and restored otherwise)
7568         
7569         * XplatUIDriver.cs: 
7570         * XplatUIX11.cs:
7571         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
7572         so that we can get the graphics for the back buffer without
7573         having to create a new one and remove the offscreen_dc parameter
7574         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
7575         
7576 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7577
7578         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
7579         Also make virtual all the key-related methods.
7580
7581         * ListViewItem.cs: Make virtual the key related methods for
7582         ListViewSubItemCollection.
7583
7584 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7585
7586         * ListView.cs:
7587         * ListViewItem.cs:
7588         * ThemeWin32Classic.cs:
7589         * Theme.cs: Initial support for Tile view in ListView,
7590         as well as the implementation of the required bits for it (Item
7591         and Subitem).
7592
7593 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7594
7595         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
7596         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
7597         Provide useful exception messages.
7598
7599 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7600
7601         * TrackBar.cs: Remove a warning.
7602         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
7603         when used by DateTimePicker, fixes #80287. This also requires that 
7604         MonthCalendar implements it's own drawing for the yearly updown control,
7605         otherwise the Capture tracking would be too complicated. Removed the Click 
7606         and DoubleClick events (according to comments they were hiding the base class
7607         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
7608         raise these events, not that they cannot be raised. It is possible to raise 
7609         them by calling OnClick and OnDoubleClick). Added two internal fields in 
7610         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
7611         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
7612         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
7613         event, no longer needed.
7614         
7615 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7616
7617         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
7618         true if new value differs from current value.
7619
7620 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7621
7622         * Control.cs: ControlCollection.Count must be public. Fixed build of
7623         unit tests.
7624
7625 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7626
7627         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
7628
7629 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7630
7631         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
7632
7633 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7634
7635         * Control.cs: Invalidates control including when Width and Height is 
7636         equal zero or is not visible, only Paint event must be care about 
7637         this. Fixes #79913.
7638
7639 2006-12-26  Chris Toshok  <toshok@ximian.com>
7640
7641         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
7642         more corcompare work.
7643
7644         * DataGridView.cs: fix compiler warning.
7645
7646         * ColumnHeader.cs: some corcompare work, and also take the
7647         opportunity to make the internal fields private.
7648
7649         * ListView.cs: fix the fallout from the above field change.
7650
7651 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7652
7653         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
7654         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
7655         ToolStripTextBox.cs: Fixes to events and corcompare.
7656
7657 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7658
7659         * ListView.cs: Call owner.OnMousexx event to propagate events from
7660         item to ListView. Fixes #80367.
7661
7662 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7663
7664         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
7665         if value is less than one. ItemHeight should not be set to a value
7666         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
7667         Removed extra tabs.
7668
7669 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7670
7671         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
7672         * ToolStripStatusLabel.cs: Add Spring for Moma.
7673
7674 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7675
7676         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
7677         Fixed code formatting. Removed debug code.
7678         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
7679
7680 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7681
7682         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
7683         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
7684         ArgumentOutOfRangeException if ColumnCount is negative. In 
7685         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
7686         less than 4 or higher than 32768.
7687         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
7688         Fixed FormatProvider to return CurrentCulture unless explicitly set.
7689         Fixed IsFormatProviderDefault to return true if FormatProvider has
7690         not been explicitly set.
7691
7692 2006-12-25  Chris Toshok  <toshok@ximian.com>
7693
7694         * Application.cs: add a couple of 2.0 events.
7695
7696 2006-12-25  Chris Toshok  <toshok@ximian.com>
7697
7698         * Control.cs: fix compiler warning.
7699
7700         * AxHost.cs: corcompare fixes.
7701
7702         * ApplicationContext.cs: corcompare fixes.
7703
7704 2006-12-25  Chris Toshok  <toshok@ximian.com>
7705
7706         * Control.cs: only update dist_right/dist_bottom if the
7707         width/height is > 0.  this fixes anchored controls being resized
7708         smaller until they disappear and then resized larger again.
7709
7710 2006-12-25  Chris Toshok  <toshok@ximian.com>
7711
7712         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
7713         since they're nothing more than X/Left and Y/Top, respectively.
7714
7715         Also, move back to a per-control Bitmap/Graphics for
7716         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
7717         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
7718         Height.
7719
7720 2006-12-25  Miguel de Icaza  <miguel@novell.com>
7721
7722         * MessageBox.cs: Implemented overload that takes a new "bool
7723         displayHelpButton" by adding a new internal field "show_help".
7724         When clicked this will raise the HelpRequested on the owner or the
7725         main form. 
7726
7727         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
7728         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
7729
7730         * ListView.cs: Add support ColumnWidthChanged and
7731         ColumnWidthChanging. 
7732
7733         Add support for ColumnReordered event.
7734         (ReorderColumn): Add NET_2_0 specific support for cancelling the
7735         reorder.
7736
7737         Very nice codebase!
7738
7739         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
7740
7741         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
7742
7743 2006-12-24  Chris Toshok  <toshok@ximian.com>
7744
7745         * GridTablesFactory.cs: 2.0 corcompare work.
7746
7747         * ToolStripContainer.cs: add "override" to
7748         ContextMenuStripChanged, and remove the local event object.
7749
7750         * ToolStripDropDown.cs: same with a couple properties.
7751
7752         * ToolStripPanel.cs: same with AutoSizeChanged event.
7753
7754         * TextBoxBase.cs: add "override" to AutoSizeChanged.
7755
7756         * Form.cs: add the remaining 2.0 events, and do some corcompare
7757         attribute work.
7758
7759         * DateTimePicker.cs: add "new" to padding.
7760
7761         * ButtonBase.cs: use Control's use_compatible_text_rendering.
7762
7763         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
7764
7765         * DataGridView.cs: PaddingChanged is overridden.
7766
7767 2006-12-24  Chris Toshok  <toshok@ximian.com>
7768
7769         * Control.cs: corecompare work here too.
7770
7771         * DataGridViewElement.cs, DataGridView.cs,
7772         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
7773         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
7774         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
7775         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
7776         work.
7777
7778 2006-12-24  Miguel de Icaza  <miguel@novell.com>
7779
7780         * Control.cs: Switched the error message on the console for a
7781         todo.  A review of the code will have to cope with this anyways
7782         (since its a large feature, it is in our radar) and it was
7783         producing too much output when running PDN.
7784
7785         * ToolStripComboBox.cs: Set the text when the SelectedIndex
7786         changes.  Applications depend on this (PDN 2.72)
7787
7788 2006-12-23  Chris Toshok  <toshok@ximian.com>
7789
7790         * TableLayoutSettings.cs: finish up the corcompare work for this
7791         class.
7792
7793 2006-12-23  Chris Toshok  <toshok@ximian.com>
7794
7795         * Control.cs: make SetImplicitBounds internal, do some futzing
7796         with LayoutEngine so that it's available in 1.1, and remove the
7797         entire duplicated code mess from PerformLayout.  Use
7798         System.Windows.Forms.Layout.DefaultLayout instead.
7799
7800         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
7801
7802 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7803
7804         * Form.cs: Add MainMenuStrip property.
7805
7806 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7807
7808         * Control.cs: Add ContextMenuStrip property and implementation.
7809         Fix ContextMenu implementation to show menu centered on control when
7810         activated using the keyboard instead of showing at screen (0,0).
7811
7812         * ToolStripDropDown.cs: Fix needed overload of Show ().
7813
7814 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7815
7816         * Menu.cs: Name property added for 2.0 profile.
7817         
7818 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7819
7820         * Menu.cs: Update information about FindMenuItem, method to be
7821         implemented soon.
7822
7823 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7824
7825         * MenuAPI.cs: When deselect items deselect also selected subitems.
7826         
7827 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7828
7829         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
7830         FindSubItemByCoord to found itens that is not active, also an
7831         cheking added to FindSubItemByCoord to search for items only 
7832         in visible popup windows. Fixes #80274.
7833
7834 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
7835
7836         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
7837         internal property, it be care about change ExStyle. 
7838
7839 2006-12-22  Andreia Gaita  <avidigal@novell.com>
7840
7841         * ContainerControl.cs: set activeControl for parent forms up the 
7842         tree when the new activecontrol is a container.
7843         When validating the active control, if it is a container, also
7844         raise up the validation for it's active control. Fixes #80280
7845         
7846         * Control.cs: Add internal property flag and check to prevent
7847         Focus events from getting raised when Select() is called for
7848         a ContainerControl. There are still too many focus events being
7849         raised at the moment though.
7850         Cleaned up the code a bit.
7851
7852 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7853
7854         * Control.cs: Added all missing 2.0 events.and
7855         fixed a couple of corcompare issues.
7856         * TrackBar.cs: Implemented missing 2.0 bits.
7857         * MonthCalendar.cs, 
7858         * DateTimePicker.cs, 
7859         * MdiClient.cs: Fixed some corcompare issues.
7860
7861 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7862
7863         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
7864         SplitterPanel.cs: corecompare work.
7865
7866 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7867
7868         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
7869         Clean up warnings for BackgroundImageChanged and PaddingChanged
7870         events now that they are implemented in Control.cs.
7871
7872 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7873
7874         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
7875         
7876         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
7877         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
7878         of TableLayoutPanel and supporting cast.
7879
7880 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7881
7882         * XplatUIWin32.cs: 
7883         - GrabWindow now confines the mouse pointer to the confine window.
7884         - Added Win32ClipCursor and Win32GetClipCursor.
7885
7886         * Control.cs: 
7887         - Added CaptureWithConfine to be able to capture and confine 
7888         mouse pointer.
7889         
7890         * InternalWindowManager.cs: 
7891         - Call CaptureWithConfine instead of Capture if we're an
7892         MdiChild (fixes #79982).
7893
7894 2006-12-21  Chris Toshok  <toshok@ximian.com>
7895
7896         * DataGrid.cs: guard against the initial state of selection, where
7897         selection_start == -1.  make sure we only select from index >= 0.
7898         Fixes bug #80291.
7899
7900 2006-12-21  Chris Toshok  <toshok@ximian.com>
7901
7902         * Control.cs: we don't need to be so draconian with
7903         UpdateDistances, and we thusly don't need to call it before
7904         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
7905
7906 2006-12-21  Daniel Nauck  <dna@mono-project.de>
7907
7908         * ComboBox.cs,
7909         TextBox.cs: Implemented AutoComplete properties.
7910
7911 2006-12-20  Chris Toshok  <toshok@ximian.com>
7912
7913         * DataGridView*.cs: some corecompare work.
7914
7915 2006-12-20  Jackson Harper  <jackson@ximian.com>
7916
7917         * XplatUIX11.cs: We need to hide the caret when deleting it,
7918         otherwise you get carets left lying around everywhere.
7919         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
7920         prevents getting some weird half drawn caret tracers when
7921         scrolling.
7922         * TextControl.cs: Attempt to reduce the number of times we need to
7923         recreate the caret.
7924
7925 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
7926
7927         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
7928
7929 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7930
7931         * DateTimePicker.cs:
7932         - Implemented missing 2.0 bits.
7933         - Changed some default values to match MS.
7934         
7935 2006-12-20  Jackson Harper  <jackson@ximian.com>
7936
7937         * TextBoxBase.cs: When changing the font across the document we
7938         can't recalculate after changing each line, since that will cahnge
7939         the line count.
7940         - PreferredHeight is a little different than i thought.
7941         - When backspacing, move the caret before we do the actual char
7942         delete, because when that delete crosses a wrap boundary the
7943         positional information will change.
7944
7945 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7946
7947         * Control.cs: Added some missing 2.0 bits: 
7948         BackgroundImageLayout, BackgroundImageLayoutChanged, 
7949         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
7950         add IBindableComponent and IDropTarget implementation.
7951         
7952         * MonthCalendar.cs: 
7953         - Added all missing 2.0 features:
7954         BackgroundImageLayout, RightToLeftLayout, 
7955         OnHandleDestroyed, RightToLeftLayoutChanged, 
7956         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
7957         PaddingChanged.
7958         - Rewrote all the BoldDate code, it was completely broken.
7959         - Fixed all the tests (the tests can now be re-enabled, the
7960         problems were not with the tests, but with the control, it was
7961         mostly broken).
7962         
7963         * DateTimePicker.cs: Changed the location where the 
7964         MonthCalendar is shown.
7965         
7966 2006-12-19  Chris Toshok  <toshok@ximian.com>
7967
7968         * DataGridView.cs: add IDropTarget implementation.
7969
7970         * ToolStripPanel.cs: add IDropTarget implementation.
7971
7972 2006-12-19  Jackson Harper  <jackson@ximian.com>
7973
7974         * TextControl.cs: soft now means something different than what it
7975         used to mean, we want to move the caret regardless of whether or
7976         not this break was soft (would we really have wanted the caret
7977         to not move with the break in the old context?)
7978         * TreeView.cs: Make sure we factor in the vert scrollbar when
7979         calculating the horizontal scrollbar's maximum.
7980
7981 2006-12-19  Andreia Gaita  <avidigal@novell.org>
7982
7983         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
7984         check for keywords in alternate casing, close bug #80049.
7985
7986 2006-12-19  Chris Toshok  <toshok@ximian.com>
7987
7988         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
7989         methods (which all do nothing).
7990
7991         * IDropTarget.cs: add the 4 missing methods.
7992
7993 2006-12-19  Chris Toshok  <toshok@ximian.com>
7994
7995         * TableLayoutRowStyleCollection.cs: corcompare work.
7996         
7997         * TableLayoutSettings.cs: same.
7998
7999         * TableLayoutStyle.cs: same.
8000
8001         * TableLayoutColumnStyleCollection.cs: same.
8002
8003 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
8004
8005         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
8006         TableLayoutPanel I've had in my local tree for way too long.
8007
8008 2006-12-19  Miguel de Icaza  <miguel@novell.com>
8009
8010         * TableLayoutSettings.cs: Finish the public API (still needs all
8011         the logic to update on changes). 
8012
8013         * TableLayoutPanelCellPosition.cs: new file.
8014         
8015         * TableLayoutRowStyleCollection.cs,
8016         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
8017         TableLayoutSettings.cs: Track the final 2.0 table api.
8018
8019 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8020
8021         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
8022         and Image List 2.0 members for ColummnHeader.
8023         * ListView.cs: Add key-related 2.0 methods for
8024         ColumnHeaderCollection.
8025
8026 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8027
8028         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
8029         ArgumentNullException if items argument is null. Ignore null item in
8030         arrays. Removed extra tabs.
8031
8032 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8033
8034         * MonthCalendar.cs: Fixed InvalidCastException.
8035
8036 2006-12-19  Jackson Harper  <jackson@ximian.com>
8037
8038         * TextControl.cs: Don't increment the position here.
8039         - When calculating char positions only add in the line break size
8040         for hard line breaks.
8041
8042 2006-12-19  Andreia Gaita  <avidigal@novell.org>
8043
8044         * SendKeys.cs: Changed some things to match ms.net behaviour
8045         when parsing shifted capital letters.
8046         
8047         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
8048         Add window handle as parameter to SendInput. X11 needs the 
8049         window handle, and the handle being passed      to it in the keys 
8050         queue is the active control handle (which windows needs), not 
8051         the window handle.
8052         
8053         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
8054         to support SendKeys on X.       
8055         
8056         * X11Keyboard: Implement helper method to lookup a linux keycode
8057         given the virtual keycode. Added table of keycode-2-virtualkey
8058         values to support this.
8059
8060 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8061
8062         * ListView.cs: Add support for SelectedIndexCollection
8063         and SelectedItemCollection 2.0 methods. Implement support
8064         for ImageKey too.
8065         * ListViewItem.cs: Add support for ListViewSubItemCollection
8066         2.0 methods. Also, fix an incorrect behavior of AddRange method
8067         (it shouldn't call Clear).
8068         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
8069
8070 2006-12-19  Jackson Harper  <jackson@ximian.com>
8071
8072         * RichTextBox.cs: 
8073         * TextBoxBase.cs: New args for FormatText
8074         * TextControl.cs: Rewrote the main drawing method, this version
8075         feels a little easier to understand and debug to me.  Hopefully it
8076         does to others also
8077         - Fix FormatText to OR in the new formating values.  Added
8078         FormatSpecified param, basically this works in the same way as
8079         BoundsSpecified in Control.
8080         - Set the caret properties when the caret is positioned.
8081         - When wrapping text make sure that we calculate the width of the
8082         last character
8083         - when calculating alignments we might have wrapped down to the
8084         next line, so don't search for an individual tag, search for the
8085         end of the line
8086         - We need to invalidate the selection area when we replace the
8087         selection.
8088         
8089 2006-12-19  Daniel Nauck  <dna@mono-project.de>
8090
8091         * Application.cs: add Restart () 2.0 support
8092
8093 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8094
8095         * MenuItem.cs: Invalidate menu item rectangle after change Enable
8096         property. Fixes #80268.
8097         
8098 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8099
8100         * MenuAPI.cs: Dont trigger select event when closes top menu
8101         item. Fixes #80270.
8102
8103 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8104
8105         * MenuAPI.cs: When you click on menuitem only trigger onselect
8106         event for top menu itens. Fixes #80271.
8107         
8108 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8109
8110         * MdiWindowManager.cs: Make IconicBounds depend on
8111         the bottom of MdiClient, not the top (fixes #80267)
8112         
8113 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8114
8115         * MdiClient.cs: Added missing 2.0 attribute
8116
8117 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8118
8119         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
8120         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
8121
8122 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8123
8124         * MenuAPI.cs: Fix click when menuitem is not popup,
8125         this regression was caused by last commit (#80272).
8126
8127 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
8128
8129         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
8130         fire click event or close menu. Fixes #80272.
8131
8132 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8133
8134         * ListViewHitTestInfo.cs: add
8135
8136 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8137
8138         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
8139         * FlatButtonAppearance.cs: add
8140         * DockingAttribute.cs: add
8141
8142 2006-12-17  Chris Toshok  <toshok@ximian.com>
8143
8144         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
8145         and rebind our columns when it does - this way, if you make
8146         changes to the DataTable (or set the Table attribute on a DataView
8147         after setting it as the DataGrid's DataSource, the changes are
8148         made visible.)  Fixes bug #80107.
8149
8150 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8151
8152         * ListViewGroup.cs: add internal Location property for layouting.
8153         * Theme.cs: add abstract ListViewGroupHeight function.
8154         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
8155
8156 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8157
8158         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
8159         Added reset of selected index to 0 when adding first tab page.
8160         Fixes #80264
8161         
8162         * NumericUpDown.cs: Fix NET_2_0 check
8163
8164 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8165
8166         * ListViewGroup.cs: fixed DefaultValueAttribute value
8167
8168 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8169
8170         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
8171
8172 2006-12-15  Miguel de Icaza  <miguel@novell.com>
8173
8174         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
8175         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
8176         ScrollableControl.cs: Add a handful of methods that are
8177         overwritten in 2.0 
8178
8179 2006-12-15  Chris Toshok  <toshok@ximian.com>
8180
8181         * XplatUIWin32.cs: initial implementation of the Reversible
8182         drawing functions.  there are some problems.  DrawReversibleFrame
8183         doesn't seem to work at all for Dashed FrameStyle, and in the
8184         Thick case there are drawing errors at the corners (we probably
8185         need to bind Rectangle instead of doing moveto/lineto's.)
8186
8187 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8188         
8189         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
8190         to send blocks of key messages. Send accumulates keys to send with Flush, 
8191         while SendWait sends all keys immediately.
8192                 
8193         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
8194         XplatUIX11.cs,  XplatUIX11-new.cs:
8195         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
8196         to Win32 SendInput.
8197         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
8198         
8199         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
8200         testing for ms.net on this class is very tricky, as the tests run too fast 
8201         to allow the hook to release, essentially freezing the keyboard and the 
8202         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
8203         category :p
8204
8205 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8206
8207         * Padding.cs: fixed serialization compability to MS ("_var" field names),
8208                         added missing attributes.
8209  
8210 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8211
8212         * ListViewGroup.cs: Added missing attributes.
8213         * ListViewGroupCollection.cs: Added missing attributes.
8214
8215 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8216
8217         * ListViewItem.cs: fixed ListViewSubItem text property.
8218
8219 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8220         
8221         * Control.cs: Added missing 2.0 attributes
8222         
8223 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8224         
8225         * MdiClient.cs: Added missing 2.0 attribute.
8226         * MonthCalendar.cs: Added some missing 2.0 attributes 
8227         and properties.
8228         
8229 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8230
8231         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
8232
8233 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
8234
8235         * MainMenu.cs: Add the new 2.0 constructor to help out people
8236         using the MainMenu in VS2005.
8237
8238 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8239         
8240         * MdiChildContext.cs: Removed it, no longer used.
8241         * MdiClient.cs: Added missing 2.0 attributes.
8242         
8243 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8244         
8245         * InternalWindowManager.cs: Fix a NullRef with previous 
8246         changes for toolwindows.
8247         
8248 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8249
8250         * Control.cs: 
8251         - Added AfterTopMostControl to allow for certain controls 
8252         to always stay on top when normal controls are brought to 
8253         front.
8254         
8255         * XplatUIWin32.cs: 
8256         - (DrawInversibleRectangle): Get window rectangle from Win32 
8257         in stead of from control, since Win32 doesn't calculate
8258         screen coords correctly from control's Location if it 
8259         have docked siblings.
8260         
8261         * MdiWindowManager.cs:
8262         - Correct the control menu popup location when clicked on
8263         the maximized form icon. (fixes #80223.1)
8264         - Don't show moving rectangle if mouse hasn't moved from
8265         the original clicked point.
8266         - Removed FormGotFocus handler (not used).
8267         - Calculate the control buttons location from the main
8268         window's size and not client size (fixes #79770).
8269         - Form is now closed when the form icon is double-clicked
8270         (fixes #79775). 
8271         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
8272         
8273         * InternalWindowManager.cs:
8274         - Moved some MDI-only methods to MdiWindowManager.
8275         - Removed unused properties and methods.
8276         - Unified method naming for methods handling wm messages.
8277         - Moved all message handling to seperate methods for
8278         each message.
8279         
8280         * ThemeWin32Classic.cs:
8281         - DrawManagedWindowDecorations now draws the title bar 
8282         with a gradient brush.
8283         - Add a CPDrawButtonInternal that allows us to specify
8284         light, normal and dark colors for the buttons (control 
8285         buttons for MDI children were drawn with the same light
8286         color as the background, therefore loosing the 3D effect).
8287         
8288         * SizeGrip.cs:
8289         - Add a CapturedControl property that is used to 
8290         determine the control to resize (defaults to parent). 
8291         Needed for MdiClient, since its SizeGrip's parent is
8292         MdiClient, but the control to resize is the main form.
8293         
8294         * MdiClient.cs:
8295         - Set SizeGrip's CapturedControl to the main form in order
8296         to resize the main form and not the MdiClient.
8297         - Override AfterTopMostControl to leave the scrollbars 
8298         always on top.
8299
8300 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8301
8302         * ListView.cs: fixed ListViewItemCollection AddRange and
8303                         implemented ListViewItemCollection AddRange 2.0 support.
8304
8305 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8306
8307         * ListViewGroup.cs: Add.
8308         * ListViewGroupCollection.cs: Add
8309         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
8310         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
8311                                 stub for ImageKey 2.0 support.
8312
8313 2006-12-14  Mike Kestner  <mkestner@novell.com>
8314
8315         * ListView.cs: add text padding to the autocalculation for columns
8316         of width -2.  Fixes #80207.
8317  
8318 2006-12-14  Mike Kestner  <mkestner@novell.com>
8319
8320         * ListView.cs: add some index guarding for partial row navigation 
8321         logic.  Fixes #80250.
8322
8323 2006-12-14  Mike Kestner  <mkestner@novell.com>
8324
8325         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
8326         are added or inserted to the collection.  Fixes #81099.
8327
8328 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
8329
8330         * MenuAPI.cs: Closes menu when right click out side of popup
8331         it fix problem in ContextMenu and MainMenu. Fixes #80252.
8332
8333 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8334
8335         * ListViewItem.cs: Fix dumb error.
8336
8337         * ListView.cs: Add Find and ContainsKey methods in 
8338         ListViewItemCollection, and also return true for IsReadOnly
8339         and IsFixedSize (changes for 2.0). 
8340
8341 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
8342
8343         * Control.cs: Allow Region to be set to null.
8344
8345 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8346
8347         * MdiWindowManager.cs: Remove unused (commented out) code.
8348         * Form.cs: When the MdiChild is maximized, the form needs 
8349         WM_NCMOUSELEAVE, so request it.
8350         * InternalWindowManager.cs: 
8351         - Added tooltips to control buttons.
8352         - Removed duplicated control button handling code.
8353         - Removed unused (commented out) code.
8354         
8355 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
8356
8357         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
8358         was used because we must set cursor without trigger ChangeCursor event
8359         and without change Cursor control property. Fixes #79963.
8360
8361 2006-12-12  Andreia Gaita  <avidigal@novell.com>
8362         
8363         * Control.cs: Check if Region setter value is null, and ignore
8364
8365 2006-12-12  Jackson Harper  <jackson@ximian.com>
8366
8367         * TextControl.cs: We were almost always drawing one more line then
8368         needed, since the GetLineByPixel will return the last line found
8369         at that pixel. In most cases though, we were invalidating up to
8370         the junction between two lines.
8371         - Improve debug code.
8372
8373 2006-12-12  Chris Toshok  <toshok@ximian.com>
8374
8375         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
8376         and FillReversibleRectangle.
8377
8378         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
8379         and FillReversibleRectangle.
8380
8381         * XplatUIWin32.cs: add stubs which do nothing for
8382         DrawReversibleFrame, DrawReversibleLine, and
8383         FillReversibleRectangle.
8384
8385         * XplatUIOSX.cs: add stubs which raise NIE for
8386         DrawReversibleFrame, DrawReversibleLine, and
8387         FillReversibleRectangle.
8388
8389         * XplatUIX11.cs: add working implementation for
8390         DrawReversibleFrame, DrawReversibleLine, and
8391         FillReversibleRectangle.
8392         
8393         * ControlPaint.cs: implement DrawReversibleFrame,
8394         DrawReversibleLine, and FillReversibleRectangle, by calling into
8395         the appropriate XplatUI method.
8396
8397 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8398
8399         * Form.cs: Make MdiClient have the focus even if it's
8400         not selectable, since it should receive WM_KEY* and WM_MOUSE 
8401         messages. Fixes #79907.
8402         
8403 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8404
8405         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
8406         queried after the window is created.
8407         
8408         * XplatUIX11.cs: Added SendParentNotify to implement 
8409         WM_PARENTNOTIFY logic. Fixes #79965.
8410         
8411         * Control.cs: Added MakeParam.
8412         
8413 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8414
8415         * MdiClient.cs: Resume Layout before setting window
8416         states (fixes #80201).
8417
8418 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8419
8420         * MenuAPI.cs: Deselect a menu item after performing
8421         the click (fixes #80197).
8422
8423 2006-12-11  Jackson Harper  <jackson@ximian.com>
8424
8425         * TextBoxBase.cs: We need to cap this value, since Maximum -
8426         ViewPortHeight can be less than zero.
8427         - Only do selection with the left mouse button.
8428         * TextBox.cs: Don't tell the world that we have a context menu.
8429         * Control.cs: New method so that we can control whether or not the
8430         context menu is visible outside MWF.
8431
8432 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8433
8434         * ToolBarButton.cs: Fix text positon. 
8435
8436 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8437
8438         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
8439
8440         * Control.cs (DoubleBuffered): Add implementation.
8441
8442         * Application.cs (OpenForms): Add.
8443
8444 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8445
8446         * Form.cs: Use opacity instead of Opactiy to determine if we need
8447         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
8448
8449 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8450
8451         * Control.cs: Fix NRE if Control.Site was set to null.
8452
8453 2006-12-11  Chris Toshok  <toshok@ximian.com>
8454
8455         * Control.cs: ControlCollection.Remove should return if the arg is
8456         null, and ControlCollection.SetChildIndex should raise a ANE.
8457
8458 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
8459
8460         * Control.cs: Verify value set for Dock property. Code formatting
8461         updates.
8462
8463 2006-12-11  Jackson Harper  <jackson@ximian.com>
8464
8465         * TextControl.cs: Draw the caret and the selection when a flag is
8466         set on the owner.
8467         * TextBoxBase.cs: We want to draw the caret and the selection for
8468         TextBox but not for TextBoxBase.
8469         - If the window is resized and scrolling is no longer needed (the
8470         whole doc is visible) set the scroll position to zero.
8471         - The default SelectWord (the one TextBox uses) should move the
8472         caret to the end of the word.
8473         - SelectAll moves the caret to the end of the selection.
8474         * TextBox.cs: We don't selectall on focus, we just do it when the
8475         control is created.
8476         
8477 2006-12-11  Mike Kestner  <mkestner@novell.com>
8478
8479         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
8480
8481 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8482
8483         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
8484         2.0 support.
8485         * ListViewItem.cs: Add Name 2.0 property.
8486
8487 2006-12-11  Andreia Gaita  <avidigal@novell.com>
8488
8489         * TabControl.cs: Set visibility on selected or default tab 
8490         when tabcontrol handle is created, so that it's contents
8491         actually show up (duh). Fixes #80193
8492         Don't redraw the control if there is no handle created, as
8493         the selected index might be completely invalid. Added some tests
8494         to check for this.
8495
8496 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8497
8498         * ToolBar.cs: Uses maximun width and height of all buttons as 
8499         button rectangle when ButtonSize specified, it looks strange but
8500         is what happens in Win32. Fixes #80189.
8501
8502 2006-12-11  Jackson Harper  <jackson@ximian.com>
8503
8504         * TextControl.cs: Need to track undo levels ourself, since
8505         compound actions will mess them up.
8506
8507 2006-12-10  Andreia Gaita  <avidigal@novell.com>
8508
8509         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
8510         SelectedIndex value is changed (even if it's not valid).
8511         Reset SelectedIndex to 0 when the handle is created and if
8512         the current index is invalid.
8513         Fixes SelectdeIndex unit tests and #80128
8514
8515 2006-12-08  Chris Toshok  <toshok@ximian.com>
8516
8517         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
8518         calls EndEdit, it needs to be called before we set current_cell to
8519         its new value.  Otherwise, we end up committing the value in the
8520         textbox to the new cell as well.  Fixes bug #80160.
8521
8522 2006-12-08  Chris Toshok  <toshok@ximian.com>
8523
8524         * Form.cs (set_CancelButton): if the button's DialogResult is
8525         None, set it to Cancel.  Fixes bug 80180.
8526
8527 2006-12-08  Jackson Harper  <jackson@ximian.com>
8528
8529         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
8530         to watch ourselves when setting the canvas size and setting the
8531         scrollbar values.
8532
8533 2006-12-08  Chris Toshok  <toshok@ximian.com>
8534
8535         * DataGrid.cs: comment out the two MakeTransparent calls for the
8536         time being so people using trunk (and not 1.2.2) on windows can
8537         actually use the datagrid.  This deals with bug #80151.
8538
8539 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8540
8541         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
8542         Graphics.DrawImage (image, int, int, int, int) overload instead
8543         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
8544         the dpi difference and was blurring images it drew.
8545         [Fixes bug #79960]
8546
8547 2006-12-08  Chris Toshok  <toshok@ximian.com>
8548
8549         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
8550         rowcnt is 0 (such as with an empty datasource), and make sure we
8551         initialize not_usedarea.Y to cells.Y, so we don't draw over the
8552         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
8553
8554 2006-12-08  Chris Toshok  <toshok@ximian.com>
8555
8556         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
8557         grid.
8558
8559 2006-12-08  Chris Toshok  <toshok@ximian.com>
8560
8561         [ Fixes bug #80167 ]
8562         
8563         * ThemeWin32Classic.cs: don't draw the image if the button's flat
8564         style is FlatStyle.System.
8565
8566         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
8567         ButtonBase.flat_style private, and switch uses of it to the public
8568         property.
8569         
8570 2006-12-08  Chris Toshok  <toshok@ximian.com>
8571
8572         [ Fixes bug #80121 ]
8573         
8574         * ThemeWin32Classic.cs: center the caption text in the datagrid
8575         when we draw it.
8576
8577         * DataGrid.cs: lessen the amount we add to the caption height from
8578         6 to 2.  6 was making it huge.
8579
8580 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8581
8582         * UpDownBase: Handle MouseWheel call directly instead of capturing
8583         the inner textbox's OnMouseWheel. Fixes #80166
8584
8585 2006-12-08  Jackson Harper  <jackson@ximian.com>
8586
8587         * TextControl.cs: We need to invalidate the textbox when we empty
8588         it (how had this not been discovered before?)
8589
8590 2006-12-08  Jackson Harper  <jackson@ximian.com>
8591
8592         * TextBoxBase.cs: Reworked the mouse down code so I could get it
8593         to behave like MS, we now ignore the eventargs.Click and just
8594         track state ourself, which we were already doing anyways.
8595         - Constrain the double click handler to the double click size.
8596         
8597 2006-12-08  Chris Toshok  <toshok@ximian.com>
8598
8599         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
8600         direction if that scrollbar isn't shown.  fixes bug #80158.
8601
8602 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8603
8604         * NumericUpDown.cs: Update value on getter. Fixes #79950
8605
8606 2006-12-08  Chris Toshok  <toshok@ximian.com>
8607
8608         * MenuItem.cs: add back in the event cloning code.  I didn't know
8609         how to do it in the face of the EventHandlerList work i'd done
8610         last week.  Fixes bug #80183.
8611
8612 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8613
8614         * Control.cs: Add an invalidate to the BackgroundImage setter.
8615         [Fixes 80184]
8616
8617 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8618
8619         * ToolStrip*: Add some small properties reported by MoMA, fix event
8620         firing and default properties based off of unit tests, and add some
8621         attributes based off of the class status page.
8622
8623 2006-12-07  Jackson Harper  <jackson@ximian.com>
8624
8625         * TextBoxBase.cs: Take HideSelection into account when determining
8626         whether or not to show the selection.
8627         * RichTextBox.cs: After inserting the RTF into the document move
8628         the cursor to the beginning of the document.
8629
8630 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8631
8632         * Control.cs: Remove static ArrayList "controls" which maintained
8633         a reference to every control created.
8634         * Application.cs: Create a static FormCollection to maintain a reference
8635         to every form created.  Use it in places that formerly enumerated through
8636         the controls one looking for forms.
8637         * Form.cs: Add and remove self from above FormCollection.
8638
8639 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
8640
8641         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
8642           not libgdk (though it makes me wonder why I didn't have any
8643           problems)
8644
8645 2006-12-07  Chris Toshok  <toshok@ximian.com>
8646
8647         [ you had to know this was coming after that last commit...]
8648         
8649         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
8650         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
8651         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
8652         XCopyArea).
8653
8654 2006-12-07  Chris Toshok  <toshok@ximian.com>
8655
8656         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
8657         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
8658         all the behavior we need for double buffering.
8659
8660         * XplatUIDriver.cs: implement the 3 double buffer methods using a
8661         client side Bitmap, just like the old Control-based double buffer
8662         code did.  The methods are virtual, so each XplatUI driver
8663         subclass can replace the implementation to use a faster, platform
8664         specific approach.
8665
8666         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
8667         double buffer code, and clean things up a bit in the process.
8668
8669 2006-12-06  Chris Toshok  <toshok@ximian.com>
8670
8671         * Control.cs: reindent WndProc.
8672
8673 2006-12-06  Chris Toshok  <toshok@ximian.com>
8674
8675         [ I wanna be like BenM when I grow up ]
8676         
8677         * Hwnd.cs: create a single static Graphics object on the static
8678         Bitmap we create.  use this for our text measurements.
8679
8680         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
8681         This was causing us to allocate a backbuffer for every control,
8682         even when it wasn't flagged as double buffered.  Instead use the
8683         single graphics instance.  This might have implications for
8684         multithreaded applications.  If we run into problems we can switch
8685         to creating 1 Graphics per control, on the static Hwnd bitmap.
8686
8687         this change nets us a 7M savings in private dirty mappings when
8688         running FormsTest.exe.
8689
8690 2006-12-06  Chris Toshok  <toshok@ximian.com>
8691
8692         * ListView.cs: the BackgroundImage override is just to set
8693         attributes.  chain up to base.BackgroundImage.
8694
8695         * RichTextBox.cs: same.
8696
8697         * ToolBar.cs: same, but we need to also redraw the toolbar when it
8698         changes, so instead a handler for BackgroundImageChanged.
8699         
8700         * Control.cs: make background_image private.
8701
8702 2006-12-06  Chris Toshok  <toshok@ximian.com>
8703
8704         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
8705         sure we even need this assignment, but roll with it for now.
8706
8707         * Control.cs: make the cursor field private.
8708
8709 2006-12-06  Chris Toshok  <toshok@ximian.com>
8710
8711         * Form.cs: we don't need to explicitly set ImeMode to
8712         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
8713         behavior in the face of ImeMode.Inherit.
8714
8715         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
8716         change the ctor's assignment to use ImeMode instead of ime_mode.
8717
8718         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
8719         ImeModeInherit.  Only check for the parent's imemode (and return
8720         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
8721         This fixes the button unit test, which sets both ImeMode and
8722         DefaultImeMode to ImeMode.Disable.
8723
8724         also make the ime_mode field private.
8725
8726 2006-12-06  Chris Toshok  <toshok@ximian.com>
8727
8728         * Control.cs: make control_style private.
8729
8730         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
8731         setting the styles to true, then setting them to false instead of
8732         reverting to their previous values.
8733
8734         also, call SetStyle on the scrollbars instead of using
8735         control_style directly.
8736
8737 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
8738
8739         * FormCollection.cs: Implement. [2.0]
8740
8741 2006-12-06  Chris Toshok  <toshok@ximian.com>
8742
8743         * Control.cs: make tab_stop private.
8744
8745         * Label.cs: set TabStop, not tab_stop.  reformat some event
8746         add/remove methods to make them more compact.
8747
8748 2006-12-06  Chris Toshok  <toshok@ximian.com>
8749
8750         * RadioButton.cs: fix TabStop handling.
8751
8752 2006-12-06  Chris Toshok  <toshok@ximian.com>
8753
8754         * TextBox.cs: remove the explicit assignments to has_focus.
8755         Control does that.
8756
8757         * ButtonBase.cs: remove the assignment to has_focus.  Control will
8758         manage that.
8759         
8760 2006-12-06  Chris Toshok  <toshok@ximian.com>
8761
8762         * ButtonBase.cs: remove all uses of is_enabled from this code.
8763         it's always true when any of the code containing the checks is
8764         executed.
8765
8766 2006-12-06  Chris Toshok  <toshok@ximian.com>
8767
8768         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
8769         with different semantics (some are present in both 1.1 and 2.0
8770         profiles) so that we match MS's behavior in our unit tests.
8771
8772 2006-12-06  Jackson Harper  <jackson@ximian.com>
8773
8774         * TextControl.cs: Make this operation undoable.
8775         * TextBoxBase.cs: Factor the border width into the preferred
8776         height.
8777         - implement Modified as per the spec.
8778
8779 2006-12-06  Chris Toshok  <toshok@ximian.com>
8780
8781         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
8782
8783 2006-12-06  Chris Toshok  <toshok@ximian.com>
8784
8785         * Control.cs: make right_to_left and context_menu fields private.
8786
8787 2006-12-06  Chris Toshok  <toshok@ximian.com>
8788
8789         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
8790         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
8791         Control.child_controls private.  switch all uses over to
8792         Control.Controls.
8793
8794 2006-12-06  Chris Toshok  <toshok@ximian.com>
8795
8796         * System.Windows.Forms/GroupBox.cs,
8797         System.Windows.Forms/AccessibleObject.cs,
8798         System.Windows.Forms/ErrorProvider.cs,
8799         System.Windows.Forms/Control.cs,
8800         System.Windows.Forms/UpDownBase.cs,
8801         System.Windows.Forms/ScrollBar.cs,
8802         System.Windows.Forms/DateTimePicker.cs,
8803         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
8804         System.Windows.Forms/ToolTip.cs,
8805         System.Windows.Forms/RadioButton.cs,
8806         System.Windows.Forms/LinkLabel.cs,
8807         System.Windows.Forms/Splitter.cs,
8808         System.Windows.Forms/TextBoxBase.cs,
8809         System.Windows.Forms/ToolStripTextBox.cs,
8810         System.Windows.Forms/ContainerControl.cs,
8811         System.Windows.Forms/ThemeWin32Classic.cs,
8812         System.Windows.Forms/SizeGrip.cs,
8813         System.Windows.Forms/ToolStripDropDown.cs,
8814         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
8815         private.  switch all uses over to Control.Parent.
8816
8817 2006-12-06  Chris Toshok  <toshok@ximian.com>
8818
8819         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
8820         Control does this before calling emitting these events.
8821
8822         * TabControl.cs: same.
8823
8824         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
8825         Control.client_rect.
8826
8827         * ButtonBase.cs: use the ClientSize property instead of the
8828         client_size field.
8829
8830         * ScrollableControl.cs: same.
8831
8832         * Control.cs: another pass at making properties private.  also,
8833         move the initialization of tab_stop to the ctor.
8834
8835 2006-12-05  Andreia Gaita <avidigal@novell.com>
8836
8837         * TabControl.cs: Let the selected index be set freely if the 
8838         control handle is not yet created.
8839
8840 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8841
8842         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
8843         internal until I can rewrite DefaultLayout.
8844         * ToolStrip.cs: Fix build error and some general cleaning.
8845         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
8846         Fix build errors caused by making some of Control's fields private.
8847
8848 2006-12-05  Jackson Harper  <jackson@ximian.com>
8849
8850         * TextControl.cs: Redo Insert a little so that it use IndexOf
8851         instead of Split, this prevents it from messing up on things like
8852         \n\n\n. Also more effecient since the split array doesn't need to
8853         be created.
8854         * TextBoxBase.cs: AppendText doesnt handle multiline and non
8855         multiline text differently, this is the first of many fixes that
8856         will make multiline/non-multiline the same thing as far as the
8857         TextBoxBase is concerned.
8858         - Don't split the text and insert lines, this can lose some line
8859         endings (like is the last line a soft or hard break). Instead use
8860         the new Insert.
8861         - Fix an off by one when combining all the lines in the Text
8862         getter.
8863         - Remove separate multiline handling from the Text getter/setter.
8864
8865 2006-12-05  Chris Toshok  <toshok@ximian.com>
8866
8867         * ButtonBase.cs: a few changes:
8868
8869         - don't reinitialize internal Control fields in the ctor when they
8870         have the same values as Control sets them.
8871
8872         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
8873         this before calling those methods.
8874
8875         - we don't need to call Refresh for anything.  use Invalidate
8876         instead.
8877
8878         - OnEnabledChanged doesn't need to redraw at all - Control.cs
8879         calls Refresh in its OnEnabledChanged.
8880         
8881         - several of the events we were registered for in the ctor to
8882         redraw ourselves already include calls to Invalidate in the
8883         property setters that raise the events.  remove the extra
8884         invalidation.
8885
8886         - reformat a switch statement that was 83274658 columns wide.
8887         
8888 2006-12-05  Mike Kestner  <mkestner@novell.com>
8889
8890         * ComboBox.cs: fix a unit test regression from a TextBox
8891         SelectionLength return of -1 when there's no selection.  
8892
8893 2006-12-05  Chris Toshok  <toshok@ximian.com>
8894
8895         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
8896         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
8897         cleaning up some of the internal Control fields being used by
8898         subclasses.
8899
8900 2006-12-05  Mike Kestner  <mkestner@novell.com>
8901
8902         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
8903         listbox after AddImplicit calls since it defaults to hidden. Add a 
8904         hack to preserve requested heights across DropDownStyle changes.
8905
8906 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8907
8908         * PropertyGrid.cs: Hide FindFirstItem method from public API.
8909
8910 2006-12-05  Chris Toshok  <toshok@ximian.com>
8911
8912         * DataGridView.cs: fix compiler warnings.
8913
8914         * PrintControllerWithStatusDialog.cs: same.
8915
8916         * ToolBar.cs: same.
8917
8918         * FolderBrowserDialog.cs: same.
8919
8920         * Splitter.cs: same.
8921
8922         * DataGridViewComboBoxCell.cs: same.
8923
8924         * XplatUIWin32.cs: same.
8925
8926         * PictureBox.cs: same.
8927
8928         * Win32DnD.cs: same.
8929
8930         * PageSetupDialog.cs: same.
8931
8932         * FileDialog.cs: same.
8933
8934         * PrintDialog.cs: same.
8935
8936         * DataGridTextBoxColumn.cs: same.
8937
8938         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
8939
8940 2006-12-05  Chris Toshok  <toshok@ximian.com>
8941
8942         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
8943         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
8944         System.ComponentModel.EventHandlerList work.
8945
8946 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
8947
8948         * DrawTreeNodeEventArgs.cs: Added.
8949
8950 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8951         
8952         * InternalWindowManager.cs: Remove an unused field.
8953         
8954 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8955
8956         * InternalWindowManager.cs:
8957         - Save the point where the title bar is clicked.
8958         
8959         * MdiWindowManager.cs:
8960         - Only allow moving of the window as long as the 
8961         clicked point on the title bar does not get out of
8962         MdiClient's rectangle. Fixes #79982.
8963         
8964         * MdiClient.cs:
8965         - Added Horizontal/VerticalScrollbarVisible.
8966         - Simplified the scrollbar sizing algorithm.
8967         - Cache the difference in scrolled value in
8968         H/VBarValueChanged and move the calculation out
8969         of the for loop.
8970
8971 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8972
8973         * Control.cs: Make the Console.WriteLine in WndProc 
8974         write more info.
8975
8976 2006-12-05  Chris Toshok  <toshok@ximian.com>
8977
8978         * ToolStripManager.cs, ToolStripButton.cs,
8979         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
8980         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
8981         ToolStripSplitButton.cs, ToolStripSeparator.cs,
8982         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
8983         ToolStripProgressBar.cs, ToolStripContainer.cs,
8984         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
8985         to using System.ComponentModel.EventHandlerList.
8986
8987 2006-12-04  Chris Toshok  <toshok@ximian.com>
8988
8989         * LinkLabel.cs: fix up compiler warnings.
8990
8991         * TableLayoutSettings.cs: same.
8992
8993         * TreeView.cs: same.
8994
8995         * ToolBar.cs: same.
8996
8997         * TabControl.cs: same.
8998
8999         * RichTextBox.cs: same.
9000
9001         * ListViewItem.cs: same.
9002
9003         * PropertyGrid.cs: same.
9004
9005         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
9006
9007         * ToolTip.cs same.
9008
9009         * TextRenderer.cs: fix up compiler warnings.
9010
9011         * Label.cs: same.
9012
9013         * Form.cs: corcompare fixes.
9014
9015         * PictureBox.cs: fix up compiler warnings.
9016
9017         * ImageListStreamer.cs: same.
9018
9019         * TrackBar.cs: corcompare fix.
9020
9021         * Control.cs: fix up compiler warnings.
9022
9023         * SplitterPanel.cs: same.
9024
9025         * NumericTextBox.cs: same.
9026
9027         * ImageList.cs: same.
9028
9029         * StatusStrip.cs: same.
9030
9031         * ProgressBar.cs: corcompare fix.
9032
9033         * ToolStripButton.cs: fix up compiler warnings.
9034
9035         * ToolStripStatusLabel.cs: same.
9036
9037         * ToolStripSplitButton.cs: same.
9038
9039         * ToolStripSeparator.cs: same.
9040
9041         * ToolStripProgressBar.cs: same.
9042
9043         * ToolStripDropDownMenu.cs: same
9044
9045         * ToolStripDropDown.cs: same.
9046
9047         * ToolStripDropDownButton.cs: same.
9048
9049         * ToolStrip.cs: same.
9050
9051         * ToolStripControlHost.cs: same.
9052
9053         * ToolStripContentPanel.cs: same.
9054
9055         * ToolStripDropDown.cs: same.
9056
9057         * ToolStripContainer.cs: same.
9058
9059         * ToolStripPanel.cs: same, and add "new" where we need it to work
9060         with the new ArrangedElementCollection.
9061
9062         * ToolStripItemCollection.cs: add "new" where we need it to work
9063         with the new ArrangedElementCollection.
9064
9065 2006-12-04  Andreia Gaita <avidigal@novell.com>
9066
9067         * TabControl.cs: Fix default tab selection to after TabControl
9068         gets focus and not before. Fixes #80128
9069
9070 2006-12-04  Chris Toshok  <toshok@ximian.com>
9071
9072         * DataGridTableStyle.cs: remove the gross calling of
9073         datagrid.Refresh from here.  It's a broken idea and it doesn't
9074         work anyway.
9075
9076         * DataGrid.cs: instead, just register/unregister from the
9077         DataGridTableStyle events in CurrentTableStyle.  we play it
9078         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
9079         even though some would most likely not require it.  Fixes bug
9080         #80115 (and one portion of #80117 as a side effect).
9081
9082 2006-12-04  Chris Toshok  <toshok@ximian.com>
9083
9084         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
9085         so the textbox (if any) goes away.  Fixes bug #80117.
9086
9087 2006-12-04  Chris Toshok  <toshok@ximian.com>
9088
9089         * DataGridColumnStyle.cs: set the column's readonly property
9090         initially based on the property descriptor's IsReadOnly.  Fixes
9091         bug #80044.
9092
9093 2006-12-04  Chris Toshok  <toshok@ximian.com>
9094
9095         * ComboBox.cs: wrap the dropdown style changing work in
9096         SuspendLayout/ResumeLayout.  Fixes bug #79968.
9097
9098 2006-12-04  Jackson Harper  <jackson@ximian.com>
9099
9100         * TextBoxBase.cs: Fix off by one, since these are one-based.
9101         * TextBox.cs: Select all the text when we get focus.  The TextBox
9102         does this but the RTB does not.
9103
9104 2006-12-04  Chris Toshok  <toshok@ximian.com>
9105
9106         * DataGridTextBoxColumn.cs: remove some spew.
9107
9108         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
9109         but some part of me is saying "it shouldn't be here.."  At any
9110         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
9111         setting the value.
9112
9113 2006-12-04  Chris Toshok  <toshok@ximian.com>
9114
9115         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
9116         to reassign the propertydescriptor.
9117
9118 2006-12-04  Jackson Harper  <jackson@ximian.com>
9119
9120         * TextBoxBase.cs:
9121         * TextControl.cs: Remove some unused variables.  Maybe this will
9122         patch things up between mike and I.
9123         - don't split lines less then one char wide, if the viewport is
9124         that small text won't be visible anyways.
9125         
9126 2006-12-04  Jackson Harper  <jackson@ximian.com>
9127
9128         * TextBoxBase.cs: Default selection length is -1, need to do some
9129         more testing on windows to see when this is used for the property.
9130         - Redid the Lines [] property to that we properly remove soft line
9131         breaks
9132         - added support for preserving carriage returns
9133         -  CanUndo is not a variable like 'is undo enabled' it just returns
9134         true if there is undo operations available.
9135         - AppendText doesn't need to grab the last tag itself anymore,
9136         this happens automatically when we move the cursor.
9137         * TextControl.cs: Add CompoundActions to the undo class. This
9138         allows combining the other operations into one big option.  ie a
9139         paste will combine { delete old, insert new, move cursor }
9140         - Add InsertString undo operation
9141         - New method for deleting multiline text
9142         - Add carriage returns to lines. So we can preserve carriage
9143         returns when text is 'roundtripped'
9144
9145 2006-12-04  Chris Toshok  <toshok@ximian.com>
9146
9147         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
9148         minimum 0.  Fixes the scrollbar exception in bug #80136.
9149
9150 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9151
9152         * MdiClient.cs: 
9153         * MdiWindowManager: Removed unused fields and methods.
9154         
9155 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9156         
9157         * StatusBar.cs: Update all panels when a AutoSize=Contents
9158         panel needs updating.
9159         
9160         * StatusBarPanel.cs: Remove twidth and only use initialize.
9161         Fixes #80031.
9162                 
9163 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9164
9165         * Form.cs: When a form's MdiParent is set add it directly
9166         on top of the z-order in stead of relying on MdiClient's
9167         ActivateChild to do it. Fixes #80135.
9168         
9169         * MdiClient.cs: 
9170         - Remove original_order, mdi_child_list is already doing
9171         the same thing.
9172         - Create mdi_child_list on construction in
9173         stead of first use (avoids a few null checks).
9174
9175         * MenuItem.cs: Use an already existing list of mdi children
9176         to get the correct order of children and remove the other
9177         redundant list.
9178
9179 2006-12-04  Chris Toshok  <toshok@ximian.com>
9180
9181         * PropertyGridView.cs: cached_splitter_location is only used in
9182         !DOUBLEBUFFER code.
9183
9184         * PropertyGrid.cs: implement the ComComponentNameChanged event
9185         using Events, hoping that would fix the warning.  Looks like a
9186         compiler bug instead (#80144).
9187
9188         * PropertyManager.cs: remove unused method.
9189
9190 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
9191
9192         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
9193         include parentesis to fix expression evaluation. Fixes #79634.
9194
9195 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
9196         
9197         * MenuAPI.cs:
9198         - Changes to fix behavior in Menu control, some reported in #80097
9199         and other detected during behavior refactory like a select event
9200         problems.
9201         - Remove unneded "if's" conditions.
9202         - Created an internal to flag when popup is active in control, we need 
9203         it because in .NET you can have menu active but without popup active
9204         when you active menu using popup without visible items.
9205         - Mimic win32 behavior for Select and Popup events.  
9206         - Dont open popup menu when you dont have visible subitems.
9207         - Do nothing when click on disabled menu item.
9208         - Some small changes to follow the coding style guidelines.
9209         - Unselect menu only when another control gives focus. Fixes #80097.
9210         - Remove unused code.
9211         
9212         * MenuItem.cs: internal VisibleItems method to check if menu
9213         theres visible subitems, it will be usefull to fix some 
9214         behavior in Menu control.
9215         
9216 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9217         
9218         * Timer.cs: Tag property for 2.0 profile.
9219         
9220 2006-12-01  Chris Toshok  <toshok@ximian.com>
9221
9222         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
9223         
9224         * Win32DnD.cs: comment out some unused fields.
9225
9226         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
9227         some unused properties/methods.
9228
9229         * XplatUIX11.cs: fix MousePosition so we override the base class's
9230         property instead of conflicting with it.
9231
9232         * PictureBox.cs: comment out some unused fields
9233
9234         * OSXStructs.cs: make some struct fields public.
9235
9236         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
9237         MousePosition so we override the base class's property instead of
9238         conflicting with it.
9239
9240         * X11Dnd.cs: comment out some unused fields
9241
9242         * X11DesktopColors.cs: fix some struct field visibility to quiet
9243         the compiler.
9244
9245         * X11Dnd.cs: remove some debug code.
9246
9247         * ThemeClearlooks.cs: comment out unused field.
9248
9249         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
9250
9251         * ThemeGtk.cs: comment out some unused pinvokes.
9252
9253         * Timer.cs: remove some unused fields.
9254
9255         * ThemeClearlooks.cs: comment out unused field.
9256
9257         * UpDownBase.cs: comment out unused field.
9258
9259         * DataObject.cs: comment out unused field.
9260
9261         * DataGridBoolColumn.cs: reomve unused field.
9262
9263         * DataGrid.cs: remove unused field.
9264
9265         * Cursor.cs: remove old ToBitmap code.
9266
9267         * ControlPaint.cs: remove unused method.
9268
9269         * ScrollBar.cs: remove unused fields.
9270
9271         * ComboBox.cs: remove unused field, and chain up to
9272         AccessibleObject ctor.
9273
9274         * ListBox.cs: remove unused field.
9275
9276         * ButtonBase.cs: wrap a couple fields in NET_2_0.
9277
9278         * GridEntry.cs: remove unused fields.
9279
9280         * Binding.cs: remove unused fields.
9281
9282         * AxHost.cs: remove unused method.
9283
9284         * ContainerControl.cs: remove unused field.
9285
9286         * ScrollableControl.cs: remove unused fields.
9287
9288 2006-12-01  Chris Toshok  <toshok@ximian.com>
9289
9290         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
9291         the Where/WhereString stuff.  it's easy enough to CWL
9292         Environment.StackTrace.
9293
9294         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
9295         unused private fields.
9296
9297 2006-12-01  Jackson Harper  <jackson@ximian.com>
9298
9299         * TextControl.cs: Do not update the view while inserting multiline
9300         text. If we update the view we might wrap lines, before entering
9301         the new lines, which causes the new line insertion calculations to
9302         be totally fubared.
9303         - Remove an old TODO
9304         - Make debug output a little nicer
9305         
9306 2006-12-01  Chris Toshok  <toshok@ximian.com>
9307
9308         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
9309
9310 2006-12-01  Chris Toshok  <toshok@ximian.com>
9311
9312         [ fix the majority of the CS0108 warnings we've been suppressing ]
9313         
9314         * TreeView.cs: mark BackgroundImageChanged as 'new'.
9315
9316         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
9317         to "LayoutToolBar" to quiet mcs.
9318         
9319         * TabControl.cs: mark our ControlCollection class as 'new'.
9320
9321         * TextBoxBase.cs: mark some events as 'new'.
9322
9323         * Splitter.cs: TabStop is 'new'.
9324
9325         * ControlBindingsCollection.cs: mark a few methods as new since
9326         they change the visibility from protected to public.
9327
9328         * RadioButton.cs: DoubleClick -> base class, and remove unused
9329         HaveDoubleClick.
9330
9331         * MonthCalendar.cs: ImeMode property -> base class, and mark many
9332         events as new.
9333
9334         * NumericUpDown.cs: TextChanged -> base class.
9335
9336         * CheckedListBox.cs: mark our ObjectCollection class as new to
9337         quiet mcs.
9338
9339         * FolderBrowserDialog.cs: make HelpRequest event new and have it
9340         muck with the base class.
9341
9342         * StatusBar.cs: fix some mcs warnings about Update being the same
9343         name as a base class method.
9344
9345         * RichTextBox.cs: mark some events as new, and make them do things
9346         to the base class impl.
9347
9348         * UserControl.cs: mark TextChanged as new, and have it manipulate
9349         base.TextChanged.
9350
9351         * UpDownBase.cs: mark some things new.
9352
9353         * CheckBox.cs: mark DoubleClick "new", and add some text about
9354         what we need to look at.
9355
9356         * Panel.cs: make the events "new", and manipulate the base
9357         version.  these are just here for attributes.
9358
9359         * AccessibleObject.cs: make owner private.
9360
9361         * Control.cs: deal with AccessibleObject.owner being private.
9362         cache our own copy if we need it.
9363
9364         * Button.cs: add "new" to the DoubleClickEvent.
9365
9366         * ListBox.cs: no need to track our own has_focus here.  let
9367         Control.has_focus do it for us.  Also some other work to clear up
9368         warnings about not overriding base class methods of the same name.
9369         
9370         * ComboBox.cs: clear up some warnings about not override base
9371         class methods of the same name.
9372
9373 2006-12-01  Chris Toshok  <toshok@ximian.com>
9374
9375         * Form.cs: flag a few things as "new" to quiet some of the mcs
9376         warnings.
9377
9378         * AxHost.cs: same.
9379
9380         * PrintPreviewDialog.cs: same.
9381
9382         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
9383         now DGV isn't so horrible on the class status page.  also, move
9384         all events to using System.ComponentModel.EventHandlerList.  my
9385         wrists hurt.
9386
9387 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9388
9389         * MdiWindowManager.cs:
9390         - Set form to active mdi child if shown,
9391         and update the active mdi child to the next 
9392         remaining child in the z-order if the form is hidden.
9393
9394         * Form.cs: 
9395         - Track if the form has been visible and if its 
9396         visibility is beeing changed, so that the MdiClient
9397         can properly decide the ActiveMdiChild. The MdiClient 
9398         cannot track this since the form can change visibility 
9399         before MdiClient is created.
9400
9401         * MdiClient.cs:
9402         - Don't activate anything of the parent form is changing
9403         its visibility.
9404         - Rework ActiveMdiChild to only return visible mdi 
9405         children and take into account several other corner 
9406         cases.
9407
9408 2006-12-01  Chris Toshok  <toshok@ximian.com>
9409
9410         * IBindableComponent.cs: new 2.0 interface.
9411
9412 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
9413
9414         * DataGrid.cs: Font for caption area is bold by default.
9415
9416 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
9417
9418         * Menu.cs: Tag property for 2.0.
9419         
9420 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9421
9422         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
9423         
9424 2006-12-01  Chris Toshok  <toshok@ximian.com>
9425
9426         * TreeView.cs: doh, the Begin* events should be
9427         TreeViewCancelEventHandler.
9428
9429 2006-12-01  Chris Toshok  <toshok@ximian.com>
9430
9431         * Form.cs: Form.ControlCollection already stores off the
9432         form_owner field.  don't access the base class's internal "owner"
9433         field.
9434
9435         * Control.cs: make all the fields in Control.ControlCollection
9436         private.  there's no need for any internal fields here.
9437
9438 2006-12-01  Chris Toshok  <toshok@ximian.com>
9439
9440         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
9441         OnHandleCreated.  Fixes bug #80109.
9442
9443 2006-12-01  Chris Toshok  <toshok@ximian.com>
9444
9445         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
9446         SplitContainer.cs, Control.cs, StatusStrip.cs,
9447         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
9448         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
9449         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
9450         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
9451         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
9452         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
9453         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
9454         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
9455         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
9456         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
9457
9458         do most of the work to convert our code over to use
9459         System.ComponentModel.Component.Events for
9460         adding/removing/dispatching events.
9461
9462
9463 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9464
9465         * DataGridView.cs: Fix an ArgumentNullException reported 
9466         twice today in IRC.
9467
9468 2006-11-30  Mike Kestner  <mkestner@novell.com>
9469
9470         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
9471         grabbed listbox.  Fixes #80036 and #80101.
9472
9473 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9474
9475         * Message.cs: Changed ToString() to match MS.
9476         
9477 2006-11-30  Jackson Harper  <jackson@ximian.com>
9478
9479         * TextBoxBase.cs: You can still change the selected text on a read
9480         only textbox.
9481         * TextControl.cs: Lower magic number for wrap calculations. This
9482         lets text get closer to the right (far) edge.
9483
9484 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9485
9486         * Control.cs: Tweak 2.0 layout properties.
9487         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
9488         * TextRenderer.cs: Add a new overload.
9489         * ToolStrip*: Huge amount of changes and new features.
9490
9491 2006-11-30  Mike Kestner  <mkestner@novell.com>
9492
9493         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
9494         scroll range correct.  Fixes #79994.
9495
9496 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9497
9498         * MdiWindowManager.cs: Update main form's text when
9499         a form is closed. (fixes #80038)
9500         
9501 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
9502
9503         * ToolBar.cs:
9504         - Fix an regression in ButtonSize.
9505         - Get ImeMode default value change to "Disable".
9506         - Get ShowTooltips default value change to true, default value is 
9507         "false" but after make a test in .NET we get "true" result as default.
9508         
9509 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
9510
9511         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
9512
9513 2006-11-29  Chris Toshok  <toshok@ximian.com>
9514
9515         * XplatUIWin32.cs (GetWindowTransparency): check return value of
9516         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
9517         SetWindowTransparency hasn't been called.
9518
9519 2006-11-29  Chris Toshok  <toshok@ximian.com>
9520
9521         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
9522         if it's supported.
9523         (set_AllowTransparency): reorder things a little so that the
9524         WS_EX_LAYERED style is removed properly.
9525
9526 2006-11-29  Chris Toshok  <toshok@ximian.com>
9527
9528         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
9529         
9530         * Form.cs: only call the XplatUI transparency method (get/set) if
9531         SupportsTransparency says it's supported. Otherwise fallback to
9532         doing nothing (in the set case) or returning the instance field we
9533         cache (in the get case).
9534
9535         * XplatUIStructs.cs: add TransparencySupport flag enum.
9536         
9537         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
9538         change to SupportsTransparency.
9539
9540         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
9541         TransparencySupport.None from SupportsTransparency.
9542
9543         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
9544         TransparencySupport.Set from SupportsTransparency.
9545
9546         * XplatUIWin32.cs: implement GetWindowTransparency calling
9547         GetLayeredWindowAttributes, and implement SupportsTransparency by
9548         checking whether or not both
9549         GetWindowTransparency/SetWindowTransparency are available
9550         entrypoints.  We need to do this since SetWindowTransparency is
9551         available as of win2k, but GetWindowTransparency requires winxp.
9552         yay win32 api.
9553
9554         * XplatUI.cs: Add GetWindowTransparency, and change
9555         SupportsTransparency to allow for either/both Get/Set.
9556
9557 2006-11-29  Chris Toshok  <toshok@ximian.com>
9558
9559         * DataGrid.cs: keep from going into an infinite loop redrawing a
9560         datagrid that has no datasource.  Fixes bug #80033.
9561
9562 2006-11-29  Chris Toshok  <toshok@ximian.com>
9563
9564         * MenuItem.cs: fix the NRE when we assign text (and therefore call
9565         Invalidate) before the mainmenu has been assigned to a control.
9566
9567 2006-11-29  Chris Toshok  <toshok@ximian.com>
9568
9569         * DataGrid.cs: detect when we should be double the double click
9570         row/column autosize stuff, although that codepath has yet to be
9571         written.  part of the work for bug #79891.
9572
9573 2006-11-29  Chris Toshok  <toshok@ximian.com>
9574
9575         * Binding.cs (SetControl): fix unit test.
9576
9577 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9578
9579         * PageSetupDialog.cs: Validate the margins and set them in
9580         PageSettings. 
9581         * NumericTextBox.cs: New class to mimic the behavior of the
9582         textboxes used in the printing dialogs.
9583
9584 2006-11-29  Andreia Gaita  <avidigal@novell.com>
9585         
9586         * Form.cs: Revert previous change (remove call UpdateBounds
9587         from form constructor), because it messes with the handle creation
9588         order, and that one needs lots and lots of love.
9589         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
9590         for valid printer and throw InvalidPrinterException if document
9591         is set but printer not valid), adding a MonoTODO. Once 
9592         handle creation is done properly, we can put this back in.
9593
9594 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9595
9596         * MenuItem.cs: Create a invalidate method for menu item, to be
9597         calling from set text, it make text changes to imadiate update
9598         on screen. Fixes #80013. 
9599         
9600 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9601
9602         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
9603         fixes bug #80070 and some other problem on toolbar buttons
9604         layout.
9605
9606 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9607
9608         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
9609         with dotted brush.      Fixes #79564
9610         
9611 2006-11-28  Andreia Gaita  <avidigal@novell.com>
9612
9613         * Form.cs: Removed call to UpdateBounds on Form
9614         constructor, it was causing a call to CreateHandle
9615         before it was supposed to.
9616         * PrintControllerWithStatusDialog: Applied patch
9617         by Chris Toshok to hide controller when there are
9618         no printers available.
9619         PrintDialog.cs: initialize printer settings to 
9620         null - correct DefaultValues test #5
9621         * PrintPreviewControl.cs: Move PrintController
9622         initialization to GeneratePreview
9623         * PrintPreviewDialog.cs: 
9624         - Remove Preview generation     from Document_set(). It is 
9625         called on OnPaint
9626         - Throw InvalidPrinterException on CreateHandle if
9627         a Document is set but there are no printers or 
9628         printer is not valid.
9629         * ThemeWin32Classic: don't paint PrintPreviewControl
9630         if there is nothing to paint    
9631
9632 2006-11-28  Miguel de Icaza  <miguel@novell.com>
9633
9634         * Form.cs: Add another popular method.
9635
9636         * TabPage.cs: ditto.
9637
9638 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9639
9640         * MenuItem.cs: Fixed a warning.
9641         * InternalWindowManager: Fixed a warning.
9642
9643 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9644
9645         * MenuItem.cs:
9646         - When cloning a menu also clone MdiList and clone the 
9647           window menu items properly (as the forms and menuitems
9648           are kept in an internal hashtable, these need updating 
9649           as well)
9650         - Rewrote the window menu code, menu items are added in the
9651           order the forms were added to their parent, and they are
9652           updated every time the window menu is shown (before the
9653           list was only generated once, in the current order of the
9654           forms, and would never be updated). A checkmark is shown
9655           next to the item corresponding to the active mdi child.
9656
9657 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9658
9659         * XplatUIStructs.cs: 
9660         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
9661         
9662         * XplatUIWin32.cs: 
9663         - Added TME_NONCLIENT to TMEFlags.
9664         - Handles WM_NCMOUSEMOVE in GetMessage to 
9665           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
9666
9667         * MdiWindowManager:
9668         - Now merges mdi child menu to parent menu when maximized.
9669         - Recalculate NC areas of both mdi child and mdi parent. 
9670           Fixes #79757 (4).
9671           on window state and size changes.Fixes #79844 (3).
9672         - Handle WM_NCCALCSIZE to properly calculate borders.
9673
9674         * Form.cs:
9675         - Add/remove to the mdi containers list of mdi children 
9676           in the order they are added.
9677         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
9678           to the maximized mdi child.
9679         
9680         * InternalWindowManager.cs:
9681         - Only execute a click on the control buttons on the mouse up,
9682           not on the mouse down. Show the state of the button 
9683           (was only showing Normal state, never Pressed state). The
9684           pressed button now follows the mouse (if you click the Close 
9685           button and move the mouse over the Maximize button, the 
9686           Maximize button will be shown as pressed). Since Win32 does
9687           not generate WM_NCLBUTTONUP if you release the button outside
9688           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
9689           it as a mouse up.
9690         
9691         * ThemeWin32Classic.cs:
9692         - Draw a missing border around mdi child forms. Fixes #79844 (2).
9693
9694         * MdiClient.cs:
9695         - Added a list of forms which contains the order the forms are
9696           added to the mdi parent.
9697         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
9698         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
9699         - If the active form changes set the scrollbars to the top
9700           of the Z order, otherwise the form could hide them.
9701         - Scrollbars are now sized according to ClientSize, not 
9702           to Size, and they take into account the other scrollbar
9703           to determine maximum.
9704         
9705 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
9706         
9707         * XplatUI.cs:
9708         * XplatUIDriver.cs:
9709         * XplatUIX11.cs:
9710         * XplatUIWin32.cs:
9711         * XplatUIOSX.cs:
9712         - Added RequestAdditionalWM_NCMessages for windows to 
9713           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
9714           Currently only implemented in XplatUIWin32.
9715
9716 2006-11-27  Chris Toshok  <toshok@ximian.com>
9717
9718         * Hwnd.cs: only add the hwnd to the windows hash in
9719         set_WholeWindow and set_ClientWindow if whole_window/client_window
9720         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
9721
9722 2006-11-27  Mike Kestner  <mkestner@novell.com>
9723
9724         * ComboBox.cs: remove redundant OnDropDown call.  It is called
9725         from the ComboListBox.ShowWindow code. Fixes #79969.
9726
9727 2006-11-27  Chris Toshok  <toshok@ximian.com>
9728
9729         * Hwnd.cs: remove the setters for ExposePending and
9730         NCExposePending - noone uses them.
9731
9732 2006-11-27  Jackson Harper  <jackson@ximian.com>
9733
9734         * TextControl.cs: new param for ReplaceSelection which determines
9735         whether we select the new selection, or set the cursor to the end
9736         of the new selection.
9737         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
9738         pasting, select the new text.
9739         * RichTextBox.cs: Use new param for ReplaceSelection.
9740
9741 2006-11-27  Jackson Harper  <jackson@ximian.com>
9742
9743         * TextBoxBase.cs: Set the selection to the caret after the caret
9744         is moved, otherwise they get out of sync.
9745
9746 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9747
9748         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
9749         it fixes #80015
9750
9751 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9752
9753         * ThemeWin32Classic.cs: 
9754         - Fix toolbar drop down arrow position.
9755         - Fix drop down appearance when ToolBar.Appearance is normal,
9756         it fixes #80018.
9757         
9758 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
9759
9760         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
9761         * Control.cs: Same.
9762         * UpDownBase.cs: Same.
9763         * ButtonBase.cs: Same.
9764         * ScrollBar.cs: Same.
9765         * TrackBar.cs: Same.
9766         * PictureBox.cs: Same.
9767         * UserControl.cs: Same.
9768         * Label.cs: Same.
9769         * ListControl.cs: Same.
9770         * TextBoxBase.cs: Same.
9771         * ListView.cs: Same.
9772         * RichTextBox.cs: Same.
9773         * TreeView.cs: Same.
9774
9775 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
9776
9777         * PrintDialog.cs:
9778         - Text label for where 
9779         - Text label comment was not shown
9780
9781 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
9782
9783         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
9784
9785 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9786
9787         * InternalWindowManager.cs: 
9788         - Handle WM_PARENTNOTIFY to activate the form
9789         if any child control is clicked.
9790         - The form is only sizable if not minimized.
9791
9792         * MdiWindowManager.cs:
9793         - Save the IconicBounds if the form is moved.
9794         - Rework SetWindowState, now the window bounds 
9795         are stored only if the old window state is Normal.
9796         
9797         * MdiClient.cs:
9798         - In SetWindowStates store the old window state if 
9799         the window is maximized and restore window state if
9800         the window looses focus.
9801         - Don't handle any scrollbar value changes if 
9802         initializing the scroll bars. Fixes #79771.
9803         - Reworked ArrangeIconicWindows. Current algorithm
9804         tests bounds agains all other minimized windows, if
9805         any intersections create new bounds (going left to 
9806         right, bottom to top) and then test again. When 
9807         successful the bounds are saved and never computed
9808         again. Fixes #79774.
9809
9810 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9811
9812         * InternalWindowManager.cs: Added HandleTitleBarUp.
9813
9814 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9815
9816         * NumericUpDown.cs: In .NET 1.1, user entered text is still
9817         hexadecimal in ParseUserEdit.
9818
9819         
9820 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9821
9822         * MdiWindowManager.cs: 
9823         - Handle a click on the form's icon to show the 
9824         system menu (when maximized). Fixes #79775.
9825         - Change the existing click handler for the form's
9826         icon when not maximized to show on MouseUp.
9827         Fixes #79776.
9828
9829         * Form.cs: In OnResize only layout the mdi child's
9830         parent if it actually has a parent. Might not if
9831         the window is closing.
9832
9833
9834 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9835
9836         * MdiClient.cs: Ignore active MDI client for text of parent, if
9837         child has no text set.
9838
9839 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9840
9841         * ToolBar.cs: Fixed ToString to match MS.
9842
9843 2006-11-22  Andreia Gaita  <avidigal@novell.com>
9844
9845         * NumericUpDown: 
9846         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
9847         update inner values on set. Fixes #79966.
9848         - Override OnLostFocus to update value on NET 2. Fixes #79950.
9849         - Fix hexadecimal parsing.
9850         
9851         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
9852         parent. Fixes #79957
9853
9854 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9855
9856         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
9857         the actual size has to be queried, since if height /
9858         width is negative Win32 changes it to 0. 
9859         Fixes #79999 on Windows.
9860         
9861         * XplatUIX11.cs: Set height / width to 0 if negative
9862         in SetWindowPos. Fixes #79999 on Linux.
9863         
9864 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9865
9866         * ThemeWin32Classic.cs: Fix text redenring when button is
9867         pressed.
9868
9869 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9870
9871         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
9872         and later navigate by mouse. Fixes #79528.
9873
9874 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9875
9876         * ToolBar.cs: Set default value for TabStop to false in
9877         constructor, it fixes remaining behavior of bug #79863.
9878
9879 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9880
9881         * MdiWindowManager.cs:
9882         * InternalWindowManager.cs:
9883         - Moved a few methods specific to Mdi from 
9884         InternalWindowManager to MdiWindowManager.
9885         Fixes #79996.
9886         
9887 2006-11-21  Chris Toshok  <toshok@ximian.com>
9888
9889         * XplatUIOSX.cs: stub out InvalidateNC.
9890
9891         * XplatUIWin32.cs: implement InvalidateNC using the call I found
9892         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
9893
9894         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
9895
9896         * XplatUIDriver.cs: add InvalidateNC abstract method.
9897
9898         * XplatUI.cs: add InvalidateNC.
9899
9900 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9901
9902         * ToolBar.cs: Invalidate complete button area when pressed status 
9903         was changed.
9904         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
9905         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
9906         by 1 when button is pressed.
9907
9908 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9909
9910         * ToolButton.cs: Invalidate middle of DropDown button when
9911         ToolBar theres DropDownArrows.
9912         * ThemeWin32Classic.cs: Change position of DropDown arrow and
9913         fix DropDown drawing operations.
9914
9915 2006-11-20  Chris Toshok  <toshok@ximian.com>
9916
9917         * NativeWindow.cs: fix the formatting of functions ('{' on the
9918         following line), and enable the thread exception dialog.
9919
9920         * Application.cs: remove the duplicate exception catching from
9921         here.
9922
9923 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9924
9925         * Toolbar.cs: Triggers button click event when click on icon
9926         of dropdown ToolBarButton. Fixes #79912.
9927         
9928 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9929
9930         * Theme.cs:
9931         * ThemeWin32Classic.cs:
9932         - Added a property WindowBorderFont to enable themeing
9933           of mdi child windows' Text.
9934           
9935 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9936
9937         * InternalWindowManager.cs:
9938         * Form.cs:
9939         * MdiClient.cs:
9940         * MdiWindowManager.cs: 
9941         - If mdi child is maximized, set mdi parent's
9942           text to "Parent - [Child]". Fixes #79770.
9943         - If there is any maximized mdi child windows, only the active 
9944           window (and any new windows) is maximized, the rest are normal.
9945         - On a WindowState change only save mdi child's window bounds 
9946           if the old window state was normal. Fixes #79774.
9947         - The scroll bars are now calculated on hopefully all
9948           necessary events. Fixed #79771 / #79844->6 / #79906.
9949         - MdiClient.SizeScrollBars() now takes into account docked 
9950           controls in the parent when calculating available space.
9951         - InternalWindowManager now always repaints the entire title
9952           area. Fixes #79844->1/4/5.
9953         - Added RequestNCRecalc on mdi child windowstate changes.
9954           Fixes #79772.
9955
9956 2006-11-20  Mike Kestner  <mkestner@novell.com>
9957
9958         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
9959         in the MouseUp handler of the listbox and move the return handling
9960         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
9961
9962 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9963
9964         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
9965
9966 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9967
9968         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
9969           working in 1.2.x anymore. So, updated.
9970
9971 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
9972
9973         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
9974         NumberGroupSeparator of current culture instead of assuming en-US.
9975         Fixed bug #79967.
9976
9977 2006-11-17  Mike Kestner  <mkestner@novell.com>
9978
9979         * Control.cs: Add the concept of implicit bounds setting so that
9980         dock/undock round trips preserve explicitly set size/locations.
9981         Fixes #79313.
9982
9983 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9984
9985         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
9986           can't handle those filters. (Fixes bug #79961)
9987
9988 2006-11-17  Chris Toshok  <toshok@ximian.com>
9989
9990         [ fixes the exit/crashes associated with #79835.  it's clearly
9991         suboptimal though, we need to figure out a better way to solve
9992         this. ]
9993         
9994         * PrintPreviewControl.cs: deal with the new invalid printer
9995         exceptions.
9996
9997         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
9998         and return false (so CommonDialog.ShowDialog doesn't actually show
9999         the form.)
10000
10001         * PrintDialog.cs: enable/disable the Ok button depending on
10002         whether or not the printer is valid.
10003
10004         * CommonDialog.cs (ShowDialog): only actually show the form if
10005         RunDialog returns true.
10006
10007 2006-11-17  Jackson Harper  <jackson@ximian.com>
10008
10009         * TextControl.cs: When soft splitting a line, mark it as a soft
10010         split line. Also carry over the current line break to the next
10011         line.
10012
10013 2006-11-17  Chris Toshok  <toshok@ximian.com>
10014
10015         * XplatUIX11.cs: when scrolling a window with an invalid area, we
10016         only want to shift the part of the invalid area that overlaps the
10017         area we're scrolling.  we also don't want to clear the invalid
10018         area unless the invalid area was entirely contained within the
10019         scrolling area.
10020
10021 2006-11-16  Chris Toshok  <toshok@ximian.com>
10022
10023         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
10024         also make sure to free the memory returned by XGetWindowProperty
10025         in GetText().
10026
10027         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
10028
10029 2006-11-16  Chris Toshok  <toshok@ximian.com>
10030
10031         * XplatUI.cs: add a new super secret way to get at the totally
10032         unsupported X11 backend.
10033
10034 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
10035
10036         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
10037
10038 2006-11-16  Jackson Harper  <jackson@ximian.com>
10039
10040         * TreeView.cs: Allow more explicit setting of top node position
10041         for scrollbars. Slower algo, but more accurate.
10042         - CollapseAll should maintain the current top node.
10043         * TextBoxBase.cs: When positioning the caret, use the line, pos
10044         method, since the x, y method does not grab the correct tag, and
10045         the caret height never gets set correctly. (Maybe I should just do
10046         away with the caret having its own height, and always use the
10047         carets current tag for height).
10048
10049 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
10050
10051         [Fixes 79778, 79923]
10052
10053         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
10054         Parent to the FosterParent instead.
10055
10056 2006-11-16  Jackson Harper  <jackson@ximian.com>
10057
10058         * TreeView.cs: Need to recalc the topnode when we expand or
10059         collapse. The scrolling methods can't handle this on their own,
10060         since they use differences between the last scroll position, and
10061         those difference get completely messed up since we are expanding
10062         nodes.  This problem should probably be fixed in the scrolling
10063         methods, so they can figure out exactly where they are, but this
10064         will slow things down a little.
10065         * ThemeWin32Classic.cs: Special case for groupboxes with empty
10066         strings, makes nunit-gui look a lot nicer.
10067
10068 2006-11-16  Chris Toshok  <toshok@ximian.com>
10069
10070         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
10071         the broken multithreaded event handling we have in here.  File
10072         this entry under "Why we should move to the new X11 backend".
10073
10074         Any thread can make it into UpdateMessageQueue, which gets events
10075         from the X socket - some of which could belong to hwnds being
10076         managed by a different thread.  We can also have multiple threads
10077         in UpdateMessageQueue at the same time, with each one reading from
10078         the X socket.  This leads to many problems, with the following
10079         solutions:
10080
10081         We can't use hwnd.Queue.Enqueue anywhere in here and must use
10082         EnqueueLocked.
10083
10084         The MotionNotify compression we do can't work across threads
10085         (without locking the entire queue, perhaps) since we call
10086         hwnd.Queue.Peek, so we just punt and don't compress motion events
10087         unless the owning thread is the one which got the X event.
10088
10089         ConfigureNotify is another fun one, since it modifies the hwnd's
10090         bounds and then enqueues the event.  We add a lock to Hwnd which
10091         is held when setting configure_pending to true (and enqueuing the
10092         event).
10093
10094         There is a race wrt the wake socket.  we need to make sure that
10095         only 1 thread is waiting on that socket, or else a thread could
10096         sleep waiting for data that never comes.  It's difficult (but not
10097         impossible) to make happen, because it seems to require something
10098         like the following:
10099
10100             1. Thread 1 polls on wake_receive
10101         
10102             2. poll returns saying there's data to be read on
10103                wake_receive.
10104         
10105             3. Thread 2 polls on wake_receive and immediately returns
10106                saying there's data to be read.
10107
10108             4. Thread 2 reads the wakeup byte from wake_receive
10109
10110             5. Thread 1 attempts to read the wakeup byte from
10111                wake_receive.
10112
10113             6. Thread 2 exits (due to a form closing, perhaps).
10114
10115             7. Thread 1 blocks forever.
10116         
10117         Fun, eh?
10118
10119         Fixing the Expose handling isn't done yet, and the races inherent
10120         in that piece of code are responsible for the drawing mistakes you
10121         see when generating expose events in a MT app (like NPlot).  This
10122         one is the likely to be the hardest to bandaid, and it doesn't
10123         appear to cause anything but drawing problems.  The other issues
10124         caused apps to exit or hang.
10125
10126         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
10127         called from a different thread than the one that should be calling
10128         these functions.
10129
10130         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
10131
10132 2006-11-15  Chris Toshok  <toshok@ximian.com>
10133
10134         * Application.cs: null out the context's MainForm when we exit
10135         RunLoop.  Fixes a newly checked in unit test as well as the last
10136         ODE from bug #79933.
10137
10138 2006-11-15  Chris Toshok  <toshok@ximian.com>
10139
10140         * Form.cs (set_Owner): allow a null value so we can clear the
10141         form's owner.
10142         (Dispose): set all our owned_form's Owner properties to null, and
10143         clear the owned_forms collection.
10144         (WM_CLOSE): clean up this a little bit.. still not right though.
10145
10146         * ApplicationContext.cs: OnMainFormClosed should only call
10147         ExitThreadCore if the main form isn't recreating.  Fixes unit
10148         test.
10149
10150 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10151
10152         [Fixes 78346]
10153
10154         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
10155
10156 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10157
10158         [Fixes 79433]
10159
10160         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
10161         keep popup window types from stealing focus from the main form
10162         on Windows.
10163
10164         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
10165
10166         * MenuAPI.cs: Set above flag to true.
10167
10168 2006-11-15  Chris Toshok  <toshok@ximian.com>
10169
10170         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
10171         the button being released is not in wParam.
10172
10173 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10174
10175         * Form.cs: Add the released button to MouseEventArgs.Button
10176         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
10177         on Win32.
10178
10179 2006-11-15  Chris Toshok  <toshok@ximian.com>
10180
10181         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
10182         GetText().  untested because it's unused in our implementation.
10183         Control.Text always caches the text, even if
10184         ControlStyles.CacheText is not set.
10185
10186         fixes bug #79939.
10187
10188 2006-11-15  Chris Toshok  <toshok@ximian.com>
10189
10190         [ fixes #79933 ]
10191         
10192         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
10193         message.  no hiding, no disposing.
10194
10195         in the WM_CLOSE handler, hide the form if it's modal.
10196
10197 2006-11-15  Chris Toshok  <toshok@ximian.com>
10198
10199         * XplatUIX11.cs: use AddExpose instead of sending a message.
10200         fixes textbox border drawing.
10201
10202 2006-11-15  Chris Toshok  <toshok@ximian.com>
10203
10204         * PropertyGridView.cs: keep from crashing on mouse move/down when
10205         the property grid is empty.
10206
10207 2006-11-14  Jackson Harper  <jackson@ximian.com>
10208
10209         * TextControl.cs: Make PageUp and PageDown more like the MS
10210         versions.
10211         * TextBoxBase.cs: When we set the text property position the
10212         cursor at the beginning of the document.
10213
10214 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10215
10216         * Form.cs: if a mdi child's WindowState has changed
10217         before it's creation, it would display wrong control
10218         buttons.
10219         
10220 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
10221
10222         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
10223           (Fixes bug #79927)
10224
10225 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
10226
10227         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
10228         the window gets to paint its borders even if the window is
10229         getting smaller.
10230         
10231         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
10232         otherwise the old control buttons would still be painted 
10233         if the window gets bigger.
10234         
10235         * PaintEventArgs.cs: add an internal method so that the clip 
10236         rectangle can be changed.
10237         
10238 2006-11-13  Chris Toshok  <toshok@ximian.com>
10239
10240         [ fixes bug #79745 ]
10241         
10242         * NotifyIcon.cs: lots of cleanup.
10243
10244         * X11Structs.cs: add an enum for XEMBED messages.
10245
10246         * XplatUIX11.cs: reindent one of the giant switch statements, it
10247         was taking up an additional tab stop, and this file is already way
10248         too wide for my laptop's screen.
10249
10250         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
10251         we get it, resize the hwnd to the WMNormalHints max_width/height.
10252
10253 2006-11-13  Jackson Harper  <jackson@ximian.com>
10254
10255         * TextBoxBase.cs: Compute the value changes for the mouse wheel
10256         teh simple way.
10257
10258 2006-11-13  Chris Toshok  <toshok@ximian.com>
10259
10260         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
10261         #79898.  force a reference to the Region to stick around so the
10262         unmanaged object isn't collected (rendering our handle in the MSG
10263         stale).
10264
10265 2006-11-13  Chris Toshok  <toshok@ximian.com>
10266
10267         * XplatUIX11.cs: fix #79917 for window managers which support
10268
10269         using XStoreName on the raw utf8, and we need to convert to
10270         COMPOUND_TEXT if it's non-latin1.
10271
10272 2006-11-13  Chris Toshok  <toshok@ximian.com>
10273
10274         * Form.cs (set_DialogResult): we need to set closing to false if
10275         we're setting our result to None.  fixes bug #79908.
10276
10277 2006-11-13  Jackson Harper  <jackson@ximian.com>
10278
10279         * TextControl.cs: When formatting text, compute the adjusted tag
10280         lengths correctly, using FindTag for the end tag instead of trying
10281         to figure it out outselves.
10282         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
10283         the item, ItemHeight doesn't work, because trees with large
10284         imagelists use those for their height
10285         * TreeView.cs: ActualItemHeight factors in the image height
10286         - compute left edge of checkboxes correctly
10287         - when expanding/collapsing move the bottom down one pixel, so we
10288         aren't moving part of the node
10289
10290 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10291
10292         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
10293         stack in PaintEventStart so that it won't get disposed by the gc
10294         before reaching PaintEventEnd.
10295
10296 2006-11-13  Jackson Harper  <jackson@ximian.com>
10297
10298         * TextBoxBase.cs: Don't select the word if we are on a line with
10299         no text.
10300         - We don't need to position the caret on mouse up, since the mouse
10301         move handler should be doing this
10302         - When double clicking a blank line, the caret is advanced to the
10303         next line.
10304
10305 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
10306
10307         * TreeNodeCollection.cs: Avoid duplicating indexer code.
10308
10309 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
10310
10311         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
10312         Fixes part of bug #79910.
10313
10314 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
10315
10316         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
10317           (bug #79903). Some minor string updates to match ms.
10318
10319 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10320
10321         * FileDialog.cs: Don't add an extension if the filename
10322           already ends with that extension.
10323
10324 2006-11-10  Jackson Harper  <jackson@ximian.com>
10325
10326         * TreeView.cs: Use the currently highlighted node for the
10327         BeforeSelect event.
10328         * TextBoxBase.cs: There is no need to expand selection on
10329         MouseMove.
10330         - CanUndo means 'is there any undo operations', not 'is undo
10331         allowed on this textcontrol. Fixed ClearUndo unit test.
10332
10333 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
10334
10335         * Button.cs: only perform click when button is Selectable (so as 
10336         not to activate default buttons when they're disabled)
10337         
10338         * Control.cs: Rewrite of the SelectNextControl and related 
10339         methods. HandleClick now selects next control if the current one
10340         is being disabled.
10341         
10342         * Form.cs: OnActivated selects next active control only if Load 
10343         has already occurred. If Load hasn't run, there's no point in 
10344         selecting here, Load might change the state of controls.
10345         
10346         * FocusTest.cs: Tests marked as working again for these fixes
10347
10348 2006-11-10  Chris Toshok  <toshok@ximian.com>
10349
10350         * XplatUIX11.cs: a couple of fixes.
10351
10352         - use XInternAtoms with almost all the atoms we need to register,
10353         instead of many, many calls to XInternAtom.  should help a bit on
10354         startup time, at the expense of making the code look a little
10355         worse.
10356
10357         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
10358         isn't reparented (which seems to be a clue that we're running fon
10359         compiz) and they have an Owner form.  This fixes the tool windows
10360         in paint.net when running under compiz.
10361
10362         - when setting the opacity of a window, support both the case
10363         where the window has been reparented and also when it hasn't been.
10364         Since compiz/beryl doesn't seem to reparent windows, and these are
10365         the only window managers which support translucency, I'm not sure
10366         why we need the hwnd.reparented case at all.. but leave it in.
10367         now we get translucent windows in paint.net under compiz/beryl.
10368
10369 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10370
10371         * FileDialog.cs: Always return the value for FilterIndex that
10372           was set. Internally convert it to values that make sense.
10373
10374 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
10375         
10376         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
10377
10378 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
10379
10380         * Toolbar.cs: Change default value of DropDownArrows to true, the 
10381         signature still using false to make it compatible with MS but the 
10382         initial value is true. Fixes #79855.
10383
10384 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10385
10386         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
10387           only available on Linux.
10388
10389 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
10390
10391         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
10392         reduce number of calls to redraw method during toolbar creation.
10393
10394 2006-11-09  Mike Kestner  <mkestner@novell.com>
10395
10396         * ListView.cs : raise SelectedIndexChanged when an item is selected
10397         programmatically via the Item.Selected property.  Gert's nice 
10398         ListViewSelectedIndexChanged test fixture now runs clean.
10399
10400 2006-11-09  Mike Kestner  <mkestner@novell.com>
10401
10402         * ListView.cs : raise SelectedIndexChanged when a selected item is
10403         removed from the item collection using Remove or RemoveAt.
10404
10405 2006-11-09  Mike Kestner  <mkestner@novell.com>
10406
10407         * ListView.cs : raise SelectedIndexChanged once per selected item
10408         for compat with MS.  Fixes #79849+.
10409
10410 2006-11-09  Chris Toshok  <toshok@ximian.com>
10411
10412         * TabControl.cs: initialize row_count to 0, and set it to 1 when
10413         we need to (if we have any tab pages).  Fixes unit test.
10414
10415 2006-11-09  Chris Toshok  <toshok@ximian.com>
10416
10417         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
10418         width is 0, not 3.  Fixes a unit test.
10419
10420 2006-11-09  Mike Kestner  <mkestner@novell.com>
10421
10422         * ListView.cs : use Implicit scrollbars so that focus isn't 
10423         stolen from the listview when they are clicked. Fixes #79850.
10424
10425 2006-11-09  Chris Toshok  <toshok@ximian.com>
10426
10427         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
10428         have a root item.  Fixes #79879.
10429
10430 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
10431
10432         * FileDialog.cs:
10433           - Fix ToString ()
10434           - An ArgumentException is now thrown if a wrong filter
10435             is applied (matches ms). The previous filter doesn't change
10436             anymore if an exception is thrown.
10437           - Changing the FileName property also affects FileNames
10438         * ColorDialog.cs: The length of the CustomColors array is always
10439           16. It doesn't matter if we use a smaller array or null to update
10440           or change the custom colors property.
10441         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
10442           for RootFolder if we get a undefined value.
10443
10444 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10445
10446         * StatusBarPanel.cs: 
10447         - Width is set to MinWidth if Width is smaller than
10448         MinWidth. Fixes #79842.
10449         - MinWidth now always overrides Width (MSDN says MinWidth
10450         is set to Width when AutoSize = None, but they do not 
10451         behave like that).
10452         - Style has now the the correct default value.
10453         
10454 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10455  
10456         * TrackBar.cs: 
10457         - The control is completely invalidated on 
10458         Got/LostFocus to draw the focus rectangle correctly.
10459         - When AutoSize then height is always 45 (width for 
10460         vertical controls).
10461         
10462         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
10463         on the mouse when moved and it doesn't move when grabbed
10464         until the mouse moves as well. Also fixed some wrong 
10465         calculations when clicking on the thumb (control thought
10466         click was outside of thumb and didn't grab it).
10467         Fixes some of the issues in #79718.
10468
10469 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
10470
10471         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
10472
10473 2006-11-08  Chris Toshok  <toshok@ximian.com>
10474
10475         * PropertyGridView.cs: only call ToggleValue if the item is not
10476         readonly.
10477
10478 2006-11-08  Jackson Harper  <jackson@ximian.com>
10479
10480         * TextBoxBase.cs: The RichTextBox and textbox have very different
10481         word selection methods.  Implement the textbox's simple word
10482         selection here, and let the RichTextBox override and provide it's
10483         own.
10484         - Don't do extra selection on mouseup
10485         * RichTextBox.cs: Use the documents word selection algorithm, I
10486         think ideally, this function will be pulled into the
10487         RichTextBox.cs code someday.
10488
10489 2006-11-08  Chris Toshok  <toshok@ximian.com>
10490
10491         * RootGridEntry.cs: new class to represent GridItemType.Root.
10492
10493         * CategoryGridEntry.cs: reformat, and add boilerplate.
10494         
10495         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
10496         returns the UI parent anyway, and we need special handling to
10497         implement the GetTarget method in the face of it.  Also, implement
10498         Select().
10499
10500         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
10501         a root grid item, and use that instead of PropertyGrid.grid_items.
10502         Also, make use of TypeConverters (and add limitted support for
10503         ICustomTypeDescriptors) when initially populating the grid.
10504         Arrays now show up more or less properly.
10505
10506 2006-11-08  Chris Toshok  <toshok@ximian.com>
10507
10508         * Application.cs: set the modal dialog to non modal after we close
10509         it.  Fixes bug #79866.
10510
10511 2006-11-08  Jackson Harper  <jackson@ximian.com>
10512
10513         * TextControl.cs: When combining lines carry over the line end
10514         style from the end line.
10515         - Invalidate the selected area when setting it, if it is visible.
10516         * TextBoxBase.cs: Only rich text box can do full line selects.
10517         - Make sure to set the cursor position when there is a click,
10518         otherwise two clicks in separate areas could cause a large chunk
10519         to be selected.
10520
10521 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10522
10523         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
10524         Fixes #79863.
10525
10526 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10527
10528         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
10529         time. Remove tooltips when ToolButton click events.  Fixes #79856.
10530
10531 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10532
10533         * MenuAPI.cs: Ignore right click for menu actions and fixes
10534         menu border when clicked.  Fixes #79846.
10535
10536 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10537
10538         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
10539         MouseState after create wParam for message, this fixes mouse button 
10540         equal none in mouse up events.
10541         
10542 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
10543
10544         * Control.cs : Focus() now calls Select to set the Container's
10545         Active Control and to give it focus. To avoid infinite recursion
10546         (because ActiveControl also calls Focus at one point), a check 
10547         is made in Focus with the help of a new internal variable
10548         is_focusing.
10549
10550 2006-11-07  Mike Kestner  <mkestner@novell.com>
10551
10552         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
10553         if there's a selection.  Fixes #79849.
10554
10555 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
10556
10557         * PropertyGrid.cs: Avoid fixed height of help description label.
10558         Fixes part of bug #79829.
10559
10560 2006-11-07  Chris Toshok  <toshok@ximian.com>
10561
10562         * XplatUIX11.cs: fix #79790 again, by using the
10563         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
10564
10565 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10566
10567         * ToolBar.cs: Fix left click checking.
10568
10569 2006-11-07  Chris Toshok  <toshok@ximian.com>
10570
10571         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
10572
10573 2006-11-07  Chris Toshok  <toshok@ximian.com>
10574
10575         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
10576         PropertyManager unit tests.
10577
10578         * PropertyManager.cs: make property_name internal.
10579
10580 2006-11-07  Chris Toshok  <toshok@ximian.com>
10581
10582         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
10583         pass a unit test.  Also, don't set image_index to anything in
10584         response to setting the ImageList property.
10585
10586 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10587
10588         * ToolBar.cs: Ignore click events when mouse button is not a
10589         left button, only accepts other button for dropdown menus.  
10590         Fixes #79854.
10591
10592 2006-11-07  Chris Toshok  <toshok@ximian.com>
10593
10594         * DataGrid.cs: make the back and parent row buttons a little less
10595         ugly.
10596
10597 2006-11-07  Jackson Harper  <jackson@ximian.com>
10598
10599         * TextBoxBase.cs: When converting to Text don't put line breaks in
10600         for soft line breaks.
10601         * TextControl.cs: There is an initial "fake" line in the document,
10602         this is now a soft break line, so that an extra line feed doesn't
10603         get added to the end of documents.
10604
10605 2006-11-07  Chris Toshok  <toshok@ximian.com>
10606
10607         [ fix bug #79778 ]
10608         
10609         * CurrencyManager.cs: if the list is readonly, don't bother
10610         checking if IBindingList.AllowNew is true.
10611
10612         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
10613         for non-DataRowView datasources..  or rather, make it not crash.
10614         (DataGridPaintRelationRow): make sure we limit the row painting to
10615         the area not covered by the row header, and make our cell width at
10616         least large enough to cover the relation area.  This allows grids
10617         that have relations but no rows to render correctly.
10618         (DataGridPaintRowContents): same type of changes here.
10619         (SetDataSource): move back to always calling
10620         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
10621         navigating back through relations.
10622         (HitTest): handle the case where we have no cells but have
10623         relations.  Right now we generate a hit in cell 0 of whatever the
10624         row is, not sure if this is strictly correct, but it works for our
10625         purposes.
10626         
10627         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
10628         bother doing anything.
10629
10630 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
10631
10632         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
10633         early version of StatusStrip.  Not responsible for eaten
10634         application or firstborn children.
10635
10636 2006-11-06  Chris Toshok  <toshok@ximian.com>
10637
10638         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
10639         call GetTabRect with a -1 index.  Fixes #79847.
10640
10641 2006-11-06  Jackson Harper  <jackson@ximian.com>
10642
10643         * TreeNodeCollection.cs: Update scrollbars after clearing.
10644
10645 2006-11-06  Chris Toshok  <toshok@ximian.com>
10646
10647         * NumericUpDown.cs: fix the ToString method for some unit test
10648         love.
10649
10650 2006-11-06  Chris Toshok  <toshok@ximian.com>
10651
10652         * PropertyGrid.cs:
10653         - set the initial SelectedGridItem if we can.
10654
10655         - Exclude non-mergable properties only if we're merging > 1
10656         object.  Merging 1 object isn't really merging, obviously.
10657
10658         - Handle PropertySort.NoSort just like Alphabetical, which is
10659         wrong of course, but at least gets things on the screen.
10660         
10661         * PropertyGridView.cs:
10662         - Add method "FindFirstItem" which finds the first property grid
10663         item, so we can select it by default.
10664
10665         - make use of GridEntry.CanResetValue.
10666
10667         - Don't call RedrawBelowItemOnExpansion here anymore, the
10668         individual GridEntry's will do that.
10669
10670         - Remove the ITypeDescriptorContextImpl internal class.
10671         
10672         * GridEntry.cs:
10673         - this class needs to implement ITypeDescriptorContext, as it's
10674         what MS's PropertyDescriptorGridEntry does, which means we can
10675         remove the ITypeDescriptorContextImpl internal class from
10676         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
10677
10678         - keep a reference to our PropertyGridView, and move the call to
10679         RedrawBelowItemOnExpansion here from PGV.  This means
10680         programmaticly setting Expanded actually does something visible.
10681
10682         - add a CanResetValue() function which takes into account our
10683         possibly multiple "selected_objects" in the merged case.  Shifting
10684         PropertyGridView to use this method fixes another unreported
10685         crasher found running the test for #79829.
10686
10687         - when Top or Bounds is updated, make sure the PropertyGridTextBox
10688         is updated to reflect this.
10689
10690         * CategoryGridEntry.cs: the ctor takes the PGV now.
10691         
10692 2006-11-06  Jackson Harper  <jackson@ximian.com>
10693
10694         * TextControl.cs: These are 1 based.
10695         * TextBoxBase.cs: When setting the selected text, don't change the
10696         selected text tags, this is done by ReplaceText, just position the
10697         cursor at the end of the new text.
10698
10699 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10700
10701         * ListView.cs: Allow label edit only when, when LabelEdit is
10702           set to true.
10703
10704 2006-11-06  Jackson Harper  <jackson@ximian.com>
10705
10706         * TextControl.cs: If a suitable wrapping position isn't found,
10707         just wrap right in the middle of a word.
10708
10709 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10710
10711         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
10712           bug #79820.
10713
10714 2006-11-06  Jackson Harper  <jackson@ximian.com>
10715
10716         * TreeView.cs: Can't use the VisibleCount property when setting
10717         scrollbar heights, because this doesn't take into account whether
10718         or not the horz scrollbar just came visible.
10719
10720 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
10721
10722         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
10723         activated.  Fixes #79369, #79832.
10724
10725 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
10726
10727         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
10728           had to remove support for links that point to a directory. FileInfo
10729           returns no usefull information (means, the directory they point to)
10730           for such links. Replaced some empty string ("") with String.Empty.
10731
10732 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10733
10734         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
10735         NullReferenceException when attempting to remove node that is not in
10736         collection. Throw NullReferenceException when null is passed to 
10737         Remove. Allow first element of the collection to be removed. Fixes
10738         bug #79831.  In GetEnumerator ().Current return null if positioned 
10739         before the first element of the collection. In GetEnumerator ().Reset,
10740         position before first element of the collection.
10741
10742 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10743
10744         * PropertyGrid.cs: To match MS, remove default title and description
10745         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
10746         buttons.
10747
10748 2006-11-04  Chris Toshok  <toshok@ximian.com>
10749
10750         * Theme.cs: add a Clamp method, just for kicks.
10751
10752         * ThemeWin32Classic.cs: clamp all color components to [0..255].
10753
10754 2006-11-04  Chris Toshok  <toshok@ximian.com>
10755
10756         * Form.cs: if the form isn't visible, Close() does nothing.
10757
10758 2006-11-03  Chris Toshok  <toshok@ximian.com>
10759
10760         * Form.cs (Close): if the form is modal, don't Dispose of it, only
10761         Hide it.
10762         (WndProc): don't Dispose after handling the WM_CLOSE message.
10763
10764         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
10765         them as such, instead of using casts from Control to Form.  Also,
10766         don't Dispose of the modal dialog when we fall out of the loop -
10767         Close() it instead.
10768
10769         fixes bug #79813.
10770
10771 2006-11-03  Chris Toshok  <toshok@ximian.com>
10772
10773         * Control.cs (Dispose): only go through the dispose thing if we're
10774         @disposing, and we haven't already been disposed.  Fixes bug
10775         #79814.
10776
10777         * Form.cs: no reason to call "base.Dispose()" here instead of
10778         "Dispose()".
10779
10780 2006-11-03  Mike Kestner  <mkestner@novell.com>
10781
10782         * ComboBox.cs : use ToString instead of casts in AddItem for
10783         sorting functionality.  Fixes #79812.
10784
10785 2006-11-03  Chris Toshok  <toshok@ximian.com>
10786
10787         * Application.cs: pave the way for actually using the thread
10788         exception dialog.  it's ifdefed out at the moment.
10789
10790 2006-11-03  Chris Toshok  <toshok@ximian.com>
10791
10792         * ThreadExceptionDialog.cs: until we get a better layout, actually
10793         hide the details textbox and label when we shouldn't see them.
10794
10795 2006-11-03  Jackson Harper  <jackson@ximian.com>
10796
10797         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
10798         multiline textboxes anymore.  This method also determines the
10799         width/height of a textboxes canvas area.
10800         - Sorta a revert of the last patch.  For multiline just position
10801         the controls, then bail.  This way the scrollbar width won't be
10802         altered.
10803
10804 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
10805
10806         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
10807         it dont need.  Fixes #79537.
10808
10809 2006-11-02  Jackson Harper  <jackson@ximian.com>
10810
10811         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
10812         send the status after firing the DndOver event.
10813
10814 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10815
10816         * TrackBar.cs: Now orientation only switches height / width if
10817         the control's handle is created (Win32 does it like this). Also 
10818         fixed a typo in ToString() for a test to pass, changed the 
10819         exception thrown in set_LargeChange and set_SmallChange to 
10820         match Win32 behaviour, and added TrackBar tests to the unit 
10821         tests.
10822
10823 2006-11-02  Chris Toshok  <toshok@ximian.com>
10824
10825         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
10826         not _NET_WM_STATE_NO_TASKBAR.
10827
10828 2006-11-02  Jackson Harper  <jackson@ximian.com>
10829
10830         * TextControl.cs: Increment count by one, since in the update view
10831         count - 1 is used.
10832
10833 2006-11-02  Jackson Harper  <jackson@ximian.com>
10834
10835         * TextBoxBase.cs: Use client rectangle not bounds for checking if
10836         the mouse is in the client rectangle (duh).
10837
10838 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10839         
10840         * TrackBar.cs: Fixed trackbar jumping around when clicking
10841         on it - the trackbar was not detecting correctly at which
10842         side of the thumb the click was done. (fixes #79718)
10843
10844 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
10845
10846         * ListBox.cs: scroll visible area when change SelectedIndex to
10847         a non visible area.  Fixes #79481.
10848
10849 2006-11-01  Jackson Harper  <jackson@ximian.com>
10850
10851         * TextControl.cs: When replacing the selection move the selection
10852         start/end/anchor to the end of the new text.
10853
10854 2006-11-01  Jackson Harper  <jackson@ximian.com>
10855
10856         * XplatUIWin32.cs: When setting the parent change the controls
10857         visibility to it's visibility flag, not to it's old parents
10858         visibility (.Visible walks the parent chain).
10859
10860 2006-11-01  Chris Toshok  <toshok@ximian.com>
10861
10862         * XplatUIX11.cs: revert the #79790 fix, as the simple.
10863         XSetTransientForHint fix breaks paint .net's tool windows.  more
10864         work needed for that one.
10865
10866 2006-11-01  Chris Toshok  <toshok@ximian.com>
10867
10868         * ScrollBar.cs: throw ArgumentException instead of Exception in
10869         LargeChange/SmallChange setters.  fixes unit tests.
10870
10871 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10872
10873         * ContainerControl.cs: reverted rev.67183 (which was itself
10874         a reversion of rev.66853... eh).
10875         
10876         * Control.cs: Fixes Reflector hang by changing Focus() call
10877         to what it was before rev.66643 (calling Select() here sets 
10878         ActiveControl, which in some situations calls back Focus and 
10879         eventually does a stack overflow). Temp fix.    
10880         Changes to GetNextControl() to not look for children to select when
10881         parent cannot be selectable (so it looks for siblings instead)  
10882         
10883 2006-10-31  Mike Kestner  <mkestner@novell.com>
10884
10885         * CheckedListBox.cs : off by one error in returned index from
10886         ObjectCollection.Add.  Fixes #79758.
10887
10888 2006-10-31  Chris Toshok  <toshok@ximian.com>
10889
10890         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
10891         calls for the textbox/spinner, to keep from recursing to the point
10892         where we crash.  Fixes #79760.
10893
10894 2006-10-31  Chris Toshok  <toshok@ximian.com>
10895
10896         * ListControl.cs (set_SelectedValue): don't throw exceptions on
10897         null/"" value, just return.  matches ms's behavior and fixes some
10898         failing tests.
10899
10900 2006-10-31  Chris Toshok  <toshok@ximian.com>
10901
10902         * Control.cs (set_Capture): make a logic a little easier to
10903         follow.
10904
10905         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
10906         if it's being destroyed.  A necessary fix surely, but a bandaid
10907         also, to fix the stuck capture problem in bug #78413.
10908
10909 2006-10-31  Chris Toshok  <toshok@ximian.com>
10910
10911         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
10912         convention of clearing hwnd.ClientRect when we set the
10913         width/height (so it'll be recalculated by Hwnd).
10914
10915 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10916
10917         * ContainerControl.cs: reversed Contains check from
10918         ActiveControl due to hanging problems. This fix
10919         partly regresses #79667 (button does not have
10920         initial focus), so this might be a symptom for 
10921         a larger parenting problem (set_ActiveControl
10922         is being called but the child control does
10923         not have the parent set yet?)   
10924         
10925 2006-10-31  Mike Kestner  <mkestner@novell.com>
10926
10927         * MenuAPI.cs : fix keynav when menu is click activated.
10928
10929 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
10930
10931         * ToolStrip*: Version 0.2.
10932
10933         * MenuStrip.cs: Version 0.1.
10934
10935         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
10936
10937 2006-10-30  Chris Toshok  <toshok@ximian.com>
10938
10939         [ fixes the oversized notify icon issue in bug #79745 ]
10940         
10941         * NotifyIcon.cs: scale the icon down to the size we're given by
10942         the XplatUI layer (this would be faster if we did it once instead
10943         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
10944         since it's never invoked.
10945
10946         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
10947         pixels high by default, so let's hardcode our systray icon to that
10948         size.  The SYSTEM_TRAY protocol should really have a way for
10949         client apps to query for the correct icon size.. but oh well.  A
10950         couple of patches to deal with the screwy client_window ==
10951         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
10952         instance, and also make sure we don't XSelectInput twice).
10953
10954 2006-10-30  Chris Toshok  <toshok@ximian.com>
10955
10956         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
10957         recreating forms.  Control recreation is the bane of my existence.
10958         Fix it in a way that keeps everyone happy.
10959
10960 2006-10-30  Chris Toshok  <toshok@ximian.com>
10961
10962         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
10963         just non-CHILD ones.  otherwise sometimes scrollbars end up with
10964         client_windows not being resized to the proper size (ReportBuilder
10965         shows this extremely well).
10966
10967 2006-10-30  Chris Toshok  <toshok@ximian.com>
10968
10969         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
10970         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
10971         showing up in the gnome taskbar.  Fixes bug #79790.
10972
10973 2006-10-30  Chris Toshok  <toshok@ximian.com>
10974
10975         * ApplicationContext.cs: guard against a NRE.
10976
10977         * Application.cs: null out the old MainForm for the context, so we
10978         don't try to use it again once it's disposed.  Fixes bug #79783.
10979
10980 2006-10-30  Chris Toshok  <toshok@ximian.com>
10981
10982         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
10983         BindingContext, set the data source directly, otherwise do the
10984         lazy approach - the actual ListManager will be created when we get
10985         a BindingContext. Fixes bug #79700.
10986
10987 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
10988
10989         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
10990           XplatUIX11.cs: Remove old 2 parameter SetVisible.
10991
10992         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
10993
10994 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
10995
10996         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
10997         of SetVisible that allows a window to be shown, but not activated.
10998         This is needed on Windows for MenuStrip, and can probably be used
10999         with MainMenu and ComboBox to fix the focus stealing issues on
11000         Windows.
11001
11002         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
11003
11004 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
11005
11006         * PictureBox.cs: Fix the output of the ToString method.
11007
11008 2006-10-29  Chris Toshok  <toshok@ximian.com>
11009
11010         * Control.cs (get_TopLevelControl): fix bug #79781.
11011
11012 2006-10-29  Chris Toshok  <toshok@ximian.com>
11013
11014         * ListControl.cs (set_DataSource): throw Exception here, not
11015         ArgumentException, to match MS behavior.
11016
11017 2006-10-29  Chris Toshok  <toshok@ximian.com>
11018
11019         * Form.cs: remove the try-catch's around calls to GetWindowState.
11020         We can just check the return value.
11021
11022         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
11023         Instead return -1.
11024
11025         * XplatUI.cs: Add note about additional return value for
11026         GetWindowState.
11027
11028 2006-10-29  Chris Toshok  <toshok@ximian.com>
11029
11030         * Control.cs (CreateHandle): when we create our handle, we also
11031         create the handles of our child controls.  Fixes one of the
11032         Control unit tests (CH11).
11033
11034 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11035
11036         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
11037
11038 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11039
11040         * ThemeClearlooks.cs: A little speedup.
11041
11042 2006-10-27  Chris Toshok  <toshok@ximian.com>
11043
11044         * Control.cs: implement Control.FromChildHandle in a way that
11045         matches the docs (and fixes the failed test.)
11046
11047 2006-10-27  Chris Toshok  <toshok@ximian.com>
11048
11049         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
11050         comments).
11051
11052         * DataGrid.cs: implement ResetForeColor such that the tests
11053         succeed.
11054         
11055 2006-10-27  Chris Toshok  <toshok@ximian.com>
11056
11057         * ToolBarButton.cs: setting text/tooltiptext to null results in it
11058         being set to "".  Fixes bug #79759.
11059
11060 2006-10-27  Jackson Harper  <jackson@ximian.com>
11061
11062         * TextControl.cs: We need to clear the entire selection area when
11063         setting the start, otherwise multiline selections are still
11064         visible.
11065
11066 2006-10-26  Chris Toshok  <toshok@ximian.com>
11067
11068         * PropertyGridView.cs: 
11069
11070         - ifdef all the code specific to the double
11071         buffer case, and provide some alternatives in the non-doublebuffer
11072         code, which makes heavy use of XplatUI.ScrollWindow to move things
11073         around without having to invalidate (and cause flicker).  There
11074         are still some drawing problems in the non-doublebuffered case, so
11075         DOUBLEBUFFER is defined by default.
11076
11077         - Fix the way dropdowns are handled.  now we explicitly watch for
11078         the events which might cause the dropdown to close, and break out
11079         of the nested event loop there.  This gets rid of all Capture
11080         code, at the expense of the Msg special casing.  Seems to work,
11081         though, and fixes bug #79743.
11082
11083 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
11084         * Control.cs: SetIsRecreating now recreates implicitly added
11085         child controls as well. Finally fixes #79629. The flag passed to 
11086         SetIsRecreating has also been removed since it wasn't used.
11087         
11088 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11089
11090         * PageSetupDialog.cs: Clean some code, fix some bits, 
11091         add some checks, and add a printer sub-dialog.
11092
11093 2006-10-26  Chris Toshok  <toshok@ximian.com>
11094
11095         * PropertyGrid.cs: make set_SelectedObject call
11096         set_SelectedObjects, and move the duplicate logic to the
11097         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
11098
11099         * PropertyGridView.cs: hide the textbox when we get a
11100         SelectedObjectsChanged event.
11101
11102         Fixes bug #79748.
11103
11104 2006-10-26  Chris Toshok  <toshok@ximian.com>
11105
11106         * PropertyGridView.cs: deal with the type converter not supporting
11107         GetStandardValues() or GetStandardValues() returning null, which
11108         is does in the default case.  Fixes #79742.
11109
11110 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11111
11112         * CheckedListBox.cs: nunit no longer crashes when selecting 
11113         Project/Edit menu option
11114         
11115 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11116
11117         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
11118         is no menu selected. fixes #79739
11119
11120 2006-10-25  Chris Toshok  <toshok@ximian.com>
11121
11122         * PropertyGridView.cs: factor out the splitter invalidation code
11123         into the SplitterPercent setter, and for kicks implement the
11124         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
11125         amount in either direction.
11126
11127 2006-10-25  Chris Toshok  <toshok@ximian.com>
11128
11129         * PropertyGridView.cs: do some cleanup of the brush used to draw
11130         text - read only fields should be grayed out.  not sure how to do
11131         this with the textbox, though.  but the textbox's should also be
11132         readonly now at least.  Also, hide/show the textbox when resizing
11133         the control.
11134         
11135         * CursorConverter.cs: use System.Reflection when getting the
11136         properties of Cursors, as TypeDescriptor.GetProperties isn't
11137         returning static properties.
11138
11139 2006-10-25  Chris Toshok  <toshok@ximian.com>
11140
11141         * PropertyGridView.cs: factor out the up/down handling, and reuse
11142         it for page up/down.  also add End/Home support.
11143
11144 2006-10-25  Chris Toshok  <toshok@ximian.com>
11145
11146         * PropertyGridView.cs:
11147
11148         - ensure the selected grid item is visible in the scrolled area,
11149         fixes bug #79572.
11150
11151         - fix Keys.Down handling when you're on the last item in the
11152         propertygrid.
11153
11154 2006-10-25  Mike Kestner  <mkestner@novell.com>
11155
11156         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
11157         clicks too.  Fixes #79725.
11158
11159 2006-10-24  Chris Toshok  <toshok@ximian.com>
11160
11161         * PropertyGrid.cs: use property.Converter instead of
11162         TypeDescriptor.GetConverter(property.PropertyType), so we catch
11163         TypeConverters declared on the property as well as on the
11164         PropertyType.  Fixes bug #79678.
11165
11166 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
11167
11168         * MimeIcon.cs, Mime.cs:
11169           Fallback to the default platform handler if no shared mime info
11170           stuff exists (fixes #79693).
11171
11172 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
11173         * ContainerControl.cs: Incorrect contains check in ActiveControl 
11174         from previous fix (duh).
11175
11176 2006-10-20  Chris Toshok  <toshok@ximian.com>
11177
11178         * PropertyGridView.cs: the dropdown should be MIN(number of items
11179         in list, 15).  Fixes #79551.
11180
11181 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
11182         Fixes #79384, #79394, #79652, #79667
11183         * Application.cs: 
11184         
11185         - Modal windows are now destroyed in the proper order for windows
11186         
11187         * ContainerControl.cs:
11188         
11189         - ActiveControl setter has more conditions on when to return:
11190                 - if we're reselecting the active control, but it actually
11191                 didn't have focus (window hidden or some such), it runs
11192                 - if the active control being selected doesn't actually 
11193                 exist in the container, it returns
11194         
11195         * Form.cs
11196         
11197         - The ShowDialog now gets the current form as the owner when
11198         invoking without parameters, and correctly activates the owner 
11199         when returning
11200         
11201         * MessageBox.cs
11202         
11203         - MessageBox now catches the Escape key to exit
11204
11205 2006-10-20  Chris Toshok  <toshok@ximian.com>
11206
11207         * PropertyGridView.cs: fix a number of issues (bug #78565, and
11208         most of bug #79676):
11209
11210         - you can navigate around the property grid with the arrow keys.
11211
11212         - the dropdown is sized properly when the pg has a vertical
11213         scrollbar.
11214
11215         - fix the indentation for subentries, and properly select the
11216         entire label rect.
11217
11218         - fix the gray bar's drawing (only draw it to the last element,
11219         not for the height of the control.  Also make sure we draw that
11220         last horizontal grid line.
11221
11222         - use the same mechanism the datagrid uses wrt the editing textbox
11223         when scrolling/resizing/etc.  Namely, we hide it first, do the
11224         operation, then show it again (if it's still visible).
11225         
11226         - aggressively remove a lot of unnecessary refreshes (and also
11227         calls to Invalidate(). call more limited variants, and only redraw
11228         what we need.)
11229         
11230         * PropertyGrid.cs:
11231
11232         - when we're populating the merged collection, fill in the UI
11233         parent with either the passed in item, or the category item we
11234         create.
11235
11236         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
11237
11238         * GridItem.cs: drop some fully qualified names.
11239         
11240         * GridEntry.cs: add a "UIParent", which is basically the parent
11241         treenode.
11242
11243         * GridItemCollection.cs: add an IndexOf method.
11244
11245 2006-10-20  Mike Kestner  <mkestner@novell.com>
11246
11247         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
11248         a working win32 NC invalidation mechanism, we can't invalidate
11249         menus.  [Fixes #79705]
11250
11251 2006-10-20  Mike Kestner  <mkestner@novell.com>
11252
11253         * ListBox.cs : don't update the VScrollbar if the list is empty,
11254         just hide it.  [Fixes #79692]
11255
11256 2006-10-20  Jackson Harper  <jackson@ximian.com>
11257
11258         * RichTextBox.cs: Handle some special chars better, and don't skip
11259         the entire group when we encounter a special char that we don't
11260         handle correctly.
11261
11262 2006-10-18  Chris Toshok  <toshok@ximian.com>
11263
11264         * PropertyGridView.cs: address a number of issues from bug #79676,
11265         mostly of the cosmetic variety.
11266
11267         - The highlight rectangle for indented items not extends all the
11268         way to the left.
11269
11270         - Indented items aren't indented so much.
11271
11272         - the dropdown is properly sized width-wise if the pg has a
11273         vertical scrollbar.
11274
11275 2006-10-18  Chris Toshok  <toshok@ximian.com>
11276
11277         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
11278         systray stuff is rather convoluted to begin with.
11279
11280         systray icons are a single window for some reason (that I haven't
11281         figured out yet), and for them, client_window == whole_window.
11282         Given the way the tests are structured elsewhere to determine
11283         which paints are pending (client vs. nc), that situation will
11284         always yield PAINT, not NCPAINT.  So, if we have a pending
11285         nc_expose and no pending expose, remove the hwnd from the paint
11286         queue, and also set nc_expose_pending to false, to keep us from
11287         blocking further expose's adding the hwnd to the paint queue.
11288
11289         phew.  like i said, a rather convoluted change.  Fixes the
11290         notifyicon repaint issues in bug #79645.
11291
11292 2006-10-18  Chris Toshok  <toshok@ximian.com>
11293
11294         * Form.cs: when getting the backcolor of the form, don't get
11295         base.BackColor, as this allows parents to influence the background
11296         color.  This breaks mdi forms.  Instead, if the background_color
11297         is empty, return the default.
11298
11299 2006-10-18  Chris Toshok  <toshok@ximian.com>
11300
11301         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
11302         to being private instead of internal static.
11303
11304         * Control.cs: remove all the stupid ParentWaitingOnRecreation
11305         crap, it wasn't working for more deeply nested controls anyway,
11306         and we already have the is_recreating flag - use that instead.
11307         Before calling DestroyHandle in RecreateHandle, recurse through
11308         the control tree setting it to true.  this returns the recreate
11309         code to much of its original simplicity, while now guaranteeing we
11310         actually recreate everything we're supposed to.  This change gets
11311         fyireporting actually showing mdi children.
11312
11313 2006-10-17  Chris Toshok  <toshok@ximian.com>
11314
11315         * Form.cs: remove some debug spew, and collapse some duplicate
11316         code at the end of SetClientSizeCore.
11317
11318         * XplatUIX11.cs: 
11319         - add some more debug spew here too wrt Destroy handling.
11320         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
11321         in Control's handling of WM_DESTROY.
11322         - Remove the handling of zombie window DestroyNotifies from the
11323         event loop - we don't need it.  Now the only DestroyNotifies we
11324         actually handle are ones generated by X.
11325         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
11326         match gtk's (functioning) handling of this. This keep metacity
11327         from leaving droppings in the form of wm borders with no window
11328         contents all over the place.
11329
11330         * Control.cs:
11331         - add a bunch of debug spew wrt control recreation.
11332         - fix a bug where we weren't tracking Visible properly on
11333         recreated hwnds.
11334         - fixed the WM_PAINT double buffer handling to support re-entrant
11335         calls (yes, i know it's gross, but it's happening to us).
11336
11337 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11338         * ThemeWin32Classic.cs: changed drawing of selected days
11339         to make them look better.
11340
11341 2006-10-16  Chris Toshok  <toshok@ximian.com>
11342
11343         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
11344         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
11345
11346         * XplatUIX11.cs: move away from using hwnd.client_dc and
11347         hwnd.non_client_dc and on to a stack of dc's (and in window's
11348         case, PAINTSTRUCT's), so we can deal with nested Paint calls
11349         without puking or not disposing of Graphics objects.
11350
11351         * XplatUIOSX.cs: same.
11352
11353         * XplatUIWin32.cs: same.
11354
11355 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
11356
11357         * FileDialog.cs: Don't call on_directory_changed inside
11358           OnSelectedIndexChanged (it changes the SelectedIndex too).
11359           Instead move it to OnSelectionChangeCommitted.
11360
11361 2006-10-13  Chris Toshok  <toshok@ximian.com>
11362
11363         * XplatUIX11.cs: more Destroy work.  the current code does the
11364         following things, in order:
11365
11366         1. Enumerates all handles of all controls at or below the one
11367         being destroyed, in pre-order.  As it is doing this, it marks the
11368         handles as zombie and clears all references to them.
11369         
11370         2. calls XDestroyWindow on the window passed in.
11371
11372         3. SendMessage's WM_DESTROY to all he handles in the accumulated
11373         list.
11374
11375 2006-10-13  Chris Toshok  <toshok@ximian.com>
11376
11377         * XplatUIX11.cs: set hwnd.zombie to true before calling
11378         SendMessage (WM_DESTROY).  this keeps us from marking the new
11379         window a zombie, and also keeps us from calling sendmessage at
11380         all.
11381
11382 2006-10-13  Jackson Harper  <jackson@ximian.com>
11383
11384         * TextControl.cs: Do not show the caret and selection at the same
11385         time.  Reduces ugliness by 35%.
11386
11387 2006-10-13  Chris Toshok  <toshok@ximian.com>
11388
11389         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
11390         zombie after we do the recursive call, so we actually do call
11391         SendMessage on the children controls.
11392         (GetMessage): if we find a pending paint event for a zombie hwnd,
11393         remove the hwnd from the paint queue, or else it will always be
11394         there (and we'll effectively loop infinitely)
11395
11396 2006-10-13  Mike Kestner  <mkestner@novell.com>
11397
11398         * MenuItem.cs : add Selected format under keynav too.
11399         Fixes #79528.
11400
11401 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
11402
11403         * PropertyGrid.cs: Fixed some NRE's and small difference between our
11404         implementation and that of MS.
11405
11406 2006-10-13  Chris Toshok  <toshok@ximian.com>
11407
11408         * Control.cs (OnInvalidated) only futz with the invalid_region if
11409         the control is double buffered.  this fixes the apparent hang in
11410         the ListView unit tests.  Someone needs to make the
11411         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
11412
11413 2006-10-13  Chris Toshok  <toshok@ximian.com>
11414
11415         * PropertyGridView.cs:
11416
11417         - do a little refactoring so that only one place calls
11418         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
11419         else call that.  Also make it Refresh, since there are redraw bugs
11420         otherwise (we should take a look at that...)
11421
11422         - do a little more refactoring work to share the body of code
11423         involved with the drop down.  it was duplicated in the code
11424         dealing with the listbox handling and in the code dealing with the
11425         UITypeEditors.
11426
11427         - add a Capture to the dropdown form's control once it's
11428         displayed, and add a MouseDown handler that checks to make sure
11429         the position is inside the control.  If it's not, close the
11430         dropdown.  This fixes #78190.
11431
11432         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
11433         if the value is different than the initial value.
11434         
11435 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
11436
11437         * Control.cs: see #78650
11438         - Fixed GetNextControl for several cases:
11439                 - Changed FindFlatForward to return 
11440                 correct sibling control when more than one
11441                 control has same TabIndex as the currently 
11442                 focused one.
11443                 - Changed FindFlatBackward to loop children
11444                 from last to first and apply same logic as in
11445                 FindFlatForward
11446                 - Changed FindControlForward to search for
11447                 children when control is not a container
11448                 but has children, or search for siblings if
11449                 control is a container...
11450                 - Changed FindControlBackward   to continue
11451                 searching for child controls when hitting 
11452                 Panel-like parents
11453                 
11454         - Fixed Focus method to update ActiveControl
11455         (FocusTest.FocusSetsActive failure)
11456         
11457         * TabControl.cs:
11458         - Focus rectangle now refreshes when gaining
11459         or losing focus
11460         - Removed grab for Tab key on IsInputKey that 
11461         was keeping tab navigation from working (#78650)
11462
11463 2006-10-13  Chris Toshok  <toshok@ximian.com>
11464
11465         * PropertyGridView.cs:
11466         - Rewrite SetPropertyValue to loop over SelectedGridItem's
11467         SelectedObjects.
11468
11469         - Deal with GridItem.Value == null a few places.
11470
11471         * PropertyGrid.cs: 
11472         - replace the PopulateGridItemCollection with a pair of methods
11473         which compute the intersection of all the properties in the
11474         SelectedObjects array.  Fixes #79615.
11475
11476         - Throw ArgumentException from set_SelectedObjects if there's a
11477         null in the array.
11478
11479         - Add GetTarget method which can be used to traverse up the
11480         GridItem.Parent chain.  It depends on the assumption that
11481         selected_objects for different GridEntries are always in the same
11482         order (a safe assumption).  Use this method and loop over all the
11483         selected objects in the entry when calling RemoveValueChanged and
11484         AddValueChanged.
11485         
11486         * GridEntry.cs: Make this handle multiple selected objects.
11487         .Value returns null if not all the selected objects share the same
11488         value.
11489
11490 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
11491         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
11492           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
11493           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
11494           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
11495           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
11496         add additional functionality.
11497
11498 2006-10-12  Mike Kestner  <mkestner@novell.com>
11499
11500         * ErrorProvider.cs : new ToolTipWindow ctor sig.
11501         * HelpProvider.cs : new ToolTipWindow ctor sig.
11502         * ToolTip.cs : remove ToolTip param from Window sig since it is
11503         not used.
11504         * ToolBar.cs : add tooltip support.  Fixes #79565.
11505
11506 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11507
11508         * ComboBox.cs: move the events in set_SelectedIndex to 
11509         after the call to HighlightIndex in order to avoid 
11510         possible recursion and subsequent problems with the call
11511         to HighlightIndex and include a range check in 
11512         set_HighlightIndex. Fixes #79588
11513         
11514 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11515
11516         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
11517         to ui thread's settings instead of sunday. 
11518         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
11519
11520 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11521
11522         * DateTimePicker.cs
11523         * MonthCalendar.cs
11524         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
11525         and implement missing functionality (selecting different parts 
11526         of the date and edit them individually with the keyboard).
11527         
11528 2006-10-11  Chris Toshok  <toshok@ximian.com>
11529
11530         * Control.cs (OnInvalidated): fix NRE relating to last change.
11531
11532 2006-10-11  Chris Toshok  <toshok@ximian.com>
11533
11534         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
11535         atoms in _NET_WM_STATE here if the window is maximized.  We need
11536         to do this because we're *replacing* the existing _NET_WM_STATE
11537         property, so those atoms will be lost otherwise, and any further
11538         call to GetWindowState will return Normal for a window which is
11539         actually maximized.  Fixes #79338.
11540
11541 2006-10-11  Jackson Harper  <jackson@ximian.com>
11542
11543         * TextControl.cs: Special case for setting selection end to
11544         selection start, we basically kill the anchor.
11545         - some todo comments.
11546
11547 2006-10-11  Chris Toshok  <toshok@ximian.com>
11548
11549         * Control.cs: switch to using an "invalid_region" to track which
11550         parts of the image buffer need updating.  This is more code than
11551         the simple fix from r66532.  That version just attempted to always
11552         fill the entire buffer on redraw, which turns out to be
11553         inefficient when invalidating small rectangles.  This version
11554         simply adds the invalid rectangle to the invalid region.  When we
11555         get any WM_PAINT message we see if it can be filled using the
11556         image buffer, and if it can't (if the paint event's clip rectangle
11557         is visible in the invalid region) we first fill the image buffer.
11558         So, the image buffer is still a cache, we just fill it lazily.
11559
11560         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
11561         need it any longer.
11562
11563 2006-10-11  Chris Toshok  <toshok@ximian.com>
11564
11565         * XplatUIX11.cs (SetWindowPos): we need to update both position as
11566         well as size after calling XMoveResizeWindow.  This keeps us from
11567         ignoring future SetWindowPos calls.  Fixes the disappearing
11568         DateTimePicker in the ToolBarDockExample from bug #72499.
11569
11570 2006-10-11  Chris Toshok  <toshok@ximian.com>
11571
11572         * TextBoxBase.cs: reorder things a bit when it comes to
11573         resizing-causing-recalculation.  we were recalculating the
11574         document when our position was changed, which shouldn't happen.
11575         We only care about size changes.  Clear up some more redundant
11576         recalculation calls while I'm at it.  This makes the toolbar dock
11577         example snappy when you're just dragging toolbars around (since it
11578         causes a relayout whenever you move one.)
11579
11580 2006-10-11  Chris Toshok  <toshok@ximian.com>
11581
11582         * ToolBarButton.cs (get_Rectangle): this only returns
11583         Rectangle.Empty if Visible == false, or Parent == null.
11584         Parent.Visible doesn't matter.
11585
11586 2006-10-10  Chris Toshok  <toshok@ximian.com>
11587
11588         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
11589         by .net 1.1, so switch to an internal method instead.
11590
11591 2006-10-10  Chris Toshok  <toshok@ximian.com>
11592
11593         * Control.cs (WM_PAINT): when a control is double buffered we draw
11594         initially to the ImageBuffer and then copy from there.  But when a
11595         parent control which has child controls is double buffered, the
11596         initial drawing doesn't encompass the entire ClientRectangle of
11597         the parent control, so we end up with uninitialized bits (this is
11598         easily seen by dragging the top toolbar in
11599         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
11600         manually set the ClipRectangle of the paint_event (only the one we
11601         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
11602         of the nastiness in bug #72499.
11603
11604         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
11605         which we use in Control.cs's WM_PAINT handling.
11606
11607 2006-10-10  Jackson Harper  <jackson@ximian.com>
11608
11609         * TextBoxBase.cs: Finish off the autoscrolling stuff.
11610
11611 2006-10-10  Chris Toshok  <toshok@ximian.com>
11612
11613         * Cursor.cs: Apply a slightly different patch to the one suggested
11614         in #79609.
11615
11616 2006-10-10  Jackson Harper  <jackson@ximian.com>
11617
11618         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
11619         not the parent form.
11620         * TextControl.cs: use difference in old line count vs new count to
11621         calculate how many lines were added, this takes into account soft
11622         line breaks properly.
11623
11624 2006-10-10  Chris Toshok  <toshok@ximian.com>
11625
11626         * LinkLabel.cs: don't call MeasureCharacterRanges against a
11627         rectangle located at 0,0 and the size of the text.  Use
11628         ClientRectangle instead.  This fixes rendering of non-left aligned
11629         link labels.
11630
11631 2006-10-10  Jackson Harper  <jackson@ximian.com>
11632
11633         * TextBoxBase.cs: When we set the selection start position the
11634         caret.
11635         * TextControl.cs: Need to update the caret when we decrement it to
11636         zero.
11637         - Make sure that the selection_visible flag gets reset to false if
11638         the selection isn't visible.  Before this you could get it set to
11639         visible by changing the selection start, then changing the end to
11640         equal the start.
11641
11642 2006-10-09  Jackson Harper  <jackson@ximian.com>
11643
11644         * TreeView.cs: Don't update scrollbars when we aren't visible.
11645         * TreeNodeCollection.cs: Only need to update scrollbars if being
11646         added to an expanded visible node or the root node.
11647
11648 2006-10-09  Chris Toshok  <toshok@ximian.com>
11649
11650         * XplatUIX11.cs (SendMessage): fix NRE.
11651
11652 2006-10-09  Jackson Harper  <jackson@ximian.com>
11653
11654         * TextBoxBase.cs: Implement horizontal autoscrolling.
11655         * TextControl.cs: Add a movement types that allows moving forward
11656         and backwards without wrapping.
11657
11658 2006-10-09  Mike Kestner  <mkestner@novell.com>
11659
11660         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
11661         with focus "expansion" of labels.  Fixes #79532 and then some.
11662         * ThemeWin32Classic.cs : add LineLimit to ListView label format
11663         when wrapping.
11664
11665 2006-10-09  Jackson Harper  <jackson@ximian.com>
11666
11667         * TextBoxBase.cs: Set the default max values to MaxValue since
11668         we use the scrollbar for autoscrolling and the default value is
11669         100.  If we don't do this the caret won't keep up with typing
11670         after about 18 characters.
11671         * TextControl.cs: Make sure the selection is offset by the
11672         viewport x.  This fixes selection when using auto scrolling.
11673
11674 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
11675         
11676         * Form.cs: The active control should be selected after the 
11677         OnLoad so that any child control initialization that affects
11678         the selection is done. Fixes #79406
11679
11680 2006-10-06  Chris Toshok  <toshok@ximian.com>
11681
11682         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
11683         to have no evil effects.
11684
11685         - Stop selecting StructureNotifyMask on non-toplevel windows.
11686
11687           The only way children should be resized is by using the SWF api,
11688           and we already send WM_WINDOWPOSCHANGED messages in those cases.
11689           Toplevel windows can be interacted with via the window manager,
11690           and so we keep the input mask there.
11691
11692           The other event StructureNotifyMask gives us (that we care
11693           about) is DestroyNotify.  The code is already structured such
11694           that it assumes we won't be getting a DestroyNotify event for
11695           the window we pass to XDestroyWindow (which is what
11696           StructureNotifyMask is supposed to guarantee.)  So, that code
11697           shouldn't be affected by this either.
11698
11699         - Stop selecting VisibilityChangeMask altogether.
11700
11701           We weren't doing anything with the resulting events anyway.
11702         
11703         This vastly reduces the number of X requests and events we see
11704         when resizing/laying out a large ui.
11705
11706 2006-10-06  Chris Toshok  <toshok@ximian.com>
11707
11708         * ScrollableControl.cs (DisplayRectangle): we need to take into
11709         account the DockPadding regardless of whether or not auto_scroll
11710         == true.  rework this slightly to this effect, and fix bug #79606,
11711         and part of #72499 (you can now see the drag handles and drag
11712         toolbars around).
11713
11714 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
11715
11716         * ListViewItem.cs: Collections of selected and checked items are now
11717         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
11718         we mark the collection "dirty".
11719         * ListView.cs: Marked collections readonly. Modified UpdateSelection
11720         to only clear SelectedItems when a new item is selected and MultiSelect
11721         is enabled. CheckedItems and SelectedItems now subscribe to Changed
11722         event of ListViewItemCollection, and mark its list dirty whenever
11723         that event is fire. This allows us to return selected/checked items 
11724         in the same order as they are in the Items collection. This matches
11725         the MS behavior.
11726
11727 2006-10-06  Chris Toshok  <toshok@ximian.com>
11728
11729         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
11730         right mouse clicks.  Fixes bug #79593.
11731
11732 2006-10-06  Chris Toshok  <toshok@ximian.com>
11733
11734         * Splitter.cs: doh, fix splitters that don't want to cancel the
11735         movement when you drag them.  Also, impose the limits on the
11736         values we send to the SplitterMovingEvent.  Fixes #79598.
11737
11738 2006-10-06  Jackson Harper  <jackson@ximian.com>
11739
11740         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
11741         since we use this for auto scrolling also.
11742
11743 2006-10-05  Chris Toshok  <toshok@ximian.com>
11744
11745         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
11746         beginning to think that most datagrid column types don't need this
11747         method.  Fixes bug #79392.
11748
11749 2006-10-05  Chris Toshok  <toshok@ximian.com>
11750
11751         * DataGrid.cs: move back to a more lazy scheme for creating the
11752         CurrencyManager, so we aren't updating it every time you set
11753         either DataSource or DataMember.  Also, don't call
11754         RecreateDataGridRows if the currency manager hasn't changed.
11755
11756 2006-10-05  Chris Toshok  <toshok@ximian.com>
11757
11758         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
11759         emitted, SelectedIndex should already be updated.  Fixes bug
11760         #78929.
11761
11762 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
11763
11764         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
11765           ToolStripTextBox.cs: Initial commit.
11766         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
11767
11768 2006-10-05  Jackson Harper  <jackson@ximian.com>
11769
11770         * TabControl.cs: We need to invalidate the tab control area when
11771         new ones are added (duh).
11772
11773 2006-10-03  Chris Toshok  <toshok@ximian.com>
11774
11775         * Form.cs (ProcessDialogKey): if the focused control is in this
11776         form and is a button, call its PerformClick method here.  Fixes
11777         #79534.
11778
11779 2006-10-04  Jackson Harper  <jackson@ximian.com>
11780
11781         * TabPage.cs: Ignore setting of Visible, and add an internal
11782         method for setting the controls visibility.  TabPage's Visible
11783         property is a little strange on MS, this seems to make us
11784         compatible, and fixes cases where people set all the tab pages to
11785         visible.
11786         * TabControl.cs: Use the new internal setting on tab pages
11787         visibility.
11788
11789 2006-10-03  Mike Kestner  <mkestner@novell.com>
11790
11791         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
11792
11793 2006-10-03  Mike Kestner  <mkestner@novell.com>
11794
11795         * ListView.cs : use is_visible instead of Visible to check if 
11796         scrollbars should be placed/sized.  Also some max_wrap_width
11797         love for LargeIcon view.  [Fixes #79533]
11798
11799 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
11800
11801         * TextControl.cs :
11802           Make set_TextAlign() do actually update the align. Fixed #78403.
11803
11804 2006-10-03  Chris Toshok  <toshok@ximian.com>
11805
11806         * DataGrid.cs: fix a crash when switching datasources if the
11807         vertical scrollbar is at someplace other than Value = 0.  Also,
11808         reduce the number of recalculation passes we do in SetDataSource
11809         from 2 to 1.
11810
11811 2006-10-03  Jackson Harper  <jackson@ximian.com>
11812
11813         * TextBoxBase.cs: Move the if value the same bail check up, we
11814         don't want to empty the document if it is already empty, this
11815         seems to severly mess up the caret.  TODO: I should probably fix
11816         the empty statement to update teh caret somehow.
11817
11818 2006-10-03  Chris Toshok  <toshok@ximian.com>
11819
11820         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
11821         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
11822         reflection, an internal row type, properties on said type, etc.)
11823         will work with our datagrid.  Fixes #79531.
11824
11825 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
11826
11827         * FileDialog.cs: Don't crash if a path is not accessible
11828           (System.UnauthorizedAccessException). Fixes #79569.
11829         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
11830           a ':' too. Return unknown icon for those paths/files.
11831
11832 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
11833
11834         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
11835         GetContainerControl returns null.
11836
11837 2006-10-02  Chris Toshok  <toshok@ximian.com>
11838
11839         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
11840         call to XGetWindowAttributes instead of "handle".  fixes an X
11841         error using notifyicon after the NotifyIconWindow to Form base
11842         class switch.
11843
11844 2006-10-02  Chris Toshok  <toshok@ximian.com>
11845
11846         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
11847         server grab and looping we need to do to get down to the most
11848         deeply nested child window.
11849         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
11850         QueryPointer again after the WarpPointer so we can generate a
11851         proper (fake) MotionNotify event to be enqueued in the destination
11852         window's queue.
11853         (GetCursorPos): call QueryPointer.
11854
11855         Fixes #79556.
11856
11857 2006-10-02  Jackson Harper  <jackson@ximian.com>
11858
11859         * NotifyIcon.cs: Derive the notify icon from a form, so things
11860         like FindForm work on it.
11861         - Swallow the WM_CONTEXTMENU message, since that is generated on
11862         mouse down, and context menu is a mouse up kinda guy.  I believe
11863         the correct fix here is probably to make the notify icon entirely
11864         NC area, but this seems to work fine for anyone not manipulating
11865         WndProc.
11866
11867 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
11868
11869         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
11870           ToolStripItemCollection.cs, ToolStripLabel.cs,
11871           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
11872           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
11873           Initial implementation.
11874         * TextRenderer.cs: Provide padding to MeasureText.
11875
11876 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
11877
11878         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
11879         of ButtonBaseAccessibleObject. Fix bug #79552.
11880
11881 2006-10-02  Jackson Harper  <jackson@ximian.com>
11882
11883         * MdiWindowManager.cs: When maximizing use the containers client
11884         rect, not it's bounds, so nc area is accounted correctly.
11885         - Use the parent form's size for the menu position, since the
11886         client isn't always the full form size.
11887
11888 2006-10-01  Chris Toshok  <toshok@ximian.com>
11889
11890         * ScrollableControl.cs: make sure neither right_edge or
11891         bottom_edge are < 0, since they're used as LargeChange for the
11892         horiz/vert scrollbars respectively.  Fixes #79539.
11893
11894 2006-10-01  Chris Toshok  <toshok@ximian.com>
11895
11896         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
11897         the xplatuix11 code can cause us to destroy/recreate our handle.
11898
11899         * XplatUIX11.cs
11900         (SystrayAdd):
11901         - this code can be invoked many times for the same Hwnd.  Make
11902           sure we only destroy the client window once (the first time this
11903           method is called).  This fixes bug #79544.
11904         - Remove the call to the improperly bound XSync.  why we had two
11905           bindings to this, I will never know, but this call resulted in
11906           events being discarded from the queue(!).
11907         - correct a misunderstanding of _XEMBED_INFO - the second atom is
11908           not our current state but the state we wish to be in.  So, 0 if
11909           we don't want to be mapped.  Change it to 1.
11910         (SystrayRemove): The XEMBED spec makes mention of the fact that
11911         gtk doesn't support the reparent of client windows away from the
11912         embedder.  Looking at gtksocket-x11.c seems to agree with this.
11913         The only avenue we have for removing systray icons is to destroy
11914         them.  We don't want the handle to go away for good, though, so
11915         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
11916         #79545.
11917         
11918 2006-10-01  Chris Toshok  <toshok@ximian.com>
11919
11920         * Form.cs (WndProc): inline the native_enabled variable usage into
11921         the cases in which it's used.  Fixes #79536.
11922
11923 2006-09-29  Mike Kestner  <mkestner@novell.com>
11924
11925         * ListView.cs : toggle the selection state for ctrl clicks in 
11926         multiselect mode. [Fixes #79417]
11927
11928 2006-09-29  Mike Kestner  <mkestner@novell.com>
11929
11930         * ListView.cs : kill CanMultiSelect and refactor the selection
11931         code to support multiselection in the absence of mod keys. Steal
11932         arrow/home/end keys by overriding InternalPreProcessMessage to
11933         restore regressed keynav behavior.
11934         [Fixes #79416]
11935
11936 2006-09-29  Jackson Harper  <jackson@ximian.com>
11937
11938         * MdiClient.cs: Repaint the titlebars when the active window is
11939         changed.
11940
11941 2006-09-29  Chris Toshok  <toshok@ximian.com>
11942
11943         * Application.cs: when entering a runloop with a modal, make sure
11944         the hwnd is enabled.  Fixes #79480.
11945
11946 2006-09-29  Chris Toshok  <toshok@ximian.com>
11947
11948         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
11949         when ListManager.CanAddRows == false, bump us back one.
11950
11951         * DataGridColumnStyle.cs (ParentReadOnly): remove the
11952         listmanager.CanAddRows check.  This makes ArrayLists uneditable
11953         using a datagrid, which is not right.
11954         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
11955         is an IEditable, but call property_descriptor.SetValue regardless.
11956         fixes #79435.
11957
11958 2006-09-29  Chris Toshok  <toshok@ximian.com>
11959
11960         * DataGridBoolColumn.cs: we need to test equality in the face of
11961         possible null values (as is the case with the default NullValue).
11962         This patch keeps us from crashing in that case.
11963
11964 2006-09-29  Jackson Harper  <jackson@ximian.com>
11965
11966         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
11967         here, since it will get called for every node collection in the
11968         tree. This is now done in the treeview once the sorting is
11969         finished.
11970         * TreeView.cs: Recalculate the visible order, and update the
11971         scrollbars after sorting, set the top nope to the root so that the
11972         recalc actually works.
11973
11974 2006-09-29  Chris Toshok  <toshok@ximian.com>
11975
11976         * LinkLabel.cs: more handling of the default link collection in
11977         the face of LinkArea manipulation.  The default link collection
11978         contains 1 element (start=0,length=-1).  If the user sets LinkArea
11979         to anything and the links collection is the default, clear it.
11980         Then only add the link if its nonempty.  Fixes #79518.
11981
11982 2006-09-29  Chris Toshok  <toshok@ximian.com>
11983
11984         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
11985         piece correctly when we hit a '\n'.  Fixes #79517.
11986
11987 2006-09-29  Chris Toshok  <toshok@ximian.com>
11988
11989         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
11990         change the binding of gdk_init_check to take two IntPtr's, and
11991         pass IntPtr.Zero for both of them.  Fixes #79520.
11992
11993 2006-09-29  Mike Kestner  <mkestner@novell.com>
11994
11995         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
11996         [Fixes #78779]
11997
11998 2006-09-28  Jackson Harper  <jackson@ximian.com>
11999
12000         * XplatUIX11.cs: When translating NC messages make sure we go from
12001         whole window to screen, not client window to screen.
12002         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
12003         method doesn't exist
12004         - Skip over controls that aren't forms when arranging.
12005
12006 2006-09-28  Jackson Harper  <jackson@ximian.com>
12007
12008         * XplatUIWin32.cs: Clip the rect to the parent window.
12009         * XplatUIStructs.cs: Add clipping modes struct.
12010         * InternalWindowManager.cs: New private method that factors title
12011         bar heights in when calculating the pos of an NC mouse message.
12012         - Use SendMessage to force a paint when the form's size is changed
12013         instead of painting the decorations immediately.
12014         - Don't let the NC button click messages get to DefWndProc,
12015         because they will attempt to handle windowing themself, and this
12016         messes up z-order (it will put them in front of the scrollbars).
12017         * XplatUIX11.cs: Make sure that we don't reset window managers if
12018         we already have one (ie the window is an MDI window).
12019
12020 2006-09-28  Chris Toshok  <toshok@ximian.com>
12021
12022         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
12023         menu code really needs going over.
12024
12025 2006-09-27  Chris Toshok  <toshok@ximian.com>
12026
12027         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
12028         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
12029         window is maximizable.  So, we need to make sure that even if we
12030         clear the border/wm frame of those functions, they're still
12031         available (basically, we remove the decoration without removing
12032         the function).  Half the fix for #79338.
12033
12034 2006-09-27  Chris Toshok  <toshok@ximian.com>
12035
12036         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
12037         Fixes bug #79515.
12038
12039 2006-09-27  Chris Toshok  <toshok@ximian.com>
12040
12041         * Splitter.cs: reorder things a bit so that we don't actually
12042         draw/move the splitter until after calling OnSplitterMoving.  This
12043         lets users cancel/disallow the movement by explicitly setting
12044         event.SplitX/SplitY.  Fixes #79372.
12045
12046 2006-09-27  Jackson Harper  <jackson@ximian.com>
12047
12048         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
12049         because it is most likely on a window being destroyed, and that
12050         will give us an X11 error.
12051
12052 2006-09-27  Chris Toshok  <toshok@ximian.com>
12053
12054         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
12055         the dropdown button now toggles between showing and hiding the
12056         dropdown.  Also, get rid of dropdown_form_showing and just use
12057         dropdown_form.Visible.  We still don't do a grab, but I'll leave
12058         that part to someone who has handled Capture-fu before.
12059
12060 2006-09-27  Chris Toshok  <toshok@ximian.com>
12061
12062         * DataGrid.cs: return false if alt isn't pressed when '0' is
12063         pressed.  this keeps the '0' key from being swallowed, and fixes
12064         bug #79350.
12065
12066 2006-09-27  Chris Toshok  <toshok@ximian.com>
12067
12068         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
12069         Calling Refresh (in response to a scrollbar event) screws up the
12070         scrollbar painting.  Fixes bug #78923.
12071
12072 2006-09-27  Chris Toshok  <toshok@ximian.com>
12073
12074         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
12075         then insert into hashtable" blocks threadsafe.
12076
12077 2006-09-27  Chris Toshok  <toshok@ximian.com>
12078
12079         * MessageBox.cs (CreateParams): the styles should be |'ed with our
12080         baseclass's, since otherwise the
12081         ControlBox/MinimizeBox/MaximizeBox assignments above have no
12082         effect.  This gets the close button back in messageboxes.
12083
12084 2006-09-27  Chris Toshok  <toshok@ximian.com>
12085
12086         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
12087         flag, not just != 0.  this makes flags that are actually multiple
12088         bits (like WS_CAPTION) work.  fixes bug #79508.
12089
12090 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
12091
12092         * PageSetupDialog.cs: add support for getting and settings the 
12093         paper size, source and orientation.
12094
12095 2006-09-26  Chris Toshok  <toshok@ximian.com>
12096
12097         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
12098         and caption == "", we need to remove the resize handles as well as
12099         the title bar.
12100
12101         * Control.cs (set_Text): turns out that setting Text on a form
12102         should change the WM styles on the window, since if ControlBox ==
12103         false, the only way to get a window border is to have a non-""
12104         Text property.  check winforms/forms/text.cs for an example.  so,
12105         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
12106         update both window styles and title.  This fixes a lot of dialogs
12107         (including the preferences dialog in MonoCalendar.)
12108
12109 2006-09-26  Chris Toshok  <toshok@ximian.com>
12110
12111         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
12112         control isn't a Form), call Win32ShowWindow to hide the window,
12113         but don't update the control Visible property.  When we reparent
12114         back to a parent control, call SetVisible in order for the
12115         window's visibility to be reinstated.
12116
12117         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
12118         the FosterParent.
12119
12120         * Control.cs (ControlCollection.Remove): remove that value.Hide()
12121         call for good, since it breaks MonoCalendar (and other things I'm
12122         sure.) Also, set all_controls to null *after* the owner calls,
12123         which end up regenerating it.
12124         (ChangeParent): allow new_parent to be == null, passing
12125         IntPtr.Zero down to XplatUI.
12126
12127         this fixes #79294 the right way.
12128
12129 2006-09-26  Mike Kestner  <mkestner@novell.com>
12130
12131         * GridEntry.cs : internal SetParent method.
12132         * PropertyGrid.cs : attach to property changed on the proper
12133         target if we have a hierarchical grid with subobjects. Setup
12134         GridItem.Parent for hierarchical items.
12135         * PropertyGridView.cs : Set value on the correct target for
12136         hierarchical grids. [Fixes #78903]
12137
12138 2006-09-26  Chris Toshok  <toshok@ximian.com>
12139
12140         * Control.cs (ChildNeedsRecreating): this should return true if
12141         either we're being recreated and the child is in our list, or our
12142         parent is waiting for our recreation.
12143
12144 2006-09-26  Chris Toshok  <toshok@ximian.com>
12145
12146         * Control.cs (ControlCollection.Remove): reinstate the
12147         value.Hide() call as suggested in bug #79294.
12148
12149 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
12150
12151         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
12152         coordinates (versus a relative move).
12153
12154 2006-09-26  Chris Toshok  <toshok@ximian.com>
12155
12156         * Control.cs: rework child recreation a little bit.  It turns out
12157         that we race between the DestroyNotify the WM_DESTROY message.  If
12158         the parent gets its DestroyNotify before the child gets the
12159         WM_DESTROY message, the child ends up not recreating (since the
12160         parent finishes its recreation on DestroyNotify, and the child
12161         checks ParentIsRecreating.)
12162
12163         So, instead we store off a list of all the child controls which
12164         need to be recreated when the parent control starts to recreate
12165         itself.  Then, when child controls get their WM_DESTROY message we
12166         check to see if they're in the parent's pending recreation list,
12167         and if so, we recreate.  This removes all dependency on ordering
12168         from the code and fixes the initial MonoCalendar upgrade dialog.
12169         
12170 2006-09-26  Jackson Harper  <jackson@ximian.com>
12171
12172         * TextControl.cs: Use the Line to get the length of the line,
12173         since soft line breaks can change the end line.
12174
12175 2006-09-26  Chris Toshok  <toshok@ximian.com>
12176
12177         * Control.cs (ControlCollection.AddImplicit): don't add the
12178         control again if it's already in one of our lists.  This keeps us
12179         from adding controls over and over again for comboboxes when their
12180         handle gets recreated (as the combobox adds implicit controls in
12181         OnHandleCreated).  Fixes the X11 errors in bug #79480.
12182
12183 2006-09-26  Jackson Harper  <jackson@ximian.com>
12184
12185         * TextControl.cs: When deleting characters make sure that any
12186         orphaned zero lengthed tags get deleted.
12187         - Fix ToString for zero lengthed tags.
12188
12189 2006-09-25  Jackson Harper  <jackson@ximian.com>
12190
12191         * TextControl.cs: When getting a tag at the location there can be
12192         multiple tags at the same spot, these are 0-lengthed tags that
12193         appear when extra formatting has been stuck in a location.  We
12194         need to pull out the last of these 0 lengthed tags.
12195
12196 2006-09-25  Jackson Harper  <jackson@ximian.com>
12197
12198         * TextControl.cs: Fix print out in debug method.
12199         * TextBoxBase.cs: When text is set bail if we are setting to the
12200         previous value.
12201         
12202 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
12203
12204         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
12205           It is now possible to change the selected index in a FontXXXListBox
12206           with the up and down arrow keys from the FontXXXTextBoxes.
12207           Also, send the FontXXXTextBox mouse wheel event to the corresponding
12208           FontXXXListBoxes to match ms.
12209
12210 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
12211
12212         * SystemInformation.cs: Return a clone of the theme's MenuFont because
12213         anyone can dispose it, anytime. All other properties returns enums, 
12214         structs or basic types so they don't need such tricks.
12215
12216 2006-09-22  Jackson Harper  <jackson@ximian.com>
12217
12218         * XplatUI.cs:
12219         * XplatUIWin32.cs:
12220         * Clipboard.cs:
12221         * DataFormats.cs:
12222         * XplatUIOSX.cs:
12223         * XplatUIDriver.cs: Update interface to add a primary selection
12224         flag, so the driver can use the primary selection buffer if
12225         needed.
12226         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
12227
12228         * RichTextBox.cs: We need to supply the data object to paste now
12229         (so we can choose to supply CLIPBOARD or PRIMARY).
12230         * TextBoxBase.cs: Supply data object to paste (see above).
12231         - Middle click uses the primary selection data object.
12232         
12233 2006-09-21  Chris Toshok  <toshok@ximian.com>
12234
12235         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
12236         of SetWMStyles.  It's still a rat's nest and is largely
12237         order-dependent which I dislike immensely.  This also fixes the X
12238         button disappearing from toplevel forms.
12239
12240 2006-09-21  Mike Kestner <mkestner@novell.com>
12241
12242         * ListBox.cs: move Jordi's click/dblclick raising code to the
12243         mouse up handler.
12244
12245 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12246
12247         * ListBox.cs: Fixes 79450
12248
12249 2006-09-21  Mike Kestner <mkestner@novell.com>
12250
12251         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
12252         to deal with people updating the TreeNodeCollection after the tree
12253         is disposed.  "Fixes" 79330.
12254
12255 2006-09-20  Jackson Harper <jackson@ximian.com>
12256
12257         * TextControl.cs: Push the cursor record onto the undo stack
12258         before the delete action. This fixes 78651.
12259
12260 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
12261
12262         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
12263         CreateParams. Fixes 79329.
12264
12265 2006-09-19  Chris Toshok  <toshok@ximian.com>
12266
12267         * XplatUIX11.cs: a couple of blanket code massage passes to clean
12268         things up a bit.  First, get rid of the NetAtoms array (and the NA
12269         enum), and just embed the atoms as static fields.  Also, add a
12270         couple of functions (StyleSet and ExStyleSet) to clean up all the
12271         bitmask testing of styles.
12272
12273         * X11Structs.cs: remove the NA enum, not needed anymore.
12274         
12275 2006-09-19  Chris Toshok  <toshok@ximian.com>
12276
12277         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
12278         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
12279         added cleanup to get MessageBox titles appearing again, which were
12280         broken by my earlier fix for caption-less/ControlBox-less windows.
12281
12282 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
12283
12284         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
12285           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
12286           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
12287           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
12288           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
12289           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
12290           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
12291           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
12292           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
12293           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
12294           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
12295             Inital import.
12296         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
12297           ToolStripButton.cs: Stubs needed for above.
12298         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
12299
12300 2006-09-15  Chris Toshok  <toshok@ximian.com>
12301
12302         * XplatUIX11.cs:
12303         - make the MessageQueues hashtable Synchronized.
12304         
12305         - SendMessage: if the Hwnd is owned by a different thread, use the
12306         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
12307         thread.  Fixes bug #79201.
12308
12309 2006-09-15  Chris Toshok  <toshok@ximian.com>
12310
12311         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
12312         ControlBox == false, we disallow maximize/minimize/close.  If the
12313         form Caption is "" we also disallow move (and get rid of the Title
12314         decoration).  Unfortunately, regardless of how things are set,
12315         we're stuck with the Title and WM menu.
12316
12317 2006-09-15  Chris Toshok  <toshok@ximian.com>
12318
12319         * Application.cs: add locking around the static message_filters
12320         ArrayList, part of #79196.
12321
12322 2006-09-15  Chris Toshok  <toshok@ximian.com>
12323
12324         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
12325         Form.ControlBox == false, the window has no titlebar nor resize
12326         handles.  fixes bug #79368.
12327
12328 2006-09-15  Chris Toshok  <toshok@ximian.com>
12329
12330         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
12331         >= 0.  Fixes bug #79370.
12332
12333 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
12334         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
12335         * Control.cs:
12336             Add properties: LayoutEngine, Margin, DefaultMargin.
12337             Add method: GetPreferredSize.
12338             Move layout logic from PerformLayout to layout engines. 
12339
12340 2006-09-13  Chris Toshok  <toshok@ximian.com>
12341
12342         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
12343         fix for #79326 broke #78718, so this change addresses that.
12344
12345         - in SendWMDestroyMessages remove the call to
12346         CleanupCachedWindows, since we might be recreating the control and
12347         need to maintain the references to right Hwnd handles.  Also, set
12348         the zombie flag to true for each of the children in the hierarchy
12349         instead of calling hwnd.Dispose.  This will cause GetMessage to
12350         ignore all events for the window except for DestroyNotify.
12351
12352         - In GetMessage, ignore messages except for DestroyNotify for
12353         zombie hwnds.
12354         
12355         * Control.cs: revert the is_recreating fix from the last
12356         ChangeLog.  It's definitely "right", but it breaks switching from
12357         an MDI form to a non-MDI form.  Will need to revisit that.
12358
12359         * Hwnd.cs: add a zombie flag, which means "the
12360         client_window/whole_window handles are invalid, but we're waiting
12361         for the DestroyNotify event to come in for them".  Set the flag to
12362         false explicitly if setting WholeWindow/ClientWindow, and also
12363         when Disposing.
12364         
12365 2006-09-13  Chris Toshok  <toshok@ximian.com>
12366
12367         * XplatUIX11.cs: rework window destruction slightly.
12368
12369         - when destroying the windows associated with a control, we don't
12370         need 2 separate XDestroyWindow calls.  Just the one for the
12371         whole_window (or for client_window if whole_window is somehow
12372         IntPtr.Zero -- can this happen?) is enough.
12373
12374         - reworked SendWMDestroyMessages slightly, so we always dispose
12375         the child control hwnd's after sending the messages.
12376         
12377         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
12378         the two places it was used (one was even using hwnd.Handle and the
12379         other hwnd.client_window.  ugh), adding another call in
12380         SendWMDestroyMessages.  We need this new call because now the
12381         DestroyNotify events in the queue will be ignored for the child
12382         controls (as their hwnd's were disposed, and the window id's
12383         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
12384
12385         - this fixes bug #79326.
12386
12387 2006-09-13  Chris Toshok  <toshok@ximian.com>
12388
12389         * Control.cs: don't always set is_recreating to false at the end
12390         of RecreateHandle, since sometimes we're not done (and won't be
12391         until WndProc handles the WM_DESTROY message).  Also, set
12392         is_recreating to false in the WM_DESTROY handling code.  Part of
12393         the fix for bug #79326.
12394
12395 2006-09-13  Miguel de Icaza  <miguel@novell.com>
12396
12397         * X11DesktopColors.cs: Start the droppage of debugging messages.
12398
12399         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
12400
12401 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
12402
12403         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
12404
12405 2006-09-12  Chris Toshok  <toshok@ximian.com>
12406
12407         * DataGrid.cs (get_ListManager): if the list_manager is null, try
12408         to create it using SetDataSource.  Fixes bug #79151.
12409
12410 2006-09-11  Chris Toshok  <toshok@ximian.com>
12411
12412         * XEventQueue.cs: add a DispatchIdle property.
12413
12414         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
12415         either the queue is null, or the queue has DispatchIdle set to
12416         true.
12417         (DoEvents): set queue.DispatchIdle to false around the
12418         peek/translate/dispatch message loop in this method.  This keeps
12419         Application.Doevents from emitting idle events.  Part of the fix
12420         for #78823.
12421
12422 2006-09-11  Chris Toshok  <toshok@ximian.com>
12423
12424         * DataGrid.cs (set_DataSource): make this work for both the
12425         winforms/datagrid test and ReportBuilder.  It seems as though when
12426         we've created a ListManager (or maybe it's if we have a
12427         BindingContext?), when we set the DataSource it clears the
12428         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
12429         #79333.
12430
12431 2006-09-11  Chris Toshok  <toshok@ximian.com>
12432
12433         * XplatUIX11.cs: deal with queue being null, which happens in all
12434         the Clipboard functions.  Fixes one of the two problems mentioned
12435         in #78612.
12436
12437 2006-09-11  Chris Toshok  <toshok@ximian.com>
12438
12439         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
12440         button on various spots (including outside the menu) works closer
12441         to MS, and doesn't crash.  Fixes #79343.
12442
12443 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
12444
12445         * ListView.cs: Do not initialize item_sorter in init. To match MS,
12446         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
12447         and the internal comparer is set. When a new ListViewItemSorter is set,
12448         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
12449         was specified. No further processing is necessary if SortOrder is set
12450         to it's current value. If Sorting is modified to None, and View is
12451         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
12452         (either custom or our internal ItemComparer) to null, on 1.0 profile
12453         only set item_sorter to null if its our internal IComparer. If Sorting
12454         is modified to Ascending or Descending, then use our internal IComparer
12455         if none is set, and if the current IComparer is our internal one then:
12456         on 2.0 profile always replace it with one for new Sorting, and on 1.0
12457         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
12458         Enum.IsDefined to verify whether a valid View value is specified in
12459         its setter. Automatically sort listview items when listview is
12460         created. In Sort, do nothing if ListView is not yet created, or if
12461         no item_sorter is set (no Sorting was set, Sorting was explicitly set
12462         to None or ListViewItemSorter was set to null). Added Sort overload
12463         taking a bool to indicate whether the ListView should be redrawn when
12464         items are sorted (we use this in ListViewItemCollection to avoid double
12465         redraws). Modified our internal IComparer to take the sort order into
12466         account. In Add and AddRange methods of ListViewItemCollection, also
12467         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
12468         view), but use overload with noredraw option to avoid double redraw.
12469         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
12470         true when View is Tile, and do the same when attempting to set View to
12471         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
12472         for selected/checked indices, as it involves overhead when sorting is
12473         done while these collections are not used all that often. Instead
12474         we'll build the indices on demand. Modified IList implementation of
12475         CheckedIndexCollection to use public methods if object is int.
12476         Modified CheckedListViewItemCollection to hide checked items if
12477         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
12478         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
12479         IList implementation in SelectedIndexCollection to use public methods
12480         if object is int. Modified SelectedListViewItemCollection to hide
12481         selected items if listview is not yet created.
12482         * ListViewItem.cs: CheckedIndices list no longer needs to be
12483         maintained separately (see ListView changes). Also clone font, fixes
12484         test failure.
12485
12486 2006-09-11  Mike Kestner  <mkestner@novell.com>
12487
12488         * ComboBox.cs: if we are updating the contents of the currently
12489         selected index, refresh the control or the textbox selection.
12490         [Fixes #79066]
12491
12492 2006-09-11  Mike Kestner  <mkestner@novell.com>
12493
12494         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
12495         the 'specified' logic has been moved there.  This seems like a bug 
12496         in Control.cs, since our current SetBoundsCore completely ignores 
12497         the specified parameter.  Peter's commit seems to indicate that is 
12498         the way the MS control implementation works.  [Fixes #79325]
12499
12500 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
12501
12502         * XplatUI.cs: Set default_class_name to be composed
12503         of current domain id. This allows MWF to be loaded in multiple
12504         domains on Win32.
12505
12506 2006-09-09  Miguel de Icaza  <miguel@novell.com>
12507
12508         * X11Keyboard.cs: If we are unable to obtain the input method, do
12509         not call CreateXic to create the input context.   Should fix
12510         #78944/79276.
12511
12512 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
12513
12514         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
12515           Simplified gnome support by adding more pinvokes to get the
12516           icon for a file or mime type.
12517
12518 2006-09-08  Jackson Harper  <jackson@ximian.com>
12519
12520         * MenuAPI.cs: Deslect popup context menu items before closing the
12521         window, so that you don't see the previously selected item
12522         selected when you reopen the menu.
12523         * TextControl.cs: Update the cursor position even if we don't have
12524         focus.  This fixes typing in things like the ComboBox.  I'm not
12525         totally sure we should always set the visibility if we don't have
12526         focus, but couldn't find any corner cases where the cursor showed
12527         up when it shouldn't.
12528
12529 2006-09-08  Chris Toshok  <toshok@ximian.com>
12530
12531         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
12532         our arrays are length 256.  & 0xff before indexing.  Fixes the
12533         crash in bug #78077.
12534         
12535 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12536
12537         * ThemeWin32Classic.cs: 
12538         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
12539         is true. Handle that check box too.
12540
12541 2006-09-07  Chris Toshok  <toshok@ximian.com>
12542
12543         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
12544         79244.
12545
12546 2006-09-07  Chris Toshok  <toshok@ximian.com>
12547
12548         * Control.cs: in set_BackColor only do the work if
12549         background_color != value.
12550
12551         * XplatUIX11.cs: move the clearing of invalid areas (both client
12552         and nc) to the same block of code where we set (nc_)expose_pending
12553         to false.  That is, move it from PaintEventEnd to PaintEventStart,
12554         so things that cause invalidates from within OnPaint will trigger
12555         another call to OnPaint.  Fixes bug #79262.
12556
12557 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
12558
12559         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
12560         * FileDialog.cs: Fix typo
12561
12562 2006-09-07  Jackson Harper  <jackson@ximian.com>
12563
12564         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
12565         for tab pages if they have any.
12566
12567 2006-09-06  Mike Kestner  <mkestner@novell.com>
12568
12569         * Splitter.cs: use the "current" rect when finishing drag handle
12570         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
12571
12572 2006-09-06  Mike Kestner  <mkestner@novell.com>
12573
12574         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
12575         support offset splitters. [Fixes #79298]
12576
12577 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
12578
12579         * Mime.cs: Fixed a bug that could override the global mime type
12580           result.
12581
12582 2006-09-05  Jackson Harper  <jackson@ximian.com>
12583
12584         * TabControl.cs: Better calculation method for setting the slider
12585         pos. Prevents crashes on really wide tabs.
12586         - Draw Image on tab pages if an image list is used.
12587
12588 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12589
12590         * MonthCalendar.cs: When Font changes, the Size should be
12591         updated to fit the new font's space requirements.
12592
12593 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
12594
12595         * ListBox.cs: If the items are cleared with Items.Clear set
12596           top_index to 0.
12597
12598 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12599
12600         * MonthCalendar.cs: Handle arrow keys as input keys. Also
12601         fire DateChanged event instead of DateSelected event when
12602         the date was changed by keyboard interaction.
12603
12604 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12605
12606         * DateTimePicker.cs: Handle DateChanged for the associated
12607         month_calendar control, and set month_calendar.Font from 
12608         OnFontChanged method, as well as resize the height of the
12609         control when needed. Make PreferredHeight proportional.
12610
12611 2006-09-01  Chris Toshok  <toshok@ximian.com>
12612
12613         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
12614         properties.
12615
12616         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
12617
12618 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
12619
12620         * FileDialog.cs: Set ClientSize instead of window size, to allow space
12621           for decorations (Fixes #79219)
12622
12623 2006-09-01  Mike Kestner  <mkestner@novell.com>
12624
12625         * ComboBox.cs: first stab at sorting plus some selection handling
12626         fixes to bring us more in line with MS behavior.  Also switches back
12627         to index based selection.  Alternative patches for index-based 
12628         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
12629         and latency@gmx.de on bug 78848.  I assume they were similar to this
12630         code I've had simmering in my tree forever.
12631         [Fixes #78848]
12632
12633 2006-09-01  Chris Toshok  <toshok@ximian.com>
12634
12635         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
12636         when setting list position guard against ending up with a -1 index
12637         (the other part of the fix for #78812).  Should probably make sure
12638         we don't need the analogous fix in the ItemDeleted case.
12639
12640         * DataGrid.cs:
12641         - in SetDataSource, work around the fact that the way
12642         OnBindingContextChanged is invoked will cause us to re-enter this
12643         method.  I'll remove the hack once I investigate
12644         OnBindingContextChanged.
12645
12646         - fix the logic in set_DataSource and set_DataMember (basically
12647         what to do if the other of the two is null.)
12648         
12649         - in OnListManagerItemChanged, we need to take into account the
12650         edit row when deciding whether or not to call RecreateDataGridRows
12651         (part of the fix for #78812).
12652
12653 2006-09-01  Jackson Harper  <jackson@ximian.com>
12654
12655         * Splitter.cs: Don't do anything if there is no control to affect
12656         (prevents us from crashing in weird tet cases).
12657         * TreeView.cs: Bounding box for the mouse movement reverting
12658         focus/selection back to previously selected node.  This matches
12659         MS, and makes the tree a lot more useable.
12660         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
12661         use clipping so they are not drawn.  This fixes when the control
12662         is set to have a transparent background, or if it was over an
12663         image.
12664
12665 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
12666
12667         * MimeIcon.cs: Improved handling for reading default icons when
12668           using gnome (2.16 made it necessary). Check and read svg icons
12669           first, then 48x48 and then 32x32 icons.
12670
12671 2006-08-31  Chris Toshok  <toshok@ximian.com>
12672
12673         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
12674         visible.
12675
12676         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
12677         ProcessKeyPreview.  Fixes part of #77806.
12678
12679         * DataGrid.cs: big patch.
12680
12681         - revert the queueing up of DataSource/DataMember if inside
12682         BeginInit/EndInit calls.  That's not the way the datagrid achieves
12683         its delayed databinding.  Instead, call SetDataSource in
12684         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
12685         #78811.
12686
12687         - Also, it wasn't mentioned in #78811, but the test case exhibits
12688         behavior that was lacking in our datagrid implementation - Columns
12689         that have mapping names that don't exist in the datasource's
12690         properties aren't shown.  Yuck.  To fix this I added the bound
12691         field to the column style, and basically any calculation to figure
12692         out anything about columns uses a loop to find the bound columns.
12693         still need to investigate if I can cache an array of the bound
12694         columns or if the indices must be the same.
12695
12696         - When setting CurrentCell, we no longer abort if the cell being
12697         edited was in the add row.  This fixes the other part of #77806.
12698
12699         - The new code also fixes #78807.
12700         
12701         * ThemeWin32Classic.cs: perpetrate the same disgusting
12702         column.bound field hack, and only render bound fields.
12703
12704 2006-08-31  Chris Toshok  <toshok@ximian.com>
12705
12706         * DataGridColumnStyle.cs: add bound field.  this field is true if
12707         the datasource has a property corresponding to the mapping name.
12708
12709         * DataGridTableStyle.cs: set the bound field on the column styles
12710         depending on whether or not we have a column for that property.
12711
12712 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
12713
12714         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
12715           splitter control (fixes #79228)
12716
12717 2006-08-31  Chris Toshok  <toshok@ximian.com>
12718
12719         * DataGridColumnStyle.cs: we need to delay the assignment of
12720         property descriptor until the last possible moment due to the lazy
12721         databinding stuff in the datagrid.  Also, fix the exceptions
12722         thrown by CheckValidDataSource to match MS.
12723
12724 2006-08-31  Jackson Harper  <jackson@ximian.com>
12725
12726         * Form.cs: When activated select the active control, if there is
12727         no active control, we select the first control.
12728         * XplatUIX11.cs: If there is no focus control when we get a
12729         FocusIn event, find the toplevel form and activate it.  This
12730         occurs when you popup a window, it becomes the focus window, then
12731         you close that window, giving focus back to the main window.
12732
12733 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12734
12735         * MonthCalendar.cs: 
12736         * ThemeWin32Classic.cs: Cache Font in bold style, as well
12737         as StringFormat with Center alignments in MonthCalendar,
12738         instead of creating new ones when drawing the control. 
12739         Also, draw the month name in bold style.
12740
12741 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12742
12743         * Control.cs:
12744           - PerformLayout(): It would seem MS performs the fill even if the 
12745             control is not visible (part of #79218 fix)
12746           - ResetBackColor(): Use the setter to reset the color, to allow
12747             overriders to catch the change.
12748         * Form.cs:
12749           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
12750           - CreateHandle(): dito (part of $79218 fix)
12751           - Don't set an icon if we have a dialog
12752         * ScrollableControl.cs:
12753           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
12754           - ScrollIntoView(): No need to scroll if control is already visible
12755             (resolves fixme and fixes #79218)
12756
12757 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12758
12759         * MonthCalendar.cs: Change proportions in SingleMonthSize
12760         to match the aspect of the original control.
12761
12762 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
12763
12764         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
12765           get updated when they get maximized.
12766
12767 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
12768
12769         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
12770
12771 2006-08-29  Chris Toshok  <toshok@ximian.com>
12772
12773         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
12774
12775 2006-08-29  Jackson Harper  <jackson@ximian.com>
12776
12777         * TreeView.cs: Need to track selected node and highlighted node,
12778         they aren't always the same thing, when the mouse is down on a
12779         node it is hilighted, but not selected yet.
12780         - Do the HideSelection stuff right
12781         - Need to focus on rbutton mouse down. And redraw selection when
12782         right click is mouse upped.
12783
12784 2006-08-29  Mike Kestner  <mkestner@novell.com>
12785
12786         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
12787         when SubItems.Count < Columns.Count.  [Fixes #79167]
12788
12789 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
12790
12791         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
12792
12793 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
12794
12795         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
12796           from X. Only send based on ConfigureNotify if we don't have the
12797           correct location in hwnd (if the window manager moved us)
12798
12799 2006-08-28  Mike Kestner  <mkestner@novell.com>
12800
12801         * ListView.cs: remove a TODO. 
12802         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
12803         [Fixes ListView part of #79166]
12804
12805 2006-08-28  Mike Kestner  <mkestner@novell.com>
12806
12807         * ListView.cs: move wheel handler to parent since it is focused
12808         instead of the item_control now.  [Fixes #79177]
12809
12810 2006-08-28  Mike Kestner  <mkestner@novell.com>
12811
12812         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
12813         when the control is focused. [Fixes #79171]
12814
12815 2006-08-28  Mike Kestner  <mkestner@novell.com>
12816
12817         * ListView.cs: size the item and header controls for empty and
12818         unscrollable views.
12819         * ThemeWin32Classic.cs: draw disabled backgrounds.
12820         [Fixes #79187]
12821
12822 2006-08-28  Chris Toshok  <toshok@ximian.com>
12823
12824         * Form.cs: remove unused "active_form" static field.
12825
12826         * Hwnd.cs: lock around accesses to static windows collection.
12827
12828         * Application.cs: lock threads in Exit ().
12829
12830 2006-08-28  Chris Toshok  <toshok@ximian.com>
12831
12832         * NativeWindow.cs: lock around accesses to window_collection.
12833         
12834 2006-08-28  Chris Toshok  <toshok@ximian.com>
12835
12836         * Control.cs: err, fix this the right way, by locking on controls
12837         when using it.  not by making it synchronized.
12838
12839 2006-08-28  Chris Toshok  <toshok@ximian.com>
12840
12841         * Control.cs: make the static "controls" field synchronized, as it
12842         gets updated from multiple threads.
12843
12844 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12845
12846         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
12847           Prevent other threads from exiting when calling thread sets quit state.
12848         * XEventQueue.cs: Added PostQuitState property
12849
12850 2006-08-27  Chris Toshok  <toshok@ximian.com>
12851
12852         * AsyncMethodData.cs: add a slot for the window handle.
12853
12854         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
12855         window (the destination control's window, not the foster window).
12856
12857         * Control.cs (BeginInvokeInternal): store the window's handle in
12858         the AsyncMethodData.
12859         
12860
12861 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12862
12863         * XplatUIX11.cs:
12864           - PostQuitMessage: Removed resetting S.D display handle, we might have
12865             another loop started after calling PostQuitMessage (Fixes #79119)
12866           - Created destructor to reset S.D handle
12867
12868 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
12869
12870         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
12871
12872 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12873
12874         * TextControl.cs (Insert): Update the caret position even if we don't
12875           have a handle yet, just don't call the driver in that case.
12876         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
12877           to the end of the new selection text (Fixes #79184)
12878
12879 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12880
12881         * Form.cs (Activate): Only activate if the handle is created)
12882         * Control.c:
12883           - Mark window as invisible when it's disposed
12884           - Check if window handle is created when setting window visible, 
12885             instead of relying just on the is_created variable
12886           - Check if object is disposed when creating the control (Fixes #79155)
12887
12888 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12889
12890         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
12891           when allowing layout again. Otherwise we re-generate the anchoring 
12892           distance to the border again and actually alter what the user wanted
12893           This is ugly, it'd be better if we used DisplayRectangle instead of
12894           ClientRectangle for Control.UpdateDistances, but that causes us to
12895           have other problems (initial anchoring positons would be wrong)
12896           (Fixes #78835)
12897
12898 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12899
12900         * Control.cs:
12901           - The size and location setters shouldn't go directly to 
12902             SetBoundsCore, but to SetBounds, which triggers layout on the
12903             parent, then calls SetBoundsCore. (Related to fix for #78835)
12904           - SetBounds: Moved actual location update code into this function
12905             from SetBoundsCore, to match MS. Added call to PerformLayout if
12906             we have a parent (to trigger resizing of anchored parents if the 
12907             child size has changed (see testcase for #78835) 
12908         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
12909           new control code
12910         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
12911
12912 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12913
12914         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
12915           System.Drawing when a toplevel window gets closed; there might
12916           be other toplevel windows belonging to the same app (Fixes #78052)
12917
12918 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
12919
12920         * FileDialog.cs: After reading FileDialog settings from mwf_config
12921           use Desktop prefix only if a real folder doesn't exist anymore.
12922         * FontDialog.cs: Added char sets.
12923           It is now possible to select the font, size or style with the
12924           textboxes.
12925
12926 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
12927
12928         * PrintPreviewDialog.cs: Use assembly name constants.
12929
12930 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12931
12932         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
12933           scrollbar from whacking it's buttons)
12934
12935 2006-08-24  Chris Toshok  <toshok@ximian.com>
12936
12937         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
12938         in this patch (aggregating setting Left/Top/Width/Height to
12939         setting Bounds on the scrollbars), but the crux of the fix is in
12940         Recalculate, where we scroll by the remaining scroll_position if
12941         we're hiding a scrollbar.  The 2*$5 reward in the comment is
12942         serious.
12943
12944 2006-08-24  Jackson Harper  <jackson@ximian.com>
12945
12946         * MdiClient.cs:
12947         * MdiWindowManager.cs: If the form is made a non-mdi window we
12948         need to remove the form closed event so that closing forms works
12949         correctly.
12950
12951 2006-08-24  Jackson Harper  <jackson@ximian.com>
12952
12953         * Control.cs: Make IsRecreating internal so that the driver can
12954         check it
12955         - Temporarily remove the Hide when controls are removed, its
12956         making a whole bunch of things not work because visibility isn't
12957         getting reset elsewhere correctly
12958         * Form.cs: Need to do a full handle recreation when the mdi parent
12959         is set.
12960         * XplatUIX11.cs: If we are recreating handles don't dispose the
12961         HWNDs.  What was happening is the handles were being recreated in
12962         SendWMDestroyMessages, but then flow continued on in that method
12963         and destroyed the new handles.
12964
12965 2006-08-23  Jackson Harper  <jackson@ximian.com>
12966
12967         * Form.cs: MdiClient is always at the back of the bus
12968         * Control.cs: When the order of items in the collection is changed
12969         we need to reset the all_controls array
12970         - do the same sorta setup thats done when adding a control when a
12971         control is set on the collection.
12972
12973 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12974
12975         * TextBoxBase.cs (get_Text): Return an empty array if our document
12976           is empty (fixes #79052)
12977
12978 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12979
12980         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
12981           on WM_SYSCHAR messages (fixes #79053)
12982
12983 2006-08-23  Chris Toshok  <toshok@ximian.com>
12984
12985         * DataGrid.cs: fix flickering when scrolling vertically.
12986
12987 2006-08-23  Chris Toshok  <toshok@ximian.com>
12988
12989         * DataGrid.cs (EndEdit): only invalidate the row header when we
12990         need to.
12991
12992 2006-08-23  Chris Toshok  <toshok@ximian.com>
12993
12994         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
12995         methods.  fixes the flicker when scrolling around.
12996
12997 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12998
12999         * FileDialog.cs: Making sure the control is created before we get a 
13000           chance to use it with BeginInvoke (Fixes #79096)
13001
13002 2006-08-23  Chris Toshok  <toshok@ximian.com>
13003
13004         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
13005         width to use when painting the rows.
13006
13007 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13008
13009         * TextBoxBase.cs:
13010           - Throw ArgumentException if a negative value is passed to SelectionLength
13011           - Update the selection end if start is moved. end needs to be always
13012             after start. (Fixes #79095)
13013           - Track selection length; MS keeps the selection length even if start
13014             is changed; reset on all other operations affection selection
13015
13016 2006-08-22  Jackson Harper  <jackson@ximian.com>
13017
13018         * TreeView.cs: Make sure both scrollbars get displayed and sized
13019         correctly when the other bar is visible.
13020         - Use the original clip rectangle for checking if the area between
13021         the two scrollbars is visible, not the viewport adjusted clipping
13022         rectangle.
13023
13024 2006-08-22  Jackson Harper  <jackson@ximian.com>
13025
13026         * Binding.cs: We don't use IsBinding because it requires the
13027         control to be created, which really shouldn't be necessary just to
13028         set a property on the control.
13029
13030 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13031
13032         * ComboBox.cs: Some CB.ObjectCollection methods must throw
13033         ArgumentNullReferenceException when the argument is null.
13034
13035 2006-08-21  Jackson Harper  <jackson@ximian.com>
13036
13037         * Timer.cs: Track the thread that the timer is started in (NOT
13038         CREATED), this way messages for it will only be triggered on its
13039         queue.
13040         * XEventQueue.cs: Track the timers here, this makes timers per
13041         thread, like MS.
13042         * XplatUIX11.cs: The timers are moved to the XEventQueue.
13043
13044 2006-08-19  Chris Toshok  <toshok@ximian.com>
13045
13046         * XplatUIX11.cs: after further communication with pdb, we get the
13047         best of both worlds.  SetZOrder working for un-Mapped windows, and
13048         no X errors for un-mapped windows.
13049
13050 2006-08-19  Chris Toshok  <toshok@ximian.com>
13051
13052         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
13053         as it was causing pdn toolbars to not have the correct stacking.
13054
13055 2006-08-18  Mike Kestner  <mkestner@novell.com> 
13056
13057         * ListView.cs : guard against negative ClientArea.Width in scrollbar
13058         calculation.  Not sure why control should ever be setting a negative
13059         width though.  Fixes #78931.
13060
13061 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13062
13063         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
13064         null items in ObjectCollection class.
13065         * ListBox.cs.: Likewise.
13066
13067 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
13068
13069         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
13070           as the base method in ThemeWin32Classic should work fine.
13071           Fixed bug #78607.
13072
13073 2006-08-18  Jackson Harper  <jackson@ximian.com>
13074
13075         * Binding.cs: When validating if the value entered doesn't convert
13076         properly reset to the old value.
13077         * RadioButton.cs: Don't fire click when we get focus.
13078
13079 2006-08-18  Jackson Harper  <jackson@ximian.com>
13080
13081         * FileDialog.cs: Paint the selection on the directory combobox the
13082         same way as on MS. 
13083
13084 2006-08-17  Jackson Harper  <jackson@ximian.com>
13085
13086         * ErrorProvider.cs: Don't allow the error control to be selected.
13087         * Control.cs: Don't send the SetFocus messages, the control
13088         activation will do this, and if we do it blindly here validation
13089         does not work.
13090
13091 2006-08-17  Jackson Harper  <jackson@ximian.com>
13092
13093         * Control.cs:
13094         * ContainerControl.cs: Make validation events fire in the correct
13095         order.  TODO: For some reason the first validation event is not
13096         getting fired.
13097
13098 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13099
13100         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
13101
13102 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13103
13104         * ComboBox.cs : implement scroll wheel support for popped-down
13105         state. Fixes #78945. 
13106
13107 2006-08-17  Jackson Harper  <jackson@ximian.com>
13108
13109         * TreeView.cs: Specify treeview actions (old patch that didn't get
13110         committed for some reason).
13111         - Don't let the mouse wheel scroll us too far.  Just want to make
13112         the bottom node visible, not scroll it all the ways to the top.
13113
13114 2006-08-17  Jackson Harper  <jackson@ximian.com>
13115
13116         * XplatUIX11.cs: Mouse wheel events go to the focused window.
13117
13118 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13119
13120         * ComboBox.cs : don't do mouseover selection in simple mode.
13121
13122 2006-08-16  Jackson Harper  <jackson@ximian.com>
13123
13124         * Form.cs: Fire the closing events for all the mdi child windows
13125         when a window is closed.  If the cancel args are set to true, the
13126         main window still gets the event fired, but it doesn't not close.
13127         * MdiWindowManager.cs: Do this closing cleanup in a Closed
13128         handler, instead of when the button is clicked, so cancelling the
13129         close works correctly.
13130         * ComboBox.cs: Send the mouse down to the scrollbar.
13131
13132 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13133
13134         * ListBox.cs: When passing 'null' to SelectedItem,
13135         set SelectedIndex to -1, to unselect items. This is the
13136         observed behaviour in .Net.
13137
13138 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
13139
13140         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
13141           MS flags saying there won't be any. (fixes #78800)
13142         * Control.cs (HandleClick): Made virtual
13143
13144 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
13145
13146         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
13147           cultures. Fixed bug #78399.
13148
13149 2006-08-16  Jackson Harper  <jackson@ximian.com>
13150
13151         * Form.cs: Use the MdiClients MdiChildren property to access
13152         MdiChildren instead of creating the array from the child controls.
13153         * MdiClient.cs: Maintain a separate array of the mdi children, so
13154         that insertion order is maintained when the Z-order is changed.
13155
13156 2006-08-16  Mike Kestner  <mkestner@novell.com> 
13157
13158         * ListView.cs : add an ItemComparer and default to it for sorting.
13159         Fixes #79076, but sorting needs a complete overhaul to be compat with
13160         MS.
13161
13162 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13163
13164         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
13165
13166 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13167
13168         * Hwnd.cs (Mapped): Properly traverse the tree
13169
13170 2006-08-15  Chris Toshok  <toshok@ximian.com>
13171
13172         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
13173         pass manager.Current.GetType() to ParseData.  It has to be the
13174         property type.  So, hold off doing the ParseData until we're in
13175         SetPropertyValue where we know the type.  This fixes the crash in
13176         #78821 but the textbox is still empty.
13177
13178 2006-08-15  Chris Toshok  <toshok@ximian.com>
13179
13180         * DataGrid.cs:
13181         - when we're scrolling, only call Edit() again if the
13182         current cell is still unobscured. Fixes bug #78927.
13183         - when handling mousedown on a cell, ensure the cell is visible
13184         before calling Edit.
13185         - remove the properties from DataGridRow, and remove the
13186         DataGridParentRow class altogether.
13187         
13188
13189 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13190
13191         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
13192           fire OnTextChanged by ourselves. There's no point calling base,
13193           we don't set the base value anywhere else. Fixes #78773.
13194
13195 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13196
13197         * ListBox.cs: Call CollectionChanged when modifying
13198         an item from Items indexer, to update the actual items
13199         in the list box.
13200
13201 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13202
13203         * PrintDialog.cs: Small fixes for focus and a pair of checks,
13204         to match .Net behaviour.
13205
13206 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13207
13208         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
13209
13210 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13211
13212         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
13213
13214 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13215
13216         * MessageBox.cs: Prevent potential NRE exception.
13217         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
13218
13219 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13220
13221         * MessageBox.cs: Calculate the owner of a messagebox, also make
13222           it topmost. Fixes #78753
13223
13224 2006-08-14  Chris Toshok  <toshok@ximian.com>
13225
13226         * XplatUIX11.cs: A couple of fixes so that metacity will let us
13227         programmatically move windows.  first, set the PPosition hint as
13228         well as the USPosition hint.  Second include some code from pdb
13229         that sets the window type to NORMAL when we set the transient for
13230         hint.  This is because, in the absence of a window type, metacity
13231         thinks any window with TransientFor set is a dialog, and refuses
13232         to let us move it programmatically.  fascists.
13233
13234 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13235
13236         * XplatUIX11.cs: When setting normal hints, take into consideration
13237           an different hints previously set so we don't delete them (fixes #78866)
13238
13239 2006-08-12  Chris Toshok  <toshok@ximian.com>
13240
13241         * ToolBarButton.cs: make Layout return a boolean, if something to
13242         do with the button's layout changed.
13243
13244         * ToolBar.cs:
13245         - add another parameter to Redraw, @force, which all existing
13246           calls set to true.
13247         - make the Layout function return a boolean which is true if the
13248           layout has actually changed.  Redraw now uses this (and @force)
13249           to determine when to invalidate.  At present the only place
13250           where @force can be false is the call from OnResize, when
13251           background_image == null.  So, resizing a toolbar when the
13252           layout doesn't change results in no drawing.
13253
13254 2006-08-12  Chris Toshok  <toshok@ximian.com>
13255
13256         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
13257         the VScrollBar and HScrollbar reversed.  oops.
13258
13259         * DataGrid.cs: fix the logic that assigns sizes to the implicit
13260         scrollbars.  we were assigning them twice (once in
13261         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
13262         therefore causing two scrollbar resizes (and redraws?) to happen
13263         per grid resize.
13264
13265 2006-08-12  Chris Toshok  <toshok@ximian.com>
13266
13267         * ToolBarButton.cs: redraw the entire button if the theme tells us
13268         to.
13269
13270         * Theme.cs: add ToolBarInvalidateEntireButton.
13271
13272         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
13273         buttons, just the border.
13274
13275         * ThemeNice.cs: redraw the entire toolbar button since we need to
13276         draw the highlight image.
13277
13278         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
13279         we need to redraw the entire button (not just the border).
13280
13281 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13282
13283         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
13284           for vertical bars. Fixes the mismatches shown by #78513
13285
13286 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
13287
13288         * FileDialog.cs: If a saved/remembered path doesn't exist
13289           anymore, fall back to "Desktop".
13290
13291 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13292
13293         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
13294           parent. It's apparently legal to not have one
13295         * XplatUIX11.cs:
13296           - SetZOrder: Don't try to set Z-Order on an unmapped window
13297           - CreateWindow: 0,0 are legal coordinates for a window. don't move
13298             it unless the coordinates are negative
13299
13300 2006-08-10  Mike Kestner  <mkestner@novell.com>
13301
13302         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
13303         when setting to null per msdn docs.  Fixes #78854.
13304
13305 2006-08-10  Chris Toshok  <toshok@ximian.com>
13306
13307         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
13308         flickering by setting a clip rectangle on the Graphics when we
13309         need to redraw just a particular menuitem.  Also, rename "OnClick"
13310         to "OnMouseDown" to reflect what it actually is.
13311         
13312         * Form.cs: track the OnMouseDown change.
13313
13314 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
13315
13316         * CommonDialog.cs: Properly inherit the CreateParams from the form
13317           and only change what we need. Fixes #78865
13318
13319 2006-08-10  Chris Toshok  <toshok@ximian.com>
13320
13321         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
13322         flickering in flat mode (and most of the flickering in general) by
13323         only invalidating the button border (and not the entire rectangle)
13324         when the state changes.  A couple of cases still flicker:
13325         ToggleButtons, and the dropdown arrow case when the user mouse
13326         ups.
13327
13328 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
13329
13330         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
13331           for german keyboards. Numlock state shouldn't affect the behaviour
13332           of the Del key. Fixes bug #78291.
13333
13334 2006-08-10  Chris Toshok  <toshok@ximian.com>
13335
13336         * ListControl.cs: remove the items.Clear line from BindDataItems,
13337         as this is the first thing done by both subclasses in their
13338         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
13339         passed -1, refresh the list.  This gets databinding working when
13340         the datasource is set on the list before the datasource is
13341         populated (as in wf-apps/ReportBuilder.)
13342
13343         * ComboBox.cs: remove the argument to BindDataItems.  This call
13344         should really go away, and be initiated by the ListControl code.
13345
13346         * ListBox.cs: same.
13347
13348 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
13349
13350         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
13351           if no data is in the document when the control is displayed
13352
13353 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
13354
13355         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
13356           yes (fixes #78806)
13357         * TextControl.cs: 
13358           - PositionCaret: Allow positioning of caret but don't call methods 
13359             requiring a handle if the window isn't created yet
13360           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
13361           - owner_HandleCreated: Don't position the caret, just update it's 
13362             location. User might have already set a different position
13363
13364 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
13365
13366         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
13367           windows. Screws up the returned coordinates for child windows. 
13368           Fixes #78825. I'm hoping this doesn't break something, since the
13369           code was explicitly put in 8 months ago, but no bug was attached.
13370           Menus still seem to work properly.
13371
13372 2006-08-08  Chris Toshok  <toshok@ximian.com>
13373
13374         * DataGrid.cs: make BeginInit/EndInit actually do what they're
13375         supposed to do - delay data binding until the EndInit call.  Also,
13376         make the table style collection's CollectionChangeAction.Refresh
13377         work properly.
13378
13379         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
13380         (with action = Refresh) when a consituent table's MappingName is
13381         changed.
13382
13383 2006-08-08  Chris Toshok  <toshok@ximian.com>
13384
13385         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
13386         Invalidate, since changing the text can change the size of the all
13387         toolbar buttons.
13388
13389 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13390
13391         * Form.cs (AddOwnedForm): Still need to add the form to our listif
13392           we don't have it yet
13393
13394 2006-08-08  Chris Toshok  <toshok@ximian.com>
13395
13396         * PrintControllerWithStatusDialog.cs: don't .Close() the status
13397         dialog, as this causes X errors later on, since we actually
13398         destroy the window.  Instead, .Hide() it.
13399
13400 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13401
13402         * ComboBox.cs: Added focus reflection for popup window
13403         * XplatUIX11.cs: 
13404           - Removed transient setting for non-app windows for now, not sure it
13405             was needed
13406           - Fixed logic checking if we have captions when deciding 
13407             override_redirect, WS_CAPTION is two bits and a 0 check was not
13408             sufficient
13409           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
13410             complicated
13411         * Form.cs: 
13412           - AddOwnedForm: Don't just add the form to the list, call the property
13413             to ensure the driver is informed about the ownership as well
13414           - CreateHandle: Set the TopMost status in the driver if we have an owner
13415         * XplatUI.cs: Fixed debug statement
13416
13417 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
13418         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13419           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
13420           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
13421           TrackBarRenderer.cs: Make constructor private.
13422         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
13423         * ProfessionalColorTable.cs: Make properties virtual.
13424
13425 2006-08-06  Duncan Mak  <duncan@novell.com>
13426
13427         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
13428         is not changing.
13429
13430 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13431         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13432           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
13433           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
13434           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
13435           Initial import of new 2.0 classes.
13436
13437 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13438         * Application.cs: Add 2.0 VisualStyles properties.
13439
13440 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13441         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
13442           XplatUIX11.cs: Create property to allow access to existing private
13443           variable "themes_enabled"
13444
13445 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13446
13447         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
13448         file size, as otherwise our class libraries fail using windows. Fixes
13449         bug #78759.
13450
13451 2006-08-04  Jackson Harper  <jackson@ximian.com>
13452
13453         * Form.cs:
13454         * XplatUIX11.cs: Move the toolwindow window manager creation into
13455         the X11 driver, this way on win32 we can let windows create/handle
13456         the toolwindows.
13457
13458 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13459
13460         * PrintDialog.cs: Remove some redundant checks, add some others,
13461         clean some code, and move the focus to the text boxes when the
13462         values are incorrect.
13463
13464 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
13465
13466         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
13467
13468 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13469
13470         * NumericUpDown.cs: Setting the Minimum and Maximum is now
13471           handled correctly. Fixes bug #79001.
13472
13473 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13474
13475         * PrintDialog.cs: The "Copies" numeric up down must have
13476         set the Minimum property to 1; only if the value is bigger
13477         than 1, activate "Collate" check box. This is the behaviour of .Net.
13478         Also modify the Document elements only if it is not null.
13479
13480 2006-08-03  Jackson Harper  <jackson@ximian.com>
13481
13482         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
13483         length. (We have a larger array then actual node count).
13484                 
13485 2006-08-03  Jackson Harper  <jackson@ximian.com>
13486
13487         * ComboBox.cs: Don't show selection by default.
13488         - The SelectAll isn't needed here, since the focus code should do
13489         that
13490         - DDL style lists to manual selection drawing, so when they
13491         get/lose focus they have to invalidate.
13492
13493 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
13494
13495         * TextBoxBase.cs: Don't always show all selections by default.
13496
13497 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
13498         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
13499           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
13500           Fixed various typos.
13501
13502 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13503
13504         * Control.cs: Removing the controls in a ControlCollection with
13505           Clear now hides the controls as expected. Fixes bug #78804. 
13506
13507 2006-08-03  Jackson Harper  <jackson@ximian.com>
13508
13509         * Control.cs: Revert previous focus patch, it breaks reflector.
13510
13511 2006-08-03  Jackson Harper  <jackson@ximian.com>
13512
13513         * ComboBox.cs: Cleanup selection and focus with the combobox.
13514         This also eliminates some duplicated keyboard code, since now
13515         everything is handled by the main class.
13516         - Make list selection work on mouse up instead of down, to match
13517         MS.
13518
13519 2006-08-02  Jackson Harper  <jackson@ximian.com>
13520
13521         * Control.cs: Setting focus needs to go through the whole
13522         selection mechanism.
13523
13524 2006-08-02  Chris Toshok  <toshok@ximian.com>
13525
13526         * PrintPreviewDialog.cs: change MinimumSize to use
13527         base.MinimumSize so it works.
13528
13529 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
13530
13531         * TextControl.cs:
13532           - UpdateCaret: Added sanity check in case caret isn't defined yet
13533           - Line.Delete: Now updating selection and caret markers if we're
13534             transfering a node (Properly fixes #78323)
13535           - SetSelectionEnd: Added sanity check
13536         * TextBoxBase.cs: Removed broken attempt to fix #78323
13537
13538 2006-08-01  Chris Toshok  <toshok@ximian.com>
13539
13540         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
13541         Close() call is handled in Form, not here.
13542
13543 2006-08-01  Chris Toshok  <toshok@ximian.com>
13544
13545         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
13546         layout/rendering.
13547
13548         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
13549         for sizes < 100% zoom.  The code now aggressively attempts to keep
13550         from calling document.Print (), and tries not to use the scaling
13551         g.DrawImage whenever possible (it still does if you scale to >
13552         100%, since usually that involves huge images).
13553
13554         * PrintPreviewControl.cs: hook up the close button.
13555
13556 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
13557         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
13558           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
13559           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
13560           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
13561           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
13562           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
13563           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
13564           Removed [Serializable] for 2.0 Event Handlers.
13565
13566 2006-07-31  Jackson Harper  <jackson@ximian.com>
13567
13568         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
13569         * TextControl.cs: Uncomment out the body of this method.
13570
13571 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
13572
13573         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
13574           standard cursors.
13575
13576 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13577
13578         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
13579           that embed TextBox and need selections visible even if textbox is not
13580           focused to enforce that behaviour.
13581         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
13582           selection drawing
13583
13584 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13585
13586         * TextControl.cs:
13587           - Added new SetSelectionStart/SetSelectionEnd overloads
13588           - Fixed viewport width assignment to be accurate
13589           - Adjusted alignment line shift calculations to allow cursor on right
13590             aligned lines to be always visible at the right border (like MS)
13591         * TextBoxBase.cs:
13592           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
13593           - TextBoxBase_SizeChanged: recalculating canvas on size changes
13594           - CalculateScrollBars: Use ViewPort size instead of window size, to
13595             properly consider space occupied by the border and scrollbars 
13596             (Fixes #78661)
13597           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
13598             calculations; no longer leaves artifacts
13599           - CaretMoved: Adjusted window scrolling to match MS and fixed several
13600             calculation bugs (Still missing right/center align calculations)
13601
13602 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
13603
13604         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
13605           use of both scroll rect and clip rect, as they do the same.
13606
13607 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13608
13609         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
13610           in the event handler (fixes #78912)
13611
13612 2006-07-31  Chris Toshok  <toshok@ximian.com>
13613
13614         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
13615         grid.ListManager.Count, since grid.ListManager might be null.
13616         This of course begs the question "why are we drawing rows for a
13617         grid with no list manager (and therefor no rows)?"  Fixes the
13618         crash in bug #78929.
13619
13620 2006-07-31  Chris Toshok  <toshok@ximian.com>
13621
13622         * RelatedPropertyManager.cs: Don't always chain up to the parent
13623         ctor.  instead, call SetDataSource if the parent's position is !=
13624         -1.  Fixes the crash in #78822.
13625
13626 2006-07-31  Chris Toshok  <toshok@ximian.com>
13627
13628         * DataGrid.cs (get_ListManager): use field instead of property
13629         accessors for datasource and datamember.
13630         (RowsCount): make internal again.
13631         (OnMouseDown): end edits before resizing columns/rows.
13632         (OnMouseUp): restart edits after resizing columns/rows.
13633
13634 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
13635
13636         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
13637           This fixes the situation where the last set cursor is displayed
13638           whenever the mouse is over scrollbars.
13639
13640 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13641
13642         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
13643         Document properties, as well as initial values.
13644
13645 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
13646
13647         * XplatUIWin32.cs (SetBorderStyle): Setting both border
13648           and ClientEdge results in a 3-pixel border, which is
13649           wrong.
13650
13651 2006-07-28  Jackson Harper  <jackson@ximian.com>
13652
13653         * TreeNodeCollection.cs: Fix the clear method.
13654         - Fix the Shrink also
13655
13656 2006-07-27  Jackson Harper  <jackson@ximian.com>
13657
13658         * TreeView.cs: Make sure the visible order is computed when we
13659         attempt to size the scrollbars (for trees that mess with the
13660         scrolling when they shouldn't.
13661         - Make sure to give the scrollbars valid values.
13662
13663 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13664
13665         * XplatUIX11.cs: Move motion compression code to where it
13666           has less performance impact
13667
13668 2006-07-26  Jackson Harper  <jackson@ximian.com>
13669
13670         * UpDownBase.cs: When the control is selected make the child
13671         controls non selectable, so that a click on them won't do a
13672         focus/unfocus cycle.
13673         - Don't give focus to the text box when the spinner is selected.
13674         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
13675
13676 2006-07-26  Chris Toshok  <toshok@ximian.com>
13677
13678         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
13679         satisfied with this solution.  If the bitmaps are small, we should
13680         just cache them in the PrintPreviewDialog and draw them here.
13681         Also, the layout is broken for the 2-up and 3-up cases.
13682
13683         * Theme.cs: add PrintPReviewControlPaint.
13684
13685         * PrintPreviewDialog.cs: first pass implementation.
13686
13687         * PrintPreviewControl.cs: first pass implementation.  No
13688         scrollbars yet.
13689
13690         * PrintDialog.cs: only validate fields if that particular portion
13691         of the UI is enabled.  Also, set the document's controller to a
13692         PrintControllerWithStatusDialog wrapping the document's print
13693         controller.
13694
13695         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
13696         bring up a SaveFileDialog (i hope we don't want to match the
13697         behavior of the crappy windows file entry) and set the
13698         PrinterSettings.PrintFileName accordingly.
13699
13700 2006-07-26  Jackson Harper  <jackson@ximian.com>
13701
13702         * ContainerControl.cs: Add a field that disables auto selecting
13703         the next control in a container when the container is activated.
13704         * UpDownBase.cs: Don't select the text box when the up down is
13705         selected.
13706
13707 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13708
13709         * XEventQueue.cs: Added methods for peeking (used for compression
13710           of successive events)
13711         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
13712           mouse move events (fixes #78732)
13713
13714 2006-07-25  Jackson Harper  <jackson@ximian.com>
13715
13716         * UpDownBase.cs: Use an internal class for the textbox so that we
13717         can control focus.  the updown control should always have focus,
13718         if either the text area or the buttons are clicked.
13719         - Send the key messages to the textbox, since it never actually
13720         has focus
13721         - Activate and decativate the textbox caret.
13722
13723 2006-07-24  Jackson Harper  <jackson@ximian.com>
13724
13725         * Control.cs: Use the directed select when selecting a control,
13726         this way the container controls override will get called and the
13727         whole ActiveControl chain will get triggered.  TODO: probably need
13728         to make sure this gets done everywhere instead of the old
13729         Select(Control).
13730         * ContainerControl.cs: Implement the directed Select method to
13731         find and activate the correct child control.    
13732         
13733 2006-07-22  Mike Kestner  <mkestner@novell.com>
13734
13735         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
13736         menu handling code so that clicks without a grab work too.
13737         [Fixes #78914]
13738
13739 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
13740
13741         * FileDialog.cs: Enable the BackButton when dirstack has one element.
13742           Added some small optimizations.
13743
13744 2006-07-21  Matt Hargett  <matt@use.net>
13745
13746         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
13747
13748 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
13749
13750         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
13751           tests pass and match MS in some strange border cases.
13752
13753 2006-07-21  Chris Toshok  <toshok@ximian.com>
13754
13755         * ThemeWin32Classic.cs: handle drawing of the relation links and
13756         parent row buttons.
13757
13758         * Theme.cs: change args to DataGridPaintParentRow.
13759
13760         * DataGrid.cs: Don't use controls for the relation links and
13761         parent buttons, so we have to handle all their interactions in
13762         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
13763         when we're navigating through child tables, so we can reinstate
13764         selection, expanded state, current cell, etc.
13765
13766 2006-07-20  Chris Toshok  <toshok@ximian.com>
13767
13768         * ToolBar.cs: When we redraw a button, for whatever reason,
13769         there's no reason to redraw the entire toolbar.  Also, don't call
13770         Control.Refresh from within Redraw, as it's much heavier than
13771         Invalidate (which is really what we want).
13772
13773 2006-07-20  Chris Toshok  <toshok@ximian.com>
13774
13775         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
13776         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
13777         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
13778         traces from within a debug IBindingList datasource
13779         (in mono/winforms/datagrid) for *days*, I've finally gotten things
13780         to work in a similar fashion.
13781
13782 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13783
13784         * ListBox.cs: Don't call Sort () when setting 
13785         the Sorted property to false (avoid an unnecessary sort).
13786
13787 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13788
13789         * ListControl.cs: DataSource should throw an ArgumentException
13790         instead of a normal exception when the argument is not of the 
13791         correct type.
13792
13793 2006-07-20  Mike Kestner  <mkestner@novell.com>
13794
13795         * Control.cs: add InternalPreProcessMessage to allow us to steal
13796         key events before MWF gets its paws on them.  Adapted from a
13797         suggestion by eno.
13798         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
13799         up/down/left/right navigation. Override the new internal control
13800         method to steal the events since they never make it to WndProc.
13801         * ToolBarButton.cs: don't worry about pushed when setting hilight
13802         since the drawing code prefers pushed to hilight. Invalidate on 
13803         Hilight changes. Fixes #78547 and #78525.
13804
13805 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13806
13807         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
13808           the canvas size. Fixes #78868
13809
13810 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
13811
13812         * Splitter.cs: Track requested split position until first layout
13813           is performed. Fixes #78871
13814
13815 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13816
13817         * Application.cs: Removed code that forces 1.x for the version
13818           number if the version started with 0. Not sure why that code was
13819           there and I couldn't find any bugs that indicated we needed it.
13820           Fixes #78869
13821
13822 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
13823
13824         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
13825           ResetDefaults(), just write some output to the console until it's
13826           implemented. Fixes bug #78907 for now. Eliminated two warnings.
13827
13828 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
13829
13830         * PropertyGridView.cs: set StartPosition of drop down forms
13831         so they appear in correct initial spot.  Fixes #78190.
13832
13833 2006-07-19  Mike Kestner  <mkestner@novell.com>
13834
13835         * ThemeWin32Classic.cs: use parent background color when drawing
13836         flat toolbars.  Restructure the conditionals to make sure non-flat
13837         non-Divider toolbars are filled too.  Fixes #78837.
13838
13839 2006-07-19  Mike Kestner  <mkestner@novell.com>
13840
13841         * ListBox.cs: Sort on collection changes even if the handle
13842         isn't created yet.  Fixes #78813.
13843
13844 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13845
13846         * ListControl.cs: DisplayMember should never be null,
13847         and now we assign String.Empty when null is passed to it (this
13848         is the .Net way).
13849
13850 2006-07-17  Mike Kestner  <mkestner@novell.com>
13851
13852         * ListViewItem.cs: restructure Font and subitem Font handling 
13853         to hold a specific font and refer back to owner on null.
13854         Fixes #78761.
13855
13856 2006-07-17  Mike Kestner  <mkestner@novell.com>
13857
13858         * ToolBar.cs: bandaid for side-effect of previous patch which was
13859         discarding explicit heights for non-AutoSize toolbars.  Need to
13860         extend my format tester to deal with AutoSize=false. Fixes #78864.
13861
13862 2006-07-15  Jackson Harper  <jackson@ximian.com>
13863
13864         * LabelEditTextBox.cs:
13865         * TreeView.cs: Use a new LabelEdit class for node editing, this
13866         class automatically 'closes' itself when it gets the enter key or
13867         loses focus.
13868         - Use the client rectangle when setting the trees scrollbars, so
13869         border style is taken into account.
13870         
13871 2006-07-14  Jackson Harper  <jackson@ximian.com>
13872
13873         * TreeNode.cs:
13874         * TreeView.cs: Make the editing work similar to MSs, firing the
13875         events correctly and ending edits correctly.
13876
13877 2006-07-14  Mike Kestner  <mkestner@novell.com>
13878
13879         * ToolBarButton.cs:
13880         * ToolBar.cs: layout restructuring and redraw enhancements to support
13881         formatting changes gracefully, like setting TextAlign, ImageList, 
13882         ButtonSize, and Appearance.  Handles explicit button sizing quirks
13883         of the MS controls.  Things like flat toolbars ignoring button size
13884         but becoming constant sized at the largest button's size.  Normal
13885         toolbars with an image set cannot be shrunk smaller than the image,
13886         but text can be clipped/ignored.
13887         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
13888         is zero.  Seems like DrawString should be smart enough to not put
13889         anything on screen though. Also trim labels and ellipsize at the char
13890         boundary, not word.
13891         Fixes #78711 and #78483.
13892
13893 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13894
13895         * FolderBrowserDialog.cs: Disable "New Folder" button and
13896           "New Folder" contextmenu menuitem if a folder like "My Computer"
13897           is selected.
13898
13899 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13900
13901         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
13902         * FolderBrowserDialog.cs:
13903           - Use MWFConfig to store and read size and position settings
13904           - Added code to create a new folder (button or context menu).
13905             Use TreeView labeledit to change the name of the new folder.
13906
13907 2006-07-14  Jackson Harper  <jackson@ximian.com>
13908
13909         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
13910         when the tree is scrolled we end editing.
13911
13912 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13913
13914         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
13915           Down arrows
13916
13917 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
13918
13919         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
13920         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
13921         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
13922         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
13923         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
13924         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
13925         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
13926         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
13927         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
13928         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
13929         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
13930         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
13931         ListViewItemSelectionChangedEventHandler.cs,
13932         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
13933         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
13934         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
13935         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
13936         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
13937         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
13938         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
13939         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
13940         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
13941         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
13942         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
13943         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
13944         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
13945         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
13946         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
13947         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
13948         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
13949         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
13950         WebBrowserNavigatingEventHandler.cs, 
13951         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
13952
13953 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
13954
13955         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
13956         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
13957         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
13958         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
13959         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
13960         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
13961         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
13962         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
13963         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
13964         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
13965         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
13966         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
13967         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
13968         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
13969         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
13970         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
13971         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
13972         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
13973         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
13974         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
13975         ListViewItemStates.cs, MaskFormat.cs: Added
13976
13977 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
13978
13979         * PropertyGridView.cs: Fix keyboard navigation of drop down.
13980         Patch from eno for bug 78558.
13981         
13982 2006-07-13  Jackson Harper  <jackson@ximian.com>
13983
13984         * TreeView.cs: When an edit is finished make sure that the
13985         selected node is visible.
13986         - When setting the top/bottom use the scrollbars is_visible, so
13987         everything will be set correctly even if the tree isn't visible
13988         yet.
13989
13990 2006-07-13  Jackson Harper  <jackson@ximian.com>
13991
13992         * ComboBox.cs: Revert the item->index part of my previous patch.
13993         * TreeView.cs: Use LostFocus instead of Leave for detecting when
13994         the edit box has lost focus (duh).
13995         - Just make the edit box not visible when we get return, that will
13996         take the focus, which will call EndEdit
13997         * TreeNode.cs When we start editing, notify the treeview.
13998
13999 2006-07-12  Jackson Harper  <jackson@ximian.com>
14000
14001         * ComboBox.cs: Clear out old items before setting the item list.
14002         This prevents databound controls from having their items added
14003         twice.
14004         - Switch the combobox to use indices whereever possible instead of
14005         using Item's.  This allows usto navigate through lists that have
14006         more then one item with the same string value (ie a, b, b, a).
14007         - Scroll the listboxes scrollbar when a non visible item is
14008         highlighted
14009         - Allow keypress to cycle through all the possible values. For
14010         example if you have b1, b2, b3 and hold down the B key all the
14011         values will be cycled through.
14012         
14013 2006-07-12  Jackson Harper  <jackson@ximian.com>
14014
14015         * TextBoxBase.cs:
14016         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
14017         this using the internal methods.
14018         * Control.cs: Add OnGotFocusInternal.  A new method that allows
14019         controls to "override" OnGotFocus and change focus behavior if
14020         needed.
14021         - Same thing for LostFocus
14022         * ComboBox.cs: Pass off focus to the text control properly.
14023
14024 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
14025
14026         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
14027         * FolderBrowserDialog.cs: Almost a complete rewrite.
14028           - Better support for Environment.Specialfolders
14029           - Added support for MWFVFS
14030           - Made setting SelectedPath work
14031
14032 2006-07-12  Jackson Harper  <jackson@ximian.com>
14033
14034         * Control.cs: Optimze getting all the controls.
14035
14036 2006-07-11  Jackson Harper  <jackson@ximian.com>
14037
14038         * ContainerControl.cs: Override SETFOCUS in the container control,
14039         so that it is not selected on mouse click.
14040
14041 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
14042
14043         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
14044           Hopefully we will have a better way once all of focus is complete.
14045
14046 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
14047
14048         * ThemeWin32Classic.cs: Commented out some debug code and fixed
14049           a compile error with csc.
14050
14051 2006-07-11  Jackson Harper  <jackson@ximian.com>
14052
14053         * Control.cs: When hiding a control only select the next control
14054         if the current control was focused.
14055         - Don't handle enter/leave when setting/killing focus, this is
14056         done by the container control.
14057         - Remove is_selected, it's not needed anymore.
14058         - Add utility methods for selecting a child control, and for
14059         firing the Enter/Leave events.
14060         * ContainerControl.cs: When a control is activated fire the
14061         enter/leave events.
14062         - Don't wrap when processing the tab key, so that focus can be
14063         moved outside of the container.
14064         - Use the correct active control
14065
14066 2006-07-11  Jackson Harper  <jackson@ximian.com>
14067
14068         * ComboBox.cs: Remove some debug code that was blinding me.
14069         * UpDownBase.cs: These controls actually aren't implicit, they are
14070         visible to the user.
14071
14072 2006-07-10  Chris Toshok  <toshok@ximian.com>
14073
14074         * DataGrid.cs: move back to the is_adding boolean field.  god i
14075         hate this is_editing/is_adding/is_changing stuff.
14076
14077 2006-07-10  Chris Toshok  <toshok@ximian.com>
14078
14079         * DataGridTableStyle.cs: just check if the property type is bool.
14080         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
14081         Don't use CanRenderType.
14082
14083         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
14084         if our text == NullText.  Remove CanRenderType.
14085
14086         * DataGridBoolColumn.cs: nuke CanRenderType.
14087
14088         * DataGrid.cs: reenable some code to end the current edit inside
14089         of set_CurrentCell.  This fixes the other 1.1.16 regression.
14090         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
14091         Also, remove the visible_row_count arg from CalcRowHeaders, since
14092         we don't need to worry about the actual height of the area.
14093
14094 2006-07-10  Chris Toshok  <toshok@ximian.com>
14095
14096         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
14097         mode, just return.
14098
14099         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
14100         the real sense of the IsInEditOrNavigateMode property (true =
14101         navigate, false = edit).  Also, update OnKeyPress to reflect this.
14102
14103         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
14104         column style exists, we still need to set its property descriptor
14105         to match up with our list manager.
14106
14107 2006-07-10  Chris Toshok  <toshok@ximian.com>
14108
14109         * ThemeWin32Classic.cs: implement the new row/header painting
14110         approach.  The parent row painting will likely go away and
14111         replaced with label controls, but the rest seems to work ok (and
14112         efficiently).
14113
14114         * Theme.cs: change the way we draw datagrid rows.  we don't draw
14115         the row headers as a block now.  Instead we draw them in the
14116         normal draw-row loop.  Add some calls for drawing parent rows and
14117         relation rows.
14118
14119         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
14120         a default table style.  Set the defaults from ThemeEngine.Current,
14121         not SystemColors.  Fix lots of misc issues with property setters.
14122
14123         * DataGrid.cs: move loads of style information out of this class
14124         as it's being duplicated with DataGridTableStyle.  keep track of a
14125         special DataGridTableStyle for the properties we used to mirror
14126         here.  Switch all the style properties to access this table style
14127         instead of instance fields of this class.  Also add a internal
14128         class to represent parent rows (more needs to be stored here, like
14129         the selection state from the parent table, as well as the
14130         expansion state.)  Also, for datasources with relations, do the
14131         right thing for collapse/expand, and add support for the
14132         navigation/parent row buttons.
14133
14134         Lastly, fix the crash in the 1.1.16 build.
14135
14136         * GridTableStylesCollection.cs: make the explicit interface
14137         implementations call the class's methods as opposed to duplicating
14138         them.
14139
14140         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
14141         0 so the text doesn't jump around when we move the cursor.
14142
14143 2006-07-10  Jackson Harper  <jackson@ximian.com>
14144
14145         * TextBoxBase.cs:
14146         * ListBox.cs: Match MS's ToString (this makes debugging focus
14147         stuff infinitely easier).
14148
14149 2006-07-10  Jackson Harper  <jackson@ximian.com>
14150
14151         * Control.cs (SelectNextControl): When checking the control's
14152         parent use this instead of ctrl.parent so that null can be passed
14153         to SelectNextControl. (I have unit tests for this).
14154         - Remove unused var.
14155
14156 2006-07-10  Chris Toshok  <toshok@ximian.com>
14157
14158         * CurrencyManager.cs: correct one regression, the removal of the
14159         finalType field.  Also, add a MonoTODO on CanAddRows, implement
14160         Refresh() correctly, and fix some event emission in
14161         ListChangedHandler.
14162
14163 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14164
14165         * FileDialog.cs: Don't use brackets for new folders if they exist
14166           under *nix. Instead use -(number of existing folders +1).
14167
14168 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14169
14170         * FileDialog.cs:
14171           - Fixed really nasty bug #78771
14172           - Don't block the whole GUI when reading directories with a lot of
14173             entries. Use an other thread instead and call BeginInvoke to
14174             update the ListView in MWFFileView
14175
14176 2006-07-07  Chris Toshok  <toshok@ximian.com>
14177
14178         * Control.cs (Dispose): release any Capture when disposing.
14179
14180 2006-07-07  Chris Toshok  <toshok@ximian.com>
14181
14182         * LinkLabel.cs (Select): if we chain up to the parent, set
14183         focused_index to -1 so we'll search for the first available link
14184         the next time the user tabs into us.  Also, if the direction is
14185         backward and focused_index == -1, start the search from the last
14186         element.
14187
14188 2006-07-07  Chris Toshok  <toshok@ximian.com>
14189
14190         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
14191         is beyond the end of the text, don't do anything.
14192         (CreateLinkPieces): set our ControlStyles.Selectable based on
14193         whether or not we have any links.
14194         (Link.Invalidate): use a loop instead of foreach.
14195         (Link.set_Start): null out owner.sorted_links so it'll be
14196         recreated by CreateLinkPieces.
14197
14198 2006-07-06  Chris Toshok  <toshok@ximian.com>
14199
14200         * LinkLabel.cs: revert the SetStyle change.
14201
14202 2006-07-06  Chris Toshok  <toshok@ximian.com>
14203
14204         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
14205         (OnEnableChanged): s/Refresh/Invalidate
14206         (OnGotFocus): if we have a focused index already, refocus it (so
14207         if we mouse out/in to the window it'll focus the right link).
14208         (OnKeyDown): move the tab handling out of here.
14209         (OnLostFocus): don't set focused_index to -1, so we can refocus it
14210         when we lose focus.
14211         (OnMouseDown): don't Capture here - Control handles it.  Also,
14212         focus the active link.
14213         (OnMouseUp): don't deal with Capture.
14214         (OnPaintBackgroundInternal): remove.
14215         (OnTextAlignChanged): CreateLinkPieces before calling the
14216         superclass's method.
14217         (OnTextChanged): call CreateLinkPieces before calling superclass's
14218         method.
14219         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
14220         move around.
14221         (Select): implement this, moving the selection between different
14222         links, and call parent.SelectNextControl if we don't have another
14223         link to focus in the given direction.
14224         (CreateLinkPieces): call Invalidate instead of Refresh.
14225         
14226 2006-07-06  Chris Toshok  <toshok@ximian.com>
14227
14228         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
14229         new LinkLabel internals.
14230
14231         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
14232         over pieces looking for active/focused/etc links.  also, deal with
14233         runs of text (and links) with embedded \n's in them, and use
14234         MeasureCharacterRanges instead of MeasureString to figure out the
14235         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
14236         two-step.
14237
14238 2006-07-04  Jackson Harper  <jackson@ximian.com>
14239
14240         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
14241         XKB or key auto repeat, do it manually.  Without key auto repeat,
14242         when a key is held down we get key press, key release, key press,
14243         key release, ... with auto repeat we get key press, key press, key
14244         press ..., and then a release when the key is actually released.
14245
14246 2006-07-03  Jackson Harper  <jackson@ximian.com>
14247
14248         * TabControl.cs:
14249         * ThemeWin32Classic.cs: Tabs do not obey normal background color
14250         rules, they are always control color regardless of the background
14251         color.
14252
14253 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
14254
14255         * FileDialog.cs: Added internal class MWFConfig.
14256           Removed Registry support and replaced it with support for the new
14257           MWFConfig class. See MWFConfig comments for more information.
14258
14259 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
14260
14261         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
14262           rectangle. Added some patches from eno from bug #78490 and fixed
14263           the arrow position for small up and down CPDrawScrollButtons.
14264
14265 2006-06-30  Jackson Harper  <jackson@ximian.com>
14266
14267         * InternalWindowManager.cs: Remove some debug code.
14268         * Form.cs: When an MdiParent is set to null, the window is
14269         "detatched" and becomes a normal window.
14270         * MdiClient.cs: Don't bring the new child form to the front until
14271         it is activated (setting it as active does this), this makes the
14272         previously active forms titlebar get redrawn as inactive.
14273
14274 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
14275
14276         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
14277           with later controls
14278
14279 2006-06-29  Mike Kestner  <mkestner@novell.com>
14280
14281         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
14282         arrow in keynav state.  Fixes #78682.
14283
14284 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14285
14286         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
14287           order (fixes #78393)
14288
14289 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
14290
14291         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
14292           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
14293           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
14294           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
14295           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
14296           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
14297           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
14298           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
14299           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
14300           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
14301           enumerations (FlagsAttribute, SerializableAttribute, added/removed
14302           values)
14303
14304 2006-06-28  Mike Kestner  <mkestner@novell.com>
14305
14306         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
14307
14308 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14309
14310         * PropertyGrid.cs,
14311           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
14312           item lines from other area (It also makes BackColor consistent and
14313           compatible with .NET). Fixed bug #78564.
14314
14315 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
14316
14317         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
14318         Patch from Eno for #78555.
14319
14320 2006-06-27  Chris Toshok  <toshok@ximian.com>
14321
14322         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
14323
14324         * DataGridColumnStyle.cs: same.
14325
14326         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
14327         
14328         * DataGridDrawingLogic.cs: nuke.
14329
14330 2006-06-27  Chris Toshok  <toshok@ximian.com>
14331
14332         * DataGridTableStyle.cs: clean up the constructors, and build the
14333         list of child relations for this table.  I have no idea if this is
14334         where we should be doing it (it probably isn't), but since we're
14335         already iterating over the properties..
14336
14337         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
14338         struct and array for keeping track of row information, similar to
14339         what's shown in a hack on
14340         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
14341
14342         * Theme.cs: be consistent about the naming of DataGrid methods,
14343         prefering ColumnWidths and RowHeights over columnsWidths and
14344         RowsHeights.
14345
14346         * ThemeWin32Classic.cs: same, and also add support for variable
14347         sized rows (and the +/- expansion icons for related rows).
14348
14349 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
14350
14351         * TextBoxBase.cs: Applied Eno's patch from #78660
14352
14353 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
14354
14355         * Form.cs (ScaleCore): We don't want to scale our form if it's
14356           state is minimized or maximized, but we still need to scale our
14357           child windows. Also, added try/finally block to ensure layout
14358           gets reset (Fixes #78697)
14359
14360 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
14361
14362         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
14363
14364 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
14365
14366         * Form.cs: Fixed c+p error and added check to resize form if minimum
14367           size is bigger than current size (Fixes #78709)
14368
14369 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
14370
14371         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
14372
14373 2006-06-26  Mike Kestner  <mkestner@novell.com>
14374
14375         * ComboBox.cs: only do Keypress handling in the combo when there  
14376         are items in the collection. Fixes #78710.
14377
14378 2006-06-26  Chris Toshok  <toshok@ximian.com>
14379
14380         * Binding.cs: make this work bi-directionally.  also, clear up
14381         other mixups between Push/Pull Data (e.g. we're supposed to pull
14382         data when validating).
14383
14384         * BindingManagerBase.cs: trim some fully qualified collection
14385         types.
14386
14387         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
14388
14389 2006-06-23  Chris Toshok  <toshok@ximian.com>
14390
14391         * PropertyManager.cs: It appears (according to the unit tests)
14392         that PropertyManager doesn't use
14393         PropertyDescriptor.AddValueChanged to track propery value changes
14394         in its datasource, but uses the same scheme as Binding, where it
14395         looks for a <Property>Changed event and binds to it.
14396
14397         Also, according to the docs, IsSuspended always returns false for
14398         a property manager with a non-null datasource.
14399
14400 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
14401
14402         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
14403           need to update the actual DialogResult. (Fixes #78613)
14404
14405 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
14406
14407         * Form.cs (ShowDialog): Release any captures before running the
14408           new message pump (fixes #78680)
14409
14410 2006-06-22  Mike Kestner  <mkestner@novell.com>
14411
14412         * ListView.cs: Layout column widths properly in details mode even 
14413         if HeaderStyle.None is set.  Fixes #78691.
14414
14415 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
14416
14417         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
14418
14419 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
14420
14421         * Control.cs (ContainsFocus): Using new driver method to get focused
14422           window, instead of trying to use internal tracking var, which can
14423           recursion issues (Fixes #78685)
14424         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
14425           XplatUIWin32.cs: Added GetFocus method to return focused window
14426
14427 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14428
14429         * ColorDialog.cs: when the mouse button is pressed inside the color
14430         matrix, don't let the cursor move out of it until the button is
14431         released, which is the behavior on windows. Changed 'colours' by
14432         'colors' to use the same word consistently.
14433
14434 2006-06-21  Chris Toshok  <toshok@ximian.com>
14435
14436         * DataGrid.cs: add in some basic navigation stuff (navigating to a
14437         child relation and back, using a stack).  Also, remove
14438         GetDataSource and the code that calls it - it's not needed.  Also,
14439         track CurrencyManager.ListName's removal.
14440
14441 2006-06-21  Chris Toshok  <toshok@ximian.com>
14442
14443         * CurrencyManager.cs: push some of the original type checking from
14444         BindingContext.CreateBindingManager to here, and remove some of
14445         the finalType stuff.  Need more tests to make sure I've got the
14446         ListName part right, and we might need more in SetDataSource.
14447
14448         * PropertyManager.cs: add a ctor that takes just the datasource,
14449         and no property name.  Make SetDataSource work with a null
14450         property_name, and make Current return the data_source if the
14451         property descriptor is null.  this makes 'string foo = "hi";
14452         BindingContext[foo].Current' return "hi" as it should.
14453
14454         * RelatedCurrencyManager.cs: make this code more generic - there's
14455         no reason the parent manager has to be CurrencyManager, and
14456         there's no reason to pass the DataRelation.  It suffices to use a
14457         BindingManagerBase and PropetyDescriptor.
14458
14459         * RelatedPropertyManager.cs: make a similar change here.
14460         
14461         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
14462         flower I knew it could be.
14463
14464 2006-06-20  Chris Toshok  <toshok@ximian.com>
14465
14466         * PropertyManager.cs: the PropertyChangedHandler is invoked when
14467         data in the source has changed and we need to update the control,
14468         so s/PullData/PushData.
14469
14470         * CurrencyManager.cs: Refresh is meant to update the control from
14471         data in the datasource.  So, s/PullData/PushData.
14472
14473         * BindingContext.cs: add more ugliness (we weren't handling the
14474         case where data_source = DataTable and data_member = column_name).
14475
14476         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
14477         from the perspective of the datasource.  PullData pulls from the
14478         control, PushData pushes to the control.
14479
14480 2006-06-20  Chris Toshok  <toshok@ximian.com>
14481
14482         * BindingContext.cs: rewrite the CreateBindingManager code to
14483         handle navigation paths more or less properly.  This could
14484         definitely stand some more work, in particular to push the
14485         recursion up to the toplevel.  But that relies on fixes in other
14486         places (System.Data comes to mind).
14487
14488         Also, move to a flat hashtable (and encode the twolevel nature of
14489         the dictionary into the hash key).  This lets us implement the
14490         IEnumerable.GetEnumerator method.
14491
14492         * RelatedCurrencyManager.cs: new class.  Update our view based on
14493         our relation and our parent CurrencyManager's position.
14494
14495         * CurrencyManager.cs: split out some logic from the ctor into
14496         SetView, so it can be called from the new RelatedCurrencyManager
14497         subclass.
14498
14499         * RelatedPropertyManager.cs: new class.  Update our datasource
14500         based on the position of our parent CurrencyManager.
14501
14502         * PropertyManager.cs: split out some logic from the ctor into
14503         SetDataSource, so it can be called from the new RelatedDataSource
14504         subclass.  Also, make the Current getter return the value
14505         of the PropertyDescriptor, not the data_source.
14506
14507         * Binding.cs: no need to duplicate the string splitting code here.
14508
14509 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14510
14511         * Control.cs:
14512           - set_Enabled: OnEnabledChanged is not called if the inherited state 
14513             of the control is not altered, even though  we might be changing the
14514             internal state of the control (#78458)
14515           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
14516             OnEnabledChanged, to allow easy altering of any child window state
14517           - OnEnabledChanged: Added code to enable/disable driver window state
14518           - OnParentEnabledChanged: Instead of firing the event, call 
14519             OnEnabledChanged, which will fire the event and also a) set driver
14520             window state and pass the enabled state to any grandchildren (#78458)
14521
14522 2006-06-19  Jackson Harper  <jackson@ximian.com>
14523
14524         * InternalWindowManager.cs: We don't set the cursor explicitly
14525         thats done via the response to NCHITTESTs.
14526         - Don't need to adjust for titlebar heights anymore, the
14527         coordinates are coming in the correct coordinates now (see peters
14528         last patch).
14529
14530
14531 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14532
14533         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
14534           being translated relative to whole window, instead of client window.
14535           That caused broken offsets on mouseclick (and caused gas for our
14536           InternalWindowManager)
14537
14538 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14539
14540         * TextControl.cs:
14541           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
14542           - Undo(): Added replay of cursor move on DeleteChars action; added
14543             calling Undo() again if a recorded cursor move is invalid (to
14544             ensure that some action is performed on Undo)
14545         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
14546
14547 2006-06-16  Jackson Harper  <jackson@ximian.com>
14548
14549         * MdiClient.cs: Instead of just sizing maximized windows when
14550         there is a resize we also have to adjust the Y of minimized
14551         windows, so they stay pinned to the bottom of the mdi container.
14552         - Eliminate separate tracking of the active control, we can just
14553         get this from the controls collection.
14554         - Paint the decorations for the newly activated titlebar so we get
14555         a pretty blue bar.
14556         * InternalWindowManager.cs:
14557         * ThemeWin32Classic.cs: Minimized windows get all three buttons
14558         even if they are a tool window.
14559         
14560 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14561
14562         * TextControl.cs (Undo): Handle non-existent cursor locations in the
14563           undo buffer, these can happen when text was deleted and the cursor
14564           was recorded first. Since we will also have a recorded cursor
14565           after the delete this is not an issue. (Fixes #78651)
14566
14567 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
14568
14569         * AccessibleObject.cs: Remove dependence on Control.is_selected;
14570           instead properly track control states internally (allows us to
14571           remove is_selected from Control)
14572
14573 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14574
14575         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
14576         whose width is not a multiple of 8.
14577
14578 2006-06-13  Jackson Harper  <jackson@ximian.com>
14579
14580         * MdiClient.cs:  Only maximize the next child if the current one
14581         is maximized.
14582
14583 2006-06-13  Chris Toshok  <toshok@ximian.com>
14584
14585         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
14586         modified.  Also, guard against grid or grid_drawing being null in
14587         Invalidate.
14588
14589         * DataGrid.cs: Reformat tons of getters/setters.  In the
14590         DataMember setter, just call SetNewDataSource instead of
14591         duplicating some of its functionality.  In SetNewDataSource, don't
14592         check ListManager for null, since the property getter creates the
14593         object if needed.
14594
14595         * DataGridTableStyle.cs: don't set TableStyle or call
14596         SetDataGridInternal on the column here, it's done in
14597         GridColumnStylesCollection.Add.
14598
14599         * GridColumnStylesCollection.cs: fix all the explicit interface
14600         implementations to just call our methods.  Nuke AddInternal() and
14601         move the body of it to Add().  Also, add a call to
14602         column.SetDataGridInternal to Add().
14603
14604         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
14605         base()+duplicate code.  Also, use the Format property instead of
14606         format to generate an Invalidate ala MS.  Lastly, create the
14607         textbox here, unconditionally.
14608         (set_Format): call Invalidate.
14609         (get_TextBox): no need to call EnsureTextBox.
14610         (Commit): remove the message box.
14611         (Edit) remove the call to EnsureTextBox.
14612         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
14613         (EnterNullValue): no need to check textbox for null.
14614         (HideEditBox): no need to check textbox for null.
14615         (SetDataGridInColumn): add the textbox to the grid's controls.
14616         (EnsureTextBox): nuke.
14617         
14618 2006-06-13  Jackson Harper  <jackson@ximian.com>
14619
14620         * MdiWindowManager.cs: Hook up to the maximized menus paint event
14621         and redraw the buttons when needed. Unhook when the window is
14622         unmaximized.
14623         * MainMenu.cs: Add an internal Paint event, the mdi window manager
14624         needs this so that it can redraw its buttons when the menu is
14625         repainted.
14626         * InternalWindowManager.cs:
14627         * Form.cs: The method order has changed for DrawMaximizedButtons,
14628         so that it can be a PaintEventHandler.
14629         
14630 2006-06-13  Jackson Harper  <jackson@ximian.com>
14631
14632         * MdiClient.cs: When we close a maximized mdi window, the next mdi
14633         window is activated and maximized, even if it wasn't before.
14634         - When  a new window is activated repaint the decorations of the
14635         old one, so that it no longer has the Active "look" (the blue
14636         titlebar).
14637         * InternalWindowManager.cs: Open up CreateButtons to base classes
14638         so they can recreate the buttons on state changes.
14639         - If a window is maximized give it all three buttons
14640         * MdiWindowManager.cs: Create the titlebar buttons when the state
14641         is changed, this is needed because a toolwindow will not have all
14642         three buttons until it is maximized.
14643
14644 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
14645
14646         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
14647           Fixed bug #78609.
14648
14649 2006-06-12  Jackson Harper  <jackson@ximian.com>
14650
14651         * KeysConverter.cs: Make sure we handle the Ctrl special case
14652         if its the only key.
14653         
14654 2006-06-12  Jackson Harper  <jackson@ximian.com>
14655
14656         * Theme.cs: Add a method to get the size of a managed window
14657         toolbar button.
14658         * InternalWindowManager.cs: Remove the ButtonSize property, this
14659         should be retrieved from the theme.
14660         * MdiWindowManager.cs: Get the button size from the theme
14661         * ThemeWin32Classic.cs: Make the method to get the managed window
14662         titlebar button size public.
14663         - Handle the different button sizes of maximized toolwindows
14664         (should match any maximized window).
14665         - Get the titlebar height from the theme, not the WM (which gets
14666         it from the theme).
14667
14668 2006-06-12  Jackson Harper  <jackson@ximian.com>
14669
14670         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
14671         event down to the mdi window manager.
14672         - Expose some extra stuff to base classes
14673         - Make sure to end the Capture on an NC Mouse up, so that we can
14674         get double clicks properly, and the sizing doens't stick.
14675         - When doing PointToClient contain it in the workable desktop
14676         area, this prevents windows from changing size when the cursor is
14677         pulled outside of the working area while sizing.
14678         * MdiWindowManager.cs: When we get a double click maximize the
14679         window.
14680         - Reset the cursor after handling mode changes.
14681
14682 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
14683
14684         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
14685           current desktop, instead of just assuming a 0, 0 origin. This
14686           is needed for our internal window manager, to know the top
14687           margin of the desktop
14688
14689 2006-06-12  Chris Toshok  <toshok@ximian.com>
14690
14691         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
14692         we need this to get rid of the selected background in the bool
14693         column.
14694         (CancelEditing): move the ConcedeFocus call to above the Abort
14695         call.  Also, set is_changing to false and invalidate the row
14696         header if we were changing before.
14697         (ProcessKeyPreviewInternal): remove, since noone outside this
14698         class calls it anymore.  Roll the code into ProcessKeyPreview.
14699         (EndEdit): remove the internal version.
14700         (InvalidateCurrentRowHeader): make private.
14701
14702         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
14703         Keys.Escape handling (and with it the last call to
14704         DataGrid.EndEdit from outside the class.)
14705
14706
14707 2006-06-12  Chris Toshok  <toshok@ximian.com>
14708
14709         * DataGridTextBox.cs (.ctor): isedit defaults to false.
14710         (OnKeyPress): set isedit to true.
14711         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
14712         already handled by the grid.
14713
14714         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
14715         right.  ugh.
14716         (set_DataSource): SetDataSource always returns true, so stop
14717         putting it in an if statement.
14718         (EndEdit): get rid of some {}'s
14719         (ProcessGridKey): return true in case Keys.Escape.
14720         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
14721         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
14722         PositionChanged, stopped connecting to CurrentChanged.
14723         (GetDataSource): simplify this a bunch.
14724         (SetDataSource): change return type from bool to void.
14725         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
14726         to this, and make sure we don't set ListManager.Position inside
14727         set_CurrentCell.
14728         (OnListManagerItemChanged): if we're passed an actual index,
14729         redraw that row.
14730
14731         * CurrencyManager.cs (set_Position): don't call PullData here.
14732
14733 2006-06-09  Jackson Harper  <jackson@ximian.com>
14734
14735         * TreeNode.cs:  Recalculate the visible order before doing the
14736         Expand/Collapse Below calls, because those calls generate an
14737         expose.
14738         - Reduce calls to the TreeView property, which is mildly expensive
14739         by using a local var.
14740         * Form.cs: Layout the MDI child windows when creating the parent
14741         form.
14742         - Don't use the internal constructor anymore
14743         * MdiClient.cs: use the parent form width/height (if available)
14744         when laying out the child windows, we do this because the
14745         mdiclient isn't docked yet when the initial layout is done.
14746         - Don't need an internal constructor anymore.
14747
14748 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14749
14750         * FileDialog.cs: handle access errors when trying to create a folder
14751         or changing to a directory. No need to initialize out parameters.
14752
14753 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14754
14755         * FileDialog.cs: Append a number when creating a new folder if the
14756           folder already exists (use parenthesis instead of square brackets)
14757
14758 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14759
14760         * FileDialog.cs:
14761           - Disabled registry support for windows and added better registry
14762             error checking for other systems (need to investigate why it
14763             works perfectly on my system)
14764           - If a folder already exist show an error MessageBox instead of
14765             trying to create an indexed name.
14766           - Fixed a non intentional typo.
14767
14768 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14769
14770         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
14771
14772 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14773
14774         * FileDialog.cs: When creating a new folder don't crash if the
14775           folder already exists.
14776
14777 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14778
14779         * FileDialog.cs: Allmost a complete rewrite.
14780           - added a "virtual" file system that handles the differences
14781             between unix and windows file systems (especially the directory
14782             structure). Moved most of the directory and file handling code
14783             into the vfs.
14784             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
14785             UnixFileSystem and FSEntry.
14786           - Recently used folder/directory, size, location and used file names
14787             (file name ComboBox) are now stored in the registry and get read
14788             before the dialog shows up (fixes part 6 of bug #78446).
14789           - Creation of new folders/directories is now possible (context menu
14790             or ToolBar). Added TextEntryDialog for this that fills in the gap
14791             until ListView.LabelEdit works.
14792           - Fixed cursor handling (bug #78527) and focus handling for
14793             PopupButtonPanel
14794           - Various "Search in" ComboBox enhancements. The content of the
14795             dropdown listbox now almost matches ms.
14796           - Changed the behaviour when the user switches to SpecialFolder
14797             Recent to show the ListView in View.Details.
14798           - Beside using the ToolBar to change the View property of the
14799             file ListView it is now possible to use the context menu too.
14800
14801 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14802
14803         * ComboBox.cs: Don't create a new ObjectCollection when an item
14804           gets inserted. Just insert the item in the existing object_items
14805           ArrayList.
14806
14807 2006-06-08  Jackson Harper  <jackson@ximian.com>
14808
14809         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
14810         that the treeview and root node checks are done also, this fixes a
14811         regression i caused in the unit tests.
14812
14813 2006-06-07  Wade Berrier <wberrier@novell.com> 
14814
14815         * RichTextBox.cs: More ISO8859-1 -> unicode
14816
14817 2006-06-07  Mike Kestner  <mkestner@novell.com>
14818
14819         * ComboBox.cs : use items to hold highlight/selection so that
14820         collection insertions don't require synchronization.
14821
14822 2006-06-07  Jackson Harper  <jackson@ximian.com>
14823
14824         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
14825         routine.  We now always keep the sized edge at the cursor instead
14826         of computing movement and adjusting rects.  There is one buglet
14827         with this method though when the cursor is moved over area that
14828         the window can not expand too (such as the toolbars on the desktop).
14829
14830 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14831
14832         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
14833         here. Fixes crash on startup in AlbumSurfer.
14834
14835 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
14836
14837         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
14838           values
14839
14840 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14841
14842         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
14843         statement to avoid calling XNextEvent which will block if another thread
14844         took the event that we were expecting. Fixes bug #78605.
14845
14846 2006-06-07  Mike Kestner  <mkestner@novell.com>
14847
14848         * ListView.cs : isolated checkbox clicking from the selection logic.
14849         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
14850
14851 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14852
14853         * Form.cs: Check that the value passed to Form.DialogResult
14854         is a valid enum value.
14855
14856 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14857
14858         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
14859         Computer'. Clicking it in the network view goes to 'My Computer'.
14860         Added CIFS filesystem type. Display the mount point of filesystems.
14861         Avoid duplicate mount points (happens for me with CIFS);
14862
14863 2006-06-06  Jackson Harper  <jackson@ximian.com>
14864
14865         * InternalWindowManager.cs: Draw the maximized windows buttons
14866         when resizing.
14867
14868 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14869
14870         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
14871         all other dialogs. Fixes bug #78585.
14872
14873 2006-06-06  Mike Kestner  <mkestner@novell.com>
14874
14875         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
14876         Only invalidate checkbox on checkstate changes to avoid flicker.
14877         * ListBox.cs : avoid unselect/select when clicking selected item.
14878         avoid reselection flicker for already multiselected items.
14879         Fixes #78382.
14880
14881 2006-06-06  Jackson Harper  <jackson@ximian.com>
14882
14883         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
14884         the parent form so that the menu is removed if needed.
14885
14886 2006-06-06  Mike Kestner  <mkestner@novell.com>
14887
14888         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
14889         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
14890
14891 2006-06-06  Mike Kestner  <mkestner@novell.com>
14892
14893         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
14894
14895
14896 2006-06-06  Jackson Harper  <jackson@ximian.com>
14897
14898         * Control.cs: Use the property (instead of the field) to get the
14899         default cursor so it is instantiated correctly.
14900         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
14901         resizes so we need to manually repaint the window decorations here.
14902         - Set the titlebar button locations as soon as they are created,
14903         otherwise they are not set correctly on win32.
14904         
14905 2006-06-06  Chris Toshok  <toshok@ximian.com>
14906
14907         * CurrencyManager.cs (set_Position): call PullData before
14908         OnCurrentChanged.
14909         (AddNew): after calling IBindingList.AddNew, update our
14910         listposition, and call OnCurrentChanged/OnPositionChanged (without
14911         calling PullData).
14912         (OnCurrentChanged): remove the call to PullData from here.
14913         (OnItemChanged): remove the call to PushData from here.
14914         (OnPositionChanged): change the test from == null to != null to
14915         match the other methods.
14916         (ListChangedHandler): the grossest part of the patch.  Implement
14917         this such that it passes the unit tests in CurrencyManagerTest and
14918         the output more or less matches that of MS's implementation.
14919  
14920 2006-06-06  Mike Kestner  <mkestner@novell.com>
14921
14922         * ListView.cs : only update check state on single click.
14923         * ThemeWin32Classic.cs : fix focus drawing for details view without
14924         fullrowselect.  Fixes #78454.
14925         * XplatUIX11.cs : fix for double click emission.
14926
14927 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
14928
14929         * PropertyGridView.cs : Applied Atsushi's patch to fix
14930         font dialog bug  (#78197).
14931
14932 2006-06-05  Jackson Harper  <jackson@ximian.com>
14933
14934         * TreeNode.cs: Compute the next node for expanding/collapsing
14935         correctly. We now factor in nodes without a NextNode
14936         correctly. (Fixes somes cases in nunit-gui).
14937         * InternalWindowManager.cs: Set the bounds when updating the
14938         virtual position of a tool window.
14939         
14940 2006-06-05  Chris Toshok  <toshok@ximian.com>
14941
14942         * DataGrid.cs: rename cached_currencymgr to list_manager.
14943         (set_CurrentCell): move SetCurrentCell code here, and clean it up
14944         some.
14945         (CurrentRow, CurrentColumn): single accessors so we can make the
14946         cursor movement code a lot easier to understand.
14947         (CurrentRowIndex): implement this in terms of CurrentRow.
14948         (BeginEdit): clean this up a bit.
14949         (CancelEditing): sort out the is_editing/is_changing/is_adding
14950         stuff a little.
14951         (EndEdit): minor changes.
14952         (OnKeyDown): add a comment about a (most likely) unnecessary
14953         check.
14954         (OnMouseDown): cancel editing when we click on a row header.  And
14955         use the CurrentRow setter, not CurrentCell.
14956         (ProcessDialogKey): directly call ProcessGridKey.
14957         (UpdateSelectionAfterCursorMove): factor out this common block of
14958         code (it's used everywhere that we move the cursor by updating row
14959         or column).
14960         (ProcessGridKey): pretty substantial overhaul.  Use the
14961         CurrentRow/CurrentColumn properties to make the code a lot more
14962         readable.  Only use the CurrentCell property when we have to
14963         modify both row and column at once.  Tab behavior is still broken,
14964         and Delete is untested.
14965         (Select): if we have no selected rows, set selection_start to
14966         @row.
14967         (EditCurrentCell): rename EditCell this.  It was only ever invoked
14968         with CurrentCell as the arg, so drop the arg and rename it.
14969
14970         * DataGridColumnStyle.cs: clean up the constructors a little, and
14971         drop CommonConstructor().
14972
14973         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
14974         actually get notified when the user hits it.
14975         (ProcessKeyMessage): *substantially* simplify this method.
14976         There's no reason (that I can see) for the textbox to be making
14977         calls into the datagrid at all.  Remove all of them but the ones
14978         for Enter handling.  those will take some more work.
14979
14980         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
14981         calling HideEditBox.
14982         (HideEditBox): if we have an active textbox, render it invisible
14983         without causing a re-layout of the datagrid.
14984
14985 2006-06-05  Mike Kestner  <mkestner@novell.com>
14986
14987         * ListView.cs : fix NRE crasher when focuseditem is cleared by
14988         collection changes by resetting it to Items[0].  Fixes #78587.
14989
14990 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14991
14992         * MessageBox.cs: if the height of the text is larger than the icon_size,
14993         use that. Fixes bug #78575.
14994
14995 2006-06-05  Jackson Harper  <jackson@ximian.com>
14996
14997         * TreeView.cs: Fix line drawing when scrolling.  To do this each
14998         node is basically responsible for drawing its entire horizontal
14999         area.  When drawing a node it draws its parent node lines if
15000         needed.
15001         - Adjust the clip area to the viewport rectangle
15002         - Fix Left/Right key handling to match MS. (It expand/collapses
15003         and moves to parents/first child but does not move selection to
15004         sibling nodes).
15005         - Fix SetTop to work with new bound calculation code
15006         - When scrollbars are no longer needed we need to reset scrolling
15007         vars and recalculate the visible order so the redraw is correct
15008         * TreeNode.cs: We can't expand/collapse nodes with no children.
15009
15010 2006-06-03  John Luke  <john.luke@gmail.com> 
15011
15012         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
15013         so the colors work without dev packages
15014         
15015 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
15016
15017         * Control.cs 
15018           - Select: Implemented to just use activate. Seems to match MS 
15019             behaviour closest. Documented to only do actual control walking 
15020             based on it's parameters if in a container control so I moved 
15021             the code there.
15022           - Removed selection check logic from our internal Select() method
15023         * ContainerControl.cs:
15024           - Select: Moved selection logic from Control here, since MS documents
15025             that containers obey the bool arguments. No longer calling base
15026
15027 2006-06-02  Jackson Harper  <jackson@ximian.com>
15028
15029         * TreeView.cs: If the selected node isn't changed when we get
15030         focus update the previously selected node so that we see the
15031         selection box.
15032
15033 2006-06-02  Mike Kestner  <mkestner@novell.com>
15034
15035         * ComboBox.cs: restructure grab and general mouse event handling.
15036         Make the composite control raise mouse events like it was a single
15037         control for leaves/enters/motion/up/down events.  fix dropdown list
15038         coordinate mangling and refactor it into the scrollbar subclass to
15039         reduce code duplication.  Fixes #78282 #78361 and #78457.
15040
15041 2006-06-02  Mike Kestner  <mkestner@novell.com>
15042
15043         * ScrollBar.cs: remove Capture setting/clearing, as it happens
15044         automatically in the Control.WndProc.
15045
15046 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15047
15048         * FileDialog.cs: fix crash when running SharpChess, which sets the
15049         FilterIndex to 2 with only one Filter.
15050
15051 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15052
15053         * ToolBar.cs: add SizeSpecified property.
15054         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
15055         try to figure out our real size, otherwise fallback to what the
15056         container says.
15057
15058 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15059
15060         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
15061         * Control.cs (WndProc): MS always calls the DefWndProc to pass
15062           up the event
15063
15064 2006-06-01  Mike Kestner  <mkestner@novell.com>
15065
15066         * ListView.cs: revamp the focus management in ListView.  It still
15067         causes churn of LostFocus/GotFocus emissions on clicks, but it's
15068         better than not handling focus at all.  Will revisit when pdb feels
15069         the general focus handling is solid.  Fixes #78526.
15070
15071 2006-06-01  Jackson Harper  <jackson@ximian.com>
15072
15073         * TreeView.cs: Set the default border style in the constructor.
15074         - Move painting to use OnPaintInternal instead of capturing
15075         WM_PAINT, this is the correct way of doing things
15076         - UpdateBelow shouldn't invalidate the scrollbar area
15077         - Cap the top on update below in case the node was above the top
15078         of the viewport rectangle.
15079         - ExpandBelow and Collapse below need to obey Begin/End Update.
15080         * TreeNode.cs: Make is_expanded internal so the treenode
15081         collection can change it without firing the whole event chain.
15082         * TreeNodeCollection.cs: When clearing all the child nodes make
15083         sure to recalc the visible order.
15084         - Improve algo for remove the top node
15085
15086 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15087
15088         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
15089           SendMessage directly calling window procedures, which in turn might
15090           call SetFocus()
15091
15092 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
15093
15094         * Control.cs: Don't handle WM_SETFOCUS if the same window already
15095           has focus (works around X11 sending a FocusIn after our SetFocus)
15096         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
15097
15098 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
15099
15100         * Mime.cs: Fix for the NET_2_0 build.
15101           NameValueCollection needs StringComparer now.
15102
15103 2006-05-31  Chris Toshok  <toshok@ximian.com>
15104
15105         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
15106         return (via an out parameter) the starting X of the column.
15107         (UpdateVisibleColumn): track change to FromPixelToColumn.
15108         (HitTest): add a ColumnResize case here.
15109         (DrawResizeLine): new function, probably poorly named.
15110
15111         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
15112         only need to keep one reference.
15113         (set_ListManager): same.
15114         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
15115         Also, add support for HitTestType.ColumnResize.
15116         (OnMouseMove): add column resize behavior here, and change the
15117         cursor to the correct one as we move around the datagrid.
15118         (OnMouseUp): terminate the column resize if we're resizing.
15119         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
15120         for the current cell.
15121         (ConnectListManagerEvents): use cached_currencymgr.
15122         (DisconnectListManagerEvents): fill this in, using
15123         cached_currencymgr.
15124         (SetCurrentCell): remove cached_currencymgr_events handling.
15125         (SetDataMember): only call DisconnectListManagerEvents if
15126         cached_currencymgr is != null.
15127         (SetDataSource): same.
15128         (OnListManagerCurrentChanged): cached_currencymgr_events ->
15129         cached_currencymgr.
15130
15131 2006-05-31  Jackson Harper  <jackson@ximian.com>
15132
15133         * BindingManagerBase.cs: Remove somedebug code that creeped into
15134         SVN.
15135         * TreeNode.cs: We get the indent level dynamically right now, so
15136         don't track it as a member.
15137         * TreeNodeCollection.cs: Make sure all nodes added to the list
15138         have parents, treeviews/topnodes setup properly.
15139         - Don't attempt to track indent level.
15140
15141 2006-05-30  Jackson Harper  <jackson@ximian.com>
15142
15143         * BindingContext.cs: Create the currency manager tables here.
15144         This allows us to more easily create null tables (when bad data
15145         members are used), and more easily create related currency
15146         managers.
15147         * CurrencyManager.cs: All the table creation stuff is done by the
15148         binding context now.
15149         - Current should throw an exception if listposition is -1.
15150         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
15151         been bound yet.
15152
15153 2006-05-30  Mike Kestner  <mkestner@novell.com>
15154
15155         * ListView.cs: allow reexpansion of zero-width column headers.
15156         Fixes #78528.
15157
15158 2006-05-28  Chris Toshok  <toshok@ximian.com>
15159
15160         * CurrencyManager.cs (get_Current): after the late binding
15161         listposition = -1 fix, we need to guard against it here and return
15162         null, otherwise we raise an exception (which is swallowed
15163         elsewhere, and breaks datagrid databinding.)
15164
15165 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
15166
15167         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
15168           than WM_SYSKEY, don't throw if get something unexpected (#78507)
15169
15170 2006-05-26  Jackson Harper  <jackson@ximian.com>
15171
15172         * ControlPaint.cs:
15173         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
15174         values, it's faster and it's all we care about (we don't care if
15175         the names aren't equal).
15176         * KeyboardLayouts.cs: Eliminate some dead code.
15177         - Lazy init things
15178         * X11Keyboard.cs: Lazy init keyboard detection.
15179         - Cleanup access modifiers a little.
15180
15181 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
15182
15183         * XplatUIX11.cs: Once again, attempting to get layout just right.
15184
15185 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
15186
15187         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
15188           the sizes of each link section, that will result in sizes that
15189           match DrawString's layout (Fixes #78391)
15190
15191 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
15192
15193         * FileDialog.cs: If AddExtension property is true autocomplete the
15194           extensions in SaveFileDialog correctly. Fixes bug #78453.
15195           Set MyNetwork and MyComputer to "C:\" for windows. This should
15196           fix part 8 of bug #78446 for now.
15197
15198 2006-05-26  Chris Toshok  <toshok@ximian.com>
15199
15200         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
15201         invalidate the current row header if we need to, but presumably
15202         we'll invalidate the row corrsponding to the bounds or
15203         editingControl.
15204         (GridHScrolled): switch back to this method, as it's part of the
15205         public api.  *sigh*.
15206         (GridVScrolled): same.
15207         (OnMouseWheel): hack up something that more or less works.  Call
15208         GridHScrolled/GridVScrolled directly, instead of duplicating much
15209         of their code here.
15210         (EnsureCellVisibility): reinstate a bunch of this code, since we
15211         can't just set the scrollbar Value and expect to do all the work
15212         in the ValueChanged handler.  Also, Call Update() after scrolling
15213         in one direction so the other XplatX11.ScrollWindow call has the
15214         proper stuff in the proper places.
15215         (EditCell): set is_editing to true before calling .Edit.
15216
15217         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
15218         don't bother comparing first.
15219         (OnKeyPress): call grid.ColumnStartedEditing before calling
15220         base.OnKeyPress.  this will set is_changing and invalidate the row
15221         header if necessary.
15222         (ProcessKeyMessage): for WM_CHAR messages, call
15223         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
15224         and WM_KEYDOWN.
15225         
15226         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
15227         it's done in the DataGrid.
15228         (NextState): call grid.ColumnStartedEditing, which takes care of
15229         invalidating the row header (and setting is_changing).
15230
15231         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
15232         here.  it's done in the DataGrid.
15233
15234 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15235
15236         * Control.cs: allow changing the cursor when the mouse position is
15237         out of bounds but Capture is set.
15238         * LinkLabel.cs: handle the case when the mouse button is pressed on the
15239         linklabel but released somewhere else.
15240
15241 2006-05-25  Jackson Harper  <jackson@ximian.com>
15242
15243         * TreeView.cs: When we get focus if there is no selected node make
15244         it the top node
15245         - Remove some uneeded setup code from Draw.
15246         * TreeNodeCollection.cs: If the tree doesn't have a top node when
15247         a new node is inserted make the new node the top.
15248         * XplatUIX11.cs:
15249         * Timer.cs: Use Utc time so that no local time zone stuff needs to
15250         be used (should be faster).
15251         
15252 2006-05-25  Chris Toshok  <toshok@ximian.com>
15253
15254         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
15255         problem with the last commit.
15256
15257 2006-05-25  Chris Toshok  <toshok@ximian.com>
15258
15259         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
15260         need the invalidate call here, while scrolling right-to-left via
15261         the left arrow key (i.e. moving the editing cell while scrolling).
15262
15263         * DataGrid.cs (.ctor): remove the initialization of
15264         ctrl_pressed/shift_pressed.  We no longer track them using key
15265         up/down handlers, but by using Control.ModifierKeys.  Also, switch
15266         to using ValueChanged handlers on the scrollbars instead of
15267         Scrolled event handlers.  This simplifies a bunch of the scrolling
15268         code.
15269         (GridHValueChanged): rename from GridHScrolled, and change it to
15270         work with the new event args.
15271         (GridVValueChanged): same.
15272         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
15273         (OnMouseWheel): actually scroll the datagrid.  Don't change the
15274         selected cell.
15275         (ProcessGridKey): correct all the keyboard navigation stuff I
15276         could find.  Ctrl up/down/left/right/home/end work now.
15277         (EnsureCellVisibility): correct method name spelling.  Also,
15278         simplify this a touch by not explicitly calling the
15279         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
15280         scrollbar value.
15281         (OnKeyUpDG): no need for this method now.
15282         
15283 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15284
15285         * LinkLabel.cs: display the OverrideCursor when hovering the label.
15286         Fixes bug #78392.
15287
15288 2006-05-25  Chris Toshok  <toshok@ximian.com>
15289
15290         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
15291         r61019.
15292
15293 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
15294
15295         * Application.cs: Moved setting of is_modal and closing to before
15296           we create the control, to allow the event handlers called as a
15297           result of creation affect closing. Also removed Gonzalo's previous
15298           change to setting DialogResult, the behaviour has been moved to 
15299           Form.ShowDialog()
15300         * Form.cs: 
15301           - ShowDialog(): Removed explicit creation of the form, let RunLoop
15302             handle it instead
15303           - ShowDialog(): If no dialog result is set, we need to return Cancel
15304           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
15305             the close is cancelled
15306
15307 2006-05-25  Jackson Harper  <jackson@ximian.com>
15308
15309         * StatusBar.cs: We only need to update the sizes of the other
15310         panels when we have auto size contents.  Also we are only updating
15311         the contents of the panel, not the borders, so compensate for the
15312         border width (TODO: get this width from the theme somehow).
15313         * TreeView.cs: Scrollable is true by default
15314         - Use invalidate instead of refresh where needed
15315         - Factor the scrollable value into scrollbar updating
15316         - Update the scrollbars if the Scrollable property is altered
15317         - Update the selected node if its ImageIndex is changed
15318         - Handle null nodes in UpdateNode (mainly so we don't have to
15319         check if selected is null when updating it
15320         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
15321         are factored into the visible count
15322         - Use VisibleCount for clarity in the code
15323         - When the font is changed we need to recurse through all the
15324         nodes and invalidate their sizes
15325         
15326 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15327
15328         * Application.cs: set the DialogResult to fixed when the main form is
15329         hidden or destroyed while being modal.
15330
15331 2006-05-25  Miguel de Icaza  <miguel@novell.com>
15332
15333         * Theme.cs: Use Tangoified messagebox icons. 
15334
15335         (GetSizedResourceImage): Also cope with width = 0 and do not
15336         trigger a warning in that case (0 means "give me your icon from
15337         the resouce, no special size needed).
15338
15339 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
15340
15341         * Application.cs: Leave runloop if the the main modal form is 
15342           hidden (fixes #78484)
15343
15344 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
15345
15346         * BindingContext.cs : reject null datasource in Contains() and
15347           Item[].
15348         * CurrencyManager.cs : check data_member validity when data_source
15349           is dataset. When it is late binding, the initial position is -1.
15350
15351 2006-05-24  Jackson Harper  <jackson@ximian.com>
15352
15353         * TreeNodeCollection.cs: Dont't recalculate the visible order on
15354         inserted nodes that aren't visible.  This changes the
15355         max_visible_order which confuses scrollbar settings.
15356         - Use the enumerator to get the prev node instead of duplicating
15357         code.
15358         * TreeView.cs: Use new method for setting scrollbar values
15359         - Don't set the bounds every time the scrollbar is updated
15360         - When updating below the root node use an invalidate instead of a
15361         refresh to prevent the child controls (scrollbars) from being
15362         refreshed. (UpdateBelow still needs to be reworked anyways).
15363         - Reenable SetBottom now that visible orders are set correctly,
15364         added some debug code incase we ever get bad values there again.
15365         - Set the scrollbar max to 2 less then the max value, this
15366         compensates for the max value being one above the node count, and
15367         for scrollbars adding one extra "notch".
15368         - When drawing image nodes if there is an imagelist we draw the
15369         first image in the list if the supplied image index is out of the
15370         image list's bounds.
15371         
15372 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
15373
15374         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
15375           we receive a size change from the WM (Fixes #78503)
15376
15377 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
15378
15379         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
15380           rectangle (Fixes #78501)
15381
15382 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
15383
15384         * ButtonBase.cs: 
15385           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
15386             as a bitfield.
15387           - Fixed MouseMove to no longer switch pressed state unless the left
15388             mouse button is pressed. Atsushi provided the original patch (#78485)
15389           
15390 2006-05-24  Jackson Harper  <jackson@ximian.com>
15391
15392         * ScrollBar.cs: New internal methods that allow us to change a
15393         couple values on the scrollbar (the most common case is maximum
15394         and large change) without getting multiple invalidates.
15395
15396 2006-05-24  Chris Toshok  <toshok@ximian.com>
15397
15398         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
15399         (Edit): save off the original state in oldState, and set
15400         grid.is_editing to true.
15401         (OnKeyDown): abort editing if escape is pressed.  also, call
15402         NextState if space is pressed.
15403         (OnMouseDown): call NextState.
15404         (NextState): factor out shared code from OnKeyDown and OnMouseDown
15405         here.  Also, only invalidate the row header once (on the initial
15406         is_changing switch) to save on redraws.
15407
15408 2006-05-24  Chris Toshok  <toshok@ximian.com>
15409
15410         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
15411         if the value in the cell is different than it was before.  This
15412         keeps us from triggering a layout when we move around a datarid
15413         with a highlighted cell.
15414         (Edit): suspend layout when creating/positining the text box, and
15415         resume passing false so we don't ever actually re-layout.
15416         (ReleaseHostedControl): same.
15417         (EnsureTextBox): reformat slightly, and set WordWrap to false.
15418
15419         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
15420         control-key sequences should go to the datagrid - remove that
15421         lock.  Also, modify the conditions under which we move between
15422         cells when moving the cursor within a cell, and remove the "this"
15423         and "base" from field accesses.  We weren't even consistent, given
15424         they all were in the base class.
15425
15426 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
15427
15428         * Binding.cs : (.ctor)
15429           An obvious NRE fix for BindingTest.CtorNullTest().
15430
15431 2006-05-23  Chris Toshok  <toshok@ximian.com>
15432
15433         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
15434         them between lines.  This fixes some quirks editing cells in the
15435         datagrid.
15436
15437 2006-05-23  Jackson Harper  <jackson@ximian.com>
15438
15439         * TreeView.cs: Use begin/end update when doing expand/collapse all
15440         so that we don't get flicker on the scrollbar.
15441
15442 2006-05-23  Jackson Harper  <jackson@ximian.com>
15443
15444         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
15445         treenode calculations to be independant of the painting code. To
15446         do this nodes track a visible order which is calculated by the
15447         treeview.
15448         - Call new methods for expanding/collapsing nodes.  These methods
15449         use scrollwindow so we don't have to update everything below the
15450         node.
15451         * TreeView.cs: Refactored drawing and scrolling code.  We don't
15452         need to update nodes when drawing anymore or calculate scrollbar
15453         stuff.
15454         - Added new methods for expanding/collapsing nodes. These methods
15455         use ScrollWindow so as to not have to redraw all the nodes below.
15456         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
15457         we add/remove nodes or sort.
15458         - Handle removing the selected and the top node properly.
15459
15460 2006-05-23  Chris Toshok  <toshok@ximian.com>
15461
15462         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
15463         maybe this should actually happen in the datagrid code?
15464         (EndEdit): no need to invalidate anything, given that
15465         ReleaseHostedControl causes the datagrid to relayout, which
15466         invalidates everything anyway.
15467
15468         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
15469         in SetCurrentCell).
15470         (set_SelectionBackColor): call InvalidateSelection instead of
15471         Refresh.
15472         (set_SelectionForeColor): same.
15473         (BeginEdit): Flesh this out a bit.
15474         (CancelEditing): only do any of this if we're editing/adding.
15475         (EndEdit): same.
15476         (OnMouseDown): there's no need to cancel editing here, it's done
15477         in SetCurrentCell.
15478         (SetCurrentCell): only invalidate the current row header if it's a
15479         different row than the new one.
15480         (ShiftSelection): fix this to work like MS does.
15481         (ResetSelection): factor out the invalidation of selected_rows to
15482         InvalidateSelection.
15483         (SetDataSource): cancel any editing that's going on.
15484
15485         * DataGridColumnStyle.cs
15486         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
15487         call the non-interface version.
15488
15489         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
15490         header rectangle with the clip rectangle so we don't redraw the
15491         entire header for just a small area.  Gets rid of the last flicker
15492         when horizontally scrolling.
15493         (DataGridPaintRow): same.
15494
15495 2006-05-23  Mike Kestner  <mkestner@novell.com>
15496
15497         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
15498         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
15499         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
15500         Critical bug report.
15501
15502 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15503
15504         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
15505           and this fixes #78493
15506
15507 2006-05-23  Miguel de Icaza  <miguel@novell.com>
15508
15509         * Theme.cs (GetSizedResourceImage): Scale images if the proper
15510         size is not found.  
15511         
15512         * FileDialog.cs: Do not change the background for the side bar as
15513         it wont work nicely with the theme, and also reduces the artifacts
15514         in rendering the icons (which I want to fix too).
15515
15516         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
15517         resources, not resgen resources. 
15518
15519         (PlatformDefaultHandler): Pull images using the new API.
15520
15521 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15522
15523         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
15524           a reference to the hwnd and will not remove it unless there are
15525           no pending exposures (fixes #78341)
15526         * XplatUI.cs: Improved debug
15527
15528 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
15529
15530         * MenuAPI.cs : don't handle OnClick event when it was not the left
15531           button. Fixed bug #78487.
15532
15533 2006-05-23  Mike Kestner  <mkestner@novell.com>
15534
15535         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
15536         prefer submenus to the top menu for item lookup, to avoid popping down
15537         top-row items.
15538
15539 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
15540
15541         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
15542           Graphics.FillRectangle as the visual results are really bad (even
15543           on win). We now draw perfect arrows (and perfect shadows when the
15544           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
15545           Pen.DashPattern to draw the dots of each line.
15546
15547 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
15548
15549         * FileDialog.cs: Update the filename combobox when navigating through
15550           the ListView with the cursor keys. Fixes part 7 of bug #78446.
15551
15552 2006-05-22  Mike Kestner  <mkestner@novell.com>
15553
15554         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
15555         Fixes #78463.
15556
15557 2006-05-22  Mike Kestner  <mkestner@novell.com>
15558
15559         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
15560         requests. Fix a misspelled parameter and a copy paste exception error
15561         in Select.
15562
15563 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
15564
15565         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
15566           to get the same width/height (5/13) on X11 as the default font has on
15567           win32. This means that our DefaultFont emSize is smaller than the 
15568           the MS SWF equivalent (even thought the width/height stays the same)
15569
15570 2006-05-20  Jackson Harper  <jackson@ximian.com>
15571
15572         * MdiClient.cs:
15573         * MdiWindowManager.cs:
15574         * InternalWindowManager.cs: Make sure to use the border width from
15575         the theme.
15576
15577 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
15578
15579         * PrintDialog.cs: Implements printer details
15580
15581 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
15582
15583         * FileDialog.cs: Added focus handling for PopupButtonPanel.
15584           Fixes part 1 and 2 of bug #78446
15585
15586 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
15587
15588         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
15589           instead of sticking to the first ever calculated value
15590
15591 2006-05-19  Mike Kestner  <mkestner@novell.com>
15592
15593         * ComboBox.cs: fix mouse motion selection to use MousePosition and
15594         PointToClient, since Capture is set. Fixes #78344.
15595
15596 2006-05-19  Mike Kestner  <mkestner@novell.com>
15597
15598         * ListView.cs: match MS behavior in Details view where items are not
15599         drawn if Columns.Count == 0. 
15600         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
15601         Use a separate pen to draw the check, since changing the width affects
15602         the box as well.  Fixes #78454.
15603
15604 2006-05-18  Miguel de Icaza  <miguel@novell.com>
15605
15606         * ListView.cs: ArgumentOutOfRangeException, single versions of the
15607         exception should throw the name of the invalid argument.
15608
15609         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
15610         there are no files listed. 
15611
15612 2006-05-18  Jackson Harper  <jackson@ximian.com>
15613
15614         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
15615         up.
15616
15617 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15618
15619         * Control.cs: Brought back our old UpdateZOrder method as a private
15620           function and switched our calls from UpdateZOrder to the new one.
15621           This fixes the Paint.Net canvas disappearing bug.
15622
15623 2006-05-18  Jackson Harper  <jackson@ximian.com>
15624
15625         * Theme.cs:
15626         * ThemeWin32Classic.cs:
15627         * InternalWindowManager.cs: Move the drawing into the theme,
15628         expose everything the theme should need from the window manager.
15629
15630 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15631
15632         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
15633           from the call to NativeWindow to avoid walking up the parent chain
15634           further than needed (speeds up setting cursors and avoids setting
15635           the wrong cursor if a parent has another cursor defined)
15636         * Cursor.cs: When loading an icon as cursor, MS uses the center of
15637           the icon as hotspot, not what's contained as hotspot in the icon
15638           file. This fixes the perceived drawing offset seen with Paint.Net
15639         
15640 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15641
15642         * XplatUIX11.cs: 
15643           - Store the calculated rectangle in Hwnd object and use it when 
15644             setting the client size
15645           - Force Toolwindows to always be type Dock, to ensure they're on top
15646
15647 2006-05-18  Mike Kestner  <mkestner@novell.com>
15648
15649         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
15650         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
15651         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
15652         Substantial refactoring to remove confusing nested classes. Coding
15653         standard and Get+Set->property refactorings.  Shift to index based
15654         highlighting in ComboListBox instead of constantly using IndexOf and
15655         Items[]. Add invalidations on resize for DropDownList to fix ugliness
15656         in FileDialog growth.  Draw borders manually since Simple mode needs
15657         to look like two independent controls.  Make listbox border
15658         conditional to DropDownStyle.  Improved OwnerDraw support.
15659
15660 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
15661
15662         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
15663         Don't set the disposed graphics to null, so we can throw the "right"
15664         exception if the graphics is reused later (added a flag to avoid 
15665         double disposing). Some behaviours are different under 2.0 and are
15666         filled under bug #78448.
15667
15668 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15669
15670         * Control.cs: When double-buffering is enabled, we need to reset
15671           our graphics context between paint calls. Otherwise, any 
15672           transformations and other alterations on the context will 
15673           become cumulative (#77734)
15674
15675 2006-05-18  Mike Kestner  <mkestner@novell.com>
15676
15677         * ListView.cs: do focused item selection like MS on clicks. 
15678         Rework focus handling for ItemControl so LostFocus invalidates as
15679         well.
15680         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
15681         the ListView ItemControl has focus.
15682
15683 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
15684
15685         * XplatUIX11.cs: If client_window ends up being width or height zero
15686           due to border settings, move it off window inside whole_window (#78433)
15687
15688 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15689
15690         * Mime.cs: Shrink the mime file cache correctly.
15691
15692 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15693
15694         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
15695
15696 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15697
15698         * XplatUIX11.cs (AddExpose): More sanity checks
15699
15700 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15701
15702         * XplatUIX11.cs:
15703           - AddExpose: Don't add expose ranges outside the size of our
15704             window
15705           - Cast opacity values to Int32 to avoid crashes with certain
15706             values
15707           - Added disabled code paths that protect against illegal cross-
15708             thread painting (Developers.exe)
15709
15710 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15711
15712         * ProgressBar.cs: Invalidate the control when it's resized
15713           since block size is based on control size. (#78388)
15714
15715 2006-05-16  Miguel de Icaza  <miguel@novell.com>
15716
15717         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
15718         of setting the incoming argument to the "reset" value, we set the
15719         this.datamember to string.empty (before we were invalidating the
15720         incoming data).   
15721
15722         Fixes 78420
15723
15724 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15725
15726         * Form.cs: Only apply transparency settings after the form
15727           is created. (Fixes #77800)
15728
15729 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15730
15731         * ApplicationContext.cs: Grab the HandleDestroyed event so
15732           we know when to fire OnMainFormClosed 
15733
15734 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15735
15736         * Application.cs: Introduced sub-class to allow tracking of
15737           threads and centralized triggering of the event mess for
15738           ThreadExit, AppExit, etc..  (#76156)
15739
15740 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
15741
15742         * MimeIcon.cs:
15743           - Do not return a null icon index value for a mime subclass.
15744             Instead try the main mime type class too.
15745           - Seems that some newer distributions don't have a link to some
15746             gnome default icons anymore. So check the default gnome dir too.
15747           
15748
15749 2006-05-16  Jackson Harper  <jackson@ximian.com>
15750
15751         * MdiClient.cs: Don't paint the parent background image if we have
15752         our own background image.
15753
15754 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15755
15756         * Control.cs:
15757           - PerformLayout: Do not shrink space filled by DockStyle.Fill
15758             controls, all filled controls are supposed to overlap (#78080)
15759           - UpdateZOrder is supposed to update the control's z-order in the
15760             parent's z-order chain. Fixed to behave like that
15761           - BringToFront: Removed obsolete code
15762           - SendToBack: Simplyfied
15763           - SetChildIndex: Trigger layout calculations when Z-order changes
15764             since layout is done by z-order
15765
15766 2006-05-16  Chris Toshok  <toshok@ximian.com>
15767
15768         [ fixes bug #78410 ]
15769         * DataGrid.cs (set_AlternatingBackColor): use
15770         grid_drawing.InvalidateCells instead of Refresh().
15771         (set_BackColor): call grid_drawing.InvalidateCells.
15772         (set_BackgroundColor): use Invalidate instead of Refresh.
15773
15774         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
15775         invalidate the cell area.
15776
15777 2006-05-15  Chris Toshok  <toshok@ximian.com>
15778
15779         [ fixes bug #78011 ]
15780         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
15781         on to DataGridPaintRow.
15782         (DataGridPaintRow): take a clip argument, and only draw the cells
15783         which intersect it.  same with the not_usedarea.
15784
15785         * Theme.cs (DataGridPaintRow) add @clip parameter.
15786
15787         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
15788         XplatUI.ScrollWindow.
15789         (ScrollToRow): same.
15790
15791         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
15792         with last column which was causing a gray swath to appear with the
15793         XplatUI.ScrollWindow code.
15794
15795 2006-05-15  Chris Toshok  <toshok@ximian.com>
15796
15797         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
15798         use XplatUI.ScrollWindow.
15799         (VerticalScrollEvent): use XplatUI.ScrollWindow.
15800
15801 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
15802
15803         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
15804
15805 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15806
15807         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
15808           file since there are no equivalent X11 cursors
15809
15810 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15811
15812         * MonthCalendar.cs : DateTimePicker should reflect selected date
15813           on mouse*up*, not mouse*down*. Fixed originally reported part of
15814           bug #76474.
15815
15816 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15817
15818         * TabControl.cs : When argument index is equal or more than tab
15819           count, just ignore. Fixed bug #78395.
15820
15821 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15822
15823         * Control.cs: Dispose all child controls when control is diposed (#78394)
15824
15825 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15826
15827         * ColorDialog.cs: Finally it is possible to select the color with
15828           the text boxes
15829
15830 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15831
15832         * PrintDialog.cs: Fix typo
15833
15834 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15835
15836         * PrintDialog.cs: PrintDialog is not resizable
15837         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
15838           color. Made some ToolBar drawing methods protected virtual.
15839
15840 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
15841
15842         * PrintDialog.cs: Implementation of the PrintDialog
15843
15844 2006-05-12  Chris Toshok  <toshok@ximian.com>
15845
15846         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
15847         thumb, instead use MoveThumb.  This has the side effect of making
15848         most of the other thumb moving machinery use MoveThumb as well.
15849         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
15850         need to actually invalidate the rectangle where the new thumb will
15851         go.
15852         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
15853         We force an Update() after, so it's not as fast as it could be,
15854         but at least there's zero flicker and no droppings.
15855         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
15856         (UpdateThumbPos): add another argument (dirty), which says whether
15857         or not to calculate/add dirty regions which we later invalidate.
15858         For cases where we know we're going to use MoveThumb, we pass
15859         false for this.  Otherwise, pass true.
15860
15861 2006-05-12  Jackson Harper  <jackson@ximian.com>
15862
15863         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
15864         the status bar.
15865         
15866 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
15867
15868         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
15869           and GetClipRegion methods and UserClipWontExposeParent property.
15870         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
15871           overriding UserClipWontExposeParent property, setting to false, since
15872           Win32 handles the required expose messages to draw our clipped parent
15873           areas internally
15874         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
15875           PaintEventStart to set the user clip region if set.
15876         * Control.cs: 
15877           - Now internally tracking the Region for the control since we need to
15878             store it if the handle is not yet created and only set it when it
15879             becomes created. Before setting the region forced handle creation
15880           - Added code to draw the parents underneath a user-clipped region
15881         * Hwnd.cs: Added UserClip property
15882
15883 2006-05-12  Chris Toshok  <toshok@ximian.com>
15884
15885         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
15886         (set_Maximum): same.
15887         (set_Minimum): same.
15888         (set_SmallChange): same.
15889         (OnMouseUpSB): remove the call to refresh when releasing the
15890         thumb.  We shouldn't need it.
15891         
15892 2006-05-12  Miguel de Icaza  <miguel@novell.com>
15893
15894         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
15895         AutoSize set to None, we do not need to relayout everything, we
15896         just need to invalidate the current region.
15897
15898         (Draw): Do not draw the entire ClientArea, just redraw the
15899         clip area being passed.
15900
15901         * MdiClient.cs: Make MdiClient constructor with the Form argument
15902         internal. 
15903
15904 2006-05-12  Jackson Harper  <jackson@ximian.com>
15905
15906         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
15907         parents background image,  but strangely not their own.
15908         - (DrawStatusBarPanel): Take into account horizontal alignment
15909         when drawing the strings and icons.
15910
15911 2006-05-12  Mike Kestner  <mkestner@novell.com>
15912
15913         * ListBox.cs: avoid invalidations for focus when the collection is
15914         empty. 
15915
15916 2006-05-12  Chris Toshok  <toshok@ximian.com>
15917
15918         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
15919         invalidate the entire thumb area.  Call InvalidateDirty which
15920         limits the redraw to the thumb itself and surrounding pixels.
15921
15922         * XplatUIX11.cs (ScrollWindow): optimize copying.
15923         
15924 2006-05-12  Chris Toshok  <toshok@ximian.com>
15925
15926         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
15927         Figure out the positioning/layout in a single pass instead of
15928         multiple recursive invocations.  Speeds up the initial display of
15929         the data grid.  Also, make many things private that were
15930         originally public but unused outside this class.
15931
15932 2006-05-11  Jackson Harper  <jackson@ximian.com>
15933
15934         * MdiClient.cs: Improved layout code.
15935
15936 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
15937
15938         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
15939           not SelectedObject.
15940
15941 2006-05-11  Chris Toshok  <toshok@ximian.com>
15942
15943         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
15944         union of that will always be {0,0,width,height}.
15945
15946 2006-05-11  Jackson Harper  <jackson@ximian.com>
15947
15948         * Form.cs: Match MS's DefaultSize for forms (they must have
15949         changed the size in sp2).
15950
15951 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15952
15953         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
15954
15955 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15956
15957         * TextControl.cs : Fixed bug #78109. This incorrect position
15958           comparison caused crash on automatic line split.
15959         * TextBoxBase.cs : reduce duplicate code.
15960
15961 2006-05-10  Jackson Harper  <jackson@ximian.com>
15962
15963         * MdiClient.cs: Active form is only sent to the back when using
15964         the Next form functionality, when a form is clicked the current
15965         active shouldn't be sent to the back.
15966         - Layout the mdi windows when the container is first made visible.
15967         * Form.cs: Give the MdiClient a ref to the containing form when we
15968         create it.
15969         
15970 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15971
15972         * LinkLabel.cs : link_font could be uninitialized, so populate one
15973           before actual use. Fixed bug #78340.
15974
15975 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15976
15977         * XplatUIX11.cs : clipboard format native value is IntPtr.
15978           Fixed bug #78283.
15979
15980 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15981
15982         * Control.cs: 
15983           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
15984             which is passed up the parent chain by DefWndProc
15985           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
15986             to DefWndProc (#77956)
15987         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
15988
15989 2006-05-10  Jackson Harper  <jackson@ximian.com>
15990
15991         * MdiClient.cs: We need to remove the controls from the mdi
15992         collection, when we close the window.
15993         * MdiWindowManager.cs: Special handling of closing mdi windows.
15994         * InternalWindowManager.cs: Make the close method virtual so the
15995         mdi window manager can handle it specially.
15996
15997 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
15998
15999         * DataGrid.cs:
16000           - Recalculate grid when the data source has changed
16001           - Matches styles provided by user from all data sources types
16002         * DataGridTableStyle.cs: For columns that provided by the user set the
16003         with the preferred value is there was unassigned.
16004         * CurrencyManager.cs: throw OnItemChanged event
16005
16006 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
16007
16008         * PictureBox.cs: Don't animate until handle is created. Start animation
16009           when handle is created.
16010
16011 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16012
16013         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
16014           current codebase.
16015         * XEventQueue.cs: We don't need to provide the extra info
16016
16017 2006-05-10  Jackson Harper  <jackson@ximian.com>
16018
16019         * MdiClient.cs: If the mdi clients parent form has a background
16020         image set, we draw that background image for the mdi area's
16021         background.
16022
16023 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16024
16025         * TextBoxBase.cs: Set IBeam cursor (#78347)
16026
16027 2006-05-10  Mike Kestner  <mkestner@novell.com>
16028
16029         * ToolBar.cs: fix some text padding issues with ButtonSize
16030         calculation. Update the default size to match MS documentation.
16031         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
16032         button size. Fixes #78296.
16033
16034 2006-05-10  Mike Kestner  <mkestner@novell.com>
16035
16036         * ListBox.cs: use is_visible for scrollbar positioning in case the
16037         control isn't on screen yet.  Fix off by one with Right vs Width
16038         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
16039         
16040 2006-05-10  Jackson Harper  <jackson@ximian.com>
16041
16042         * X11Dnd.cs: Drop to a control with another control on top of it.
16043         * ToolBar.cs: Work on a copy of the buttons list, so that it can
16044         be modified in click handlers. TODO: Look for similar problems in
16045         other controls.
16046
16047 2006-05-09  Jackson Harper  <jackson@ximian.com>
16048
16049         * Form.cs: Window managers need the old window state when setting
16050         window state now.
16051         * InternalWindowManager.cs: Allow the base mdi window manager to
16052         handle more of the MDI only stuff (like maximize buttons).
16053         * MdiWindowManager.cs: Fix some snafus in changing the window
16054         state.  Add all the menu functionality, for both popup and
16055         maximized menus.
16056         * MdiClient.cs: When a new form is selected the currently
16057         activated form is sent to the back, this matches MS.
16058         - Implement a new method to activate the next mdi child window.
16059
16060 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
16061
16062         * Control.cs: 
16063           - Added new InternalCapture method to allow controls to prevent
16064             the capture behaviour on the click handlers
16065           - Switched to use InternalCapture
16066         * ComboBox.cs:
16067           - Using InternalCapture to prevent mouse captures from being released
16068             on mouse button release (Fixes #78100)
16069         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
16070           returns Form borders if a caption is present. (Fixes #78310)
16071
16072 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
16073
16074         * TreeNode.cs: Changed serialization .ctor to not require every field
16075           to be present. (#78265)
16076         * OwnerDrawPropertyBag.cs: Added serialization .ctor
16077
16078 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
16079
16080         * MimeIcon.cs: for is faster than foreach for strings.
16081
16082 2006-05-05  Mike Kestner  <mkestner@novell.com>
16083
16084         * CheckedListBox.cs: update check handling code to not use selected.
16085         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
16086         behavior for visual feedback, motion response, shift/ctrl handling,
16087         and properly deal with all 4 selection modes. Updates to bounds
16088         handling logic.  Add scroll wheel support. [Fixes #77842]
16089
16090 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16091
16092         * ListView.cs:
16093           - Moved adding of Implicit controls into .ctor. That way, subsequent
16094             creation of the controls will not cause them to think they are 
16095             toplevel windows (fixes #78200 header problem)
16096           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
16097           - Switched visibility setting of header control to use internal field
16098             to avoid triggering handle creation
16099           - Now checking if handle is created before causing a refresh when items
16100             are added (This makes us now match handle creation time with MS)
16101         * Splitter.cs: Removed loading of private splitter cursor, switched to
16102           Cursors version now that that is loading the right ones
16103         * Cursors.cs: Load proper splitter cursors from resources
16104         * Cursor.cs: Added second method of loading resource cursors for the 
16105           VS.Net users amongst us
16106
16107 2006-05-05  Mike Kestner  <mkestner@novell.com>
16108
16109         * ListView.cs: give header_control a minimum size based on the
16110         ListView size.
16111
16112 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16113
16114         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
16115           window seems to do that with metacity, so set that type. (#78120)
16116
16117 2006-05-05  Mike Kestner  <mkestner@novell.com>
16118
16119         * ListViewItem.cs: fix Details mode checkbox layout bug.
16120         * ThemeWin32Classic.cs: draw a ListView column header for unused space
16121         at the end of the header, if it exists. [Fixes for #78200]
16122
16123 2006-05-04  Jackson Harper  <jackson@ximian.com>
16124
16125         * MdiClient.cs: Add a helper property to get the container form.
16126         * MdiWindowManager.cs: We have to make sure to use the menu origin
16127         when drawing the icons and buttons, this fixes maximized window
16128         icons/buttons on win32.
16129         * InternalWindowManager.cs: Reset the restore captions when a
16130         window goes from Maximized to Minimized and vice versa. Move the
16131         DrawMaximizedButtons into the MdiWindowManager source, tool
16132         windows can't be maximized. NOTE: This could use a little
16133         refactoring if time ever permits.
16134         
16135 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16136
16137         * TextBox.cs: Add MWFCategoryAttributes
16138         * TextBoxBase.cs: Add MWFCategoryAttributes
16139         * Form.cs: Add MWFCategoryAttributes
16140
16141 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16142
16143         * Control.cs: Add MWFCategoryAttributes
16144         * ScrollableControl.cs: Add MWFCategoryAttributes
16145
16146 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
16147
16148         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
16149           Divider is true. Fix a little glitch in PropertyToolBar
16150           drawing code
16151
16152 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
16153
16154         * Control.cs:
16155           - Dispose: Call base.Dispose, this causes the disposed event
16156             to be fired (and probably other, more important stuff)
16157           - SetVisibleCore: Set is_visible to true after creating the
16158             window so that the window still gets created invisible (if
16159             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
16160             to generate a WM_ACTIVE message
16161         * Form.cs: Call Dispose when we want to destroy the window, instead of
16162           just destroying the handle (Dispose will do that for us)
16163         * XplatUIX11.cs:
16164           - RootWindow also needs a queue, so we can properly process the
16165             property change events from RootWindow (like Activate)
16166           - Generatic synthetic WM_ACTIVE message when the active window is
16167             being destroyed
16168
16169 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
16170
16171         * LinkLabel.cs: Trigger a recalc of our label dimensions when
16172           bounds are changed
16173
16174 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
16175
16176         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
16177           for determining width and height (image might not be assigned if
16178           we're drawing an imagelist)
16179
16180 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
16181
16182         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
16183         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
16184           height from system
16185         * Theme.cs: No longer returns hardcoded menu height, instead calls
16186           new driver method
16187         * Form.cs (OnLoad): Scaling happens before triggering Load events 
16188           on MS (# 78257)
16189
16190 2006-05-01  Mike Kestner  <mkestner@novell.com>
16191
16192         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
16193
16194 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
16195
16196         * TextBoxBase.cs: Removed Fixme
16197         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
16198
16199 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
16200
16201         * XplatUIX11.cs:
16202           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
16203             the rectangle relative to the parent, considering borders. We
16204             don't really want that.
16205           - ScrollWindow: Fixed warning to be more understandable
16206         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
16207           scrollbars and scroll only the visible area
16208         * RichTextBox.cs: Removed debug output
16209
16210 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16211
16212         * NumericUpDown.cs (Text): Just use base
16213         * UpDownBase.cs: Ensure txtView is created before using it
16214
16215 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16216
16217         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
16218           casting to IntPtr to avoid 64bit overflow errors
16219
16220 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16221
16222         * Control.cs:
16223           - AllowDrop: Don't force handle creation.
16224           - CreateHandle: Added call to tell driver if we're allowed to drop
16225
16226 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16227
16228         * FileDialog.cs: Remember the last directory not only for the
16229           current instance but also for new FileDialog instances.
16230
16231 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16232         
16233         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
16234           broke sending async messages
16235
16236 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16237
16238         * XplatUIX11.cs:
16239           - ScrollWindow: Fixed method. We finally generate expose events again
16240             for scrolled areas. This was causing 'garbage' when scrolling
16241             textbox and other controls that used ScrollWindow
16242           - Switched from using the regular queue for paint events to the MS 
16243             model of 'generating' paint events when the queue is empty.
16244             We use the new XQueueEvent.Paint subclass to store which windows
16245             need painting.
16246           - AddExpose now takes the x/y/width/height of the exposed area
16247             and inserts the window into the paint queue if not already there
16248           - InvalidateWholeWindow: Switched to use new AddExpose method
16249           - UpdateMessageQueue: Added which queue to monitor for paint events
16250           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
16251             the unlikely case nothing above handles it. We reset the expose
16252             pending states to get them off the queue.
16253           - GetMessage: Now pulls a paint event if no other events are in the
16254             queue
16255           - Invalidate: Switched to new AddExpose method
16256           - PeekMessage: Updated to understand pending paint events
16257           - UpdateWindow: Fixed logic bug. We were only updating if the window
16258             didn't need updating. Also switched to sending WM_PAINT directly,
16259             like MS does.
16260         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
16261           and random access Remove(). The random access is needed to handle
16262           UpdateWindow() where a WM_PAINT is sent directly without accessing
16263           the queue.
16264         * ScrollBar.cs: Added Update() calls to cause immediate updates to
16265           allow for better feedback when scrolling. Scrollbars are small and
16266           the immediate update should make it 'feel' more responsive without
16267           slowing things down. ScrollBar still needs it's invaliate logic
16268           updated to not always invalidate the whole bar on certain changes.
16269
16270 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16271
16272         * Control.cs:
16273         (BackColor): if the control does not support a transparent background,
16274         return the default backcolor when the parent backcolor is transparent.
16275
16276 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
16277
16278         * Application.cs: Updated to new StartLoop/GetMessage API
16279         * RichTextBox.cs: Provide some output on RTF parsing errors
16280         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
16281           new queue_id argument to GetMessage and PeekMessage to allow faster
16282           handling of per-thread queues in drivers.
16283         * Hwnd.cs: Added Queue tracking and property
16284         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
16285         * XEventQueue.cs: Added thread trackingA
16286         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
16287         * XplatUIX11.cs:
16288           - Implemented new per-thread queue
16289           - GetMessage: Fixed return/break behaviour on several cases. We were
16290             returning stale messages in some cases, instead of just processing
16291             the next message
16292
16293 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16294
16295         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
16296
16297 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
16298
16299         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
16300           fixed off-by-one comparisons between Width/Height and Right/Bottom.
16301
16302 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16303
16304         * PropertyGridView.cs: Fix drop down width.
16305
16306 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16307
16308         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
16309           a mess in DrawToolBar, so I removed one of them.
16310
16311 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16312
16313         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
16314           needed (clip). Otherwise we get artifacts.
16315
16316 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
16317
16318         * FixedSizeTextBox.cs: Added constructor to allow specifying which
16319           dimension is fixed
16320         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
16321           and switched FixedSizeTextBox to only be fixed vertical (#78116)
16322         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
16323           if it matches the scale base font (avoids unneeded scaling)
16324
16325 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
16326
16327         * X11DesktopColors.cs: One gtk_init_check should be enough
16328
16329 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
16330
16331         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
16332           match MS behaviour
16333
16334 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
16335
16336         * TextBoxBase.cs: 
16337           - Generate OnTextChanged for Backspace even if we're only deleting
16338             the current selection
16339           - When setting the Text property, only select all text if the
16340             control does not have focus when it is being set. Otherwise
16341             just place the cursor at the beginning of the control
16342
16343 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
16344
16345         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
16346           Added a little helper to draw PropertyGrid ToolBar with a different
16347           border and a different BackColor.
16348         * PropertyGrid.cs: Some background parts didn't get painted with the
16349           correct background color. Added a class that helps us to draw the
16350           correct border for PropertyGridView and a class that helps us to
16351           draw ToolBars with a different backcolor
16352         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
16353
16354 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
16355
16356         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
16357         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
16358
16359 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
16360
16361         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
16362           into the palette entries. Also, since we're working on a copy
16363           we needed to copy the palette back onto the bitmap.
16364         * Cursor.cs: Same fix as XplatUIWin32.cs.
16365
16366 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
16367
16368         * ImageListStreamer.cs: Need to read the var (or we're off)
16369
16370 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
16371
16372         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
16373           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
16374           TextBoxBase.cs: Unused var fixes
16375         * AxHost.cs: Small 2.0 fix
16376         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
16377           as it seems that is what at least Metacity expects. This will make
16378           icons show up on 64bit platforms. We still have some 64bit size
16379           issues, though, since the startup app window size still won't match.
16380
16381 2006-04-25  Mike Kestner  <mkestner@novell.com>
16382
16383         * *.cs: cleanup newly reported exception var unused warnings.
16384
16385 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16386
16387         * ThemeWin32Classic.cs: Button image alignment now matches exactly
16388           ms
16389
16390 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16391
16392         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
16393           image. The image position is always the same, no matter if the
16394           button is pressed or not.
16395
16396 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16397
16398         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
16399           selection and set the correct filename for SaveFileDialog.
16400           Patch by Emery Conrad.
16401
16402 2006-04-24  Mike Kestner  <mkestner@novell.com>
16403
16404         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
16405         check for item.X outside the ClientRect instead of item.Y. Fixes
16406         #78151.
16407
16408 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16409
16410         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
16411         trust that value blindly and do some sanity check. Fixes bug #77814.
16412
16413 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16414
16415         * ImageListStreamer.cs: save the mask as a 1bpp image.
16416
16417 2006-04-21  Mike Kestner  <mkestner@novell.com>
16418
16419         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
16420         pass Checked and Indeterminate to the Theme Engine. Improve
16421         encapsulation with ListBox.
16422         * ListBox.cs: Keep a StringFormat instead of calculating it every item
16423         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
16424         nested types.  Move all CheckState functionality to CheckedListBox.
16425         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
16426         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
16427         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
16428         single base list. Fix scrollbar sizing and placement to mirror MS.
16429         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
16430         used.
16431         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
16432         for CheckedListBox by using new DrawItemState info.  Center the
16433         checkboxes on the items. Use new StringFormat property.
16434
16435 2006-04-18  Jackson Harper  <jackson@ximian.com>
16436
16437         * Form.cs: MdiChildren don't do default locations the same way as
16438         regular forms.  This prevents a crash when trying to position the
16439         mdi windows.
16440
16441 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
16442
16443         * PropertyGridTextBox.cs: Formatting, copyright
16444         * PropertiesTab.cs: Formatting
16445         * PropertyGrid.cs: Formatting
16446         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
16447           click toggling of values
16448           
16449 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
16450
16451         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
16452         * Control.cs (.ctor): verify_thread_handle is static, don't reset
16453           every time a control is created
16454         * Application.cs: Removed obsolete EnableRTLMirroring method
16455
16456 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
16457
16458         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
16459         SelectedIndex to -1. Fixes bug #78121.
16460
16461 2006-04-17  Jackson Harper  <jackson@ximian.com>
16462
16463         * Binding.cs: Handle null values for Current and BindingContext.
16464         This occurs when binding is a little delayed.
16465         * CurrencyManager.cs: return null for Current when there are no
16466         items in the list.
16467         - Hookup to the listchanged event on the DataView and update
16468         bindings when the list is changed.  This fixes late binding of
16469         controls.
16470
16471 2006-04-17  Jackson Harper  <jackson@ximian.com>
16472
16473         * X11Dnd.cs:
16474         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
16475         Ringenbach.
16476
16477 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
16478
16479         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
16480           place
16481         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
16482           with the correct ButtonState
16483
16484 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
16485
16486         * XplatUIX11.cs: Improved distinguishing between window types to
16487           tell the WM a type closer to what the app wants (Fixes #78107)
16488
16489 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16490
16491         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
16492           GrabHandle
16493
16494 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16495
16496         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
16497           drawing code to reflect the size grip changes
16498
16499 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16500
16501         * ImageListStreamer.cs: fix handling of the mask that follows the main
16502         bitmap when deserializing and serialize it properly. The generated mask
16503         should better be a 1bpp image, but I'll do that later.
16504
16505 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16506
16507         * FileDialog.cs: Show something in the DirComboBox on *nix if the
16508           path doesn't fit into some of our Current.Places
16509
16510 2006-04-13  Jackson Harper  <jackson@ximian.com>
16511
16512         * ComboBox.cs: Use borders instead of drawing our own decorations,
16513         try to obey correct rules for heights.
16514         * Theme.cs:
16515         * ThemeNice.cs:
16516         * ThemeClearLooks.cs:
16517         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
16518         this is now handled by borders.
16519         - Remove unused DrawListBoxDecorationSize method.
16520         
16521 2006-04-13  Mike Kestner  <mkestner@novell.com>
16522
16523         * MenuAPI.cs: null guarding for the disbled click check fixes crash
16524         reported by Alex.
16525
16526 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16527
16528         * ThemeWin32Classic.cs: 
16529           - Fixed CPDrawStringDisabled
16530           - Corrected drawing of disabled menu items
16531           - Fixed drawing of disabled radio buttons (bug #78095)
16532           - Draw check in a disabled CheckBox with color ControlDark 
16533
16534 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16535
16536         * Form.cs: Use the provided width when calculating the menu size;
16537           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
16538           and ClientSize.Width won't be updated yet
16539         * Application.cs: Use Visible instead of Show() to make form visible,
16540           this way we create the handle later and menusize is considered
16541
16542 2006-04-12  Mike Kestner  <mkestner@novell.com>
16543
16544         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
16545         reporting.
16546
16547 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16548
16549         * TextBox.cs: Implemented context menu
16550
16551 2006-04-12  Mike Kestner  <mkestner@novell.com>
16552
16553         * ListView.cs: implement box selection. fixes #77838.
16554         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
16555
16556 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16557
16558         * XplatUIX11.cs: Added setting of window type when transient window
16559           is created (metacity would move it otherwise)
16560         * X11Structs.cs: Added WINDOW_TYPE atoms
16561         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
16562           background (the control is Opaque but still wants transparent
16563           backgrounds)
16564
16565 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16566
16567         * Control.cs: Added OnPaintBackgroundInternal to allow controls
16568           that set Opaque but don't mean it (like all ButtonBase-derived
16569           controls) to still draw their background
16570         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
16571           the background
16572
16573 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16574
16575         * Control.cs (PaintControlBackground): Set the graphics object
16576           on our PaintEvent to null to prevent it from being disposed
16577           when the PaintEvent gets disposed
16578
16579 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
16580
16581         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
16582         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
16583
16584 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16585
16586         * Control.cs: 
16587           - Added transparency check to BackColor property. Transparent
16588             backgrounds are only allowed if the control styles permit it
16589           - Added recursive painting of parent control background and
16590             foreground if a control with a transparent backcolor is drawn
16591             (Thanks to Tim Ringenback for providing his 'hack' as a base
16592              for this patch) Fixes #77985 and #78026.
16593           - Added Opaque style check before calling OnPaintBackground, no
16594             need to draw the background if the control is opaque
16595           - Removed ControlAccessibleObject owner variable (inherited from
16596             base, no need to define again)
16597           - Added some documentation links explaining the drawing events
16598             and styles
16599
16600 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16601
16602         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
16603           that the affected control is the located at the left border of our
16604           parent (Fixes #77936)
16605
16606 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16607
16608         * TextBoxBase.cs: When rendering disabled or readonly controls,
16609           draw the background with 'Control' instead of 'Window' color as
16610           long as the user hasn't specifically set a color
16611
16612 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16613
16614         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
16615           since that won't be updated if the user types text (only if it's
16616           programatically set)
16617
16618 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16619
16620         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
16621           layout changes do to app-triggered resizes will have the proper
16622           display rectangle for layout
16623
16624 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
16625
16626         * ThemeWin32Classic.cs:
16627           - Make use of the SystemBrushes and SystemPens wherever possible
16628           - Corrected some highlight colors
16629           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
16630             drawing
16631         * Theme.cs: Added Empty field to CPColor struct
16632
16633 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16634
16635         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
16636           is displayed when calculating the display rectangle. Thanks to Mike
16637           for teaching me the err of my ways.
16638
16639 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
16640
16641         * ScrollableControl.cs:
16642           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
16643             (instead of 0,0) and we now return the real width/height instead of
16644             just the clientrectangle, adjusted for padding. The rectangle is
16645             now cached and created by the new CalculateDisplayRectangle method.
16646           - Created new CalculateDisplayRectange method, which basically does
16647             what get_DisplayRectangle() did originally, but now using the 
16648             right edge instead of DisplayRectangle to determine the size of
16649             our scrollbars
16650           - get_Canvas(): Fixed it to properly calculate canvas for 
16651             right/bottom controls which seem to be placed to the right/bottom
16652             of any controls that have a fixed location
16653           - Removed TODO that's taken care of
16654           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
16655             and SetDisplayRectLocation according to new MSDN2 docs
16656           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
16657             event when that is called, this is added for compatibility
16658           - ScrollControlIntoView(): Implemented.
16659           - Switched scrollbars to be implicit, they shouldn't be selectable
16660         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
16661           call it when the active control is set/changed
16662         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
16663         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
16664           implicit_control variable (used for native Win32 message generation)
16665         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
16666           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
16667         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
16668         * XplatUIStructs.cs: Added ScrollBarCommands enum
16669
16670 2006-04-10  Jackson Harper  <jackson@ximian.com>
16671
16672         * ButtonBase.cs:
16673         * CheckedListBox.cs:
16674         * ComboBox.cs:
16675         * DataGrid.cs:
16676         * DataGridView.cs:
16677         * Form.cs:
16678         * GroupBox.cs:
16679         * ListBox.cs:
16680         * PrintPreviewControl.cs:
16681         * ProgressBar.cs:
16682         * PropertyGrid.cs:
16683         * Splitter.cs:
16684         * StatusBar.cs:
16685         * TrackBar.cs:
16686         * UpDownBase.cs: Fixup base event overrides.
16687         
16688 2006-04-06  Mike Kestner  <mkestner@novell.com>
16689
16690         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
16691         all user-initiated value changes to min <= value <= max-thumbsz+1.
16692         (set_Value): check for vert/horiz when calculating new thumb position.
16693         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
16694         like MS does.
16695         (OnMouseMoveSB): refactor the thumb dragging code and refine
16696         invalidation logic to reduce flicker.
16697         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
16698         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
16699         (UpdateThumbPosition): small code readability cleanup
16700
16701 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
16702
16703         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
16704           different
16705
16706 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16707
16708         * ThemeNice.cs: Use a better graphics effect when a button is pressed
16709
16710 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16711
16712         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
16713         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
16714           This dramatically reduces the number of Pen.Dispose calls. 
16715           Where possible call ResPool methods only once instead of calling it
16716           over and over again (for example for the same color).
16717
16718 2006-04-06  Mike Kestner  <mkestner@novell.com>
16719
16720         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
16721         Also remove an unused private field on the collection. Fixes #77972.
16722
16723 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16724
16725         * ThemeNice.cs: Added ToolBar drawing code
16726
16727 2006-04-06  Mike Kestner  <mkestner@novell.com>
16728
16729         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
16730         I'm assuming that means we need to look up the toplevel for the
16731         provided control. Fixes the crash trace in #77911 but exposes another
16732         crash in some strange reflection usage in NDocGui.
16733
16734 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16735
16736         * ThemeNice.cs: Gave it a little silver touch and added Images
16737           method
16738         * FontDialog.cs: FontDialog is not resizable
16739         * FileDialg.cs: Added SizeGripStyle.Show
16740
16741 2006-04-05  Jackson Harper  <jackson@ximian.com>
16742
16743         * KeyboardLayouts.cs: Remove warning.
16744
16745 2006-04-05  Jackson Harper  <jackson@ximian.com>
16746
16747         * Control.cs: Enable OnPaintInternal so we can use it for drawing
16748         all of our controls instead of Paint +=.
16749         * ListBox.cs:
16750         * ListView.cs:
16751         * MenuAPI.cs:
16752         * MessageBox.cs:
16753         * NotifyIcon.cs:
16754         * ProgressBar.cs:
16755         * ScrollBar.cs:
16756         * Splitter.cs:
16757         * StatusBar.cs:
16758         * TabControl.cs:
16759         * TextBoxBase.cs:
16760         * ToolBar.cs:
16761         * TrackBar.cs:
16762         * UpDownBase.cs:
16763         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
16764         use OnPaintInternal. Remove Width/Height and Visible checks in
16765         paint handler, this is done at a higher level now.
16766         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
16767         * PaintEventArgs.cs: Add a handled flag so controls that don't
16768         want anymore painting after OnPaintInternal can make sure OnPaint
16769         isn't called.
16770
16771 2006-04-05  Mike Kestner  <mkestner@novell.com>
16772
16773         * Form.cs: fix the menu WndProc hacks to respect the native enabled
16774         state of the form, so that we don't process events when Modal dialogs
16775         are up. Fixes #77922.
16776
16777 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
16778
16779         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
16780           checking is done.
16781
16782 2006-04-05  Mike Kestner  <mkestner@novell.com>
16783
16784         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
16785
16786 2006-04-05  Mike Kestner  <mkestner@novell.com>
16787
16788         * ListView.cs (HeaderMouseMove): null guarding for the over column
16789         when setting up the drag_to_index.  Fixes #78015.
16790
16791 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
16792
16793         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
16794           in the taskbar. Transient windows seem to accomplish that.
16795
16796 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
16797
16798         * Form.cs:
16799           - Re-enabled CreateParams.X/Y code for FormStartPosition
16800           - Added code for manual placement when creating the Control
16801           - Incomplete patch to treat MDI forms differently when
16802             setting the ClientSizeCore. (Still need to figure out handling
16803             x/y coords there)
16804         * XplatUIX11.cs:
16805           - When we're explicitly setting the X/Y position of a non-Child
16806             window, let the WM know. Metacity really wants this.
16807
16808 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16809
16810         * ThemeNice.cs: Added CPDrawButton
16811
16812 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16813
16814         * ThemeNice.cs: Changed the color for focused buttons and activated
16815           the arrows for small scroll buttons.
16816
16817 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16818
16819         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
16820           anymore. Changed some method modifiers to protected (virtual)
16821         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
16822           changes
16823         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
16824           Updated drawing of menus, buttons and progressbars; added
16825           CPDrawBorder3D 
16826
16827 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16828
16829         * ImageListStreamer.cs: implemented serialization/deserialization
16830         of the images.
16831
16832 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
16833
16834         * ThemeWin32Classic.cs:
16835           - Removed all the DrawFrameControl stuff; CPDrawButton,
16836             CPDrawCheckBox and CPDrawRadioButton are now handled directly
16837             inside the methods
16838           - Updated and corrected the drawing code of CPDrawButton,
16839             CPDrawCheckBox and CPDrawRadioButton to better match ms
16840           - Updated theme checkbox and radiobutton code to use the CP*
16841             methods
16842
16843 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16844
16845         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
16846           bug is fixed
16847
16848 2006-03-31  Jackson Harper  <jackson@ximian.com>
16849
16850         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
16851         sometimes.
16852         * UpDownBase.cs: Don't CreateGraphics manually, use a
16853         Refresh. Ideally we would invalidate the correct areas here.
16854
16855 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16856
16857         * XplatUIX11.cs: 
16858           - We now track the mapping state of windows. If a window (or 
16859             one of it's parents) is not mapped we no longer permit
16860             WM_PAINT messages to be generated since we'd otherwise get 
16861             lots of BadMatch X errors. Jackson did all the work figuring
16862             out the problem.
16863           - Destroying the caret if the window it's contained in is 
16864             destroyed. Can't use regular DestroyCaret method since it
16865             might fall into a drawing function (trying to remove the
16866             caret) and with that generate new BadMatch errors. Again,
16867             Jackson tracked this down.
16868           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
16869             make sure we send the messages to all windows. (The old code
16870             would send the WM_DESTROY to the window, and then all child
16871             windows would be 'gone' because the WM_DESTROY handle lookup
16872             would no longer find the destroyed window)
16873         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
16874         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
16875
16876 2006-03-31  Jackson Harper  <jackson@ximian.com>
16877
16878         * ScrollableControl.cs: Dont recalc if we are not visible.
16879
16880 2006-03-31  Mike Kestner  <mkestner@novell.com>
16881
16882         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
16883         the visibility branch.
16884
16885 2006-03-31  Jackson Harper  <jackson@ximian.com>
16886
16887         * ScrollBar.cs: Cap values when incrementing/decrementing.
16888
16889 2006-03-31  Mike Kestner  <mkestner@novell.com>
16890
16891         * MenuAPI.cs: setup menu.tracker for popup/context menus.
16892         * ToolTip.cs: guard against timer expirations with no active control.
16893         Not sure why it happened.
16894
16895 2006-03-31  Mike Kestner  <mkestner@novell.com>
16896
16897         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
16898         text.
16899         * ToolTip.cs: Position the tooltip based on where the cursor is at
16900         popup time, not at MouseEnter time.  Add a Down state so that we don't
16901         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
16902         positioning offset. Lookup DisplaySize at positioning time, since it
16903         can theoretically change during invocation.
16904         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
16905         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
16906
16907 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16908
16909         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
16910           Fixes behaviour when the Text property of the box is String.Empty
16911
16912 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
16913
16914         * XplatUIX11.cs: Only send mouseleave for our client windows, not
16915           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
16916           a window)
16917
16918 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16919
16920         * FileDialog.cs: Visual enhancement for the popup buttons in 
16921           PopupButtonPanel
16922
16923 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16924
16925         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
16926           code
16927
16928 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
16929
16930         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
16931           highlighted menu items to match ms
16932
16933 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
16934
16935         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
16936
16937 2006-03-30  Mike Kestner  <mkestner@novell.com>
16938
16939         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
16940         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
16941         go active to account for HotLight to Selected transition.
16942         * MenuItem.cs: add internal Selected prop. Fill out the Status
16943         property by calculating it from item info. Add HotLight,
16944         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
16945
16946 2006-03-30  Mike Kestner  <mkestner@novell.com>
16947
16948         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
16949
16950 2006-03-29  Jackson Harper  <jackson@ximian.com>
16951
16952         * Form.cs: Implement TODO.
16953
16954 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
16955
16956         * PrintPreviewDialog.cs: Implemented missing methods and events; still
16957           missing proper dialog setup in the constructor
16958
16959 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
16960
16961         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
16962         * Control.cs:
16963           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
16964           - Fixed ResetBindings and removed TODO
16965           - Added check for cross-thread calls to get_Handle()
16966           - Added Marshaller attribute for set_Font to satisfy class status
16967         * FontDialog.cs: Removed TODOs that seemed implemented
16968         * UpDownBase.cs: Removed unneeded TODO and Fixme
16969         * MessageBox.cs: Implemented support for Default button and removed TODO
16970         * FileDialog.cs: Removed obsolete TODO
16971         * DomainUpDown.cs: Removed obsolete TODO
16972         * ButtonBase.cs: Removed obsolete TODO
16973         * XplatUIWin32.cs: Removed obsolete TODO
16974         * Form.cs:
16975           - Removed obsolete TODO
16976           - Calling CheckAcceptButton when the acceptbutton is changed to allow
16977             internal status updates
16978           - Making sure the active control is selected when the control is created
16979         * CurrencyManager.cs: Removed obsolete TODO
16980
16981 2006-03-29  Mike Kestner  <mkestner@novell.com>
16982
16983         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
16984         of PrintPreviewDialog and RichTextBox.
16985
16986 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
16987
16988         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
16989           DarkDark, Light and LightLight colors for a specific color
16990         * ThemeWin32Classic.cs:
16991           - Use Button drawing code to draw RadioButtons and CheckBoxes with
16992             Appearance = Button 
16993           - Make use of the new ResPool helper CPColor
16994           - Draw ProgressBar and StatusBar with correct 3D borders
16995
16996 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
16997
16998         * ColorDialog.cs: Return selected color. Fixes bug #77940.
16999
17000 2006-03-28  Mike Kestner  <mkestner@novell.com>
17001
17002         * ListView.cs: fix Icon layout to plan for scrollbar widths when
17003         calculating col/row counts.
17004
17005 2006-03-28  Mike Kestner  <mkestner@novell.com>
17006
17007         * ColumnHeader.cs:
17008         * ListView.cs:
17009         * ListViewItem.cs:
17010         * Menu.cs: 
17011         switch to explicit interface method implementation for some methods
17012         corcompare identifies as inconsistent with MS.
17013
17014 2006-03-28  Mike Kestner  <mkestner@novell.com>
17015
17016         * MainMenu.cs: 
17017         * Menu.cs:
17018         add a few missing methods from the class status output.
17019
17020 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
17021
17022         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
17023           correct.
17024
17025 2006-03-28  Mike Kestner  <mkestner@novell.com>
17026
17027         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
17028
17029 2006-03-27  Mike Kestner  <mkestner@novell.com>
17030
17031         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
17032         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
17033
17034 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
17035
17036         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
17037
17038 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17039
17040         * ThemeWin32Classic.cs:
17041           - GroupBox: Inserted a little gap between the text and the lines
17042             on the right side
17043           - Made the code in CPDrawBorder3D more readable
17044           - Corrected the drawing location of the up and down arrows in 
17045             CPDrawScrollButton
17046
17047 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17048
17049         * ControlPaint.cs: Corrected line widths in DrawBorder for
17050           ButtonBorderStyle Inset and Outset
17051
17052 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17053
17054         * ThemeWin32Classic.cs:
17055           - Rewrote the totally broken CPDrawBorder3D method. That was
17056             one of the main problems for the terrific ThemeWin32Classic
17057             look
17058           - Updated and corrected Button drawing
17059           - Correct the dimensions of the SizeGrip to match ms ones
17060           - Removed a small drawing glitch in DrawComboBoxEditDecorations
17061         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
17062           Border3DStyle.Sunken to match ms.
17063
17064 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17065
17066         * ThemeWin32Classic.cs: First small part of the "de-uglify
17067           ThemeWin32Classic" effort, SizeGrip
17068
17069 2006-03-24  Jackson Harper  <jackson@ximian.com>
17070
17071         * XplatUIX11.cs: Give a max idle time of one second, this matches
17072         MS and forces an Idle event every second when there are no other
17073         events in the queue.
17074
17075 2006-03-24  Mike Kestner  <mkestner@novell.com>
17076
17077         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
17078         * ListView.Item.cs: fix layout issues with null image lists and images
17079         smaller than checkbox size.
17080         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
17081         mode like MS does.  It's weird, but consistent.  ;-)
17082         Fixes #77890.
17083
17084 2006-03-24  Mike Kestner  <mkestner@novell.com>
17085
17086         * ListView.cs: Scroll wheel support for the item control.  Fixes
17087         #77839.
17088
17089 2006-03-23  Jackson Harper  <jackson@ximian.com>
17090
17091         * ScrollableControl.cs: Special case negative sized areas, not
17092         zero.
17093         * MonthCalendar.cs: Save the rect of the clicked date so we can
17094         use it for invalidation.
17095         - Try to cut down on the number of invalidates
17096         - Invalidate the rect the mouse is over and was over when moving
17097         the mouse, so we get the focus box following the cursor.
17098
17099 2006-03-23  Mike Kestner  <mkestner@novell.com>
17100
17101         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
17102         focus rectangle drawing. Fixes #77835.
17103
17104 2006-03-23  Mike Kestner  <mkestner@novell.com>
17105
17106         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
17107         the if and else if and reverting back to the original == check on the
17108         None conditional.
17109
17110 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17111
17112         * FontDialog.cs: Update the example panel if the selected index of
17113           the fontListBox changes.
17114
17115 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17116
17117         * FileDialog.cs: Make FileDialog remember which directory it was in
17118           last in the same execution.
17119
17120 2006-03-22  Mike Kestner  <mkestner@novell.com>
17121
17122         * FileDialog.cs: make the DropDownMenu on the toolbar display
17123         RadioChecks since they are mutually exclusive and that's what MS does.
17124
17125 2006-03-22  Mike Kestner  <mkestner@novell.com>
17126
17127         * Theme.cs: add Color param to CPDrawMenuGlyph.
17128         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
17129         checks and radio marks and arrows are visible on highlighted items.
17130         * ControlPaint.cs: update to use new Theme signature.
17131
17132 2006-03-22  Mike Kestner  <mkestner@novell.com>
17133
17134         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
17135         is active. Fixes #77870.
17136
17137 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17138
17139         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
17140           to be focused/selected after startup
17141
17142 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17143
17144         * ColorDialog.cs: 
17145           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
17146             CustomColors and ShowHelp properties
17147           - Some internal rewrites to get better results when using the
17148             ColorMatrix
17149
17150 2006-03-22  Mike Kestner  <mkestner@novell.com>
17151
17152         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
17153         HoverSelection.  Fixes #77836.
17154
17155 2006-03-22  Mike Kestner  <mkestner@novell.com>
17156
17157         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
17158         ToggleButtons.  (De)Sensitize the Back button around a stack count of
17159         1, not 0.  Update ButtonSize based on a pixel count of the win32
17160         control.  Adjust the toolbar size/location for new button size.
17161
17162 2006-03-22  Jackson Harper  <jackson@ximian.com>
17163
17164         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
17165         true.
17166         * ScrollBar.cs: When doing increments and decrements we need to
17167         set the Value property so that ValueChanged gets raised. A
17168         possible optimization here would be to make an internal SetValue
17169         that doesn't invalidate immediately.
17170         * ToolTip.cs: Tooltips get added to their container (when
17171         supplied) so they get disposed when the container is disposed.
17172         - Don't create tooltips for String.Empty. This prevents all these
17173         little 2-3 pixel windows from showing up when running nunit-gui
17174         and driving me mad.
17175         * Form.cs: Don't set topmost when setting the owner if the handles
17176         haven't been created yet.  The topmost set will happen when the
17177         handles are created.
17178
17179 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
17180
17181         * XplatUIX11.cs:
17182           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
17183           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
17184             visible (to allow them to recalculate their sizes)
17185
17186 2006-03-21  Mike Kestner  <mkestner@novell.com>
17187
17188         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
17189         methods. Removed a ton of redundant code.  Still not really happy with
17190         the border rendering, but I think that's mainly because of the
17191         ControlDarkDark being black instead of a dark grey. Depending on how 
17192         close we want to be, we might want to revisit those color choices.
17193         Among the new features added during the refactor were DropDownArrow
17194         pressed rendering, Disabled image rendering.  Proper flat appearance
17195         boundary rendering.  Removed the Divider and Wrapping dividers since I
17196         can't figure out any combination of themes and conditions to make the
17197         MS control draw a horizontal line on a toolbar despite what the
17198         Divider property docs indicate.
17199         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
17200         conditions and incorrect layout.  Updated to coding standard.
17201         * ToolBarButton.cs: refactored layout and positioning code from
17202         ToolBar to here.  Invalidate wherever possible instead of forcing
17203         redraws of the whole toolbar. 
17204         (Known remaining issues: explicit ButtonSize smaller than provided
17205         images.)
17206
17207 2006-03-21  Mike Kestner  <mkestner@novell.com>
17208
17209         * ContextMenu.cs (Show): use the position parameter instead of just
17210         showing at the MousePosition.
17211
17212 2006-03-21  Jackson Harper  <jackson@ximian.com>
17213
17214         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
17215         control handle this.
17216         * TreeNodeCollection.cs: If we are clearing the root node we need
17217         to reset top_node so calcs can still happen.
17218         * ThemeWin32Classic.cs: This is a Flags so we need to check
17219         properly.
17220         
17221 2006-03-21  Jackson Harper  <jackson@ximian.com>
17222
17223         * DataGrid.cs: Create columns when the binding context has been
17224         changed.
17225         * X11Structs.cs: Keysyms are uints.
17226         - Add size to fix build.
17227
17228 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
17229
17230         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17231           XplatUIOSX.cs: 
17232           - Added ResetMouseHover method to allow controls to retrigger
17233             hovering if they need it more than once
17234           - Implemented MouseHoverTime and MouseHoverSize properties
17235         * Timer.cs: Start() must reset the interval
17236         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
17237           properties
17238
17239 2006-03-21  Jackson Harper  <jackson@ximian.com>
17240
17241         * X11Keyboard.cs: improved layout detection. Move the nonchar
17242         tables into this file.
17243         * KeyboardLayouts.cs: Move the tables into resource files.
17244
17245 2006-03-21  Mike Kestner  <mkestner@novell.com>
17246
17247         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
17248
17249 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
17250
17251         * Mime.cs: Various speed optimizations. Looking up mime types
17252           is now 2 times faster than before
17253
17254 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
17255
17256         * CreateParams.cs: Added internal menu field
17257         * Control.cs: 
17258           - Switched call order for UpdateBounds; now we always call
17259             the one that also takes ClientSize, and we're calculating the 
17260             client size via driver method in the others. The previous
17261             method of tracking client size by difference wasn't working
17262             for forms where even the starting client size wouldn't match
17263             the overall form size (due to borders) (Part of fix for #77729)
17264           - CreateParams(): Do not use parent.Handle unless the handle is
17265             already created. Causes havoc with Nexxia and throws off our
17266             creation of controls
17267         * XplatUIX11.cs:
17268           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
17269           - Switched handling of ConfigureNotify over to new PerformNCCalc 
17270             method (consolidates code)
17271           - Changed RequestNCRecalc to use new PerformNCCalc method
17272           - Added calls to RequestNCRecalc when menus and borders are changed
17273             to allow app to set NC size. (Part of fix for #77729) This matches
17274             when MS send a WM_NCRECALC on Win32 windows.
17275           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
17276             (Part of fix for #77729). This matches what MS does, they also
17277             send that message when the form is made visible.
17278           - XException.GetMessage: Improved usability of X errors by including
17279             a translation of the window into Hwnd and Control class
17280           - Improved debug info for window creation, reparenting and destruction
17281           - Created helper method WindowIsMapped() [Currently not used]
17282         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
17283         * Form.cs:
17284           - CreateParams: Now setting our menu on the new internal menu field
17285           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
17286             avoid calculating the same property twice
17287         * Hwnd.cs:
17288           - Improved usability of ToString() for debugging purposes
17289           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
17290             determine the height of the menu, instead of just the font. This
17291             required to also create a graphics context and to keep a bmp 
17292             around (for performance reasons)
17293
17294 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
17295
17296         * MenuAPI.cs: Added OnMouseUp method
17297         * Form.cs:
17298           - Now remembering the requested client size, avoids size errors
17299           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
17300             instead of base if the menu is active. This is required due to
17301             control now capturing and releasing on down/up and it would
17302             prematurely release our menu capture
17303
17304 2006-03-17  Jackson Harper  <jackson@ximian.com>
17305
17306         * KeyboardLayouts.cs: Add the czech layouts.
17307
17308 2006-03-16  Jackson Harper  <jackson@ximian.com>
17309
17310         * Control.cs: Use the viewport space when sizing not the controls
17311         client size, so things like ScrollableControl that effect the
17312         viewport size (when scrollbars are added) are computed correctly.
17313         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
17314         of ManagerEntrys.
17315         - Handle creating BindingManagers for null data sources.
17316         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
17317         source, otherwise when rows are added they are added to the 'fake'
17318         datasource and we will crash when trying to set the position in
17319         those rows.
17320         - Use Implicit scrollbars on the datagrid so they arent
17321         selectable.
17322         
17323 2006-03-16  Jackson Harper  <jackson@ximian.com>
17324
17325         * Binding.cs:
17326         * InternalWindowManager.cs:
17327         * MdiWindowManager.cs:
17328         * X11Keyboard.cs: I really want Mike to love me again (fix
17329         compiler warnings).
17330
17331 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
17332
17333         * DataGrid.cs:
17334           - OnMouseDown: Switch to editing mode when clicking on the cell
17335                          even if we're clicking on the cell that's currently 
17336                          selected
17337           - ProcessGridKey: Left/Right now wrap like MS.Net does
17338           - ProcessGridKey: Tab now knows to add a new row when tab is
17339                             pressed in the cell of the last column of the 
17340                             last row
17341           - ProcessGridKey: Enter now adds another row  if pressed in the last
17342                             row and selectes the new row, same column cell
17343           - ProcessGridKey: Home/End navigate columns, not rows, like 
17344                             originally implemented
17345           - Broke ProcessKeyPreview code out into an extra Internal method
17346             so it can be called from the edit code
17347         * DataGridTextBox.cs (ProcessKeyMessage):
17348           - Switched to accept Tab keypresses
17349           - Added F2 handling to allow jumping to the end of the edited cell
17350           - Added logic to allow moving caret left/right inside edited cell
17351             and making the edited cell jump when the caret hits cell borders
17352           - Tab and Enter are now passed to the datagrid after being handled
17353         * TextBoxBase.cs:
17354           - Removed capture code now that Control handles it
17355           - set_SelectionStart now ensures caret is visible
17356
17357 2006-03-16  Jackson Harper  <jackson@ximian.com>
17358
17359         * TrackBar.cs: Debackwards the increment/decrement for handling
17360         mouse clicks on the bar with vertical trackbars.
17361         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
17362         bottom to match MS.
17363
17364 2006-03-16  Mike Kestner  <mkestner@novell.com>
17365
17366         * ListView.cs: make shift/ctrl keyboard and mouse selection 
17367         consistent with the MS control. Fix a bug in
17368         SelectedListViewItemCollection.Clear that was pissing me off for the
17369         better part of a day because the collection was being altered
17370         underneath us as we walked the list.
17371
17372 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
17373
17374         * Control.cs: Not sure how we could miss this so long, but it seems
17375           that MS.Net has Capture set all the way from before calling 
17376           OnMouseDown through sending the mouse events until after
17377           OnMouseUp. This will fix DataGrid's selection being set to end
17378           at the location of the MouseUp.
17379
17380 2006-03-15  Jackson Harper  <jackson@ximian.com>
17381
17382         * BindingContext.cs: Check the binding after its added so that it
17383           can initialize the binding managers and hookup to events.
17384         * Binding.cs: Data members seem to sometimes include rows/cols in
17385           the format Row.Column we now take this into account.
17386           - Hookup to the position changed event so we can update the
17387           control when the position has changed in the data set.
17388         * CurrencyManager.cs: Take into account the row/col naming
17389           convention when creating dataset tables.
17390         * BindingContext.cs: Using a newer better way of storing
17391           datasource/datamember pairs.  Hopefully this better matches MS for
17392           looking up binding managers.
17393
17394
17395 2006-03-15  Jackson Harper  <jackson@ximian.com>
17396
17397         * BindingContext.cs: The currency manager needs the data member
17398         name, if the member is a data set we use the name to find the
17399         correct table.
17400         * CurrencyManager.cs: When creating the list prefer an IList over
17401         an IListSource.
17402         - Attempt to create a DataTable from a DataSet (TODO: might need
17403         some better error checking here, although MS doesn't seem to have much)
17404         - If we have a DataTable create a view and use it as our list.
17405
17406 2006-03-15  Mike Kestner  <mkestner@novell.com>
17407
17408         * ListView.cs: keep a matrix of the icon mode layout to facilitate
17409         keyboard navigation. Support Up/Down/Left/Right selection correctly
17410         for all 4 View modes.
17411         * ListViewItem.cs: add internal row/col fields for icon layouts.
17412
17413 2006-03-15  Jackson Harper  <jackson@ximian.com>
17414
17415         * TabControl.cs: Redraw the tabs when we resize so their newly
17416         calculated sizes are drawn on screen.
17417         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
17418         composite characters.
17419         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
17420         - filter events so that composite characters can be created
17421         patches by peter
17422         * X11Structs.cs: Add XIMProperties enum.
17423
17424 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17425
17426         * Control.cs (BringToFront, SendToBack): Don't use window or handle
17427           unless it's created
17428
17429 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17430
17431         * Control.cs (PerformLayout): We don't need to consider visiblity
17432           for anchoring, only for docking. This fixes 'whacky' alignment
17433           in listbox and other controls that use implicit scrollbars after
17434           the previous PerformLayout patch
17435         * ListBox.cs: Switched to use implicit scrollbars
17436           
17437 2006-03-14  Mike Kestner  <mkestner@novell.com>
17438
17439         * ToolBar.cs: 
17440         * VScrollBar.cs:
17441         - chain up the "new event" overrides to base and use
17442         OnEvent to raise them.  Part of fix for bug #76509.
17443
17444 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
17445
17446         * FileDialog.cs: Do not select an item in the parent directory
17447           on backspace
17448
17449 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17450
17451         * Control.cs (PerformLayout): It would seem that we considered
17452           invisible windows for our layout. Not quite the right thing
17453           to do. Now we don't any longer, thereby fixing bug #76889.
17454
17455 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17456
17457         * Control.cs (CanFocus): I goofed. A control can have focus 
17458           even though it's not selectable. Made it match MS docs.
17459
17460 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17461
17462         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
17463           center by default (fixes #76895)
17464         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
17465           all uses of Border3DSides.All with the explicit ORd together
17466           Left|Right|Top|Bottom because I assume that nobody was aware 
17467           that All also implies a center fill. Most places I checked had
17468           a fill right above.
17469         * ProgressBarStyle.cs: Added
17470
17471 2006-03-13  Mike Kestner  <mkestner@novell.com>
17472
17473         * ListView.cs: fix breakage in drag shadow header positioning 
17474         from Peter's csc compilation fix.
17475
17476 2006-03-13  Mike Kestner  <mkestner@novell.com>
17477
17478         * ListView.cs: fix NRE produced by backspacing twice in a focused
17479         FileDialog.
17480
17481 2006-03-13  Mike Kestner  <mkestner@novell.com>
17482
17483         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
17484
17485 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17486
17487         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
17488           be changed
17489         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
17490           the allowed size before making programmatic size changes
17491
17492 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
17493
17494         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
17495           set, metacity is broken and will still use the emty sizes in 
17496           the struct. (Fix for #77089)
17497
17498 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17499
17500         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
17501           WindowExStyles and marked both enums as Flags
17502         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
17503           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
17504           to match WindowStyles split
17505         * XplatUIX11.cs:
17506           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
17507           - Updated to match WindowStyles split
17508         * XplatUIWin32.cs:
17509           - Fixed FosterParent creation, was using ExStyle on the Style field
17510             (This should help with Popup focus issues)
17511           - Updated to match WindowStyles split
17512
17513 2006-03-13  Jackson Harper  <jackson@ximian.com>
17514
17515         * MdiWindowManager.cs: Use the system menu height. Fixes some
17516         strange sizing issues.
17517
17518 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17519
17520         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
17521         * TextBoxBase.cs:
17522           - Scroll to caret after inserting text (#77672)
17523           - Make scroll range one pixel higher, fixes off-by-one error (and
17524             makes underlines visible on the last line)
17525
17526 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
17527
17528         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
17529           the keyboard state from being stuck with keys in 'pressed' state when
17530           focus is switched away via keyboard
17531         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
17532           reset the keyboard if no X11 KeyUp events are expected to come
17533         * X11Structs.cs: Switched type of Visible to bool to match driver
17534
17535 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17536
17537         * TextControl.cs:
17538           - Switched caret to be just 1 pixel wide, matches MS and looks less
17539             clunky
17540           - Moved caret display 1 pixel down from the top of the control
17541             to improve view
17542           - InsertCharAtCharet: Update the selection start if moving the caret
17543             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
17544           - No longer always creating the caret when the caret methods are
17545             called. Only the actual ShowCaret/HideCaret will do that now
17546           - Only setting caret visible if the owner control has focus
17547           - UpdateView: Added invalidation-shortcut logic for center and right 
17548             aligned text. Previously we'd update all according to the left
17549             logic which caused drawing errors. Also fixed height of invalidated
17550             areas, now properly invalidating the whole area (was off-by-one)
17551           - owner_HandleCreated: Always generate the document when the
17552             handle is created; this ensures that 
17553         * TextBoxBase.cs:
17554           - Fixed situation where caret would disappear under the right
17555             window border, also improved scrolling behaviour on left-
17556             aligned textboxes
17557           - Fixed right-aligned textboxes to have a border to the
17558             right instead of the caret being under the right border
17559         * XplatUIX11.cs:
17560           - Switched from 'nested' to simple visible/not visible tracking 
17561             for caret (part of fix for #77671)
17562           - No longer passing through translated FocusIn/FocusOut messages
17563             since we were notifying too often and the wrong windows. Instead
17564             we just notify our focussed window of receiving or loosing focus
17565         * XplatUIWin32.cs: Switched from 'nested' show/hide 
17566           counting for caret to simple visible yes/no behaviour (part of 
17567           fix for #77671)
17568
17569 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17570
17571         * Mime.cs: Remove debug code...
17572
17573 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17574
17575         * MimeGenerated.cs: Removed
17576         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
17577           and subclasses) from /usr/(local/)share/mime and
17578           $HOME/.local/share/mime.
17579
17580 2006-03-10  Jackson Harper  <jackson@ximian.com>
17581
17582         * MdiWindowManager.cs: Recalc the NC area when a window is
17583         maximized/restored so that the menu area is drawn on forms that
17584         don't have a menu.
17585
17586 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17587
17588         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17589           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
17590           us to force a WM_NCCALCRESIZE message being sent. This is needed
17591           for MDI maximizing.
17592
17593 2006-03-10  Jackson Harper  <jackson@ximian.com>
17594
17595         * Form.cs: We need to use the ActiveMenu when calculating menu
17596         height.
17597         - Fix nullref when the window manager hasn't been created yet.
17598         * Control.cs: Fix nullref when we try to bring a control to the
17599         front that has no parent.
17600         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
17601         height.
17602         - Add a dummy item to the maximized menu so it always has the
17603         correct height. Otherwise when there are no menus we don't get our
17604         icon and buttons.
17605         
17606
17607 2006-03-10  Jackson Harper  <jackson@ximian.com>
17608
17609         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
17610         stuff.
17611         * Form.cs: Make the window_state internal so the window managers
17612         can track it.
17613         - When an MDI child is maximized let its window manager create the
17614         main menu (so it can add its icon).
17615         - Notify the window managers of state changes
17616         - Let the window manager paint its buttons and handle button
17617         clicks on the menu when it is maximized.
17618         * InternalWindowManager.cs: Move the prev_bounds into the mdi
17619         window manager, since tool windows don't use it, only mdi windows.
17620         - Tell the main form that we don't want it to handle NCPAINT
17621         itself to avoid extra painting.
17622         - Handle clicks on a maximized windows menu.
17623         - Handle window state changes
17624         - Handle minimize/maximize clicks correctly by setting the window state.
17625         * MdiWindowManager.cs: Add an icon menu that (the menu you get
17626         when clicking on the forms icon).
17627         - New method to create a forms maximized menu. This is its normal
17628         menu + an icon.
17629         - Handle window state changes.
17630         - Handle sizing of maximized windows.  Maximized windows are just
17631         drawn bigger then the parent visible area. All controls are still
17632         there, they are just outside the visible area (this matches windows).
17633         * MdiClient.cs: No scrollbars when a child window is maximized.
17634         - Let the children windows figure out how big they should be when
17635         sizing maximized windows.
17636         - Implement a version of ArrangeIconicWindows somewhat similar to
17637         Windows version.  There are some little differences, but I don't
17638         think any app will rely on the layout of minimized mdi windows.
17639
17640 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17641
17642         * Padding.cs: Several fixes to allow compiling with csc 2.0
17643
17644 2006-03-09  Jackson Harper  <jackson@ximian.com>
17645
17646         * Menu.cs:
17647         * MenuItem.cs: Cheap hack so we can add items to the list without
17648         the events being raised.  This allows adding mdi items during
17649         drawing. TODO: Should probably find a better time to add the items.
17650
17651 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17652
17653         * ThemeWin32Classic.cs:
17654           - CheckBox_DrawText: Added logic to not wrap if not enough space
17655             is available (Fix for bug #77727)
17656           - RadioButton_DrawText: Added logic not to wrap if not enough
17657             space is available (Fix for bug #77727). Also removed some
17658             duplicate code, DrawString always drawing the regular text
17659             before hitting the if statement.
17660
17661 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
17662
17663         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
17664
17665 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17666
17667         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
17668         * ContainerControl.cs: Partial implementation of some 2.0 scaling
17669           methods. Moved the new 2.0 properties into alphabetical order with
17670           other properties and added MonoTODO tags
17671
17672 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17673
17674         * AutoScaleMode.cs: Added. Fix build.
17675
17676 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17677
17678         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17679           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
17680           and was requiring premature handle creation for calls from above
17681         * Form.cs, Control.cs: Removed handle arguments from calls to
17682           CalculateClientRect()
17683
17684 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17685
17686         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
17687           drag_column.column_rect is MarshalByRef and can't be used that way
17688
17689 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17690
17691         * AxHost.cs: Added deserialization constructor for 
17692           AxHost+State (fixes 77743)
17693
17694 2006-03-09  Mike Kestner  <mkestner@novell.com>
17695
17696         * ListView.cs: 
17697         - Added column drag reordering for details view.
17698         - fixed behavior when mouse is dragged off column and
17699         AllowColumnReorder is false.
17700         * ColumnHeader.cs: clone the format too in Clone.
17701         * Theme.cs: add DrawListViewHeaderDragDetails method.
17702         * ThemeWin32Classic.cs:
17703         - impl new method for drawing drag column shadows and targets.
17704         - support column offset for details mode in DrawListViewItem.
17705
17706 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17707
17708         * TextControl.cs: Reset the char_count when the document is cleared
17709           (Fixes bug reported on mono-winforms mailing list)
17710
17711 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17712
17713         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
17714           of calling base we simply process the key ourselves, since both
17715           DefWindowProc and the handled method would set m.Result. 
17716           (Fixes #77732)
17717
17718 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17719
17720         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
17721           method also moves the window; instead implemented a copy of
17722           Control.ScaleCore (Part of fix for #77456)
17723         * TextBoxBase.cs: 
17724           - Created new CreateGraphicsInternal method to allow providing
17725             a graphics context when no handle is created without triggering
17726             handle creation. (Part of fix for #77456)
17727           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17728         * TextControl.cs: 
17729           - Switched Constructor to require TextBoxBase instead of Control (to
17730             allow uncast access to CreateGraphicsInternal)
17731           - Safeguarded use of owner.Handle property. No longer accessing it
17732             unless the handle is already created.
17733           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17734           - Now triggering a recalc when owning control becomes visible
17735         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
17736           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
17737           premature handle creation (Part of fix for #77456)
17738         * Control.cs:
17739           - We now only destroy our double-buffering buffers when the
17740             control is resized or disposed, but not when visibility
17741             changes. (The code even re-created them twice every time)
17742           - Now requiring a redraw of the buffer on visibility changes
17743             (fixes bug 77654 part 2)
17744           - Not passing OnParentVisibleChanged up unless the control
17745             is visible
17746           - CanFocus: Fixed to match MS documentation
17747           - Focus: Fixed to return actual focus state and to check if
17748             setting focus is legal before setting it
17749
17750 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
17751
17752         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
17753           when to draw focus rectangle by looking at parent focus and
17754           selected state instead. This fixes TabPages on Linux sometimes
17755           having none or multiple focus rectangles.
17756         * XplatUIX11.cs (SetFocus): 
17757           - Don't set the focus if the same window already has focus
17758           - Use SendMessage instead of PostMessage (like it's Win32
17759             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
17760             to match MS behaviour
17761         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
17762           are not selectable.
17763
17764 2006-03-07  Jackson Harper  <jackson@ximian.com>
17765
17766         * PictureBox.cs: Revert line I accidently committed last week.
17767
17768 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17769
17770         * Control.cs: 
17771           - Added new IsRecreating and ParentIsRecreating properties to
17772             allow testing if RecreateHandle has been called on ourselves
17773             or one of our parents
17774           - WndProc(WM_DESTROY): If our control handle is being recreated
17775             we immediately need to create the handle when receiving the
17776             destroy, that way our child windows find a valid parent handle
17777             when they themselves are being recreated upon WM_DESTROY receipt
17778             (fix for bug #77654 part 1)
17779         * XplatUIX11.cs:
17780           - DestroyWindow: WM_DESTROY must be sent to our own window before
17781             notifying any child windows. MS documents that child windows
17782             are still valid when WM_DESTROY is received. (Control now relies on
17783             this behaviour)
17784           - Added some fine-grain debug options
17785
17786 2006-03-06  Jackson Harper  <jackson@ximian.com>
17787
17788         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
17789         box and base calculations off this.
17790         * MdiChildContext.cs:
17791         * MdiWindowManager.cs: Don't need to ensure scrollbars here
17792         anymore.
17793         
17794 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
17795
17796         * Splitter.cs: In situations where the affected control is added
17797           to the parent's control list after the splitter, we would not
17798           populate affected. Now we try populating it on mousedown, if
17799           it's not already set, and force it to be re-set whenever our
17800           parent changes.
17801
17802 2006-03-03  Matt Hargett  <matt@use.net>
17803
17804         * Control.cs: implement Control.Padding
17805         * Padding.cs: -Padding.All returns -1 when constructing with the
17806         implicit default ctor
17807         -Padding.ToString() matches MS.NET
17808         * ContainerControl.cs: implement
17809         ContainerControl.AutoScaleDimensions
17810         * ListControl.cs: implement ListControl.FormattingEnabled
17811         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
17812         * ButtonBase.cs:
17813         * TabPage.cs: Implement UseVisualStyleBackColor.
17814         * PictureBox.cs: Implement PictureBox.InitialImage.
17815
17816 2006-03-03  Mike Kestner  <mkestner@novell.com>
17817
17818         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
17819         event declarations to proxy to base event.
17820         * ListViewItem.cs: update to use ItemControl.
17821         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
17822         * ThemeWin32Classic.cs: update to new ListView theme API and fix
17823         column header label rendering for 0 width columns.
17824
17825 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
17826
17827         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
17828           that causes the control to be created. Fixes #77476.
17829
17830 2006-03-02  Jackson Harper  <jackson@ximian.com>
17831
17832         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
17833         expose_pending.
17834
17835 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
17836
17837         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
17838           passed in for the EventArgs (fixes #77690)
17839
17840 2006-03-01  Jackson Harper  <jackson@ximian.com>
17841
17842         * ScrollBar.cs: Refresh afterbeing resized.
17843
17844 2006-02-28  Mike Kestner  <mkestner@novell.com>
17845
17846         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
17847         Clean up a tracker compile warning.
17848         * MenuItem.cs: add internal PerformPopup method.
17849         [Fixes #77457]
17850
17851 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17852
17853         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
17854           implicit expose) when the text is set to null
17855
17856 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
17857
17858         * RichTextBox.cs (FlushText): When newline is true, we always
17859           need to split the line, even if no text is on it and we may
17860           never eat newlines. (Fixes #77669)
17861
17862 2006-02-28  Mike Kestner  <mkestner@novell.com>
17863
17864         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
17865         and set Selected instead.
17866         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
17867         collections.
17868
17869 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17870
17871         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
17872
17873 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
17874
17875         * FontDialog.cs:
17876           - Got rid of the panel. All controls are now directly added to
17877             the dialog form
17878           - It is now possible to set a font with the Font property
17879           - MinSize and MaxSize property do now what they should
17880           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
17881           - Searching and selecting a font with the font textbox works now,
17882             the same applies to the style and size textbox
17883           - Draw the correct 3D border in the example panel
17884           - Fixed a little mem leak (unused fonts didn't get disposed)
17885           - Many other internal updates/rewrites...
17886           - Fix typo
17887
17888 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17889
17890         * TextControl.cs: 
17891           - InsertRTFFromStream: Added 'number of characters inserted' argument
17892           - set_SelectedRTF: Now using the number of characters to calculate
17893             the new location for the selection and cursor (x/y cannot be used
17894             due to potentially already wrapped text)
17895
17896 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
17897
17898         * TextControl.cs: Added property and implemented means to allow 
17899           disabling recalculation of a document (can be used to speed up
17900           multiple inserts and is needed to make RTF inserts predictable, see
17901           bug #77659)
17902         * RichTextBox.cs: Using the new NoRecalc property of Document to
17903           keep x/y insert locations predictable. Also makes it faster inserting
17904           large chunks of RTF
17905
17906 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17907
17908         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
17909           it's easier for a child control to handle the other messages without
17910           having to duplicate the special functionality
17911         * TextBoxBase.cs
17912           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
17913             code to handle processing the key ourselves, in order to get 
17914             access to the result of KeyEventArgs.Handled. We now only call 
17915             ProcessKey if they key hasn't been handled already. Fixes #77526.
17916           - set_Text: If null or empty string is given, just clear the 
17917             document. Fixes part of #77526
17918
17919 2006-02-27  Jackson Harper  <jackson@ximian.com>
17920
17921         * SizeGrip.cs: Paint the background color before painting the grip
17922         so things look right.
17923         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
17924
17925 2006-02-27  Mike Kestner  <mkestner@novell.com>
17926
17927         * ListView.cs:
17928           - Restructure layout and invalidation model to remove a ton of
17929           flicker from the control and speed up performance in general.
17930           - Add manual column resize, flickers like crazy, but I already have
17931           some ideas on how I'll fix that. (#76822)
17932           - Merge the three Icon-based views into a single layout method.
17933           - Move item selection interaction logic from the item since 
17934           interaction with the collections is more appropriate to the view.
17935           - Deselection on non-item clicks.
17936         * ListViewItem.cs:
17937           - Encapsulate most of the layout. Add some internal props to trigger
17938           layout.  Move to a model where Items invalidate themselves instead
17939           of just invalidating the whole control every time something changes.
17940           - Invalidate on Text/Caption changes.
17941           - switch to an offset based layout model to avoid having to absolute
17942           position every element on item moves.
17943           - correct checkbox layout to conform to MS layout.
17944         * ThemeWin32Classic.cs:
17945           - refactor some column header drawing code.
17946           - fix string justification for column headers (#76821)
17947           - make SmallIcon labels top justified for compat with MS impl.
17948         * ThemeClearlooks.cs:
17949           - adjust to new ListViewItem internal checkbox bounds api.
17950
17951 2006-02-27  Jackson Harper  <jackson@ximian.com>
17952
17953         * Control.cs:  Change where implicit controls fall in the zorder.
17954         They are now on top of all children.
17955         - Synced AddImplicit code with Add
17956         - Removed unused enumerator.
17957         * SizeGrip.cs: Remove the TODO as its been TODONE.
17958
17959 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
17960
17961         * TextControl.cs(Insert): Combine the last lines unless the insertion
17962           string ends with \n\n, otherwise we leave one line too many (Fixes
17963           something I noticed with the testapp for #77526; the bug itself was
17964           already fixed in the previous checkin)
17965
17966 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
17967
17968         * RichTextBox.cs:
17969           - SelectionColor and SelectionFont methods no longer set absolute
17970             styles. Instead, the keep font or color respectively (This 
17971             resolves a long-standing FIXME in the code)
17972           - When flushing RTF text, the insert code now considers text trailing
17973             behind the insertion point (Fixes the bug where when replacing
17974             the selected text via SelectedRTF the remainder of the line behind 
17975             the selection would stay on the first insertion line)
17976         * TextBoxBase.cs:
17977           - AppendText now updates the selection points after inserting text
17978           - AppendText now ensures that the last tag (sometimes 0-length) of
17979             the document is used for the style information (Fixes part of 
17980             bug #77220)
17981         * TextControl.cs:
17982           - Created new FontDefiniton class to allow describing partial style
17983             changes
17984           - StreamLine() now takes a lines argument, to allow it to decide
17985             whether an encountered zero-length tag is the last in the document
17986             (which must be kept to not loose the font/color contained in it,
17987             for later appends)
17988           - Created Combine() and Split() methods for Marker structs, to 
17989             support marker updates due to reformatted documents (soft line
17990             wraps)
17991           - Implemented Document.CaretTag setter
17992           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
17993             of the last line (Not the cause, but also exposed by bug #77220)
17994           - Added LineTag argument to InsertString method, to allow callers
17995             to force a certain tag to be used (required to force use of the
17996             trailing zero-length tag of a document)
17997           - Now updating markers in Combine(), to avoid stale tag markers
17998           - Added some method descriptions to aid maintenance
17999           - Implemented new FormatText concept, allowing additive/subtractive
18000             formatting by only specifying the components that are to be 
18001             changed. This was needed for resolving the RTB.SelectedColor/
18002             RTB.SelectedFont fixmes
18003           - Added Break() support method to allow breaking up linetags (used
18004             for partial formatting)
18005           - Added GenerateTextFormat() method. It is used for partial 
18006             formatting and allows to generate a full font/color from given
18007             attributes and an existing tag.
18008
18009 2006-02-26  Jackson Harper  <jackson@ximian.com>
18010
18011         * XplatUIX11.cs:  Use the correct caption height.
18012         - Translate hittest coordinates to screen coords to match MS.
18013         * XplatUIWin32.cs: When we create MDI windows we need to reset
18014         some of the style flags, so we get a nice blank window, and can
18015         draw all the decorations ourselves.
18016         - Set a clipping rectangle on the non client paint event, the
18017         window manager drawing code needs one.
18018         * Form.cs: The window manager needs to know when the window state
18019         has been updated.
18020         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
18021         don't need to factor in border and title sizes in these
18022         methods. TODO: Remove the args and fix the call points.
18023         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
18024         properly.
18025         - Let the driver set the cursors.
18026         - Improve active window handling
18027         - Correct sizes for title bars and buttons.
18028         - Match MS drawing better
18029         * MdiWindowManager.cs: We don't need to handle border style
18030         updates specially anymore.
18031         - Check for scrollbars when windows are done moving
18032         - Handle Active properly.
18033         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
18034         correctly. I am spewing the exception though, so we don't hide the
18035         bugs.
18036         
18037 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
18038
18039         * DataGridViewRowPostPaintEventArgs.cs,
18040           DataGridViewCellPaintingEventArgs.cs,
18041           DataGridViewRowCollection.cs,
18042           DataGridViewRowPrePaintEventArgs.cs,
18043           DataGridViewCell.cs: Clear a few warnings and implement a few
18044           exceptions that should be thrown.
18045
18046 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18047
18048         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
18049           'inheriting' our parent's (non-default) cursor. (Part of
18050            the fix for #77479)
18051
18052 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
18053
18054         * XplatUIX11.cs: Fixed cast to make csc happy
18055
18056 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18057
18058         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
18059           it's for the client area (part of fix for #77479 and needed
18060           for MDI window cursor handling)
18061         * XplatUIX11.cs
18062           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
18063             the appropriate default cursors and also passing the message
18064             up the parent chain 
18065           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
18066             for non-client areas
18067
18068 2006-02-15  Jackson Harper  <jackson@ximian.com>
18069
18070         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
18071         is a real MDI window
18072
18073 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
18074
18075         * X11DesktopColors.cs: Instead of checking the desktop session
18076           string for "KDE" check if it starts with "KDE"
18077
18078 2006-02-10  Jackson Harper  <jackson@ximian.com>
18079
18080         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
18081         systems).
18082
18083 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18084
18085         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
18086           errors
18087         * ColorDialog.cs:
18088           - Got rid of the panel. All controls are now directly added to
18089             the dialog form
18090           - Changed to mono coding style
18091
18092 2006-02-10  Jackson Harper  <jackson@ximian.com>
18093
18094         * InternalWindowManager.cs: We don't need the set visibility to
18095         false hack anymore now that peter has written beautiful shutdown
18096         code.
18097
18098 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
18099
18100         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
18101           where already explicitly destroyed
18102
18103 2006-02-10  Jackson Harper  <jackson@ximian.com>
18104
18105         * MdiClient.cs: Handle the case where windows are too high or to
18106         the left and we need scrollbars.
18107
18108 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18109
18110         * MimeIcon.cs: Added some icons
18111         * FileDialog.cs:
18112           - Fixed bug #77477
18113           - Got rid of the panel. All controls are now directly added to
18114             the dialog form
18115           - Changed to mono coding style
18116           - On Linux "My Computer" and "My Network" will now show some
18117             more usefull information. A new class, MasterMount, gathers
18118             this information from /proc/mount. Updated MWFFileView to make
18119             use of this information
18120           - Fixed a bug that caused FileDialog to crash when
18121             ".recently_used" file had a zero size
18122           - FilterIndex does now what it should
18123           - Some Refactoring
18124         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
18125             FileDialog changes
18126
18127 2006-02-09  Jackson Harper  <jackson@ximian.com>
18128
18129         * ComboBox.cs: Don't touch if null.
18130
18131 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
18132
18133         * Cursor.cs: 64bit safeness fix
18134         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
18135
18136 2006-02-09  Jackson Harper  <jackson@ximian.com>
18137
18138         * Form.cs: If a form is made into an MDI form update the styles so
18139         all the props can get set correctly.
18140         - Kill the mdi_container when we dont need it anymore.
18141         * InternalWindowManager.cs: Add missing NOT
18142
18143 2006-02-08  Jackson Harper  <jackson@ximian.com>
18144
18145         * InternalWindowManager.cs: Respek clipping when drawing MDi
18146         decorations.
18147
18148 2006-02-08  Jackson Harper  <jackson@ximian.com>
18149
18150         * Hwnd.cs: Add bits to track non client expose events.
18151         * XplatUIX11.cs: Track non client expose events on the hwnd. This
18152         gives us a proper invalid rect and will allow for some nice
18153         optimizations with NC client drawing
18154         - MDI windows are children windows, so move their style handling
18155         into the child window block.
18156         * InternalWindowManager.cs: Remove a state reset that was
18157         getting invoked at the wrong time. Fixes managed windows getting
18158         into a 'stuck' captured state.
18159
18160 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
18161
18162         * TextControl.cs (Document.ctor): Now initializing 
18163           selection_anchor. Fixes #77493
18164
18165 2006-02-07  Jackson Harper  <jackson@ximian.com>
18166
18167         * TrackBar.cs: The increment/decrements were backwards.
18168
18169 2006-02-07  Mike Kestner  <mkestner@novell.com>
18170
18171         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
18172         to the instance itself.
18173
18174 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
18175
18176         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
18177           on ulongs and pointers, the size differs between 32bit and 64bit
18178           systems. 
18179
18180 2006-02-07  Mike Kestner  <mkestner@novell.com>
18181
18182         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
18183         for 64 bit platforms to work around a metacity bug. 
18184
18185 2006-02-07  Jackson Harper  <jackson@ximian.com>
18186
18187         * TrackBar.cs: Process the input keys we need, and hookup to
18188         KeyDown instead of using WndProc, so we get key messages.
18189
18190 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
18191
18192         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
18193           machine we're on. 
18194         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
18195           we need to translate the XdndVersion atoms array before sending it
18196
18197 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
18198
18199         * XplatUIX11.cs: 
18200           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
18201             number of bits for the property, not the number of bytes. The
18202             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
18203             but would not crash since it specified 8 bits instead of 4 bits)
18204           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
18205             defined as XID -> long in the C headers)
18206           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
18207             references since those are now IntPtr to begin with
18208           - Switched all Atom.XXX 'int' casts to IntPtr casts
18209           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
18210           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
18211           - Added XChangeActivePointerGrab DllImport (for X11DnD)
18212         * X11Structs.cs:
18213           - Changed 'int' type for Atoms in XEvent structures to IntPtr
18214           - Changed atom in HoverStruct to be IntPtr
18215         * X11DnD.cs:
18216           - Removed local DllImports, switched code to use those from XplatUIX11
18217           - Removed/fixed casts related to the switch of Atom to be a IntPtr
18218
18219 2006-02-06  Mike Kestner  <mkestner@novell.com>
18220
18221         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
18222         method signatures in the import region.  There may still be some
18223         lingering struct marshaling issues, as I didn't drill down into those.
18224         Yet.
18225
18226 2006-02-06  Jackson Harper  <jackson@ximian.com>
18227
18228         * ComboBox.cs: Dont manually set the top_item, this is computed
18229         when the scrollbar position is set.
18230
18231 2006-02-06  Mike Kestner  <mkestner@novell.com>
18232
18233         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
18234         startup crashes on amd64.  There's other fixes needed.  All pinvoke
18235         usage of Atom needs to be mapped to IntPtr for example.  And there are
18236         likely other int/long issues to be addressed.
18237
18238 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
18239
18240         * FileDialog.cs: One more...
18241
18242 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18243
18244         * FileDialog.cs: Next try
18245
18246 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18247
18248         * FileDialog.cs: First part of fix for #77464
18249
18250 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18251
18252         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
18253           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
18254           AcceptButton border drawing.
18255
18256 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
18257
18258         * Form.cs: Moved positioning of form after auto scaling is applied,
18259           otherwise it would possibly use wrong form size.
18260
18261 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
18262
18263         * Control.cs (RecreateHandle): No need to re-create any child
18264           controls, the child windows will get destroyed automatically by
18265           the windowing system or driver, and re-created when the handle
18266           is being accessed the first time. Fixes #77456
18267         * Form.cs: No longer setting the form to closing if the handle is 
18268           being recreated. This seems like the right thing to do, don't
18269           have a bug or testcase for this, though.
18270
18271 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18272
18273         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
18274           controls to avoid unwanted side effects
18275
18276 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
18277
18278         * Control.cs: 
18279           - ScaleCore needs to scale the bounds, not the ClientSize of the 
18280             control. Fixes #77416.
18281           - DefaultSize is 0,0 for control
18282         * TextBoxBase.cs: 
18283           - DefaultSize is 100, 20
18284           - SetBoundsCore: Now enforcing the height, no matter if the provided
18285             height is more or less than the preferred one, as long as AutoSize
18286             is on
18287         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
18288
18289 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18290
18291         * Control.cs:
18292           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
18293             call unless both performLayout is true *and* we have a pending
18294             layout change
18295           - ResumeLayout: MS does not completely nest Suspend and Resume,
18296             they bottom out at 0, fixed our code to match that.
18297           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
18298             SetBoundsCore, we were updating even when we shouldn't. This fixes
18299             swf-anchors mis-anchoring when resizing the app fast and lots.
18300           - UpdateDistances: Now only setting the left and top distance if 
18301             we have a parent and are not suspended, this is based on
18302             a suggestion by Don Edvaldson in bug #77355.
18303           - OnVisibleChanged: Fixed logic when to create the control. We may
18304             not create the control if we have no parent or if it's not visible;
18305             switched to using Visible property instead of is_visible field 
18306             since the property also considers parent states. This fixes a bug
18307             when starting Paint.Net
18308
18309 2006-02-02  Jackson Harper  <jackson@ximian.com>
18310
18311         * Form.cs: If the forms handle hasn't been created yet don't call
18312         into xplatui to make it top most, just set the topmost flag on the
18313         form in CreateParams
18314         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
18315
18316 2006-02-01  Jackson Harper  <jackson@ximian.com>
18317
18318         * ScrollableControl.cs: Refactored the Recalculate method a
18319         little, this wasn't handling all the variants of bottom and right
18320         bars needed to be added and added/removed based on their
18321         counterparts being added/removed (which changes the drawable
18322         size). Also we special case client widths and heights of 0 and
18323         don't add the scrollbar for those.
18324
18325 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
18326
18327         * XplatUIX11.cs: 
18328           - Added method to get AbsoluteGeometry(); currently unused, but might
18329             be used in the future, if we try again to figure out toplevel
18330             coordinates with some more crappy window managers
18331           - Added FrameExtents() method to retrieve the WM set decoration size
18332           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
18333             to deal with at least KDE, FVWM and metacity (Fixes #77092)
18334         * Hwnd.cs: 
18335           - Added whacky_wm tracking var for metacity
18336           - Added logic to have default menu height if the actual menu height
18337             has not yet been calculated (part of fix for #77426)
18338         * Form.cs: Keep track whether client size has been set and re-set 
18339           it if a menu is added/removed afterwards (Fixes #77426)
18340
18341 2006-01-31  Jackson Harper  <jackson@ximian.com>
18342
18343         * Control.cs: When a new Site is set on the component attempt to
18344         pull the AmbientProperties from it.
18345
18346 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
18347
18348         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
18349           in the background of the owning form. Fixes #77332
18350
18351 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
18352
18353         * MimeIcon.cs: Fix for #77409
18354
18355 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
18356
18357         * XplatUIX11GTK.cs: Initial import
18358
18359 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
18360
18361         * FixedSizeTextBox: fixes class signature
18362
18363 2006-01-30  Jackson Harper  <jackson@ximian.com>
18364
18365         * FixedSizeTextBox.cs: New internal class that represents a
18366         textBox that will not be scaled.
18367         * TreeView.cs:
18368         * ComboBox.cs:
18369         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
18370         standard TextBox.
18371                 
18372 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
18373
18374         * XplatUIX11.cs: Retrieve default screen number instead of
18375           assuming 0. Attempted fix for #77318
18376
18377 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
18378
18379         * XplatUIWin32.cs: 
18380           - GetWindowPos: When a window is parented by FosterParent, use 
18381             the desktop instead of FosterParent as the base to get coordinates
18382           - CreateWindow: Don't make FosterParent the parent window for Popups
18383             if we don't want a taskbar entry, Popups automatically don't get one
18384         * Hwnd.cs: Need to call remove to actually remove the key from the
18385           hash table
18386
18387 2006-01-30  Mike Kestner  <mkestner@novell.com>
18388
18389         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
18390
18391 2006-01-30  Jackson Harper  <jackson@ximian.com>
18392
18393         * TreeView.cs:
18394         * TreeNode.cs: Raise events no matter how the treenode is
18395         checked. Patch by Don Edvalson.
18396
18397 2006-01-30  Jackson Harper  <jackson@ximian.com>
18398
18399         * TreeNode.cs: Signature fix.
18400
18401 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
18402
18403         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
18404
18405 2006-01-20  Mike Kestner  <mkestner@novell.com>
18406
18407         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
18408         event forwarding when menus are active.
18409         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
18410         Most of the patch is pdb's with a little rework.
18411
18412 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18413
18414         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
18415           Removed GetMenuDC and ReleaseMenuDC methods; replaced
18416           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
18417         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
18418         * InternalWindowManager.cs: Added use of PaintEventStart/End to
18419           handling of WM_NCPAINT message, now passing the PaintEventArgs to
18420           the PaintWindowDecorations method
18421         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
18422         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
18423         * MenuAPI.cs: Made tracker window invisible
18424         * XplatUIWin32.cs:
18425           - Removed GetMenuDC and ReleaseMenuDC methods
18426           - Implemented the client=false path for PaintEventStart and
18427             PaintEventEnd
18428
18429 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18430
18431         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
18432         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
18433           styles
18434         * Form.cs: 
18435           - MaximizeBox, MinimizeBox: Recreate the handle when setting
18436             the style
18437           - CreateParams: Reworked the styles to match MS look'n'feel,
18438             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
18439             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
18440
18441 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18442
18443         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
18444           window is not mapped, since otherwise every form that's being 
18445           created is considered minimized, which is wrong.
18446         * Form.cs: Catching the exception and returning our internal value
18447           instead
18448
18449 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18450
18451         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
18452           SetWindowMinMax() to have means to tell the driver about the minimum,
18453           maximum and maximized state window sizes. (Part of the fix for #76485)
18454         * Form.cs:
18455           - Implemented tracking of minimum and maximum window size, now calling
18456             new SetWindowMinMax() driver method to tell the driver (Part of the
18457             fix for #76485)
18458           - Finished handling of WM_GETMINMAXINFO method, now setting all values
18459             (Completes fix for #76485)
18460           - Calling new SetWindowMinMax driver method when the handle for a 
18461             form is created, to make sure the driver knows about it even if
18462             the values have been set before the window was created
18463           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
18464             to avoid messing up our anchoring calculations (partial fix
18465             for #77355)
18466         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
18467         * XplatUIX11.cs:
18468           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
18469           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
18470             (and presumably other freedesktop.org compliant WMs). Left the
18471             assumption unmapped=minimized, needed for SetVisible to work.
18472           - Now setting the window state when creating windows
18473           - Fixed SetVisible to consider/set the window state when mapping
18474             a Form. We cannot set the state before it's mapped, and we cannot
18475             use Form.WindowState once it's mapped (since it would ask the
18476             driver and get 'normal'. Therefore, we grab the state before
18477             mapping, map, and then set state.
18478           - Implmemented SetWindowMinMax method; Metacity does not seem to
18479             honor the ZoomHints, though.
18480         * XplatUIWin32.cs:
18481           - Removed MINMAXINFO (moved to XplatUIStructs)
18482           - Added SetWindowMinMax stub (on Win32 the only way to set that
18483             information is in response to the WM_GETMINMAXINFO message, which
18484             is handled in Form.cs)
18485           - Added logic to SetVisible to set the proper window state when a 
18486             form is made visible (fixes #75720)
18487
18488 2006-01-26  Jackson Harper  <jackson@ximian.com>
18489
18490         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
18491         same way we handle them with Invoke.
18492
18493 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
18494
18495         * Form.cs:
18496           - Added tracking of window state so CreateParams can return
18497             the appropriate style
18498           - Moved setting of WS_CAPTION style in CreateParams to allow
18499             styles without caption
18500         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
18501           control if the TextBox property is accessed. Fixes #77345
18502         * Control.cs:
18503           - get_Created: now uses is_disposed and is_created to determine
18504             return value (suggested by Jackson)
18505           - CreateHandle: No longer exits if the handle is being recreated
18506           - RecreateHandle: If the handle is not yet created call the 
18507             appropriate method to create either control or handle. If the
18508             control is already created CreateHandle will simply exit instead
18509             of just creating the handle
18510         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
18511           now SendMessage WM_DESTROY directly to the control when DestroyWindow
18512           is called.
18513         * XplatUIX11.cs: 
18514           - When DestroyWindow is called, instead of waiting for the 
18515             DestroyNotification from X11, we directly post it to the WndProc
18516             and immediately dispose the hwnd object.
18517             Same applies to DestroyChildWindows, and this obsoletes the
18518             expose_pending tracking. Contrary to Win32 behaviour we destroy our
18519             child windows before our own, to avoid X11 errors.
18520           - Removed the direct sending of WM_PAINT on UpdateWindow
18521         * XplatUIWin32.cs:
18522           - Reworked DoEvents and GetMessage to allow access to internal queue
18523             even when trying non-blocking access to the queue.  Fixes #77335. 
18524             Based on a patch suggestion by Don Edvalson. The new private
18525             GetMessage can now also be used as a backend for a PeekMessage
18526             frontend version.
18527         * XplatUI.cs: Improved debug output for CreateWindow
18528
18529 2006-01-25  Jackson Harper  <jackson@ximian.com>
18530
18531         * Help.cs: Allow param to be null. Patch by Don Edvalson.
18532
18533 2006-01-24  Jackson Harper  <jackson@ximian.com>
18534
18535         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
18536         when we have a MaxDropItems lower then the selected index.
18537
18538 2006-01-24  Jackson Harper  <jackson@ximian.com>
18539
18540         * Control.cs: Don't allow selection of non visible controls, allow
18541         selection of controls without parents.
18542
18543 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18544
18545         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
18546         * DataGridDrawingLogic.cs: Add editing row only when is necessary
18547
18548 2006-01-23  Jackson Harper  <jackson@ximian.com>
18549
18550         * UpDownBase.cs: Make the textbox handle all the selection and
18551         tabbing. This fixes tabing to updown controls.
18552
18553 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18554
18555         * TextBoxBase.cs: fixes exception thown the object was null
18556
18557 2006-01-23  Jackson Harper  <jackson@ximian.com>
18558
18559         * ButtonBase.cs: Just use the base CreateParams. They set
18560         visibility and enabled correctly.
18561         * ComboBox.cs:
18562         * TrackBar.cs:
18563         * MonthCalendar.cs: Lets let the base set as much of the
18564         createparams as possible so we don't have duplicate code all over
18565         the place.
18566
18567 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
18568
18569         * ThemeGtk.cs: Added TrackBar and some experimental code to
18570           get double buffering back
18571
18572 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
18573
18574         * DataGrid.cs: Allows row number set internally higher than the last
18575         when creating a new row. Restores the editing functionality.
18576
18577 2006-01-20  Mike Kestner  <mkestner@novell.com>
18578
18579         * MimeIcon.cs: delay Image creation until the icons are accessed
18580         instead of creating 190 scaled images on GnomeHandler startup.
18581
18582 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
18583
18584         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
18585           first call base before processing the event. Fixes #77279
18586
18587 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
18588
18589         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
18590           that the stride for the GDI bitmap would match the stride of
18591           a DIB or a Cursor.
18592
18593 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
18594
18595         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
18596
18597 2006-01-19  Jackson Harper  <jackson@ximian.com>
18598
18599         * ComboBox.cs: Hookup the text controls keydown event so we get
18600         those when the text control has the focus.
18601
18602 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18603
18604         * Label.cs: Now using the base events instead of defining new ones;
18605           this allows us to just call the base properties without having to
18606           duplicate all base property logic 
18607
18608 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18609
18610         * Label.cs: A label by default is not a tabstop (Fixes one of our
18611           failing nunit tests)
18612
18613 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18614
18615         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
18616         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
18617
18618 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18619
18620         * Cursor.cs: Reimplemented creating cursor bitmaps without using
18621           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
18622           This fixes #77218
18623         * XplatUIWin32.cs: 
18624           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
18625             constructor creates images that can't be saved. Part of the fix
18626             for #76103
18627           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
18628           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
18629             bug fix for handling window state in forms properly)
18630
18631 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18632
18633         * ThemeGtk.cs: Simplify ScrollBar drawing
18634
18635 2006-01-18  Jackson Harper  <jackson@ximian.com>
18636
18637         * Splitter.cs: Set the default dock style for the splitter control
18638         in the constructor.
18639
18640 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18641
18642         * ThemeGtk.cs: Corrected StateType and ShadowType for
18643           gtk_paint_box
18644
18645 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18646
18647         * Control.cs: Make use of Theme.DoubleBufferingSupported
18648         * ThemeGtk.cs:
18649           - Added drawing for flat style buttons
18650           - Added ScrollBar drawing
18651
18652 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18653
18654         * ThemeClearlooks.cs: Removed some unneeded code.
18655         * ThemeGtk.cs: First part of ThemeGtk enhancements.
18656
18657 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18658
18659         * LinkLabel.cs: We need to update the hover drawing when
18660           leaving the control as well.
18661
18662 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
18663
18664         * DataGrid.cs: Clicking on non empty areas in the columns
18665            area was giving an exception
18666
18667 2006-01-17  Jackson Harper  <jackson@ximian.com>
18668
18669         * ThemeWin32Classic.cs:
18670         * ListView.cs: Do not draw/clip the headers when the header style
18671         is None.
18672
18673 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18674
18675         * DataGrid.cs: Fixes 77260
18676         
18677 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18678
18679         * DataGrid.cs: Clicking on a column on a empty grid was giving
18680           an exception
18681
18682 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18683
18684         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
18685           or any keypress will crash the grid.
18686
18687 2006-01-17  Mike Kestner  <mkestner@novell.com>
18688
18689         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
18690         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
18691         invisible/previously-visible items.
18692         [Fixes #76909]
18693
18694 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
18695
18696         * ThemeClearlooks.cs:
18697         - Added CL_Draw_Button method; now other theme controls that are 
18698           not derived from button or do not have a button can draw buttons
18699           too
18700         - Updated ComboBox drawing
18701         - Beautified RadioButton drawing
18702         - Corrected drawing of bottom and left tabs
18703         - Beautified DateTimePicker and MonthCalendar
18704         - Added CPDrawButton and CPDrawRadioButton
18705
18706 2006-01-16  Jackson Harper  <jackson@ximian.com>
18707
18708         * ComboBox.cs: Set the initial value of the scrollbar to the
18709         current index. Reduce the numbers of refreshs and IndexOfs called.
18710
18711 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
18712
18713         * FileDialog.cs: When the file listview is focused hitting the
18714           backspace key moves the fileview to the parent directory
18715
18716 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18717
18718         * Form.cs: 
18719           - Added RecreateHandle call when changing taskbar visibility to 
18720             trigger reparenting in Win32 driver (Fixes #75719)
18721           - If a window has minimize or maximize buttons, it cannot have
18722             a help button
18723         * XplatUIWin32.cs:
18724           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
18725             the toplevel form with FosterParent (A toolwindow not on the
18726             taskbar) (Fixes #75719)
18727           - Made FosterParent a toolwindow
18728
18729 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18730
18731         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
18732
18733 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18734
18735         * ToolTip.cs: If SetToolTip is called from a control and the mouse
18736           is currently over that control, make sure that tooltip_window.Text
18737           gets updated
18738
18739 2006-01-13  Mike Kestner  <mkestner@novell.com>
18740
18741         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
18742
18743 2006-01-13  Jackson Harper  <jackson@ximian.com>
18744
18745         * TreeView.cs: On MS GetNodeAt never actually factors in the X
18746         value passed.  Also redraw the selected node when we recieve
18747         focus, so tabbing between trees works correctly.
18748
18749 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18750
18751         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
18752           ~/.gconf/%gconf-tree.xml, so use
18753           .gconf/desktop/gnome/interface/%gconf.xml
18754
18755 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18756
18757         * TextControl.cs: Draw text in gray if control is disabled
18758
18759 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18760
18761         * TreeView.cs: Draw the focus rectangle outside the highlight, to
18762           make sure it's always visible. Fixes #76680.
18763
18764 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18765
18766         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
18767
18768 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
18769
18770         * PageSetupDialog.cs: Added.
18771         * PrintDialog.cs: Attributes.
18772         * PrintPreviewControl.cs: Updates.
18773         * PrintPreviewDialog.cs: Updates.
18774         
18775 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18776
18777         * Control.cs: Undid my selection check fix, since it's not needed
18778         * TextBoxBase.cs:
18779           - Now considering the presence of hscroll/vscroll when sizing
18780             vscroll/hscroll respectively. Fixed bug #77077
18781           - Added Left/Up/Down/Right to IsInputKey list to prevent
18782             ContainerControl from stealing them. This fixes what I broke
18783             with my last checkin.
18784
18785 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
18786
18787         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
18788           I finally understand how the property can be set without a setter :-)
18789
18790 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18791
18792         * Application.cs:
18793           - Switched RunLoop to use static Message.Create to create a 
18794             Message object
18795           - Added PreProcessMessage call in runloop for keyboard events; this
18796             is part of the fix for #77219, I overlooked this originally in the
18797             MSDN doc for PreProcessMessage
18798         * Control.cs:
18799           - Removed call to PreProcessMessage from handling of keyboard 
18800             messages; it's supposed to be done in the message pump
18801           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
18802             per MSDN documentation.
18803           - IsInputChar: All chars are input chars by default; removed the 
18804             parent calling chain, MS does not document that
18805           - PreProcessMessage: If IsInputChar is true, we want to return false
18806             to allow dispatching of the message
18807           - When selecting the next control, now also check that we're not
18808             selecting ourselves again and therefore return a false positive.
18809         * TextBoxBase.cs:
18810           - Tried to match return values for IsInputKey and ProcessDialogKey
18811             to what MS returns; moved processing of our special keys outside
18812             ProcessDialogKey since MS does not seem to return true on those.
18813           - Moved code that previously was in ProcessDialogKey into new private
18814             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
18815           - Reworked handling of WM_CHAR to not have to duplicate code from
18816             Control.cs anymore, instead we simply call down to base.
18817            
18818 2006-01-12  Jackson Harper  <jackson@ximian.com>
18819
18820         * ComboBox.cs: We always need to refresh the text area when
18821         EndUpdate is called. Fixes the combobox in the file dialog.
18822         * Control.cs: Don't create the creator_thread until the controls
18823         handle is created.  Also in InvokeRequired we check if the
18824         creator_thread is null. This gives the effect of InvokeRequired
18825         returning true if the controls handle is not created yet, and
18826         matches MS.
18827
18828 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18829
18830         * XplatUI.cs:
18831           - Added StartLoop() driver method. This is used to allow drivers to
18832             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
18833             loop for a particular thread
18834           - Added EndLoop() driver method. This is called once the message
18835             pump for the thread is shut down
18836           - Added SupportsTransparency method to allow the driver to indicate
18837             opacity support for windows
18838         * Form.cs:
18839           - Removed TODO attribute, completed AllowTransparency property
18840           - Added documented logic to Opacity
18841         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
18842           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
18843           versions of CompatibleTextRendering
18844         * X11Structs.cs: Added opacity atom to our atom enumeration
18845         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
18846           of a form might be set before it's reparented by the WM, and we need
18847           the opacity value without calling up to Form)
18848         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
18849           SupportsTransparency() driver methods
18850         * Application.cs: Now calling StartLoop and EndLoop driver methods
18851         * XplatUIX11.cs:
18852           - Added opacity atom registration
18853           - Added StartLoop()/EndLoop() methods. They're empty right now but
18854             will need to get implemented when we switch to a per-thread queue
18855           - Implemented SupportsTransparency() method
18856           - Implemented SetWindowTransparency() method
18857           - Added support for setting the opacity value when a window is
18858             reparented (since the opacity needs to be set on the WM frame)
18859         * XplatUIOSX.cs, XplatUIWin32.cs:
18860           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
18861
18862 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18863
18864         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
18865
18866 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18867
18868         * FileDialog.cs: Added ToolTip for MWFFileView
18869         * MimeIcon.cs: Rewrote GnomeHandler.
18870           - Get currently used gnome icon theme from
18871             ($HOME)/.gconf/%gconf-tree.xml
18872           - Make use of inherited icon themes
18873           - Support SVG icon themes like Tango via librsvg
18874
18875 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18876
18877         Revert's Jackson's revert which broke 2.0 builds.   Fix both
18878         builds. 
18879         
18880         * Application.cs: Move the use_compatible_text_rendering outside
18881         the NET_2_0 define.  If we ever need to use the
18882         use_compatible_text_rendering on the individual controls they will
18883         access the variable from the common shared code paths.
18884
18885 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18886
18887         * XplatUI.cs:
18888           - Added more granular debug options
18889           - Added method to print both window text and id
18890           - Switched debug output to use new Window() debug method
18891           - Added IsEnabled() driver method
18892           - Added EnableWindow() driver method
18893         * Form.cs:
18894           - Removed end_modal; no longer needed, new loop handles termination
18895             via 'closing' variable
18896           - If form is modal, setting DialogResult will now initiate loop
18897             termination via 'closing' variable
18898           - Added support for is_enabled/WS_DISABLED to CreateParams
18899           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
18900             does all the work
18901           - Removed code that's now in RunLoop from ShowDialog()
18902           - Added various documented sanity checks to ShowDialog()
18903           - Added handling of WM_DESTROY message; we set 'closing' on getting
18904             the message to indicate the message pump to terminate
18905           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
18906             send by the Application.ExitThread method. (We send the message
18907             to destroy the window after all other events have been
18908             processed through the queue, instead of destroying the handle 
18909             directly)
18910           - Moved code from Close() method to WM_CLOSE handler; added logic
18911             to only send close-related events if the form is not displayed
18912             modal
18913         * Splitter.cs (..ctor): Fixed typo in resource name
18914         * Control.cs:
18915           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
18916             brush now
18917           - set_Cursor: Now only setting calling into XplatUI if the handle for
18918             the control is already created; this avoids implict handle creation
18919             or crashes if it's not created
18920           - set_Enabled: Now setting the enabled state via the new driver method
18921             instead of just tracking it
18922           - CreateParams: Added logic to set WS_DISABLED based on enabled state
18923           - CreateControl: Reordered event firing and method calls to more
18924             closely fire events in the order MS does. Now setting the
18925             enabled state in the driver when creating the control.
18926           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
18927             match MS order
18928         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
18929           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
18930         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
18931         * Hwnd.cs:
18932           - Added tracking of window enabled state (get_Enabled/set_Enabled)
18933           - Added EnabledHwnd property to easily allow a driver to find the
18934             handle of the first enabled window in the parent chain (this is
18935             used by drivers to pass up input events of disabled windows)
18936         * XplatUIDriver.cs: Added IsEnabled() method
18937         * Application.cs:
18938           - Removed crude and obsolete exiting tracking variable
18939           - Removed internal ModalRun(); replaced by RunLoop()
18940           - Implemented private CloseForms() method to allow closing all 
18941             windows owned by a particular (or all) threads
18942           - Exit() now properly closes all windows without forcing the message
18943             pump to quit
18944           - Removed obsolete InternalExit() method
18945           - Changed Run() methods to use new RunLoop() message pump
18946           - Implemented new RunLoop() method for both modal and non-modal forms
18947         * CommonDialog.cs:
18948           - get_CreateParams: Added setting of WS_DISABLED
18949           - Simplified ShowDialog(); now all the work is done in RunLoop(),
18950             invoked via Form.ShowDialog()
18951         * NativeWindow.cs: We don't remove the window from the collection when
18952           the handle is destroyed; there might still be messages for it in the
18953           queue (mainly the resulting WM_DESTROY); instead it will be removed
18954           when Control calls InvalidateHandle in the WM_DESTROY handler
18955         * XplatUIX11.cs:
18956           - CreateWindow: Added logic to handle the WS_DISABLED window style
18957           - EnableWindow: Implemented based on Hwnd.Enabled
18958           - GetMessage: Reset PostQuitState so the method can be called again
18959           - Implemented support for disabled windows (passing messages to the
18960             first enabled parent) in handling all input messages
18961           - Added optimizations for handling Expose events
18962           - Implemeted new driver method IsEnabled()
18963           - Now always resetting paint pending tracking vars when we start paint
18964           - Re-implemented UpdateWindow via just sending a WM_PAINT message
18965         * XplatUIOSX.cs: Added IsEnabled method stub
18966         * XplatUIWin32.cs: Implemented new IsEnabled() method
18967
18968 2006-01-11  Jackson Harper  <jackson@ximian.com>
18969
18970         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18971         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
18972         variables a little.
18973         * ColorDialog.cs: Clear out the old form before adding the new
18974         panel.  
18975
18976 2006-01-11  Jackson Harper  <jackson@ximian.com>
18977
18978         * X11Dnd.cs: Make sure to add all the text formats when adding
18979         strings to the data object.
18980         * TreeNodeCollection.cs: When adding to a sorted tree we need to
18981         do some redrawing too.  Also change the UpdateNode to an
18982         UpdateBelow so the newly added node gets painted.
18983         
18984 2006-01-11  Miguel de Icaza  <miguel@novell.com>
18985
18986         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18987         LinkLabel.cs, PropertyGrid.cs: Implement the
18988         UseCompatibleTextRendering property for 2.x
18989
18990         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
18991
18992 2006-01-11  Jackson Harper  <jackson@ximian.com>
18993
18994         * TreeView.cs: Use the property for setting the selected node so
18995         the correct events get raised.
18996         * TreeNode.cs: Update the tree when the fore/back colours of a
18997         node are set.
18998
18999 2006-01-10  Jackson Harper  <jackson@ximian.com>
19000
19001         * TreeView.cs: Allow setting SelectedNode to null.
19002
19003 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19004
19005         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
19006
19007 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19008
19009         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
19010
19011 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19012
19013         * PrintDialog.cs: Added attributes and set default property values.
19014
19015 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19016
19017         * PrintControllerWithStatusDialog.cs: 
19018         Added PrintControllerWithStatusDialog.
19019
19020 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19021
19022         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
19023         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
19024
19025 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19026
19027         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
19028
19029 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19030
19031         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
19032         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
19033
19034 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19035
19036         * MimeIcon.cs: Added internal class SVGUtil.
19037
19038 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19039
19040         * FileDialog.cs: Don't crash if there are two files with the
19041           same name but different locations.
19042
19043 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
19044
19045         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
19046         dates across multiple month grids. Used to not highlight entire 
19047         month, but does now.
19048         
19049 2006-01-06  Jackson Harper  <jackson@ximian.com>
19050
19051         * MonthCalendar.cs: Removed DoEvents call to prevent a running
19052         message loop. Change timer intervals to numbers that seem more
19053         natural.
19054
19055 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
19056
19057         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
19058           object for location info since screen object is now implemented.
19059
19060 2006-01-05  Jackson Harper  <jackson@ximian.com>
19061
19062         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
19063         * AsyncMethodResult.cs: We no longer use a WeakReference for the
19064         AsyncMethodResult, this is because we ALWAYS want the
19065         ManualResetEvent to get set.
19066         * Control.cs: When disposing use an async invoke to call shutdown
19067         code, so that thigns don't block on the finalizer thread.  Also
19068         check if we even have a message loop before trying to send
19069         messages, if we don't then don't bother sending messages.
19070         - No more weak references for async methods
19071         * XplatUIDriver.cs: No more weak references for async methods.
19072
19073 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19074
19075         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
19076           returns two FontFamily with the same name
19077
19078 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19079
19080         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
19081           drawing disabled text. Instead using the ColorGrayText color
19082
19083 2006-01-04  Jackson Harper  <jackson@ximian.com>
19084
19085         * TreeNode.cs: redraw the node when its image index is changed.
19086
19087 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19088
19089         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
19090           time I checked there are no others like it.
19091
19092 2006-01-04  Jackson Harper  <jackson@ximian.com>
19093
19094         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
19095         this gives the behavoir I was looking for.
19096         * Control.cs: Special case Invoking EventHandlers, this matches MS
19097         and fixes part of bug #76326.
19098
19099 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19100
19101         * ThemeClearlooks.cs, FileDialog.cs:
19102           - Reflect the latest Theme class changes
19103           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
19104             with DateTime
19105             
19106 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19107
19108         * Theme.cs: Cache UI resource images and resize them if needed
19109
19110 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19111
19112         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
19113           is called. This fixes the crash in Nexxia when setting the font
19114           attributes in the chat. [However, RTF needs a look-over to make sure
19115           that all SelectionXXX methods handle the special case that selection
19116           is empty and therefore the change must be applied to all text starting
19117           at the cursor/selection start]
19118
19119 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
19120
19121         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19122           XplatUIOSX.cs: Added SendMessage and PostMessage methods
19123         * X11Keyboard.cs: Switched to new way of calling PostMessage
19124
19125 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19126
19127         * Theme.cs: Added theme interface for images to allow the theme to
19128           control what images are used for things like FileDialog, MessageBox
19129           icons, etc.
19130         * MessageBox.cs: Now uses the new Theme icon/image interfaces
19131
19132 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
19133
19134         * FileDialog.cs:
19135           - Removed some dead code
19136           - Opening a recently used file does work now
19137           - Small UI enhancements
19138           - Refactoring
19139
19140 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19141
19142         * FileDialog.cs: Forgot too add __MonoCS__
19143
19144 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19145
19146         * FileDialog.cs: We are able to read recently used files now let's
19147           go on and write them.
19148
19149 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
19150
19151         * FileDialog.cs: Breathe some life into "last open"/"recently used"
19152           button
19153         * MimeIcon.cs: Do a check for the top level media type also
19154
19155 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19156
19157         * ThemeClearlooks.cs:
19158           - Added CPDrawStringDisabled
19159           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
19160             some chars if the text doesn't fit into text_rect
19161           - DrawListViewItem: If View = View.LargeIcon center the image;
19162             rewrote the drawing of ListViewItem.Text if View = 
19163             View.LargeIcon
19164
19165 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19166
19167         * MimeIcon.cs: Use default KDE icon theme if there is no
19168           "48x48" directory for the current icon theme, fixes #77114
19169         * Mime.cs: Disable not working and actually not used code. 
19170         * ThemeWin32Classic.cs:
19171           - Replace "new SolidBrush" in GetControlBackBrush and
19172             GetControlForeBrush with ResPool.GetSolidBrush
19173           - Changed DrawListViewItem from private to protected virtual
19174         * FileDialog.cs:
19175           - Added form.MaximizeBox = true
19176           - Don't throw an exception if there is a broken symbolic link
19177
19178 2005-12-23  Jackson Harper  <jackson@ximian.com>
19179
19180         * TabControl.cs: Give the panels focus, keyboard navigation is
19181         fixed so this works correctly now.
19182         - We need these key events also.
19183         * ToolBar.cs: Remove some of the poor mans double buffering.
19184         
19185 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
19186
19187         * ComboBox.cs: The internal TextBox now returns the focus.
19188
19189 2005-12-23  Jackson Harper  <jackson@ximian.com>
19190
19191         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
19192
19193 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19194
19195         * Control.cs: Removed debug code
19196         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
19197           implicit children
19198
19199 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
19200
19201         * Control.cs: When creating the control, update the Z-order after
19202           all it's children are created, too. (Fixes nexxia not showing
19203           picturebox bug)
19204
19205 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19206
19207         * Control.cs: Do not update the anchoring distances if layout is
19208           suspended, instead do it once layout is resumed
19209
19210 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
19211
19212         * Control.cs: 
19213           - After many hours of debugging, for both Jackson and
19214             myself, it turns out that it helps to set the parent of a control
19215             if you want to actually see it onscreen. In the spirit of that
19216             discovery, we're now setting the parent of the control and
19217             it's children when the control's handle is created. This fix
19218             will make Lutz Roeder's Reflector run happily. 
19219           - now just creating the handle instead of the whole control when
19220             getting a graphics context for the control.
19221
19222 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19223
19224         * ScrollableControl.cs: When calculating the canvas, don't consider
19225           the scrollbar widths. Instead, predict if horizontal scrollbar
19226           will affect canvas when deciding on vertical display and vice versa.
19227
19228 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19229
19230         * RichTextBox.cs: Set default RTF font for documents that don't
19231           have a font table (Fixes #77076)
19232
19233 2005-12-22  Jackson Harper  <jackson@ximian.com>
19234
19235         * TextBoxBase.cs: It's difficult to do, but you can have an empty
19236         clipboard. This prevents a NullRef in that case.
19237         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
19238         clipboard. PRIMARY is for the currently selected text only. (We
19239         should implement PRIMARY at some point.
19240
19241 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19242
19243         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
19244           a Unicode function with a structure that was defined in Ansi way.
19245           This fixes #76942.
19246
19247 2005-12-21  Jackson Harper  <jackson@ximian.com>
19248
19249         * StatusBar.cs: Statusbar handles its fore/back colours on it's
19250         on. Because thats how it rolls. (and this avoids it using ambient
19251         colours).
19252         * ThemeWin32Classic.cs: Use the proper back color for filling.
19253         * Menu.cs: Use the system menu bar color for drawing menu
19254         bars. Using the window back color will bring ambient colours into
19255         the picture.
19256
19257 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
19258
19259         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
19260           Bitmaps were created and not disposed.
19261
19262 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19263
19264         * Control.cs (CreateControl): Don't do anything if the control is
19265           already created, otherwise we'd fire the OnCreated event more than
19266           once
19267
19268 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19269
19270         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
19271           will always match. Instead return -1. Fixes #76464.
19272
19273 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19274
19275         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
19276           neither the beginning nor the end of the line (Fixes bug #76479)
19277
19278 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19279
19280         * Control.cs:
19281           - ControlNativeWindow.ControlFromHandle(): Now handling situation
19282             where handle is invalid
19283           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
19284             instead of slower linear search
19285         * NativeWindow.cs: Don't remove the window from the hashtable until
19286           after the driver has destroyed it (since the driver might use
19287           Control.FromHandle to lookup the control object
19288         * Hwnd.cs: Added DestroyPending property to track if a window is 
19289           already destroyed as far as the driver is concerned and only hasn't
19290           yet notified the control
19291         * XplatUIX11.cs:
19292           - Activate(): Check if the window is still valid before using the 
19293             handle
19294           - Implemented DestroyChildWindow() method to mark child windows as
19295             destroyed when a window is destroyed. This prevents situations 
19296             where we might call an X method based on queued events for a
19297             window that already has been destroyed but we haven't yet pulled
19298             the destroy method from the queue.
19299           - Added a call to the new DestroyChildWindow() method to the drivers
19300             DestroyWindow code. Also now marking the destroyed window itself
19301             as pending
19302
19303 2005-12-20  Jackson Harper  <jackson@ximian.com>
19304
19305         * StatusBar.cs:
19306         * StatusBarPanel.cs: Don't calculate panel sizes on draw
19307         anymore. Just do them when needed, also track the rects of panels
19308         so that we can optimize refreshing more in the future.
19309
19310 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
19311
19312         * ColorDialog.cs: Fixed focus drawing in small color controls
19313
19314 2005-12-19  Jackson Harper  <jackson@ximian.com>
19315
19316         * InternalWindowManager.cs:
19317         * MdiWindowManager.cs: Cleanup some coordinate system changes so
19318         moving windows works properly.
19319
19320 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
19321
19322         * Control.cs: 
19323           - Removed call to InitLayout() from SetBoundsCore(); doc says
19324             it's only called when a control is added to a container
19325           - Split InitLayout logic, moved to separate UpdateDistances() method
19326             since we need to perform those calculations more often than just
19327             when adding the control to a container. (Needed to fix #77022)
19328           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
19329           - Reduced the OnBindingContextChanged events count, don't send them
19330             unless the control is created, we still aren't totally matching
19331             MS, but I can't quite figure out some of their rules
19332
19333 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19334
19335         * ThemeClearlooks.cs: Corrected distance between ProgressBar
19336           stripes
19337
19338 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19339
19340         * ThemeClearlooks.cs:
19341           - Updated ProgressBar drawing
19342           - Corrected drawing of ScrollBars and scroll buttons
19343           - Some temporary fixes for minor pixel artefacts
19344
19345 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
19346
19347         * Control.cs:
19348           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
19349             cause events to be sent in the same order as MS does.
19350           - Added ChangeParent() method to trigger various OnXXXChanged events
19351             that need to be fired when a parent changes (This is a reworking
19352             of the patch from r54254, with the X11 errors fixed)
19353           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
19354             since on MS we get OnLayoutChanged events when calling Clear()
19355           - Changed Enabled property to consider parent state as well, if a
19356             parent is not enabled, the control will not be either
19357           - Changed Parent property to simply call Controls.Add() since that
19358             now does all the work required, this way we avoid code duplication
19359           - Threw in a few OnBindingsContextChanged calls to try and match
19360             when MS sends them. We seem to send a few too many, though.
19361           - Added call to CreateControl when adding the control to a parent.
19362             We were never calling CreateControl. Still needs some work, in
19363             some places we treat HandleCreated and ControlCreated as equal, 
19364             which is wrong
19365           - Removed obsolete commented out code from UpdateZOrder()
19366
19367 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19368
19369         * ThemeClearlooks.cs: Updated TrackBar drawing.
19370
19371 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
19372
19373         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
19374
19375 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
19376
19377         * FileDialog.cs: Add the Help button and the open readonly
19378           checkbox only if needed
19379
19380 2005-12-16  Jackson Harper  <jackson@ximian.com>
19381
19382         * Control.cs: Make sure we have an active menu before trying to
19383         process commands on it. Prevents menu-less forms from crashing
19384         when Alt is pressed.
19385         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
19386         Dieter Bremes.
19387         * RichTextBox.cs: Expand statement to help out gmcs and fix the
19388         2.0 build.
19389
19390 2005-12-16  Jackson Harper  <jackson@ximian.com>
19391
19392         * InternalWindowManager.cs: Don't translate tool windows screen
19393         coordinates. This fixes windows 'bouncing' around when being moved.
19394
19395 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19396
19397         * TextBoxBase.cs:
19398           - MaxLength now treats 2^31-1 equal to unlimited length (this is
19399             not quite MS compatible, MS uses that number only for single line
19400             and 2^32-1 for multi-line, but I figure it won't hurt keeping
19401             the limit at 2GB)
19402           - Now enforcing the MaxLength limit when entering characters
19403           - Added argument to internal Paste() method to track if it's called
19404             from programatically or via keyboard, since keyboard driven pastes
19405             need to enforce max-length
19406           - Added logic to Paste to only paste as many chars as MaxLength 
19407             allows
19408         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
19409         * TextControl.cs:
19410           - Added Length property to return number of characters in document
19411           - Added private CharCount property which only tracks actual chars
19412             in the document (no linefeeds) and fires event when CharCount
19413             changes
19414           - Added tracking of character count to all methods that alter it
19415           - Added LengthChanged event to allow applications to subscribe
19416             to any changes to the document
19417
19418 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19419
19420         * TextBox.cs: 
19421           - Removed local password_char field (moved to TextBoxBase)
19422           - Now setting the document's password var when password is
19423             set
19424         * TextBoxBase.cs:
19425           - Added password_char field (needed here so MultiLine can
19426             access it)
19427           - Added logic to MultiLine property setter to set the document's
19428             variable when password display is allowed
19429           - Removed debug code and made some debug code conditional
19430         * TextControl.cs:
19431           - Added RecalculatePasswordLine() method to handle special password
19432             char only lines
19433           - Added PasswordChar property, also added related tracking vars
19434           - Draw() method now uses local text var for grabbing text to draw,
19435             this var is set to line.text unless we're doing password display,
19436             then it is set to the pre-generated all-password-chars line
19437           - Added calling RecalculatePasswordLine() method for password lines
19438
19439 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19440
19441         * Hwnd.cs: 
19442           - Added Reparented property to allow tracking of Window Manager
19443             reparenting actions (which affect X/Y calculations of toplevel 
19444             windows)
19445           - Made ToString() print window handles in hex
19446         * XplatUIX11.cs:
19447           - AddConfigureNotify(): Now uses reparented state off Hwnd to
19448             determine if X/Y needs offsetting
19449           - AddConfigureNotify(): Fixed offset calculations
19450           - Now adds ReparentNotify messages into the queue
19451           - Now processes ReparentNotify messages and causes a 
19452             WM_WINDOWPOSCHANGED message to be sent upstream if a window
19453             is reparented (as most likely it's X/Y coordinates are changed
19454             due to that)
19455
19456 2005-12-14  Jackson Harper  <jackson@ximian.com>
19457
19458         * XplatUIX11.cs: Tool windows still need to respek focus.
19459
19460 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19461
19462         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
19463           have a working release
19464
19465 2005-12-13  Jackson Harper  <jackson@ximian.com>
19466
19467         * Form.cs: Update styles after setting the border style regardless
19468         of whether or not the window is using a window manager.
19469
19470 2005-12-13  Jackson Harper  <jackson@ximian.com>
19471
19472         * Form.cs: We now hook into an internal window manager instead of just an
19473         MDI subsystem, this is so we can have properly behaving tool windows.
19474         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
19475         * InternalWindowManager.cs: New internal class that acts as a
19476         window manager for tool windows and as a base for mdi windows.
19477         * MdiWindowManager.cs: New class that acts as a window manager for
19478         mdi windows.
19479
19480 2005-12-12  Jackson Harper  <jackson@ximian.com>
19481
19482         * Control.cs: Updates so we match behavoir for for implicit
19483         controls. Fixes explosions in MDI.
19484
19485 2005-12-12  Jackson Harper  <jackson@ximian.com>
19486
19487         * Control.cs: Implement Invalidate (Region).
19488
19489 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
19490
19491         * Control.cs: 
19492           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
19493             the same events as MS does. MS fires events for each property 
19494             except, for unknown reasons, Cursor, when the control is reparented. 
19495             I can't seem to totally match add/remove since MS also fires some 
19496             VisibleChanged events, which makes no sense. Consolidated the
19497             parenting code into a separate method so it can be called from
19498             both Add and Remove. set_Parent no longer needs any special logic
19499             as it calls the parent's add method which implicitly fires
19500             all events
19501           - Removed some obsolete code and debug output
19502           - Enabled state is inherited from parents, if this is enabled
19503
19504 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
19505
19506         * Form.cs: Removed commented out code
19507
19508 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
19509
19510         * Control.cs:
19511           - Added internal version of Invoke, with additional argument 
19512             indicating if we're calling it from a Dispose() handler. That
19513             way we can avoid BeginInvoke throwing an exception if we're
19514             calling for an already destroyed window.
19515           - Added a dispose argument to BeginInvokeInternal, and made the
19516             check if a valid window handle chain exists conditional on
19517             it not being a dispose call
19518           - Removed code in DestroyHandle to destroy our children. Since we
19519             now handle the WM_DESTROY message we will catch all our children
19520             being destroyed.
19521           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
19522         * Form.cs:
19523           - Added a field to track the application context of the form.
19524           - No need to set closing variable as response to WM_CLOSE, instead
19525             we destroy the window. We also call PostQuitMessage if the form
19526             has an application context (which makes it the main app form,
19527             which, when closed terminates the app)
19528         * XplatUI.cs:
19529           - Dropped Exit() method, it's naming was confusing
19530           - Added PostQuitMessage() which causes GetMessage to return false
19531             once the message queue is empty
19532         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
19533           PostQuitMessage()
19534         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
19535           no longer a valid XplatUI method, but left it in since it's used
19536           internally. Added empty PostQuitMessage() method.
19537         * MenuAPI.cs: Replaced call to Exit() with call to
19538           PostQuitMessage, even though this is probably no longer needed.
19539         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
19540         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
19541         * Application.cs:
19542           - Replaced call to XplatUI.Exit() with PostQuitMessage()
19543           - Removed old debug code that would call XplatUI for exception
19544             display, enabled standard exception handling (Still not enabled
19545             though, until NativeWindow's ExternalExceptionHandler define
19546             is removed
19547         * NativeWindow.cs:
19548           - Added internal method to allow control to update NativeWindow
19549             after a window has been destroyed
19550           - Added handling of already destroyed windows when calling i
19551             DestroyWindow
19552           - Added removal of handle from list on ReleaseHandle
19553         * XplatUIX11.cs:
19554           - Dropped GetMessageResult var and related code
19555           - Added PostQuitState to field to track if PostQuitMessage has been
19556             called
19557           - Dropped Exit() method
19558           - Added PostQuitMessage() method
19559           - GetMessage now will return false if PostQuitState is set and no
19560             more messages are in the queue.
19561           - Expose handler will no longer generate WM_PAINT messages if we are
19562             in PostQuitState since it's very likely any windows have already
19563             been destroyed, and since Hwnd won't get updated until we have
19564             processed the DestroyNotify we'd be causing X errors.
19565         
19566 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19567
19568         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
19569           Thanks to Mike for pointing out the err of my ways.
19570
19571 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19572
19573         * Control.cs(PreProcessMessage): Moved menu handling back, but
19574           after all other key handling, to match MS (who handles Menu in
19575           DefWndProc)
19576         * Menu.cs (WndProc): Removed my brainfart
19577
19578 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19579
19580         * Control.cs(PreProcessMessage): Removed special menu handling 
19581         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
19582
19583 2005-12-07  Mike Kestner  <mkestner@novell.com>
19584
19585         * Control.cs : special case SYSKEYUP so that we can adjust keynav
19586         state according in tracker.
19587         * Menu.cs : promote tracker field to base class and provide a tracker
19588         lookup capability.  Add/Remove shortcuts dynamically if the top menu
19589         has a tracker. Unparent items that are removed from the collection.
19590         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
19591         * Theme*.cs: add always_show_hotkeys field to support configurability
19592         of mnemonic display.  win32 doesn't show mnemonics until Alt is
19593         pressed.
19594
19595 2005-12-07  Jackson Harper  <jackson@ximian.com>
19596
19597         * MdiChildContext.cs: Use Control.ResetCursor.
19598         * Control.cs: ResetCursor needs to set the property so that the
19599         correct XplatUI call gets made.
19600
19601 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19602
19603         * Control.cs: More fixes to make our key events match MS. We
19604           were not setting the modifier state on KeyData, and we were
19605           not generating any events when Alt was pressed with a key
19606           since handling of WM_SYSxxx was missing for the OnKey methods.
19607
19608 2005-12-07  Jackson Harper  <jackson@ximian.com>
19609
19610         * MdiChildContext.cs: reenable the sizing code.
19611         - When the mouse leaves a window reset its cursor.
19612
19613 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19614
19615         * ThemeClearlooks.cs: Reflect latest Hwnd changes
19616
19617 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19618
19619         * Hwnd.cs: Now using the theme 3d bordersize to calculate
19620           widths of Fixed3D borders
19621
19622 2005-12-07  Jackson Harper  <jackson@ximian.com>
19623
19624         * MdiClient.cs: Fix warnings. Earn Mike's love.
19625
19626 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19627
19628         * ThemeClearlooks.cs:
19629           - Adjusted mouse over button color
19630           - Added first parts of CheckBox drawing
19631           - Added correct color for selected text background
19632           - Fixed ComboBox drawing
19633           - Added CPDrawBorder3D and CPDrawBorder
19634
19635 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19636
19637         * XplatUIX11.cs: Added call to XBell for AudibleAlert
19638
19639 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
19640
19641         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19642           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
19643           alert users via sound. We could add an enum arg with different
19644           types of alerts in the future
19645
19646 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19647
19648         * Control.cs: Fix behaviour problems pointed out by Mike
19649
19650 2005-12-05  Mike Kestner  <mkestner@novell.com>
19651
19652         * StatusBarPanel.cs: add Invalidate method and hook it into all the
19653         prop setters.  Calls parent.Refresh for now, but could be maybe be
19654         optimized with an internal method on StatusBar at some point.
19655         [Fixes #76513]
19656
19657 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
19658
19659         * RichTextBox.cs: Implemented get_SelectionColor
19660
19661 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
19662
19663         * ThemeClearlooks.cs:
19664           - Removed dead code
19665           - Draw black button border only if button is Form.AcceptButton
19666           - Draw correct button color for pressed RadioButton if the mouse 
19667             has entered the button
19668           - Updated ProgressBar drawing!
19669           - Updated CPDrawSizeGrip drawing
19670           - Updated StatusBarPanel drawing
19671
19672 2005-12-05  Mike Kestner  <mkestner@novell.com>
19673
19674         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
19675         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
19676
19677 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
19678
19679         * ThemeClearlooks.cs: Initial check-in, activate with
19680           export MONO_THEME=clearlooks
19681         * ThemeEngine.cs: Added ThemeClearlooks
19682
19683 2005-12-03  Mike Kestner  <mkestner@novell.com>
19684
19685         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
19686         [Fixes #76897]
19687
19688 2005-12-02  Jackson Harper  <jackson@ximian.com>
19689
19690         * Form.cs: If the child form has no menu the default main menu is
19691         used as the active menu.
19692
19693 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
19694
19695         * ListBox.cs: Check if any items exist before trying to resolve 
19696           coordinates into items
19697
19698 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19699
19700         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
19701           as the second color for the background hatch
19702
19703 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19704
19705         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
19706         * RichTextBox.cs: FormatText position arguments are 1-based, now making
19707           sure that what we pass to FormatText is always 1-based. Fixes #76885
19708
19709 2005-11-29  Miguel de Icaza  <miguel@novell.com>
19710
19711         * NumericUpDown.cs (EndInit): When we are done initializing,
19712         reflect any updates on the UI.
19713
19714 2005-12-02  Jackson Harper  <jackson@ximian.com>
19715
19716         * ImplicitHScrollBar.cs:
19717         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
19718         their container controls.
19719         * TreeView.cs: Use the new implicit scrollbars.
19720
19721 2005-12-02  Jackson Harper  <jackson@ximian.com>
19722
19723         * TreeView.cs: Make top_node internal so the TreeNodeCollections
19724         can play with it.
19725         * TreeNodeCollection.cs: If we remove the topnode we need to
19726         update topnode to the next node in line.
19727         - When clearing nodes go through the same process as removing
19728         them, so they get depareneted and checked if they are top node.
19729
19730 2005-12-01  Jackson Harper  <jackson@ximian.com>
19731
19732         * TreeView.cs: When imagelists are used the image area is
19733         selectable as well as the text.
19734         - If there are no selected nodes select the first one.
19735         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
19736         so don't do it more then we need to.
19737
19738 2005-12-01  Jackson Harper  <jackson@ximian.com>
19739
19740         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
19741         that arrows can be scaled.
19742
19743 2005-12-01  Jackson Harper  <jackson@ximian.com>
19744
19745         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
19746         fail. Patch by Dieter Bremes
19747
19748 2005-11-30  Jackson Harper  <jackson@ximian.com>
19749
19750         * Form.cs: Property is 2.0 only
19751         * PrintDialog.cs: Signature fix.
19752
19753 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19754
19755         * TextControl.cs: 
19756           - No longer artificially moves text 2 pixels down (now that we have
19757             borders this is no longer needed)
19758           - Added calcs for left, hanging and right indent
19759
19760 2005-11-23  Mike Kestner  <mkestner@novell.com>
19761
19762         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
19763
19764 2005-11-30  Jackson Harper  <jackson@ximian.com>
19765
19766         * MdiChildContext.cs: Set the cloned menus forms, as these don't
19767         get cloned as part of CloneMenu ().
19768         * Menu.cs: Make sure the parent of the items get set correctly
19769         when they are added.  And the owners are notified of the changes.
19770         * Form.cs: Create an ActiveMenu property, so that when MDI is used
19771         we can change the menu being displayed/handled by the form without
19772         changing the menu assosciated with the form.
19773         - Don't let Mdi children draw/handle menus.
19774         
19775 2005-11-30  Jackson Harper  <jackson@ximian.com>
19776
19777         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
19778         a MenuChanged event. Just to make the API a little more
19779         consistent.
19780         * MainMenu.cs:
19781         * MenuItem.cs: Use the new OnMenuChanged
19782         * MdiChildContext.cs: Handle menu merging.
19783         * Form.cs: Implement MergedMenu.
19784         
19785 2005-11-30  Jackson Harper  <jackson@ximian.com>
19786
19787         * Menu.cs: We were misusing Add. Add goes behind the specified
19788         index according to the docs, and does not replace the specified
19789         index. So I added an Insert method.
19790
19791 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19792
19793         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
19794           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
19795           is for Jackson
19796         * RichTextBox.cs: Added calls to base for DnD events
19797
19798 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
19799
19800         * TextControl.cs:
19801           - Fixed drag-selection related crash; style fixes
19802           - Implemented undo class
19803             o Implemented method to capture document state for specified
19804               range in document tree
19805             o Implemented method to restore captured document state
19806             o Implemented cursor tracking
19807             o Implemented basic undo stack
19808           - Added undo cursor tracking to methods altering cursor location
19809           - Added undo tracking to selection deletion (still missing
19810             other text-altering hookups)
19811         * RichTextBox.cs:
19812           - Added SelectionLength property
19813           - Implemented CanPaste()
19814           - Implemented Paste()
19815           - Added missing protected methods
19816           - Fixed RTF->Document conversion; now uses font index 0 and color 
19817             index 0 as the default font for the parsed text
19818           - Fixed RTF<->Document font size translation
19819           - Fixed RTF generation, now properly handles cross-tag boundaries
19820             for single line selection
19821           - No longer always appends blank line to generated RTF
19822           - Removed TODOs
19823           - Added missing attributes
19824           - Hooked up undo-related methods
19825         * TextBoxBase.cs:
19826           - Implemented Copy()
19827           - Implemented Paste()
19828           - Implemented Cut()
19829           - Fixed caret mis-behaviour on backspace across line-boundaries
19830
19831 2005-11-29  Jackson Harper  <jackson@ximian.com>
19832
19833         * MdiClient.cs: Add a method for activating mdi children. Very
19834         basic right now. I imagine someday it might need more girth.
19835         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
19836         children windows names are added to the menu item.
19837         * ThemeWin32Classic.cs: Draw the arrow if the item is an
19838         mdilist. This happens regardless of whether or not there are any
19839         mdi windows to see in the list, and according to my tests happens
19840         before the items are even added. Also happens if there isn't even
19841         an mdi client to get windows from.
19842
19843 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
19844
19845         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
19846         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
19847
19848 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
19849
19850         * DataGridTableStyle.cs:
19851           - Create always the styles for the missing columns even if they are
19852             provided by the user (not default table style)
19853         * DataGrid.cs:
19854           - Fixes bug 76770
19855           - Fixes SetDataBinding (always re-attach source)
19856           - Fixes SetNewDataSource (only clear styles if they are not for 
19857             this source)
19858          -  Expands OnTableStylesCollectionChanged to handle style refresh 
19859             and remove properly
19860
19861 2005-11-29  Jackson Harper  <jackson@ximian.com>
19862
19863         * FileDialog.cs: Implement missing bits, remove some dead
19864         code.
19865         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
19866         creation of the panel so that the options set on the dialog are
19867         seen when the panel is created.
19868         * TreeView.cs: raise a click when items are clicked.
19869         
19870 2005-11-29  Jackson Harper  <jackson@ximian.com>
19871
19872         * MdiClient.cs: Pass some signature methods through to base.
19873
19874 2005-11-28  Jackson Harper  <jackson@ximian.com>
19875
19876         * ListView.cs: Raise the click event when items are clicked.
19877
19878 2005-11-28  Jackson Harper  <jackson@ximian.com>
19879
19880         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
19881         a nullref.
19882
19883 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
19884
19885         * ThemeNice.cs: - Removed 1 pixel bitmaps
19886           - Use SmoothingMode.AntiAlias where it makes sense
19887             (ScrollButton arrow for example)
19888           - Enhanced Button focus drawing
19889           - Fixed ComboBox drawing (no artefacts anymore, focus
19890             rectangle is back again, reduced size of ComboButton, etc.)
19891           - Fixed RadioButton focus drawing for Appearence.Button
19892           - Slight ScrollButton redesign
19893           - Some LinearGradientBrush size fixes
19894           - GroupBoxes have now rounded edges
19895           - Fixed StatusBar drawing
19896
19897 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
19898
19899         * ThemeNice.cs: - Remove dead code
19900           - use correct background colors for menus, etc.
19901           - Fake pixel drawing with 1 pixel bitmaps
19902
19903 2005-11-24  Jackson Harper  <jackson@ximian.com>
19904
19905         * MdiClient.cs: Size the scrollbars when resizing the window.
19906         - Resize the maximized windows when the client is resized
19907         * Form.cs: Make the child context available
19908         
19909 2005-11-23  Jackson Harper  <jackson@ximian.com>
19910
19911         * MdiChildContext.cs: Don't size windows if they are maximized.
19912
19913 2005-11-23  Mike Kestner  <mkestner@novell.com>
19914
19915         * ContextMenu.cs: use MenuTracker.
19916         * Control.cs: remove menu handle usage.
19917         * Form.cs: remove menu handle usage.
19918         * Hwnd.cs: remove menu handle usage.
19919         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
19920         motion and clicks to the new Tracker handlers.
19921         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
19922         and handle usage.
19923         * MenuAPI.cs: refactored to combine popup and menubar event handling.
19924         Killed the MENU and MENUITEM data types and associated collections
19925         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
19926         MenuTracker class that exposes the leftovers from the old MenuAPI
19927         static methods. Restructured Capture handling so that only one grab is
19928         done for the entire menu hierarchy instead of handing off grabs to
19929         submenus. Tracker now has an invisible control to Capture when active.
19930         * MenuItem.cs: add sizing accessors, kill Create
19931         and handle usage.
19932         * Theme.cs: remove menu handle and MENU(ITEM) usage.
19933         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
19934         MENU(ITEM). remove menu handle usage, use Menu directly.
19935         * XplatUIDriver.cs: remove menu handle usage.
19936         * XplatUIOSX.cs: remove menu handle usage.
19937         * XplatUIWin32.cs: remove menu handle usage.
19938         * XplatUIX11.cs: remove menu handle usage.
19939
19940 2005-11-22  Jackson Harper  <jackson@ximian.com>
19941
19942         * Hwnd.cs: Don't compute the menu size for
19943         DefaultClientRectangle.
19944         - Reenable menu sizes being computed for GetClienRectangle.
19945         * Form.cs: Remove comment of trechery
19946         
19947 2005-11-22  Jackson Harper  <jackson@ximian.com>
19948
19949         * Hwnd.cs: The adjustments for the menu bar are made when it is
19950         attached to the form.
19951
19952 2005-11-19  Jackson Harper  <jackson@ximian.com>
19953
19954         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
19955         (just like on windows).
19956
19957 2005-11-19  Jackson Harper  <jackson@ximian.com>
19958
19959         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
19960         use real buttons anymore because they are in non client area. The
19961         one TODO here is that I need to somehow invalidate a section of
19962         the non client area.
19963
19964 2005-11-18  Jackson Harper  <jackson@ximian.com>
19965
19966         * Control.cs: Put the enum check back in now that MDI doesnt have
19967         to use this to set border styles.
19968         * Form.cs: Only set mdi child windows borders if the handle has
19969         been created.
19970         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
19971         this directly on to the driver.
19972         - Get the move start position before adjusting for the titlebar
19973         height, this fixes the windows "skipping" when they are first
19974         moved.
19975
19976 2005-11-18  Jackson Harper  <jackson@ximian.com>
19977
19978         * XplatUIX11.cs: Just compute the mdi borders separately as they
19979         don't totally match up with normal form borders.
19980
19981 2005-11-18  Jackson Harper  <jackson@ximian.com>
19982
19983         * Control.cs: Set WS_ styles for borders, so that the driver does
19984         not have to retrieve the control instance to figure out what kind
19985         of borders it should have.
19986         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
19987         driver can know its an mdi child easily.
19988         * XplatUIX11.cs: Get the border styles and whether the window is
19989         MDI from the Styles and ExStyles params instead of having to get a
19990         control. This prevents a chicken and egg problem.       
19991
19992 2005-11-18  Jackson Harper  <jackson@ximian.com>
19993
19994         * MdiClient.cs: Fix typo so scrollbars show up correctly.
19995
19996 2005-11-18  Jackson Harper  <jackson@ximian.com>
19997
19998         * MdiClient.cs: Calculate when to add and remove scrollbars
19999         correctly.
20000         * MdiChildContext.cs: Adjust the y position to take the titlebar
20001         into account.
20002         - No height for FormBorderStyle.None
20003
20004 2005-11-18  Jackson Harper  <jackson@ximian.com>
20005
20006         * Control.cs: Allow non enum values to be used for
20007         InternalBorderStyle.  MDI does this to set a special border style.
20008         - New utility methods for converting points to/from client coords
20009         - Add the newly created control to the Controls collection before
20010         updating its style. This way UpdateStyle can walk the control
20011         heirarchy to find the control if needed.
20012         so I don't need to create a new Point object all the time.
20013         * Form.cs: Let MDI windows handle their border styles.
20014         - Set styles on MDI windows so the correct title style is derived.
20015         * MdiChildContext.cs: Move all the painting and window handling
20016         into the non client area.
20017         - Use correct sizing and put correct buttons on frames based on
20018         the FormBorderStyle.
20019         - Notify the mdi client about scrolling
20020         - Need to handle the buttons ourselves now, because they are all
20021         in non client areas and we can't add controls there.
20022         * MdiClient.cs: Halfway to scrolling, this implementation is
20023         somewhat broken though, we need to check to make sure other
20024         windows aren't causing scrolling before removing the bars. Also
20025         the bars need to be drawn on top, maybe I can switch implicit
20026         controls to be on top.
20027         * Hwnd.cs: caption_height and tool_caption_height are now
20028         properties of an hwnd, this way they can be set by the driver
20029         based on the type of window they are.  In X11 the window manager
20030         handles the decorations so caption_height is zero unless its an
20031         MDI window.
20032         - Add 3 pixel borders for MDI windows (0xFFFF).
20033         - Get rid of some code duplication, have DefaultClientRectanle
20034         just call GetClientRectangle.
20035         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
20036         Hwnd now.
20037         - Set border styles differently for mdi windows.
20038         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
20039         Hwnd now.
20040         
20041 2005-11-15  Mike Kestner  <mkestner@novell.com>
20042
20043         * Menu.cs: when adding an item to the collection, if item is already 
20044         parented, remove it from the parent.
20045
20046 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
20047
20048         * X11DesktopColors.cs: Added KDE support
20049
20050 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
20051
20052         * XplatUIWin32.cs: 
20053           - Clipboard methods now can translate Rtf format
20054           - No longer removes clipboard contents whenever a new format is added
20055             to allow placing multiple formats on the clipboard
20056         * Clipboard.cs: Clipboard now supports getting a IDataObject and
20057           will place all formats contained in it onto the clipboard. Also
20058           now cleans the clipboard before placing a new object onto it
20059         * RichTextBox.cs:
20060           - Implemented set_Rtf
20061           - Implemented set_SelectedRtf
20062           - Created InsertRTFFromStream() method to allow single code base
20063             for all properties and methods that insert RTF into document
20064           - Removed debug output
20065         * TextControl.cs:
20066           - Fixed Delete(int) to fix up line numbers
20067           - Fixed ReplaceSelection to combine start and end line
20068           - Fixed serious DeleteChars bug that would leave the document tree
20069             broken
20070           - Improved DumpTree with several logic checks to detect broken
20071             document trees
20072           - Removed debug lines
20073           - Fixed Caret.WordForward/WordBack moving code, now always also 
20074             updates caret.tag (fixes crash when word-selecting across tag
20075             boundaries via keyboard)
20076           - Added Insert() method for inserting multiline text into documents
20077           - Fixed DeleteChars() calculation errors that would cause a broken
20078             tag chain with multiple tag lines
20079           - DeleteChars() no longer crashes on multi-tag lines if not all tags
20080           - Split() no longer moves caret if split is at caret location
20081           - ReplaceSelection() now updates the cursor and re-displays it
20082           - ReplaceSelection() now uses new Insert() method to avoid code
20083             duplication
20084           - FormatText() can now handle formatting partial lines
20085         * TextBoxBase.cs:
20086           - Append now uses new TextControl.Insert() method (this avoids 
20087             duplicate code)
20088           - Implemented Ctrl-X (Cut) (
20089           - Implemented Ctrl-C (Copy)
20090           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
20091             regeneration when pasting text; roundtripping Copy&Paste within
20092             edit control still fails due to some calculation bugs in GenerateRTF)
20093           - The Delete key will now remove the current selection if it is visible
20094         * TextBox.cs: Removed debug lines
20095         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
20096           driver to be initialized and can't therefore be done via a static ctor)
20097
20098 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
20099
20100         * TextControl.cs: Added backend code for finding char arrays and strings
20101         * TextBoxBase.cs:
20102           - Added mouse wheel scroll support
20103           - Added support for VScroll and HScroll events
20104         * RichTextBox.cs:
20105           - Implemented all seven Find() variants
20106           - Implemented GetCharFromPosition()
20107           - Implemented GetCharIndexFromPosition()
20108           - Implemented GetLineFromIndex()
20109           - Implemented GetPositionFromCharIndex();
20110           - Implemented SaveFile for PlainText and UnicodeText
20111           - Fixed set_Font, now setting a new font applies that font to
20112             the whole document
20113           - Implemented generic Document to RTF converter
20114           - Implemented SaveFile for RichText format (still missing unicode
20115             conversion for non-ansi chars)
20116           - Implemented get_Rtf
20117           - Implemented get_SelectedRtf
20118
20119 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
20120
20121         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
20122           to allow any captures to be released before triggering OnClick. This
20123           way a click handler may capture the mouse without interference.
20124         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
20125           This way we send them even though X may not allow a grab (if the window
20126           isn't visible, for example)
20127
20128 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
20129
20130         * DataGridViewRowEventArgs.cs: DataGridView implementation
20131         * DataGridViewElement.cs: DataGridView implementation
20132         * DataGridViewComboBoxCell.cs: DataGridView implementation
20133         * DataGridViewDataErrorContexts.cs: DataGridView implementation
20134         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
20135         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
20136         * ImageLayout.cs: DataGridView implementation
20137         * DataGridViewComboBoxColumn.cs: DataGridView implementation
20138         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
20139         * DataGridViewSelectionMode.cs: DataGridView implementation
20140         * IDataGridViewEditingControl.cs: DataGridView implementation
20141         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
20142         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
20143         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
20144         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
20145         * DataGridViewColumnSortMode.cs: DataGridView implementation
20146         * DataGridView.cs: DataGridView implementation
20147         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
20148         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
20149         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
20150         * Padding.cs: DataGridView implementation
20151         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
20152         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
20153         * DataGridViewRowEventHandler.cs: DataGridView implementation
20154         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
20155         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
20156         * DataGridViewButtonCell.cs: DataGridView implementation
20157         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
20158         * DataGridViewEditMode.cs: DataGridView implementation
20159         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
20160         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
20161         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
20162         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
20163         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
20164         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
20165         * DataGridViewCellEventHandler.cs: DataGridView implementation
20166         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
20167         * DataGridViewCellStyleConverter.cs: DataGridView implementation
20168         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
20169         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
20170         * DataGridViewColumnEventArgs.cs: DataGridView implementation
20171         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
20172         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
20173         * QuestionEventArgs.cs: DataGridView implementation
20174         * IDataGridViewEditingCell.cs: DataGridView implementation
20175         * DataGridViewTriState.cs: DataGridView implementation
20176         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
20177         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
20178         * DataGridViewColumnCollection.cs: DataGridView implementation
20179         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
20180         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
20181         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
20182         * DataGridViewColumn.cs: DataGridView implementation
20183         * DataGridViewCellBorderStyle.cs: DataGridView implementation
20184         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
20185         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
20186         * DataGridViewRow.cs: DataGridView implementation
20187         * DataGridViewImageCellLayout.cs: DataGridView implementation
20188         * DataGridViewImageCell.cs: DataGridView implementation
20189         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
20190         * DataGridViewCheckBoxCell.cs: DataGridView implementation
20191         * DataGridViewHeaderCell.cs: DataGridView implementation
20192         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
20193         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
20194         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
20195         * DataGridViewTextBoxColumn.cs: DataGridView implementation
20196         * QuestionEventHandler.cs: DataGridView implementation
20197         * DataGridViewCellStyleScopes.cs: DataGridView implementation
20198         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
20199         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
20200         * DataGridViewCell.cs: DataGridView implementation
20201         * DataGridViewCellEventArgs.cs: DataGridView implementation
20202         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
20203         * DataGridViewCellStyle.cs: DataGridView implementation
20204         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
20205         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
20206         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
20207         * TextFormatFlags.cs: DataGridView implementation
20208         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
20209         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
20210         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
20211         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
20212         * DataGridViewButtonColumn.cs: DataGridView implementation
20213         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
20214         * HandledMouseEventArgs.cs: DataGridView implementation
20215         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
20216         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
20217         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
20218         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
20219         * DataGridViewRowCollection.cs: DataGridView implementation
20220         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
20221         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
20222         * DataGridViewHitTestType.cs: DataGridView implementation
20223         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
20224         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
20225         * DataGridViewColumnEventHandler.cs: DataGridView implementation
20226         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
20227         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
20228         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
20229         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
20230         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
20231         * DataGridViewContentAlignment.cs: DataGridView implementation
20232         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
20233         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
20234         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
20235         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
20236         * DataGridViewPaintParts.cs: DataGridView implementation
20237         * DataGridViewCellCollection.cs: DataGridView implementation
20238         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
20239         * DataGridViewImageColumn.cs: DataGridView implementation
20240         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
20241         * DataGridViewElementStates.cs: DataGridView implementation
20242         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
20243         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
20244         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
20245         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
20246         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
20247         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
20248         * DataGridViewRowHeaderCell.cs: DataGridView implementation
20249         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
20250         * DataGridViewTextBoxCell.cs: DataGridView implementation
20251         * DataGridViewBand.cs: DataGridView implementation
20252         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
20253         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
20254         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
20255         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
20256         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
20257         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
20258         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
20259         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
20260         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
20261         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
20262         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
20263
20264 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
20265
20266         * ThemeWin32Classic.cs: 
20267           - Draw the outside focus rectangle around buttons
20268           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
20269             doesn't use end caps for every dash of a line anymore. This
20270             workaround ignores the forecolor.
20271
20272 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
20273
20274         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
20275           endian safe.
20276
20277 2005-11-07  Jackson Harper  <jackson@ximian.com>
20278
20279         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
20280
20281 2005-11-07  Jackson Harper  <jackson@ximian.com>
20282
20283         * ScrollableControl.cs: Calculate the maximum and change vars
20284         (more) correctly so that scrollbars appear as a sensible size.
20285
20286 2005-11-04  Jackson Harper  <jackson@ximian.com>
20287
20288         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
20289         collection.
20290         * TreeView.cs: When the tree is sorted null out the top_node so
20291         that it is recalculated.
20292         - Use dotted lines instead of dashed lines to match MS better.
20293
20294 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
20295
20296         * ListView.cs: 
20297           - Implements key search for items. Useful when browsing files with FileDialog
20298           - When changing view mode or when clear the items reset scrollbar positions
20299
20300 2005-11-04  Jackson Harper  <jackson@ximian.com>
20301
20302         * CurrencyManager.cs: Implement the MetaDataChanged event, the
20303         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
20304         as to what the method may do as there is no real way of creating a
20305         derived CurrencyManager and calling the method. 
20306
20307 2005-11-03  Jackson Harper  <jackson@ximian.com>
20308
20309         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
20310         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
20311         method which seems to just be used internally to refresh the tabs.
20312
20313 2005-11-03  Jackson Harper  <jackson@ximian.com>
20314
20315         * TabControl.cs: Implement the remove method. Fix some broken
20316         comments.
20317
20318 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20319
20320         * DateTimePicker.cs:
20321           - Added missing DateTimePickerAccessibleObject class
20322           - Added missing events
20323           - Added OnFontChanged method
20324         * Form.cs: Added missing attributes
20325         * TreeView.cs: Added missing attributes
20326
20327 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
20328
20329         * GridItemCollection.cs: Fix signatures
20330
20331 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20332
20333         * XplatUI.cs: Updated build rev/date
20334         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
20335           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
20336         * Application.cs: Trigger context-specific ExitThread events
20337
20338 2005-11-03  Jackson Harper  <jackson@ximian.com>
20339
20340         * Menu.cs:
20341         * MainMenu.cs:
20342         * GridTableStylesCollection.cs:
20343         * Timer.cs:
20344         * TabPage.cs:
20345         * HelpProvider.cs:
20346         * StatusBar.cs:
20347         * MonthCalendar.cs: Signature fixes
20348
20349 2005-11-03  Jackson Harper  <jackson@ximian.com>
20350
20351         * TreeNodeCollection.cs: Remove should not be virtual.
20352         * TreeView.cs: Implement the last of the missing methods.
20353
20354 2005-11-03  Jackson Harper  <jackson@ximian.com>
20355
20356         * TreeNodeConverter.cs: Implement to get off my class-status back.
20357
20358 2005-11-03  Jackson Harper  <jackson@ximian.com>
20359
20360         * TreeView.cs: Hookup the bits for drag and drop.
20361         * TreeNode.cs: Don't cache the tree_view or index anymore, now
20362         that nodes can be moved from tree to tree easily this just causes
20363         all sorts of problems.
20364         * TreeNodeCollection: Don't need to give treenodes an index and
20365         treeview anymore when they are added, these are computed on the
20366         fly. Also make sure to remove a node before its added.
20367
20368 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20369
20370         * TextControl.cs:
20371           - Added CaretSelection enum
20372           - Added comparison methods to Marker struct, makes selection code
20373             more readable
20374           - Added SelectionStart and SelectionEnd as 'moveable' location for
20375             the CaretDirection enum and handler
20376           - Added selection_prev variable to track optimized invalidation for
20377             word and line selection
20378           - Added SelectionVisible property (returns true if there is a valid 
20379             selection)
20380           - Switched CaretHasFocus to only display the caret if there is no
20381             visible selection
20382           - Avoiding StringBuilder.ToString to retrieve a single char, instead
20383             using the direct character index; should be much faster
20384           - Added various conditional debug statements
20385           - Fixed invalidation calculation for selection ranges
20386           - Added ExpandSelection() method to support word and line selection
20387           - Switched SetSelectionToCaret to use new Marker compare overloads
20388           - Added central IsWordSeparator() method to determine word 
20389             separators/whitespace and FindWordSeparator() to streamline common
20390             usage of IsWordSeparator()
20391         * TextBoxBase.cs:
20392           - Removed unneeded grabbed variable, it was just mirroring
20393             Control.Capture
20394           - No longer firing OnTextChanged event when Text setter is called,
20395             since the base will fire the event for us
20396           - Added handling of Ctrl-Up/Down selection
20397           - Added handling of Shift-Cursorkey selection
20398           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
20399             words
20400           - Added handling of Shift and Ctrl-Shift-Home/End selection
20401           - Removed some debug output
20402           - Added handling for single/double/tripple-click to place caret/
20403             select word/select line respectively (Fixes bug #76031)
20404           - Added support for drag expansion of word/line selection
20405         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
20406           current selection
20407
20408 2005-11-02  Jackson Harper  <jackson@ximian.com>
20409
20410         * X11Dnd.cs: If the drag is going to and from a MWF window just
20411         copy the data instead of sending it out through the X Selection
20412         mechanism.
20413
20414 2005-11-02  Jackson Harper  <jackson@ximian.com>
20415
20416         * X11Dnd.cs:
20417         * XplatUIX11.cs: When in a drag we don't want motion notify
20418         messages to get passed on to the other controls. This prevents
20419         mouse move messages from showing up in the drag source.
20420
20421 2005-11-02  Jackson Harper  <jackson@ximian.com>
20422
20423         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
20424         the correct button is release to end a drag.
20425         * XplatUIX11.cs: Make the button state internal so the drag system
20426         can access it.  Dragging needs to know about all button releases,
20427         not just left button.
20428
20429 2005-11-02  Miguel de Icaza  <miguel@novell.com>
20430
20431         * Form.cs (Icon): If the icon is null, reset the icon to the
20432         default value. 
20433
20434         * Cursor.cs: When writing the AND-mask bitmap do not include the
20435         number of colors, but hardcode those to two (black and white),
20436         fixes the loading of color cursors (Paint Dot Net).
20437
20438         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
20439         turn off autoscaling.
20440
20441         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
20442
20443 2005-11-02  Jackson Harper  <jackson@ximian.com>
20444
20445         * X11Dnd.cs: Make sure to send a status message if the pointer
20446         enters a control that can not accept a drop, otherwise the cursor
20447         isn't updated correctly. Also tried to compress the lines of code
20448         a bit.
20449
20450 2005-11-02  Jackson Harper  <jackson@ximian.com>
20451
20452         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
20453         set actions correctly.  This isn't perfect as XDND and win32 have
20454         some differences on how you allow actions. I'll clear this up by
20455         adding a path for drag from MWF to MWF windows.
20456         * XplatUIX11.cs: Hook into the dnd system.
20457
20458 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
20459
20460         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
20461         previously shown but they are no longer need it. Very obvious when 
20462         browsing files with FileDialog.
20463
20464 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
20465
20466         * Control.cs: We always need to call OnPaintBackground. We pretty much
20467           ignore AllPaintingInWmPaint and always do the painting there, whether 
20468           it's set or not, since we always ignore the WM_ERASEBKGND message 
20469           (which we don't generate on X11). This fixes #76616.
20470         * Panel.cs: Removed unneeded background painting. This happens properly
20471           in Control.cs already
20472
20473 2005-10-31  Mike Kestner  <mkestner@novell.com>
20474
20475         * Menu.cs: Add items to collection before setting their index.
20476         * MenuItem.cs : add range checking with ArgumentException like MS.
20477         [Fixes #76510]
20478
20479 2005-10-31  Jackson Harper  <jackson@ximian.com>
20480
20481         * ListBox.cs: Invalidate if the area is visible at all not just
20482         contained in the visible rect. Fixes unselection of semi visible
20483         items.
20484
20485 2005-10-31  Jackson Harper  <jackson@ximian.com>
20486
20487         * Control.cs: Consistently name the dnd methods. Make them
20488         internal so we can override them to match some MS behavoir
20489         internally.
20490         * Win32DnD.cs: Use the new consistent names.
20491
20492 2005-10-31  Jackson Harper  <jackson@ximian.com>
20493
20494         * TreeView.cs: Don't draw the selected node when we lose focus.
20495
20496 2005-10-31  Jackson Harper  <jackson@ximian.com>
20497
20498         * X11Dnd.cs: We still need to reset the state even though a full
20499         reset isn't being done, otherwise status's still get sent all over
20500         the place.
20501
20502 2005-10-31  Jackson Harper  <jackson@ximian.com>
20503
20504         * Control.cs: Make the dnd_aware flag internal so the dnd
20505         subsystem can check it. Catch exceptions thrown in dnd handlers to
20506         match MS behavoir.
20507         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
20508         * X11Dnd.cs: Handle null data in the converters. Set the XDND
20509         version when sending a XdndEnter. Use the control/hwnd dnd_aware
20510         flags to reduce the number of dnd enters/status's sent.
20511
20512 2005-10-31  Jackson Harper  <jackson@ximian.com>
20513
20514         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
20515
20516 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
20517
20518         * PictureBox.cs: Fixes 76512
20519
20520 2005-10-28  Jackson Harper  <jackson@ximian.com>
20521
20522         * X11Dnd.cs: Early implementation to support winforms being a drag
20523         source for data on X11. Also restructured the converters so they
20524         can go both ways now.
20525         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
20526         
20527 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
20528
20529         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
20530           clipboard requests
20531
20532 2005-10-27  Jackson Harper  <jackson@ximian.com>
20533
20534         * TreeNode.cs: Implement serialization so my DnD examples will work.
20535
20536 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
20537
20538         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
20539           TreeView.cs: Don't dispose objects that are not owned.
20540           
20541 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
20542
20543         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
20544           should retrieve the current cursor and report that, but XplatUI
20545           doesn't (yet) have an interface for that (and I'm not sure I even
20546           can, on X11)
20547         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
20548           until any message loop processing is done (and the WM_SETCURSOR
20549           replaces the cursor to the proper one)
20550         * XplatUIX11.cs: 
20551           - Fixed override behaviour, we can't set the cursor globally on X11, 
20552             just for our windows.
20553           - Invalidating the System.Drawing X11 display handle when we are
20554             shutting down
20555         * Control.cs: Fix to make csc happy
20556
20557 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
20558
20559         * TextBoxBase.cs: 
20560           - get_Text: Add last line (without trailing newline) to returned
20561             value (Fixes 76212)
20562           - get_TextLength: Count last line in returned length
20563           - ToString: Call Text property instead of duplicating code
20564
20565 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
20566
20567         * ImageList.cs: Dispose ImageAttributes objects.
20568
20569 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20570
20571         * ImageList.cs: Use attribute constructors with less arguments where
20572           possible.
20573
20574 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20575
20576         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
20577           Use typeof instead of strings when assembly is referenced. Added
20578           some more comments.
20579
20580 2005-10-21  Jackson Harper  <jackson@ximian.com>
20581
20582         * ListView.cs: Raise a double click event. Also tried to somewhat
20583         fix when the selectedindexchanged event is raised. Its still
20584         broken though.
20585
20586 2005-10-21  Jackson Harper  <jackson@ximian.com>
20587
20588         * TreeView.cs: New method to invalidate the plus minus area of a
20589         node without invalidating the whole node (maybe this can be used
20590         in some more places).
20591         * TreeNodeCollection.cs: When adding to an empty node we need to
20592         invalidate its plus minus area so the little block shows up.
20593         
20594 2005-10-21  Jackson Harper  <jackson@ximian.com>
20595
20596         * TreeView.cs: Make sure that when we invalidate a node the bounds
20597         are big enough to cover the selected box and the focus
20598         rectangle. Use a different colour for the lines connecting nodes
20599         so they show up with all themes.
20600
20601 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20602
20603         * NativeWindow.cs: Don't call anything that could call into the driver,
20604           we might be on a different thread.
20605
20606 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
20607
20608         * Control.cs(Dispose): Since Dispose might run on a different thread,
20609           make sure that we call methods that could call into the driver via
20610           invoke, to avoid thread issues
20611
20612 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20613
20614         * XplatUI.cs: Removed finalizer
20615         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
20616           not allowing to be called on the finalizer thread.
20617
20618 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
20619
20620         * ImageList.cs:
20621           - Reverted r51889 and r51891.
20622           - Added ImageListItem class that stores unmodified image items and image
20623             properties required to create list images until handle is created.
20624           - Added AddItem and moved image creation logic to AddItemInternal.
20625           - Added CreateHandle method that creates images based on unmodified items.
20626           - Added DestroyHandle that changes state to store unmodified items.
20627           - Add and AddStrip methods no more create handle.
20628           - ReduceColorDepth has no return value.
20629           - Dispose destroys handle.
20630           - Modified other methods to reflect the above changes.
20631           - Implemented key support.
20632           - Added profile 2.0 members and attributes.
20633           - Added private Reset and ShouldSerialize methods that provide the same
20634             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
20635             them as they are private.
20636           - Added some more comments about implementation details.
20637
20638 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20639
20640         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
20641
20642 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20643
20644         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
20645
20646 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20647
20648         * DataGridDrawingLogic.cs: Fixes column hit calcultation
20649         * DataGridColumnStyle.cs: Remove debug message
20650
20651 2005-10-20  Jackson Harper  <jackson@ximian.com>
20652
20653         * TreeView.cs: We can always get input keys regardless of whether
20654         or not editing is enabled. They are used for navigation.
20655
20656 2005-10-20  Jackson Harper  <jackson@ximian.com>
20657
20658         * TreeNode.cs: Use the viewport rect for determining if a node
20659         needs to be moved for visibility. Don't use Begin/End edit. This
20660         calls a full refresh when its done.
20661         * TreeView.cs: New SetBottom works correctly.  Make the viewport
20662         rect property internal so the treenodes can see it. When clicking
20663         on a node we need to ensure that its visible because it might just
20664         be partly visible when clicked.
20665
20666 2005-10-20  Jackson Harper  <jackson@ximian.com>
20667
20668         * TreeNodeCollection.cs: Remove debug code.
20669
20670 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20671
20672         * Datagrid.cs: Implements column sorting in Datagrid
20673         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
20674
20675 2005-10-20  Jackson Harper  <jackson@ximian.com>
20676
20677         * TreeNodeCollection.cs: Remove items properly. Update the correct
20678         area after removing them.
20679
20680 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20681
20682         * Datagrid.cs: Should not call base.OnPaintBackground
20683
20684 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20685
20686         * XplatUIX11.cs (GetMessage):
20687           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
20688             window instead of client window
20689           - Now properly calculates NC_xBUTTONUP message coordinates
20690           - ScreenToMenu now properly calculates it's coordinates of whole 
20691             window, since menus are in the whole window, not in the client
20692             window
20693           - Added WholeToScreen coordinate translation method
20694
20695 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
20696
20697         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
20698           want to return a message, loop back to the beginning of the function
20699           and grab the next real message to process instead.
20700
20701 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20702
20703         * Splitter.cs: Properly set limits if no filler control is used
20704
20705 2005-10-19  Jackson Harper  <jackson@ximian.com>
20706
20707         * ColorDialog.cs: Don't show the help button if it is not enabled
20708         instead of disabling it (this is what MS does). Don't create the
20709         panel until the dialog is run, otherwise the vars (such as
20710         ShowHelp) are not set yet.
20711
20712 2005-10-19  Jackson Harper  <jackson@ximian.com>
20713
20714         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
20715         are reduced when adding nodes.
20716         * TreeNode.cs:
20717         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
20718         tree.
20719         
20720 2005-10-19  Jackson Harper  <jackson@ximian.com>
20721
20722         * FolderBrowserDialog.cs: End editing our treeview so the window
20723         actually gets refreshed.
20724
20725 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20726
20727         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
20728           Obsoleted handling of WM_ERASEBKGND, now always draws our background
20729           inside of WM_PAINT
20730
20731 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20732
20733         * MenuAPI.cs: Returns after Hidding window
20734         * XplatUIX11.cs: Added TODO found while debugging menu issues
20735
20736 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20737
20738         * XplatUIX11.cs: Do not re-map the whole window when it's size
20739           becomes non-zero unless it's supposed to be actually visible
20740
20741 2005-10-18  Jackson Harper  <jackson@ximian.com>
20742
20743         * TreeView.cs: We don't need to keep a count anymore.
20744         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
20745         use the Grow method.
20746
20747 2005-10-18  Jackson Harper  <jackson@ximian.com>
20748
20749         * TreeNodeCollection.cs: Insert is not supported on arrays, so
20750         implement it manually here.
20751
20752 2005-10-18  Jackson Harper  <jackson@ximian.com>
20753
20754         * ImageList.cs: Dont kill the list when the colour depth is
20755         changed, just change the colour depth of all the images.
20756         - Same goes for setting the image size. Just resize them all
20757         instead of killing the list softly.
20758
20759 2005-10-18  Jackson Harper  <jackson@ximian.com>
20760
20761         * Control.cs: Don't invalidate empty rectangles.
20762
20763 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20764
20765         * ListViewItem.cs:
20766           - Adds checked item to the Checked/Item lists (where empty before)
20767           - Do not add items to the Selected lists if they are already present
20768         * ListView.cs:
20769           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
20770           - When deleting items make sure that we delete them for the Selected
20771           and Checked list also.
20772
20773 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20774
20775         * Label.cs: Dispose objects no longer used
20776         * ThemeWin32Classic.cs: Dispose objects no longer used
20777
20778 2005-10-18  Jackson Harper  <jackson@ximian.com>
20779
20780         * TabControl.cs: Don't refresh the whole control when the tabs are
20781         scrolled, we just need to refresh the tab area.
20782
20783 2005-10-17  Jackson Harper  <jackson@ximian.com>
20784
20785         * XplatUIX11.cs: Compress code a little bit. Only calculate the
20786         after handle when we need it.
20787
20788 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20789
20790         * Control.cs: When the parent size changes, recalculate anchor 
20791           positions. Partial fix for #76462
20792
20793 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20794
20795         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
20796           drawn. Fixes #76462
20797
20798 2005-10-17  Jackson Harper  <jackson@ximian.com>
20799
20800         * MonthCalendar.cs: Don't create the numeric up down until our
20801         handle is created. Otherwise our handle is created in the
20802         constructor and we don't know if we are a WS_CHILD or WS_POPUP
20803         yet.
20804
20805 2005-10-17  Jackson Harper  <jackson@ximian.com>
20806
20807         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
20808         correctly.
20809
20810 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
20811         * TreeNode.cs : small logical fix (was using local var instead of field)
20812         
20813 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20814
20815         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
20816
20817 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20818
20819         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
20820
20821 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
20822
20823         * Control.cs: 
20824           - Re-implemented anchoring code. My first version was really broken.
20825             This fixes bug #76033. Unlike the previous implementation we will
20826             no longer have round errors since all numbers are calculated from
20827             scratch every time. Removed various anchor-related obsolete vars.
20828           - InitLayout no longer causes layout event firing and layout to be 
20829             performed
20830
20831 2005-10-16  Jackson Harper  <jackson@ximian.com>
20832
20833         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
20834         which was broken).
20835
20836 2005-10-16  Jackson Harper  <jackson@ximian.com>
20837
20838         * TabControl.cs: Remove debug code.
20839
20840 2005-10-16  Jackson Harper  <jackson@ximian.com>
20841
20842         * XEventQueue.cs: Increase the default queue size (very simple
20843         apps needed to grow the queue).
20844         * Hwnd.cs: No finalizer so we don't need to suppress
20845         finalization. Compute the invalid area manually so a new rectangle
20846         does not newto be created.
20847         * ScrollableControl.cs: Don't set any params (otherwise visibility
20848         isn't set correctly).
20849         * MdiChildContext.cs: New constructor takes the mdi parent so it
20850         doesn't have to be computed and avoids a crash on windows. Draw
20851         the window icon properly, and allow the text to be seen.
20852         * Form.cs: Use new MdiChildContext constructor. Make sure the
20853         child context isn't null in wndproc.
20854         * TabControl.cs: Don't set focus, this is muddling keyboard
20855         behavoir. Expand the tab rows when a window size increase will
20856         allow extra tabs to be seen. Don't allow tabs smaller than the
20857         width of a window to be scrolled out of view.
20858         * TreeNode.cs:
20859         * TreeView.cs: Use measure string to calculate a nodes width, the
20860         width is cached and only updated when the text or the font is
20861         changed. Don't check for expand/collapse clicks on the first level
20862         nodes if root lines are disabled.
20863         
20864 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
20865
20866         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
20867
20868 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20869
20870         * DataGridBoolColumn.cs: fixes warning
20871
20872 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20873
20874         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
20875         to match more to match more precisely the MS Net behavior
20876
20877 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20878
20879         * Hwnd.cs: Added field to track if window is mapped
20880         * XplatUIX11.cs: 
20881           - Unmap windows if they become 0-size, re-map when 
20882             they are >0 again; fixes #76035
20883           - Re-set our error handler after initializing X11Desktop
20884             to override any error handlers Gtk or whatever was called
20885             may have set.
20886
20887 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20888
20889         * CheckedListBox.cs: Removed unused vars
20890         * ListView.cs: Fixed signatures
20891         * RichTextBox.cs: Removed unused vars
20892         * TextBoxBase.cs: Removed unused vars
20893         * XplatUIWin32.cs: Removed unused vars
20894         * XplatUIX11.cs: Removed unused vars
20895         * XplatUI.cs: Updated version and date to latest published
20896
20897 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20898
20899         * Cursor.cs: Added private .ctor to work around a bug in
20900           resourceset (Thanks to Geoff Norton for the help on this)
20901         * SplitterEventArgs.cs: Made fields accessible so we don't
20902           waste boatloads of objects and can reuse the same one
20903           in Splitter
20904         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
20905           any captions and borders when generating screen coordinates
20906         * Splitter.cs: Reimplemented control, now fully complete, uses
20907           rubberband drawing, supports and obeys all properties, has
20908           proper cursors
20909
20910 2005-10-13  Miguel de Icaza  <miguel@novell.com>
20911
20912         * Form.cs (Form): Setup default values for autoscale and
20913         autoscale_base_size;  Make these instance variables, not static
20914         variables. 
20915
20916         (OnLoad): on the first load, adjust the size of the form.
20917
20918 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20919
20920         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
20921           width argument to DrawReversibleRectangle()
20922         * XplatUIWin32.cs, XplatUIX11.cs: 
20923           - Implemented width for DrawReversibleRectangle()
20924           - Added logic to DrawReversibleRectangle that recognizes a zero
20925             width or height and only draws a line in that situation
20926         
20927 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
20928
20929         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
20930         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
20931         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
20932           method (it uses our FosterParent window to get a graphics context)
20933
20934 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
20935
20936         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
20937           and SetWindowBackground methods
20938         * Control.cs:
20939           - Setting proper ControlStyles
20940           - We no longer call XplatUI.SetWindowBackground and XplatUI.
20941             EraseWindowBackground, instead we draw the window background
20942             ourselves in PaintControlBackground. This behaviour is
20943             required to match MS, where, when OnPaintBackground is not
20944             called, the background is not drawn.
20945           - Removed unneeded Refresh() in set_Text
20946         * Hwnd.cs: Dropped the ErasePending support. No longer needed
20947         * XplatUIX11.cs:
20948           - Created DeriveStyles method to translate from CreateParams to
20949             FormBorderStyle and TitleStyle, also handles BorderStyle (which
20950             matches FormBorderStyle enum values)
20951           - Consolidated SetHwndStyles and CalculateWindowRect border/title
20952             style calculations into single DeriveStyles method
20953           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
20954             from redrawing the whole window on any resize or expose.
20955           - Fixed CreateWindow usage of SetWindowValuemask. Before not
20956             all styles were applied to our whole/client window appropriately
20957           - Removed EraseWindowBackground() and SetWindowBackground() methods
20958           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
20959             no longer clear/redraw the background through X
20960           - Removed handling of erase_pending bit, we have no use for it (or
20961             so it seems)
20962         * XplatUIOSX.cs:
20963           - Removed generation and handling of WM_ERASEBKGND message
20964           - Removed EraseWindowBackground() and SetWindowBackground() methods
20965           - Removed handling of hwnd.ErasePending flag
20966         * XplatUIWin32.cs:
20967           - Removed EraseWindowBackground() and SetWindowBackground() methods
20968           - We no longer call EraseWindowBackground on PaintEventStart, we 
20969             ignore the fErase flag, erasing is handled in Control in the
20970             background handler
20971         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
20972           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
20973           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
20974           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
20975           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
20976           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
20977           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
20978
20979 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
20980
20981         * PropertyGrids.cs: Get sub properties
20982         * PropertyGridView.cs: Fix drawing code
20983
20984 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20985
20986         * ListBox.cs: Fixes 76383
20987
20988 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20989
20990         * DataGridTextBoxColumn.cs: Sets location and size before attachment
20991         * ThemeWin32Classic.cs: Fixes border drawing and calculations
20992         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
20993
20994
20995 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20996
20997         * ComboBox.cs: Fixes border drawing
20998
20999 2005-10-10  Miguel de Icaza  <miguel@novell.com>
21000
21001         * MimeIcon.cs: Ignore errors if the file can not be read.
21002
21003 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21004
21005         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
21006          - Fixed border calculations
21007          - Fixed horizontal scrolling in single column listboxes
21008          - Fixed drawing issues
21009
21010 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
21011
21012         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
21013           FormBorderStyle enum
21014         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
21015           code to determine FormBorderStyles from CreateParams
21016         * Form.cs:
21017           - Fixed bug where we'd set the wrong window styles if we were
21018             not creating an MDI window
21019           - Added call to XplatUI.SetBorderStyle when form borders are set
21020         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
21021         * Hwnd.cs:
21022           - Removed obsolete edge style
21023           - Switched from BorderStyle to FormBorderStyle
21024         
21025 2005-10-10  Jackson Harper  <jackson@ximian.com>
21026
21027         * Form.cs: Use the property to get the window handle instead of
21028         accessing it directly. Prevents a null reference exception.
21029
21030 2005-10-10  Jackson Harper  <jackson@ximian.com>
21031
21032         * TreeView.cs: Don't adjust the rect given to DrawString now that
21033         our libgdiplus draws correctly.
21034
21035 2005-10-08  Jackson Harper  <jackson@ximian.com>
21036
21037         * TreeView.cs: Don't try to find the clicked on node if there are
21038         no nodes in the tree.
21039
21040 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21041
21042         * RichTextBox.cs:
21043
21044           restore
21045
21046 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21047
21048         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
21049           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
21050           ErrorProvider.cs:
21051           Use ResPool for brushes and dispose System.Drawing objects that
21052           are not used anymore.
21053
21054 2005-10-07  Jackson Harper  <jackson@ximian.com>
21055
21056         * MdiChildContext.cs: Use the new borders instead of drawing them
21057         ourselves.
21058
21059 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21060
21061         * Calling UpdateBounds after changing the window's BorderStyle 
21062         since the style can change the ClientSize
21063
21064 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21065
21066         * Control.cs: Made PaintControlBackground virtual
21067         * Panel.cs: Overriding PaintControlBackground instead of using paint
21068           event; paint event method was interfering with 'real' users of the
21069           event.
21070
21071 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21072
21073         * ThemeWin32Classic.cs: remove border drawing since it is handled
21074         by the base control class now and was causing double border drawing.
21075
21076 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21077
21078         * Panel.cs: Redraw our background on paint. Not a pretty solution,
21079           but it does seem to match MS behaviour. This fixes bug #75324
21080
21081 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21082
21083         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
21084           somewhat hackish looking
21085
21086 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21087
21088         * TextBoxBase.cs:
21089           - We now accept Enter even if AcceptEnter is false, if the containing
21090             form does not have an AcceptButton configured (fixes bug #76355)
21091           - Calculations are now fixed to no longer use Width/Height, but
21092             ClientSize.Width/Height, since we now support borders (this was
21093             a result of fixing borders and therefore bug #76166)
21094           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
21095             true (fixes bug #76354)
21096         
21097 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21098
21099         * Control.cs: 
21100           - Defaulting BorderStyle and setting it in XplatUI when our window 
21101             is created
21102           - Added enum check to InternalBorderStyle setter
21103         * XplatUIX11.cs: 
21104           - Added drawing of window borders
21105           - Now properly calculates WM decorations offset for toplevel 
21106             windows (fixes bug #74763)
21107         * XplatUIWin32.cs: 
21108           - Implemented BorderStyles for windows (we're letting win32 draw 
21109             the border for us)
21110           - Fixed the signature for SetWindowLong
21111         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
21112           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
21113           setting borders
21114         * UpDownBase.cs: Remove drawing of borders, this is handled by
21115           the driver, outside the client area
21116         * ListView.cs: Removed bogus border calculations. The control should
21117           be oblivious to borders, since those are not part of the client
21118           area. 
21119         * X11DesktopColors.cs: Commented out (currently) unneeded variables
21120         * ThemeWin32Classic.cs: Removed border calculations from ListView 
21121           drawing code
21122
21123 2005-10-06  Jackson Harper  <jackson@ximian.com>
21124
21125         * MdiChildContext.cs: Clear out the old virtual position remove
21126         all the unneeded calls to CreateGraphics.
21127
21128 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21129
21130         * TextControl.cs: Use proper color for highlighted text; fixes #76350
21131
21132 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21133
21134         * Form.cs: 
21135           - Added loading and setting of our new default icon
21136           - Only set icon if window is already created
21137
21138 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21139
21140         * Label.cs:
21141           - Do not explicitly set the foreground and background colors, to
21142             allow inheriting from parents (fixes #76302)
21143           - Use Control's InternalBorderStyle property to deal with borders
21144
21145 2005-10-06  Jackson Harper  <jackson@ximian.com>
21146
21147         * MdiChildContext.cs: Use the new xplatui function to draw a
21148         reversible rect.
21149
21150 2005-10-06  Jackson Harper  <jackson@ximian.com>
21151
21152         * Form.cs: Add the parent before creating the child context cause
21153         we need the parent when setting up the child.
21154
21155 2005-10-06  Jackson Harper  <jackson@ximian.com>
21156
21157         * FolderBrowserDialog.cs: redo the tree population code so a
21158         second thread isn't used. Should be a lot faster and more stable
21159         now.
21160
21161 2005-10-05  Jackson Harper  <jackson@ximian.com>
21162
21163         * TreeView.cs: There are no expand/collapse boxes if the node has
21164         no children.
21165
21166 2005-10-05  Jackson Harper  <jackson@ximian.com>
21167
21168         * X11DesktopColors.cs: Get menu colours for the gtk theme.
21169
21170 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
21171
21172         * FileDialog.cs: Fix InitialDirectory
21173
21174 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
21175
21176         * ComboBox.cs:
21177                 - Fixes changing between styles
21178                 - Fixes simple mode
21179                 - Fixes last item crashing when navigating with keyboard
21180
21181 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
21182
21183         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
21184
21185 2005-10-05  Jackson Harper  <jackson@ximian.com>
21186
21187         * TreeView.cs: If updating the root node do a full refresh.
21188         * TreeNode.cs: The root node should be expanded by default. Also
21189         added a utility prop to tell if we are the root node.
21190         * TreeNodeCollection.cs: Only refresh if the node we are being
21191         added to is expanded. Also added a comment on a potential
21192         optimization.
21193         
21194 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
21195
21196         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
21197           in dispose method. Fixes #76330
21198
21199 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
21200
21201         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
21202
21203                 - Implements vertical and horizontal scrolling using XplatUI
21204                 - Fixes keyboard navagation
21205                 - Fixes EnsureVisible
21206                 - Drawing fixes
21207                 - Handles and draws focus properly
21208
21209
21210 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
21211
21212         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
21213           Create handle. NET_2_0: Destroy handle when value is null.
21214
21215 2005-10-03  Jackson Harper  <jackson@ximian.com>
21216
21217         * ScrollBar.cs: My last scrollbar patch was broken. This is a
21218         revert and a new patch to prevent the thumb from refreshing so
21219         much.
21220
21221 2005-10-02  Jackson Harper  <jackson@ximian.com>
21222
21223         * ScrollBar.cs: Don't update position if it hasn't actually
21224         changed. This occurs when you hold down the increment/decrement
21225         buttons and the thumb gets to the max/min.
21226
21227 2005-10-01  Jackson Harper  <jackson@ximian.com>
21228
21229         * Form.cs:
21230         * MdiChildContext.cs:
21231         * MdiClient.cs: Implement ActiveMdiChild in Form.
21232
21233 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
21234
21235         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
21236
21237 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
21238
21239         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
21240           be found
21241
21242 2005-09-30  Jackson Harper  <jackson@ximian.com>
21243
21244         * ListBox.cs: Don't do a full refresh unless some data has
21245         actually changed.
21246
21247 2005-09-30  Jackson Harper  <jackson@ximian.com>
21248
21249         * TreeView.cs: Make sure that the checkboxes size is factored in
21250         even when not visible.
21251
21252 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21253
21254         * FileDialog.cs: Fix Jordi's build break
21255
21256 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21257
21258         * FileDialog.cs: 
21259                 - Use standard the Windows colours for the combobox as espected
21260                 - Dispose objects that use resouces when no longer need them
21261
21262 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21263
21264         * X11DesktopColors.cs: Initial incomplete implementation
21265         * XplatUIX11.cs: Added call to initialize X11DesktopColors
21266
21267 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
21268
21269         * Theme.cs: 
21270           - Switched Theme color names to match the names defined in 
21271             System.Drawing.KnownColors. Life's hard enough, no need to make 
21272             it harder.
21273           - Added setters to all theme color properties so themes can set
21274             their color schemes. The setters also propagate the color changes
21275             to System.Drawing.KnownColors via reflection
21276         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
21277           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
21278           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
21279           use the new, more logical theme color names
21280         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
21281           post-NT colors
21282         * ThemeWin32Classic.cs:
21283           - Removed code to set the old classic Windows colors. Instead it
21284             now relies on the colors returned by System.Drawing.KnownColors
21285             which will be either modern static colors (Unix) or colors
21286             read from the user's configuration (Win32)
21287           - Updated to use the new, more logical theme color names
21288           - Switched DataGrid drawing code to use only Theme colors instead of
21289             a mix of System.Drawing.KnownColors and Theme colors
21290           - DrawFrameControl(): Removed code that fills the button area, the
21291             fill would overwrite any previous fill done by a control. This
21292             fixes bug #75338 
21293           - Added DrawReversibleRectangle() stub
21294         * ScrollableControl.cs: Set visible state to false when scrollbars
21295           are removed (pdn fix)
21296         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
21297           DrawReversibleRectangle() method to allow drawing primitive 
21298           'rubber bands'
21299         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
21300
21301 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21302
21303         * ImageList.cs: Add(Icon): Create handle.
21304
21305 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21306
21307         * ListView.cs:
21308         * ThemeWin32Classic.cs:
21309                 - Fixes detail mode
21310                 - Sets clippings
21311                 - Issues with drawing
21312
21313 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21314
21315         * ImageList.cs: Moved RecreateHandle back to ImageList as event
21316           source has to be the ImageList.
21317
21318 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21319
21320         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
21321
21322 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21323
21324         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
21325
21326 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21327
21328         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
21329
21330 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
21331         * GridItem.cs: Fixed TODOs
21332         * GridItemCollection.cs: Added ICollection interface
21333
21334 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21335
21336         * ImageList.cs: Resize icons when needed.
21337
21338 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
21339
21340         * ListViewItem.cs
21341                 - Fixes GetBounds and returns on screen rects
21342         * ListView.cs:
21343                 - Fixes vertical and horzintal scrolling of items
21344         * ThemeWin32Classic.cs:
21345                 - Fixes drawing
21346                 
21347 2005-09-29  Raja R Harinath  <harinath@gmail.com>
21348
21349         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
21350
21351 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
21352
21353         * ImageList.cs: Added comments about handle creation. Moved Handle,
21354           HandleCreated and OnRecreateHandle implementations to ImageCollection.
21355           Handle is created in Add methods.
21356
21357 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
21358          
21359         * DataGridDrawingLogic.cs: 
21360                 - Takes rows into account on Colum calculations
21361                 - Returns the column when clickig
21362         * DataGrid.cs:
21363                 - Fixes default HitTestInfo values
21364                 - Fixes HitTestInfo.ToString
21365                 - Fixes ResetBackColor          
21366         
21367 2005-09-28  Jackson Harper  <jackson@ximian.com>
21368
21369         * MdiChildContext.cs: Obey rules for fixed sized windows (no
21370         sizing or cursor changes). Also added some temp code to draw the
21371         titlebars text (Makes dev a little easier).
21372
21373 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
21374
21375         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
21376
21377 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
21378          
21379         * ListBox.cs: Fixes bug 76253
21380
21381 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
21382
21383         * ImageList.cs: Added comments about the current implementation. Added
21384           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
21385           Format32bppArgb to preserve transparency and can use Graphics.FromImage
21386           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
21387           with Bitmap.LockBits for better performance. Revised the whole file to
21388           match MS.NET behaviour and provide better performance. Non-public
21389           interface members are calling public members even when they throw
21390           NotSupportedException for better maintainability. Moved ColorDepth,
21391           ImageSize, ImageStream and TransparentColor implementations to
21392           ImageCollection for better performance as these properties are not used
21393           by ImageList.
21394         * ImageListStreamer.cs: Added a new internal constructor that takes an
21395           ImageList.ImageCollection and serializes Images based on
21396           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
21397           match ImageList property name.
21398
21399 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
21400
21401         * ListBox.cs: Fixes IndexFromPoint for last item
21402
21403 2005-09-27  Jackson Harper  <jackson@ximian.com>
21404
21405         * Form.cs: Set the position of new mdi children correctly.
21406
21407 2005-09-27  Jackson Harper  <jackson@ximian.com>
21408
21409         * MdiClient.cs: New mdi children need to be added to the back of
21410         the controls collection so the zorder is set correctly. Also add a
21411         count of all the child windows that have been created.
21412
21413 2005-09-27  Jackson Harper  <jackson@ximian.com>
21414
21415         * Form.cs (CreateParams): Setup MDI forms correctly.
21416
21417 2005-09-27  Jackson Harper  <jackson@ximian.com>
21418
21419         * MdiChildContext.cs:
21420         * MonthCalendar.cs:
21421         * UpDownBase.cs:
21422         * ListBox.cs:
21423         * ListView.cs:
21424         * TextBoxBase.cs:
21425         * TreeView.cs:
21426         * ScrollableControl.cs:
21427         * ComboBox.cs: Add implicit controls using the new implict control
21428         functionality in ControlCollection. Also try to block multiple
21429         control add in a suspend/resume layout to save some cycles.
21430         
21431 2005-09-27  Jackson Harper  <jackson@ximian.com>
21432
21433         * Control.cs: Add functionality to the controls collection to add
21434         'implicit controls' these are controls that are created by the
21435         containing control but should not be exposed to the user. Such as
21436         scrollbars in the treeview.
21437         * Form.cs: The list var of the ControlsCollection is no longer
21438         available because of the potential of implicit controls getting
21439         ignored by someone accessing the list directly.
21440
21441 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
21442
21443         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
21444           loose it's parent. (Fixed bug introduced in r49103 when we added
21445           setting the child parent to null on Remove)
21446
21447 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
21448
21449         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
21450         * Splitter.cs: Added missing attributes for BorderStyle property.
21451         * TextBoxBase.cs: Marked Calculate* methods internal.
21452         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
21453         MS.NET.
21454
21455 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
21456          
21457         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
21458
21459 2005-09-25  Jackson Harper  <jackson@ximian.com>
21460
21461         * TreeView.cs: Update the node bounds correctly regardless of
21462         whether the node is visible.
21463
21464 2005-09-25  Jackson Harper  <jackson@ximian.com>
21465
21466         * ImageList.cs: Don't dispose the image after it is added to the
21467         image list. Only reformat images that need to be resized.
21468
21469 2005-09-25  Jackson Harper  <jackson@ximian.com>
21470
21471         * ImageList.cs: Don't set the format when changing the image.
21472
21473 2005-09-25  Jackson Harper  <jackson@ximian.com>
21474
21475         * TreeView.cs: We can't just assume the node has a font. Use the
21476         treeviews font if no node font is available.
21477
21478 2005-09-25  Jackson Harper  <jackson@ximian.com>
21479
21480         * TreeView.cs: Allow the scrollbars to be reset with negative
21481         values.
21482         - Don't add scrollbars to negative sized windows.
21483
21484 2005-09-23  Jackson Harper  <jackson@ximian.com>
21485
21486         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
21487         old Mono.Posix. Also remove some stray code that shouldn't have
21488         been committed.
21489
21490 2005-09-23  Jackson Harper  <jackson@ximian.com>
21491
21492         * TreeView.cs: Attempt at proper sizing of the horizontal
21493         scrollbar. Also don't resize the scrollbars unless they are
21494         visible.
21495
21496 2005-09-23  Jackson Harper  <jackson@ximian.com>
21497
21498         * TreeView.cs: We don't need to expand the invalid area when the
21499         selection changes, as this is all drawn in the node's bounding
21500         box. The area needs to be expanded (previous typo was contracting
21501         it) when the focus rect moves.
21502
21503 2005-09-23  Jackson Harper  <jackson@ximian.com>
21504
21505         * TreeView.cs: Display the selection box under the correct
21506         circumstances. We were rendering white text with no selection box
21507         before.
21508
21509 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
21510
21511         * TextControl.cs(Split): Now updates selection start/end if it points 
21512           into a line that's being split. Fixes a FIXME and bug #75258
21513
21514 2005-09-23  Jackson Harper  <jackson@ximian.com>
21515
21516         * Binding.cs:
21517         * ListControl.cs: Don't use the path when retrieving binding
21518         managers from the binding context. My bat sense tells me that the
21519         path is only used on insertion.
21520
21521 2005-09-22  Jackson Harper  <jackson@ximian.com>
21522
21523         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
21524
21525 2005-09-22  Jackson Harper  <jackson@ximian.com>
21526
21527         * Splitter.cs: There are special cursors used for splitting.
21528         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
21529
21530 2005-09-22  Jackson Harper  <jackson@ximian.com>
21531
21532         * Splitter.cs: Change the cursor appropriately when the splitter
21533         is moused over, so the user actually knows there is a splitter
21534         there.
21535
21536 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21537
21538        * Label.cs : Fix ToString method to give same output as MS.NET
21539
21540 2005-09-22  Jackson Harper  <jackson@ximian.com>
21541
21542         * TreeView.cs: Create the scrollbars when the handle is created
21543         and add them right away, just make them invisble. Also account for
21544         the window being shrunk vertically to the point that the vert
21545         scrollbar needs to be added.
21546         - Remove some 0.5 adjustments to get around anti aliasing issues.
21547         
21548 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
21549          
21550         * MainMenu.cs: Fixes default value
21551         * MenuItem.cs: Fixes default value
21552
21553 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
21554
21555         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
21556
21557 2005-09-21  Jackson Harper  <jackson@ximian.com>
21558
21559         * Control.cs: Don't try to set the border style on the window if
21560         it hasn't been created. When the window is created the border
21561         style will be used.
21562
21563 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21564
21565         * Control.cs (Update): Don't call XplatUI if we don't have a
21566           window handle yet
21567
21568 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21569
21570         * ContainerControl.cs: Instead of throwing an exception, print
21571           a one-time warning about Validate not being implemented
21572         * XplatUIWin32.cs: Removed debug output
21573
21574 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21575
21576         * Control.cs: Only set XplatUI background if we expect the windowing
21577           system to handle the background. This stops controls that draw their
21578           own background from flickering
21579
21580         * XplatUIX11.cs: Support custom visuals and colormaps for window 
21581           creation. This allows, amongst other things, using MWF X11 windows 
21582           with OpenGL.
21583
21584 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21585
21586         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
21587           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
21588           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
21589           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
21590           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
21591           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
21592           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
21593           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
21594           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
21595           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
21596           GridColumnStylesCollection.cs, 
21597           IDataGridColumnStyleEditingNotificationService.cs,
21598           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
21599           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
21600           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
21601           TreeNodeCollection.cs, AmbientProperties.cs, 
21602           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
21603           DataObject.cs, ErrorProvider.cs, Splitter.cs,
21604           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
21605           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
21606           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
21607           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
21608           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
21609           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
21610           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
21611           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
21612           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
21613           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
21614           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
21615           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
21616           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
21617           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
21618           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
21619           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
21620           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
21621           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
21622           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
21623           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
21624           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
21625           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
21626           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
21627           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
21628           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
21629           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
21630           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
21631           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
21632           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
21633           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
21634           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
21635           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
21636           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
21637           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
21638           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
21639
21640 2005-09-21  Jackson Harper  <jackson@ximian.com>
21641
21642         * TreeNode.cs: Call Before/After Expand not Collapse when
21643         expanding.
21644
21645 2005-09-20  Jackson Harper  <jackson@ximian.com>
21646         
21647         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
21648
21649 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21650          
21651         * ListViewItem.cs:
21652                 - Fixes bug 76120
21653                 - Fixes proper storing of subitems
21654                 - Fixes not updated items
21655
21656 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
21657
21658         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
21659           things if our window handle isn't created yet. Also disabled 
21660           debug for TextBoxBase
21661
21662 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
21663
21664         * MenuAPI.cs: Remove filtering of events to allow menu usage
21665
21666 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21667
21668         * Cursor.cs: Allow null to be passed to Cursor.Current.
21669
21670 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
21671
21672         * ThemeWin32Classic.cs:
21673           - Change some private methods/fields to protected virtual so that 
21674             they can be accessed and overriden in derived classes
21675           - First refactoring of some methods. Derived themes now don't 
21676             need to duplicate the complete code from ThemeWin32Classic
21677         * ThemeNice.cs:
21678           - Added nice StatusBar
21679           - Derive from ThemeWin32Classic and not Theme
21680           - Removed duplicate ThemeWin32Classic code
21681
21682 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21683
21684         * Control.cs (ControlCollection.Add): If the value null is passed
21685         the control is ignored. 
21686
21687         Optimize this loop.
21688
21689 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
21690
21691         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
21692           PostQuitMessage state.
21693         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
21694
21695 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
21696
21697         * Application.cs: Our constructor will never get called, move 
21698           initialization to fields; fixes bug #75933
21699
21700 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21701
21702         * FileDialog.cs :
21703                 - Allow files to be selected properly using file name
21704                 combo box.
21705                 - Add ability to change diretory (absolute / relative)
21706                 using file name combo box.
21707
21708 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21709          
21710         * ListBox.cs: 
21711                 - Fixes Multicolumn listboxes item wrong calculations
21712                 - Allows to click when only one item is in the listbox
21713                 - Fixes crash when no items using keyboard navigation
21714
21715 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
21716
21717         * ComboBox.cs: Reverted almost everything from the latest patch which
21718           broke ComboBox
21719
21720 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
21721         
21722         * ToolTip.cs:
21723                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
21724         * ComboBox.cs:
21725                 - When DropDownStyle is Simple, it does not show scrollbar 
21726                 to the last item of the list.
21727                 - When DropDownStyle is Simple, it crashed when the list was 
21728                 scrolled down with the down cursor key.
21729                 - Fixed a bug that when DropDownStyle is DropDownList, the 
21730                 selected item was not shown.
21731                 - The position of the selected item was not preserved when 
21732                 the next dropdown happened.
21733         * ThemeWin32Classic.cs:
21734                 - Items were wrapped at the right end.
21735         * CheckedListBox.cs:
21736                 - Fixed Add method
21737         * ListBox.cs:
21738                 - Items should be fully shown.
21739                 - When resizing and vertical scrollbar disappeared, the item 
21740                 of index 0 should be on the top of the list.
21741                 - GetItemRectangle should consider the size of ver. scrollbar
21742         * StatusBar.cs:
21743                 - SizingGrip area should not be allocated when it is not 
21744                 displayed.
21745                 - Now it reflects MinWidth of the containing panel and 
21746                 fixed a crash that happens when its width becomes so small.
21747
21748 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21749
21750         * CheckedListBox.cs: Fixes bug 76028
21751         * ListBox.cs: Fixes bug 76028
21752
21753 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21754
21755         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
21756         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
21757
21758 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
21759
21760         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
21761
21762 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21763
21764         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
21765
21766 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21767
21768         * IRootGridEntry.cs: Added
21769         * PropertyGridCommands.cs: Added
21770         * PropertiesTab.cs: Added missing methods and property
21771         * PropertyGridView.cs: Made class internal
21772         * PropertyGridTextBox.cs: Made class internal
21773
21774 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21775
21776         * MimeIcon.cs: Try to check some other environment variables
21777           if "DESKTOP_SESSION" returns "default"
21778
21779 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21780
21781         * ThemeNice.cs: Corrected background colors (e.g. menus)
21782         * ColorDialog.cs: Use correct background colors for controls
21783
21784 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21785
21786         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
21787
21788 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
21789
21790         * RichTextBox.cs: Added initial implementation
21791         * lang.cs: Removed. Was accidentally checked in long time ago
21792         * TODO: Removed. Contents were obsolete
21793
21794 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21795                                                                                 
21796         * PropertiesTab.cs : Added
21797
21798 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21799                                                                                 
21800         * PropertyGrid.cs : Update
21801         * PropertyGridView.cs : Update
21802         * System.Windows.Forms.resx : Added images and strings
21803
21804 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
21805
21806         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
21807  
21808 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
21809
21810         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
21811           a busy loop right after the Ungrab the X11 display is otherwise 
21812           blocked
21813
21814 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
21815
21816         * ThemeWin32Classic.cs: Optimise the use of clipping
21817
21818 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
21819
21820         * DataGrid.cs: fixes recursion bug
21821
21822 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
21823
21824         * ThemeNice.cs: 
21825           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
21826           - Cleanup
21827
21828 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
21829
21830         * ThemeNice.cs: Draw nice ProgressBars
21831
21832 2005-09-01  Miguel de Icaza  <miguel@novell.com>
21833
21834         * VScrollBar.cs: Another buglet found by Aaron's tool. 
21835
21836         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
21837         bug finder.
21838
21839 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
21840
21841         * ThemeNice.cs:
21842           - Added nicer menu drawing
21843           - Updated DrawTab
21844           - some refactoring
21845
21846 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21847
21848         * CreateParams.cs (ToString): Made output match MS
21849         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
21850             handle is already created (to avoid forcing window creation)
21851         * XplatUIX11.cs: Set window text to caption after creating window,
21852           in case Text was set before window was created
21853         * Form.cs: Use this.Text instead of a static string as caption
21854
21855 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21856
21857         * NotifyIcon.cs: Don't set the window to visible; this screws
21858           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
21859           OnPaint without a bitmap)
21860         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
21861           happen very often anyway; we could add the check to the WM_PAINT 
21862           event generation code
21863
21864 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21865
21866         * NotifyIcon.cs: Fill the icon area with a background color, to 
21867           avoid 'residue' when transparent icons are drawn
21868         * XplatUIX11.cs:
21869           - Handle whole_window == client_window when destroying windows
21870           - SystrayAdd(): Set client_window to whole_window value to
21871             get mouse and other events passed to NotifyIcon
21872
21873 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21874
21875         * Form.cs: Set proper default for Opacity property
21876         * NotifyIcon.cs:
21877           - ShowSystray(): Don't bother creating telling the OS
21878             about the systray item if no icon is provided
21879           - Now handles WM_NCPAINT message to deal with whole/client window
21880             split
21881           - Create window as visible to not get caught by Expose optimization
21882         * Hwnd.cs: Removed debug message
21883         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
21884           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
21885             PaintEventStart/End to use new client argument
21886         * TextBoxBase.cs:
21887           - Commented out debug messages
21888           - Switched PaintEventStart/End to use new client argument
21889         * XplatUI.cs: Added client window bool to PaintEventStart()/
21890           PaintEventEnd() calls, to support drawing in non-client areas
21891         * XplatUIDriver.cs: 
21892           - Added client window bool to PaintEventStart()/PaintEventEnd() 
21893             calls, to support drawing in non-client areas
21894           - Added conditional compile to allow using MWF BeginInvoke 
21895             on MS runtime
21896         * XplatUIX11.cs:
21897           - Added some conditional debug output
21898           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
21899             whole/client window split
21900           - Implemented handling of client argument to PaintEventStart()/End()
21901         * Control.cs:
21902           - Throw exception if BeginInvoke() is called and the window handle
21903             or one of the window's parent handles is not created
21904           - Added conditional compile to allow using MWF BeginInvoke on
21905             MS runtime
21906           - get_Parent(): Only sets parent if handle is created. This avoids
21907             forcing window handle creation when parent is set.
21908           - Now fires Layout and Parent changed events in proper order
21909           - Switched to use Handle instead of window.Handle for Z-Order setting,
21910             the get_Parent() patch above causes us to possibly get null for 'window'
21911           - Implemented handling of client argument to PaintEventStart()/End()
21912           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
21913             default handling)
21914           - Now sends a Refresh() to all child windows when Refresh() is called
21915
21916 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
21917
21918         * Form.cs: Added (non-functional) Opacity property
21919         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
21920
21921 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
21922         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
21923           use export MONO_THEME=nice to activate it.
21924           Currently supported controls:
21925           - Button
21926           - ComboBox
21927           - ScrollBar
21928           - TabControl (TabAlignment.Top only, other will follow)
21929         * ThemeEngine.cs: Add theme nice
21930         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
21931           if enabled
21932
21933 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
21934
21935         * Splitter.cs: Resize docked control and its neighbor.
21936
21937 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21938         -- Making Windows with Menus layout correctly --
21939         * Form.cs : The first leg of the fix
21940                 Menu setter - adjust Client Size as needed to make space for the menu
21941                 SetClientSizeCore - doesn't call base version to be able to pass the 
21942                         menu handle to XplatUI.CalculateWindowRect
21943         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
21944         * XplatUIX11.cs: The critical second leg of the fix
21945                 GetWindowPos needs to use a recalculated client_rect
21946                 so that resizing the window doesn't break layout of child controls. 
21947                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
21948                 Lots of \t\n killed
21949
21950 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
21951
21952         * Label.cs: Now properly recalculates width and height on Font and Text
21953           changes if AutoSize is set
21954
21955 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21956         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
21957
21958 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
21959
21960         * ImageList.cs: Makes ToString method compatible with MS
21961
21962 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
21963
21964         * MenuAPI.cs: fixes bug 75716
21965
21966 2005-08-11 Umadevi S <sumadevi@novell.com>
21967         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
21968
21969 2005-08-11 Umadevi S <sumadevi@novell.com>
21970         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
21971
21972 2005-08-10  Umadevi S <sumadevi@novell.com>
21973         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
21974
21975 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
21976
21977         * Menu.cs: fixes bug 75700
21978         * MenuAPI.cs: fixes navigation issues
21979
21980 2005-08-09  Umadevi S <sumadevi@novell.com>
21981         * CheckedListBox.cs - simple fix for GetItemChecked.
21982
21983 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
21984
21985         * ComboBox.cs: Serveral fixes
21986         * ListBox.cs: Serveral fixes
21987
21988 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
21989
21990         * ComboBox.cs: Fixes FindString methods and GetItemHeight
21991         * ListBox.cs: Fixes FindString methods
21992
21993 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
21994
21995         * DataGrid.cs: fixes bugs exposed by new tests
21996
21997 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
21998
21999         * Mime.cs: Compile Mono assembly references only if compiling
22000           with Mono (Allows to build with VS.Net again)
22001
22002 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
22003
22004         * Control.cs (PaintControlBackground): Draw background image
22005         corrrectly.
22006         (CheckForIllegalCrossThreadCalls): Stubbed.
22007         
22008         * Form.cs (OnCreateControl): Center when should be centered.
22009         
22010         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
22011
22012 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
22013
22014         * Binding.cs: Binding to properties should be case unsensitive
22015
22016 2005-07-18 vlindos@nucleusys.com
22017
22018         * DataGrid.cs: fixes setmember order
22019
22020 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
22021
22022         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
22023         * FileDialog.cs: FileDialog is now resizable and uses the new
22024           MimeIconEngine
22025
22026 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
22027
22028         * DataGridTextBoxColumn.cs: default value
22029         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
22030         * GridTableStylesCollection.cs: fixes checking MappingName
22031         * DataGridDrawingLogic.cs: fixes drawing logic issues
22032         * DataSourceHelper.cs: rewritten to make compatible with more data sources
22033         * DataGrid.cs: fixes    
22034
22035 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
22036
22037         * MimeGenerated.cs: Use case sensitive comparer for
22038           NameValueCollections
22039
22040 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
22041
22042         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
22043         * ThemeWin32Classic.cs: bug fixes, code refactoring
22044         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
22045         * DataGrid.cs: bug fixes, code refactoring
22046         * DataGridTextBox.cs: bug fixes, code refactoring
22047         * DataGridColumnStyle.cs:  bug fixes, code refactoring
22048         * Theme.cs:  bug fixes, code refactoring
22049
22050 2005-07-01  Peter Bartok  <pbartok@novell.com> 
22051
22052         * TextControl.cs: Quick fix for the reported crash on ColorDialog
22053           and other text box usage
22054
22055 2005-07-01  Jackson Harper  <jackson@ximian.com>
22056
22057         * TabControl.cs: Make sure the bottom of the tab covers the pages
22058         border.
22059
22060 2005-06-30  Peter Bartok  <pbartok@novell.com> 
22061
22062         * Form.cs (ShowDialog): Assign owner of the dialog
22063         * TextBoxBase.cs: Always refresh caret size when deleting, caret
22064           might have been moved to a tag with different height
22065
22066 2005-06-30  Jackson Harper  <jackson@ximian.com>
22067
22068         * Form.cs: Don't create an infinite loop when setting focus
22069         * MenuItem.cs: Don't dirty the parents if we don't have any
22070
22071 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
22072
22073         * LibSupport.cs: Rename
22074
22075 2005-06-29  Peter Bartok  <pbartok@novell.com>
22076
22077         * TextBoxBase.cs: Re-align caret after deleting a character
22078         * TextControl.cs:
22079           - DeleteChars(): Ensure that tag covers the provided position
22080           - StreamLine(): Drop reference for dropped tag
22081
22082 2005-06-29  Peter Bartok  <pbartok@novell.com> 
22083
22084         * TextControl.cs: 
22085           - Selections now work properly, anchoring at the initial location
22086             and properly extending in either direction (SetSelectionToCaret(),
22087             SetSelectionStart() and SetSelectionEnd())
22088           - No longer redraws the whole control on selection change, now
22089             calculates delta between previous and new selection and only
22090             invalidates/redraws that area
22091           - Fixed FindPos() math off-by-one errors
22092           - Changed DeleteChars() to verify the provided tag covers the
22093             provided position, selections may have a tag that doesn't cover
22094             the position if the selection is at a tag border
22095           - Fixed off-by-one errors in DeleteChars()
22096           - Added missing streamlining check in DeleteChars() to remove
22097             zero-length tags
22098           - Implemented Invalidate() method, now properly calculates exposures
22099             between two given lines/positions
22100           - Implemented SetSelection()
22101           - Obsoleted and removed FixupSelection()
22102           - Improved RecalculateDocument() logic, removing code duplication
22103
22104 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22105
22106         * LibSupport.cs: changes to match different input/output arguments.
22107
22108 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22109
22110         * LibSupport.cs: added libsupport.so init routine.
22111
22112 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
22113         
22114         * ControlBindingsCollection.cs
22115                 - Throws an exception on null datasource when adding
22116                 - Checks for duplicated bindings when adding
22117
22118 2005-06-28  Jackson Harper  <jackson@ximian.com>
22119
22120         * TreeView.cs (OnKeyDown): Support left and right properly
22121         (navigates as well as expanding and collapsing.
22122         - Add support for Multiply, this expands all the selected nodes
22123         children.
22124         - Fix some tabbing.
22125
22126 2005-06-28  Jackson Harper  <jackson@ximian.com>
22127
22128         * TreeView.cs: Implement keyboard navigation, currently supports,
22129         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
22130         support for toggling checkboxes with the space bar.
22131
22132 2005-06-28  Jackson Harper  <jackson@ximian.com>
22133
22134         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
22135         tree.
22136
22137 2005-06-28  Jackson Harper  <jackson@ximian.com>
22138
22139         * TreeView.cs: Add missing event.
22140
22141 2005-06-27  Peter Bartok  <pbartok@novell.com> 
22142
22143         * TextControl.cs:
22144           - Made line ending size configurable (now allows for counting 
22145             lineendings as \n or \r\n)
22146           - Added margin to viewport to keep caret visible on right side
22147           - Fixed translation routines for line/pos to documentpos to consider
22148             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
22149           - Fixed some line-endings to be unix style
22150           - Fixed Document.FormatText to perform it's calculations 1-based
22151           - Added descriptions for a few methods that might otherwise get 
22152             used wrong
22153           - Added NOTE section with some basic conventions to remember at 
22154             the top of the file
22155           - Major fixup for RichTextBox selection drawing:
22156             * Fixed crashes when multiple tags on a single line were selected
22157             * fixed selection box drawing not overlaying text
22158             * fixed bogus offset calculation for tags not starting at index 1
22159             * Switched behaviour from using multiple Substrings of a 
22160               StringBuilder.ToString() to using multiple 
22161               StringBuilder.ToString(start, length) statements, hoping this is
22162               faster (kept original version commented out in the code, in case
22163               original version was faster)
22164         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
22165           alignment != Left
22166         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
22167           call it as well
22168
22169 2005-06-27  Jackson Harper  <jackson@ximian.com>
22170
22171         * TabControl.cs: Move to the left and right with the arrow
22172         keys. These keys don't cycle beyond first and last like
22173         tab. Refresh all the tabs when scrolling them to the left or
22174         right.
22175
22176 2005-06-27  Jackson Harper  <jackson@ximian.com>
22177
22178         * TabControl.cs:
22179           - ToString: Added method
22180           - CreateParams: Remove TODO and comment
22181           - OnKeyDown: Cycle through bounds properly.
22182           - SelectedIndex: Scroll to the right or left if we need to
22183           display the newly selected tab.
22184
22185 2005-06-23  Jackson Harper  <jackson@ximian.com>
22186
22187         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
22188         set.
22189
22190 2005-06-23  Jackson Harper  <jackson@ximian.com>
22191
22192         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
22193         CTRL-SHIFT-TAB, and HOME, END are there any others?
22194
22195 2005-06-23  Jackson Harper  <jackson@ximian.com>
22196
22197         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
22198
22199 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22200         
22201         * DataGridTextBoxColumn.cs: fixes and enhancements
22202         * ThemeWin32Classic.cs: fixes and enhancements
22203         * DataGridBoolColumn.cs:  fixes and enhancements
22204         * DataGridDrawingLogic.cs:  fixes and enhancements
22205         * CurrencyManager.cs: fixes and enhancements
22206         * DataGrid.cs: fixes and enhancements
22207         * DataGridColumnStyle.cs:  fixes and enhancements
22208
22209 2005-06-22  Jackson Harper  <jackson@ximian.com>
22210
22211         * TabControl.cs: Add some missing methods that just call into the
22212         base. Make the TabPageCollection's IList interface behave in the
22213         same manner as the MS implementation.
22214
22215 2005-06-22  Peter Bartok  <pbartok@novell.com> 
22216
22217         * TextControl.cs: Added sanity check
22218         * TextBoxBase.cs: 
22219           - Fixed wrapping behaviour, don't set wrap on single line controls
22220             (this fixes the breakage of colordialog introduced in an earlier
22221              checkin)
22222           - Added rudimentary support for autoscrolling right-aligned controls
22223             (still needs fixing, also, center alignment scroll is missing)
22224
22225 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22226         
22227         * ScrollBar.cs: Fixes thumbpos on Maximum values
22228
22229 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
22230         
22231         * PropertyGridView.cs: Pass context information to UITypeEditors 
22232
22233 2005-06-21  Peter Bartok  <pbartok@novell.com> 
22234
22235         * TextBoxBase.cs:
22236           - Now calling PositionCaret with absolute space coordinates
22237           - Enabled vertical scrolling
22238           - Better tracking of scrollbar changes, tied into WidthChange
22239             event
22240           - Improved cursor tracking
22241           - Removed debug output
22242         * TextControl.cs:
22243           - PositionCaret coordinates are now works in absolute space, not 
22244             the canvas
22245           - Improved tracking of document size
22246           - Added events for width and height changes
22247
22248 2005-06-21  Peter Bartok  <pbartok@novell.com>
22249
22250         * Form.cs: Set focus to active control when form is activated
22251         * TextControl.cs: 
22252           - Added word-wrap functionality to RecalculateLine() 
22253           - Added some short function descriptions for VS.Net to aid in
22254             writing dependent controls
22255           - Added Caret property, returning the current coords of the caret
22256           - Added ViewPortWidth and ViewPortHeight properties
22257           - Added Wrap property
22258           - Added CaretMoved event
22259           - Removed some old debug code
22260           - Split() can now create soft splits
22261           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
22262           - Added method to format existing text
22263           - Fixed size/alignment calculations to use viewport
22264           - RecalculateDocument now can handle changing line-numbers while
22265             calculating lines
22266
22267         * TextBox.cs:
22268           - Added some wrap logic, we don't wrap if alignment is not left
22269           - Added casts for scrollbar var, base class switched types to
22270             also support RichTextBoxA
22271           - Implemented handling of scrollbar visibility flags
22272
22273         * TextBoxBase.cs:
22274           - Switched scrollbars type to RichTextBoxScrollBars to support
22275             RichTextBox
22276           - Added tracking of canvas width/height
22277           - Switched scrollbars to be not selectable (to keep focus on text)
22278           - Added central CalculateDocument() method to handle all redraw
22279             requirements
22280           - Added ReadOnly support
22281           - Added WordWrap support
22282           - Fixed handling of Enter key (we now treat it as a DialogKey)
22283           - Fixed caret positioning when h or v scroll is not zero
22284           - Fixed placing/generation of vertical scrollbar
22285           - Added CalculateScrollBars() method to allow updating scrollbar
22286             limits and visibility
22287           - Fixed handling of horizontal scroll
22288           - Added handling of vertical scroll
22289           - Implemented auto-'jump' when caret moves to close to a left or
22290             right border and there is text to be scrolled into view (currently
22291             there's the potential for a stack overflow, until a bug in
22292             scrollbar is fixed)
22293
22294 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
22295         
22296         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
22297
22298 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
22299
22300         * Mime.cs:
22301         - added inodes.
22302         - return application/x-zerosize for files with size zero
22303           (if no extension pattern matches).
22304         - check matches collection for strings too.
22305         - return only the first mime type if the name value
22306           collection has more than one mime type.
22307
22308 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
22309         
22310         * PropertyGrid.cs: Cleaned up some TODOs
22311         * PropertyGridView.cs: Added support for UITypeEditors
22312
22313 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22314         
22315         * DataGrid.cs: clears cached value
22316
22317 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22318
22319         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
22320         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
22321         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
22322         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
22323         
22324 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
22325
22326         * ThemeWin32Classic.cs: fixes colour
22327
22328 2005-06-15  Peter Bartok  <pbartok@novell.com>
22329
22330         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
22331         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
22332         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
22333         * Control.cs: Added some MWFCategory and MWFDescription attributes
22334         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
22335
22336 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
22337
22338         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
22339         usage
22340
22341 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
22342
22343         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
22344         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
22345         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
22346         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
22347         * DataGrid.cs: default datagrid settings for Default Styles, fixes
22348         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
22349
22350 2005-06-13  Jackson Harper  <jackson@ximian.com>
22351
22352         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
22353         isn't printed when the user enables dropping. (X11 does accept
22354         drops).
22355         
22356 2005-06-13  Jackson Harper  <jackson@ximian.com>
22357
22358         * TreeView.cs: Remove some TODOS.
22359
22360 2005-06-13  Jackson Harper  <jackson@ximian.com>
22361
22362         * Form.cs: Hook into the mdi framework.
22363         * MdiClient.cs: Use the base control collections add method so
22364         parents get setup correctly. Set the default back colour and dock
22365         style.
22366         * MdiChildContext.cs: New class, this bad actor handles an
22367         instance of an MDI window. Right now there is only basic
22368         support. You can drag, close, and resize windows. Minimize and
22369         Maximize are partially implemented.
22370
22371 2005-06-13  Jackson Harper  <jackson@ximian.com>
22372
22373         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
22374         freaky when both vals are negative. NOTE: There are probably other
22375         places in XplatUIX11 that this needs to be done.
22376
22377 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
22378
22379         * DataGrid.cs: implement missing methods, move KeyboardNavigation
22380         * DataGridColumnStyle.cs: fixes signature
22381
22382 2005-06-12  Jackson Harper  <jackson@ximian.com>
22383
22384         * XplatUIX11.cs: Use sizing cursors similar to the ones on
22385         windows.
22386
22387 2005-06-11  Jackson Harper  <jackson@ximian.com>
22388
22389         * StatusBarPanel.cs: Signature cleanups. Implement
22390         BeginInit/EndInit.
22391
22392 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
22393
22394         * DataGridTextBoxColumn.cs: Honors aligment
22395         * GridColumnStylesCollection.cs: Contains is case unsensitive
22396         * GridTableStylesCollection.cs: several fixes
22397         * DataGridTableStyle.cs: default column creation
22398         * DataGridDrawingLogic.cs: fixes
22399         * CurrencyManager.cs: ListName property
22400         * DataGrid.cs: multiple styles support
22401         * DataGridColumnStyle.cs: fixes
22402         
22403
22404 2005-06-10  Peter Bartok  <pbartok@novell.com>
22405
22406         * Control.cs(Select): Moved SetFocus call to avoid potential
22407           loops if controls change the active control when getting focus
22408         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
22409           the up/down buttons
22410
22411 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
22412
22413         * ImageListConverter.cs: Implemented
22414
22415 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22416
22417         * MonthCalendar.cs: Wired in NumericUpDown control for year
22418
22419 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22420
22421         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
22422           DoubleClick events, since they are not meant to be fired.
22423
22424 2005-06-09  Peter Bartok  <pbartok@novell.com>
22425
22426         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
22427           Jonathan's standalone controls into MWF, implemented missing
22428           events, attributes and methods; added xxxAccessible classes
22429         * AccessibleObject.cs: Made fields internal so other classes
22430           can change them if needed
22431
22432 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
22433
22434         * UpDownBase.cs: Complete implementation
22435         * NumericUpDown.cs: Complete implementation
22436         * DomainUpDown.cs: Complete implementation
22437
22438 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
22439
22440         * DataGridTextBoxColumn.cs: drawing fixes
22441         * DataGridCell.cs: fixes ToString method to match MSNet
22442         * DataGridTableStyle.cs: fixes
22443         * DataGridBoolColumn.cs: fixes, drawing
22444         * DataGridDrawingLogic.cs: fixes, new methods
22445         * DataGridTextBox.cs: Keyboard and fixes
22446         * DataGrid.cs:
22447                 - Keyboard navigation
22448                 - Scrolling fixes
22449                 - Row selection (single, multiple, deletion, etc)
22450                 - Lots of fixes
22451         
22452 2005-06-07  Jackson Harper  <jackson@ximian.com>
22453
22454         * ThemeWin32Classic.cs: Clear the background area when drawing
22455         buttons.
22456
22457 2005-06-06  Peter Bartok  <pbartok@novell.com>
22458
22459         * ImageListStreamer.cs: Fixed signature for GetData
22460         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
22461         * ComboBox.cs:
22462           - Added missing ChildAccessibleObject class
22463           - Added missing OnXXXFocus overrides, switched to using those
22464             instead of the event handler
22465         * Control.cs:
22466           - Added Parent property for ControlAccessibleObject
22467           - Fixed signatures
22468           - Fixed attributes
22469           - Added ResetBindings()
22470         * ListBindingConverter.cs: Implemented some methods
22471         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
22472         * ImageList.cs: Implemented basic handle scheme, removed TODOs
22473         * ContainerControl.cs: Fixed signature, now subscribing to the
22474           ControlRemoved event instead of overriding the handler, LAMESPEC
22475         * CurrencyManager.cs: Added missing attribute
22476         * MonthCalendar.cs: Added missing properties
22477
22478 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22479
22480         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
22481         
22482 2005-06-06  Gaurav Vaish and Ankit Jain
22483
22484         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
22485         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
22486         
22487 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22488
22489         * Control.cs: fixes CreateParams Width / Height.
22490
22491 2005-06-05  Peter Bartok  <pbartok@novell.com>
22492
22493         * Win32DnD.cs: Removed compilation warnings
22494
22495 2005-06-05  Peter Bartok  <pbartok@novell.com>
22496
22497         * Control.cs (CreateParams): Since we don't know if one of the
22498           properties we use is overridden, lets make sure if we fail accessing
22499           we continue with a backup plan
22500
22501 2005-06-05  Peter Bartok  <pbartok@novell.com>
22502
22503         * Win32DnD.cs:
22504           - Removed debug output
22505           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
22506             struct
22507           - Plugged resource leak
22508         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
22509           MS size
22510
22511 2005-06-05  Peter Bartok  <pbartok@novell.com>
22512
22513         * XplatUIWin32.cs: Removed DnD code
22514         * Win32DnD.cs: Implemented drop source and drop target functionality
22515
22516 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22517
22518         * UpDownBase.cs: remove duplicate addition of event, enable some code
22519         that was commented out.
22520         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
22521         Validate input when a key is pressed. It works fine now for every
22522         combination of Hexadecimal. Only missing some drawing love when sharing
22523         space with other controls.
22524
22525 2005-06-04  Peter Bartok  <pbartok@novell.com>
22526
22527         * Control.cs:
22528           - We need to pass a window for DragDrop, so enable callback events
22529           - Added DnD callback events when being a DragSource
22530         * XplatUI.cs (StartDrag): Added window handle argument
22531         * XplatUIDriver.cs (StartDrag): Added window handle argument
22532         * QueryContinueDragEventArgs: Made fields internally accessible so
22533           drivers can set them
22534         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
22535           can set them
22536
22537 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
22538
22539         * DataGridTextBoxColumn.cs: column text editing
22540         * DataGridTableStyle.cs: Respect columns styles created by the user
22541         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
22542         * DataGridBoolColumn.cs: bool column editing
22543         * DataGrid.cs: fixes to scrolling, properties, etc
22544         * DataGridTextBox.cs: handle keyboard
22545         * DataGridColumnStyle.cs: fixes
22546
22547 2005-06-02  Jackson Harper  <jackson@ximian.com>
22548
22549         * ImageListStreamer.cs: Somewhat broken implementation of
22550         GetObjectData. The RLE needs some work to match MS properly.
22551
22552 2005-06-02  Jackson Harper  <jackson@ximian.com>
22553
22554         * X11Dnd.cs: Attempting to keep at least one file in MWF
22555         monostyled.
22556
22557 2005-06-02  Peter Bartok  <pbartok@novell.com>
22558
22559         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
22560           that way
22561
22562 2005-06-02  Peter Bartok  <pbartok@novell.com>
22563
22564         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
22565         * XplatUI.cs: Added DoDragDrop() method
22566         * XplatUIDriver.cs: Added DoDragDrop() method
22567
22568 2005-06-02  Jackson Harper  <jackson@ximian.com>
22569
22570         * Splitter.cs: Implement BorderStyle.
22571
22572 2005-06-02  Jackson Harper  <jackson@ximian.com>
22573
22574         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
22575         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
22576         X11 using XDND.
22577
22578 2005-06-02  Peter Bartok  <pbartok@novell.com>
22579
22580         * DataObject.cs:
22581           - Added Data setter
22582           - Fixed broken insertion code for SetData, now also
22583             overwrites any existing entry of the same format name
22584         * Hwnd.cs: Added list of pointers that automatically gets
22585           freed when the window is disposed
22586         * XplatUI.cs: Call driver initialization method when loading
22587           a driver
22588         * Control.cs:
22589           - OnDragLeave takes EventArgs, not DragEventArgs
22590           - Added setting of WS_EX_ACCEPTFILES style when dropping is
22591             supported
22592           - Forces style update when drop state changes
22593         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
22594           not perfect since we cannot (yet) call the IDataObject.GetData()
22595           method, we keep getting 0x80004005 error, dunno why)
22596
22597 2005-06-02  Peter Bartok  <pbartok@novell.com>
22598
22599         * DragEventArgs.cs: Make fields internal so we can cache the
22600           object and re-set the fields from XplatUI
22601
22602 2005-06-02  Jackson Harper  <jackson@ximian.com>
22603
22604         * Control.cs: Add some internal methods so the DnD subsystem can
22605         raise DnD events. Also call into the driver when AllowDrop is set.
22606         * XplatUI.cs:
22607         * XplatUIDriver.cs: New method for setting whether or not a window
22608         is allowed to accept drag and drop messages.
22609                 
22610 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
22611         
22612         * ScrollBar.cs: Make sure that values sent in Scroll events
22613         are always between Maximum and Minimum.
22614
22615 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
22616
22617         * Menu.cs: Call MenuChanged when menuitem visibility has been
22618         changed.
22619         * MenuItem.cs: Rebuild menu when item is (not) visible.
22620         * MainMenu.cs: MainMenu has special MenuChanged.
22621         * Theme.cs: Caption and FrameBorderSize are not fixed.
22622         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
22623         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
22624         * XplatUIX11.cs,
22625         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
22626         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
22627
22628 2005-05-30  Jackson Harper  <jackson@ximian.com>
22629
22630         * DataFormat.cs: We can't statically initialize this stuff because
22631         it calls into the xplatui and could create a loop. So we lazy init
22632         it.
22633
22634 2005-05-28  Jackson Harper  <jackson@ximian.com>
22635
22636         * Control.cs: Proper implementation of Product(Name/Version).
22637
22638 2005-05-27  Jackson Harper  <jackson@ximian.com>
22639
22640         * DataObject.cs: Dont crash if no data is found.
22641
22642 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
22643         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
22644                 as per status page, guessing it should be set to true
22645
22646 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
22647
22648         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
22649         * DataGridTableStyle.cs: set proper formatting text, def header text
22650         * ThemeWin32Classic.cs: new themable paramaters
22651         * DataGridBoolColumn.cs: paint check box, get data, fixes
22652         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
22653         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
22654         * DataGridColumnStyle.cs: fixes
22655         * Theme.cs: new themable paramaters
22656                 
22657 2005-05-26  Peter Bartok  <pbartok@novell.com>
22658
22659         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
22660
22661 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22662         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
22663
22664 2005-05-24  Peter Bartok  <pbartok@novell.com>
22665
22666         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
22667           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
22668           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
22669           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
22670           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
22671           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
22672           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
22673           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
22674           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
22675           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
22676           missing attributes, etc
22677         * DataGridPreferredColumnWidthTypeConverter.cs: Added
22678
22679 2005-05-24  Peter Bartok  <pbartok@novell.com>
22680
22681         * Help.cs: Added, implemented trivial functions, throws up MessageBox
22682           when user tries to get help
22683         * DataObject.cs, DataFormats.cs, LinkArea.cs,
22684           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
22685           to suppress warnings
22686         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
22687           avoid unreachable code warning
22688
22689 2005-05-20  Peter Bartok  <pbartok@novell.com>
22690
22691         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
22692
22693 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22694
22695         * DataGridTextBoxColumn.cs: Basic painting methods
22696         * DataGridTableStyle.cs: Set table style in the column
22697         * ThemeWin32Classic.cs: Use Theme for colors
22698         * DataGridDrawingLogic.cs: Implement more drawing
22699         * DataGrid.cs: drawing, theming, enhacements, fixes
22700         * DataGridColumnStyle.cs: fixes, drawing
22701         * Theme.cs: theming for Datagrid
22702
22703 2005-05-20  Peter Bartok  <pbartok@novell.com>
22704
22705         * Cursor.cs: Implemented GetObjectData() method
22706
22707 2005-05-20  Peter Bartok  <pbartok@novell.com>
22708
22709         * Cursors.cs: Added setting of cursor name
22710         * Cursor.cs:
22711           - Implemented constructors
22712           - Implemented Draw and DrawStretched
22713           - Implemented Current property
22714           - Implemented == and != operators
22715           - Implemented Dispose()
22716           - Implemented ToString
22717           - Added missing attributes
22718         * XplatUIX11.cs:
22719           - Added missing reset for OverrideCursor when DoEvents is called
22720           - Fixed creation of cursor, logic was wrong
22721         * XplatUIWin32.cs:
22722           - Added missing reset for OverrideCursor when DoEvents is called
22723           - Fixed creation of cursor, bit arrays were swapped
22724         * Clipboard.cs: Removed obsolete MonoTODO attribute
22725
22726 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22727
22728         * ComboBox.cs: fixes OnSelectedItemChanged
22729         * ControlBindingsCollection.cs: fixes item range check
22730
22731 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22732
22733         * UpDownBase.cs:
22734                 - Calc preferred height properly
22735                 - Implement missing properties
22736                 
22737         * NumericUpDown.cs: Implement missing events
22738
22739 2005-05-19  Jackson Harper  <jackson@ximian.com>
22740
22741         * TabControl.cs: New method that resizes the tab pages before
22742         redrawing them. This as needed as the control is double buffered
22743         and sizing will not be recalculated unless ResizeTabPages is
22744         called.
22745         * TabPage.cs: Set base.Text instead of Text in the constructor so
22746         that UpdateOwner does not get called. Use the new Redraw method of
22747         TabControl instead of Refresh so the sizing is recalculated.
22748         * ThemeWin32Classic.cs: Draw the text for button tabs.
22749
22750 2005-05-19  Jackson Harper  <jackson@ximian.com>
22751
22752         * Control.cs: Paint control background images. Fix typo where
22753         PaintControlBackground was not getting called correctly.
22754
22755 2005-05-19  Peter Bartok  <pbartok@novell.com>
22756
22757         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
22758           I can investigate, apparently I broke FileDialog
22759
22760 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
22761
22762         * AxHost.cs: Some simple properties.
22763         * Control.cs: window must be accessible after ctor.
22764         * Form.cs: Added TransparencyKey property.
22765         * TextBoxBase.cs: Implemented Clear. Text property can be null.
22766         * XplatUIWin32.cs: SetBorderStyle implemented.
22767
22768 2005-05-18  Peter Bartok  <pbartok@novell.com>
22769
22770         * DataObject.cs: Entries are not global but particular to the
22771           DataObject, now it behaves that way
22772         * XplatUIWin32.cs: Implemented Clipboard methods
22773         * Clipboard.cs: Implemented
22774         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
22775         * XplatUIOSX.cs: Updated to final clipboard prototypes
22776         * XplatUIX11.cs: Implemented Clipboard methods
22777         * XplatUIDriver.cs: Updated to final clipboard prototypes
22778         * XplatUIStructs.cs:
22779           - Added BITMAPINFOHEADER struct
22780           - Added ClipboardFormats enum
22781         * X11Structs.cs:
22782           - Added ClipboardStruct
22783           - Added Atom enum items for clipboard types
22784           - Fixed atom types for Selection event structures
22785         * DataFormats.cs:
22786           - Added internal properties and methods for drivers to enumerate
22787             all known formats
22788           - Switched initialization method to allow drivers to assign their
22789             own IDs even for the MS predefined clipboard IDs
22790         * XplatUI.cs: Updated to final clipboard interface
22791
22792 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22793         * PropertyGridView.cs: Fixed compiler warnings.
22794
22795 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22796         * PropertyGrid.cs: Added some event calls
22797         * PropertyGridView.cs: Change drawing code to use double buffering
22798         * PropertyGridTextBox.cs: Changed Text property name
22799         * GridItem.cs: Added Bounds property.
22800         * GridEntry.cs: Added Bounds property.
22801
22802 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
22803
22804         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
22805         since GetType() may not return the correct type if the object is
22806         a remoting proxy.
22807
22808 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
22809
22810         * TreeNodeCollection.cs: fixes get/set item ranges
22811         
22812 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22813
22814         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
22815                 
22816 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22817
22818         * ComboBox.cs: Fix item range comparation
22819         * ListView.cs: Fix item range comparation
22820
22821 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22822
22823         * FontDialog.cs:
22824           - Clear example panel when OnPaint is called
22825           - Better solution for displaying the example panel text
22826           - Select default indexes in the ListBoxes
22827
22828 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22829
22830         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
22831
22832 2005-05-11  Peter Bartok  <pbartok@novell.com>
22833
22834         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
22835         * SelectionRangeConverter.cs: Implemented
22836         * PropertyGrid.cs: Fixed attribute value
22837         * Control.cs:
22838           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
22839           - Added Sebastien Pouliot's CAS Stack Propagation fixes
22840         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
22841           that's common to all drivers. First methods to go there are
22842           Sebastien Pouliot's CAS Stack Propagation helper methods
22843         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
22844           Sebastien Pouliot for CAS Stack Propagation
22845
22846 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22847
22848         * OSXStructs.cs:
22849           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
22850
22851 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
22852
22853         * DataGridTextBoxColumn.cs: fixed some members
22854         * GridColumnStylesCollection.cs: indexed column is case insensitive
22855         * DataGridTableStyle.cs: fixes
22856         * ThemeWin32Classic.cs: add new theme parameter
22857         * Theme.cs: add new theme parameter
22858         * DataGridDrawingLogic.cs: Datagrid's drawing logic
22859         * DataGrid.cs: fixes, new internal properties, etc.
22860         * DataGridColumnStyle.cs: allows to set grid value
22861         *
22862
22863 2005-05-10  Peter Bartok  <pbartok@novell.com>
22864
22865         * AccessibleObject.cs:
22866           - Removed MonoTODO attribute on help, method is correct
22867           - Fixed Bounds property
22868         * AxHost.cs: Moved MonoTODO
22869         * ButtonBase.cs: Now setting AccessibleObject properties
22870         * RadioButton.cs: Setting proper AccessibleObject role
22871         * CheckBox.cs: Setting proper AccessibleObject role
22872         * ControlBindingsCollection.cs: Added properties, methods and attributes
22873         * DataFormats.cs: Fixed awkward internal API, and changed to enable
22874           userdefined DataFormats.Format items as well
22875         * ListControl.cs: Removed data_member from the public eye
22876         * OpenFileDialog.cs:
22877           - Made class sealed
22878           - Added missing attributes
22879         * SaveFileDialog.cs: Added missing attributes
22880         * ImageListStreamer.cs: Fixed code that caused warnings
22881         * LinkLabel.cs: Removed unreachable code
22882         * TreeView.cs: Fixed code that caused warnings
22883         * PropertyGridView.cs: Fixed code that caused warnings
22884         * GridColumnStylesCollection.cs: Added missing attributes
22885         * GridTableStylesCollection: Added missing attribute
22886         * PropertyManager: Added .ctor
22887         * SecurityIDType: Added
22888         * DataObject.cs: Implemented class
22889         * LinkArea.cs: Added missing attribute
22890
22891 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
22892
22893         * RadioButton.cs: call base method to allow to fire OnClick event
22894         * UpDownBase.cs: OnMouseUp call base method
22895         * CheckedListBox.cs: call base method before returning
22896         * TrackBar.cs: call base method before returning
22897         
22898
22899 2005-05-10  Peter Bartok  <pbartok@novell.com>
22900
22901         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
22902           for messages
22903
22904 2005-05-10  Peter Bartok  <pbartok@novell.com>
22905
22906         * DataFormats.cs: Implemented
22907         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
22908           XplatUIX11.cs: Added Clipboard APIs
22909         * XplatUIWin32.cs: Implemented Clipboard APIs
22910         * FolderBrowserDialog.cs: Added missing event, attributes
22911
22912 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
22913
22914         * CheckBox.cs: call base method to allow to fire OnClick event
22915
22916 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
22917
22918         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
22919
22920 2005-05-06  Peter Bartok  <pbartok@novell.com>
22921
22922         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
22923         * Screen.cs: Implemented
22924         * HelpNavigator.cs: Added
22925         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
22926           property
22927         * HelpProvider.cs: Implemented all we can do until we have a CHM
22928           help library (which means that "What's This" does work now)
22929
22930 2005-05-06  Jackson Harper  <jackson@ximian.com>
22931
22932         * XplatUIX11.cs: Fix waking up the main loop.
22933                 
22934 2005-05-05  Peter Bartok  <pbartok@novell.com>
22935
22936         * XplatUI.cs: Updated revision
22937         * Form.cs: Removed enless loop
22938         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
22939         * Label.cs (OnPaint): Added call to base.OnPaint()
22940         * ToolTip.cs: Made ToolTipWindow reusable for other controls
22941         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
22942         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
22943         * AxHost.cs: Added
22944         * ButtonBase.cs: Moved base.OnPaint() call to end of method
22945         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
22946           to ToolTip.ToolTipWindow for drawing and size methods; this allows
22947           reuse of ToolTipWindow by other controls
22948         * SizeGrip.cs: Moved base.OnPaint() call to end of method
22949         * XplatUIX11.cs: Now clipping drawing area (experimental)
22950         * PictureBox.cs: Moved base.OnPaint() call to end of method
22951         * Theme.cs: Fixed ToolTip abstracts to match new format
22952         * ErrorProvider.cs: Implemented
22953
22954 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
22955
22956         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
22957         * LinkLabel.cs:
22958                 - Adds cursors
22959                 - Handles focus
22960                 - Implements LinkBehavior
22961                 - Fixes many issues
22962
22963 2005-05-03  Jackson Harper  <jackson@ximian.com>
22964
22965         * ListView.cs: Calculate the scrollbar positioning on resize and
22966         paint, so they get put in the correct place.
22967
22968 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22969
22970         * ColorDialogs.cs: The small color panels are now handled by
22971           SmallColorControl. This fixes drawing of the focus rectangle
22972           and adds a 3D border.
22973
22974 2005-05-03  Peter Bartok  <pbartok@novell.com>
22975
22976         * Control.cs: Modified version of Jonathan Chamber's fix for
22977           double-buffering
22978
22979 2005-05-03  Jackson Harper  <jackson@ximian.com>
22980
22981         * ListView.cs: Remove redraw variable. Control now handles whether
22982         or not a redraw needs to be done, and will only raise the paint
22983         event if redrawing is needed.
22984
22985 2005-05-03  Jackson Harper  <jackson@ximian.com>
22986
22987         * Splitter.cs: No decorations for the splitter form. Cache the
22988         hatch brush.
22989
22990 2005-05-03  Jackson Harper  <jackson@ximian.com>
22991
22992         * TreeView.cs: Use dashed lines to connect nodes. Use the
22993         ControlPaint method for drawing the focus rect instead of doing
22994         that in treeview.
22995
22996 2005-05-02  Peter Bartok  <pbartok@novell.com>
22997
22998         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
22999
23000 2005-04-29  Jackson Harper  <jackson@ximian.com>
23001
23002         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
23003         entire image buffer. Just clear the clipping rectangle.
23004
23005 2005-04-29  Jackson Harper  <jackson@ximian.com>
23006
23007         * ThemeWin32Classic.cs: Don't draw list view items that are
23008         outside the clipping rectangle.
23009
23010 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
23011
23012         * ListBox.cs: added horizontal item scroll
23013
23014 2005-04-29  Jackson Harper  <jackson@ximian.com>
23015
23016         * ThemeWin32Classic.cs: Remove some old debug code that was
23017         causing flicker with the new double buffering code.
23018
23019 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
23020
23021         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
23022         behave like combobox and comboboxlist (still not sure if this is
23023         correct though).
23024
23025 2005-04-28  Jackson Harper  <jackson@ximian.com>
23026
23027         * ThemeWin32Classic.cs: Don't fill the middle of progress
23028         bars. This fills areas outside of the clip bounds that don't need
23029         to be filled.
23030
23031 2005-04-28  Jackson Harper  <jackson@ximian.com>
23032
23033         * Control.cs: Don't expose functionality to touch the image buffers.
23034         * ProgressBar.cs:
23035         * ListView.cs: We do not need to (and no longer can) manipulate
23036         the image buffers directly. All of this is handled by Control.
23037
23038 2005-04-28  Peter Bartok  <pbartok@novell.com>
23039
23040         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23041           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
23042           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
23043
23044 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23045
23046         * Combobox:
23047                 - Adjust control's height for non-simple comboboxes (bug fix)
23048                 - Remove dead code
23049         * MenuAPI.cs: remove unused var
23050         * ScrollBar.cs: remove unsed var
23051                  
23052         * ListBox.cs: unselect items when clearing
23053
23054 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23055
23056         * ListControl.cs: honors OnPositionChanged and default Selected Item
23057         * ListBox.cs: unselect items when clearing
23058
23059 2005-04-27  Jackson Harper  <jackson@ximian.com>
23060
23061         * X11Keyboard.cs: Initialize a default keyboard and give a warning
23062         if a "correct" keyboard is not found. This will make us not crash,
23063         but might give some users bad keyboard layouts...seems to be the
23064         same thing rewind does.
23065
23066 2005-04-27  Jackson Harper  <jackson@ximian.com>
23067
23068         * BindingManagerBase.cs: Attach the current/position changed
23069         handlers to their respective events.
23070
23071 2005-04-27  Jackson Harper  <jackson@ximian.com>
23072
23073         * Control.cs: Make sure that the first WM_PAINT does a full draw,
23074         not just a blit.
23075         * ThemeWin32Classic.cs: Don't fill the background for picture
23076         boxes. This could overright user drawing.
23077         * ComboBox.cs: Just fill the clipping rect not the entire client
23078         rect when drawing the background. This prevents pieces of the
23079         image buffer from getting overwritten and is theoretically faster.
23080
23081 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
23082
23083         * ComboBox.cs: Databinding support fixes, fire missing events
23084         * ListControl.cs: implement missing methods and properties, fixes
23085         * ThemeWin32Classic.cs: Databiding support on Drawing
23086         * CheckedListBox.cs: Databinding support fixes, fire missing events
23087         * ListBox.cs: Databinding support fixes, fire missing events
23088         
23089 2005-04-25  Peter Bartok  <pbartok@novell.com>
23090
23091         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
23092
23093 2005-04-25  Jackson Harper  <jackson@ximian.com>
23094
23095         * TreeView.cs: Use the horizontal scrollbars height not width when
23096         determining how much of the client area is available.
23097
23098 2005-04-25  Jackson Harper  <jackson@ximian.com>
23099
23100         * Control.cs: Double buffering is handled differently now. As per
23101         the spec, the extra buffer is created in the WM_PAINT message and
23102         passed down to the control's drawing code.
23103         * GroupBox.cs:
23104         * Label.cs:
23105         * CheckBox.cs:
23106         * ProgressBar.cs:
23107         * RadioButton.cs:
23108         * ColorDialog.cs:
23109         * ComboBox.cs:
23110         * PropertyGridView.cs:
23111         * UpDownBase.cs:
23112         * MessageBox.cs:
23113         * MenuAPI.cs:
23114         * ListView.cs:
23115         * ButtonBase.cs:
23116         * SizeGrip.cs:
23117         * ScrollBar.cs:
23118         * ListBox.cs:
23119         * TrackBar.cs:
23120         * ToolBar.cs:
23121         * PictureBox.cs:
23122         * DateTimePicker.cs:
23123         * StatusBar.cs:
23124         * TreeView.cs: Update to new double buffering system.
23125         * MonthCalendar.cs: Uncomment block, as Capture is now
23126         working. Update to new double buffering
23127         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
23128         * PaintEventArgs.cs: New internal method allows us to set the
23129         graphics object. This is used for double buffering.
23130         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
23131         rectangle. The internal paint_area var has been removed from
23132         StatusBar. The clipping rect should be used instead.
23133         * Theme.cs: Give the PictureBox drawing method a clipping rect.
23134         * TabPage.cs: The RefreshTabs method was removed, so just call the
23135         tab controls Refresh method now.
23136         * TabControl.cs: Update to new double buffering. Make sure the
23137         handle is created before sizing the tab pages, otherwise we will
23138         get stuck in a loop.
23139
23140 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
23141
23142         * LinkLabel.cs: Fix typo, bug #74719; patch
23143           from Borja Sanchez Zamorano
23144
23145 2005-04-22  Jackson Harper  <jackson@ximian.com>
23146
23147         * TreeNode.cs: Implement Handle stuff.
23148         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
23149
23150 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
23151
23152         * DataGridTextBoxColumn.cs: call base constructors, fixes
23153         * GridColumnStylesCollection.cs: missing events, methods, and functionality
23154         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
23155         * DataGridTableStyle.cs: implements create default column styles
23156         * DataGridBoolColumn.cs: which types can handle
23157         * DataGrid.cs: missing methods, fixes, new functionality
23158         * DataGridColumnStyle.cs: fixes
23159
23160 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
23161         * FolderBrowserDialog.cs:
23162         - Use a thread to fill the TreeView
23163         - Adjusted some sizes
23164
23165 2005-04-19  Peter Bartok  <pbartok@novell.com>
23166
23167         * LinkLabel.cs: (Re-)create the pieces when setting the Text
23168           property. Fixes #74360.
23169
23170 2005-04-19  Jackson Harper  <jackson@ximian.com>
23171
23172         * XEventQueue.cs: Lock when getting the lockqueue size.
23173         * PictureBox.cs: Call base OnPaint
23174         
23175 2005-04-19  Peter Bartok  <pbartok@novell.com>
23176
23177         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
23178           messages were no longer being processed (this broke BeginInvoke)
23179
23180           
23181 2005-04-18  Jackson Harper  <jackson@ximian.com>
23182
23183         * TreeView.cs: buglet that caused node images to get drawn
23184         regardless of whether or not they were in the clipping rectangle.
23185
23186 2005-04-18  Jackson Harper  <jackson@ximian.com>
23187
23188         * CurrencyManager.cs: There are four rules for GetItemProperties:
23189         - If the type is an array use the element type of the array
23190         - If the type is a typed list, use the type
23191         - If the list contains an Item property that is not an object, use
23192         that property
23193         - use the first element of the list if there are any elements in
23194         the list.
23195         
23196 2005-04-17  Jackson Harper  <jackson@ximian.oom>
23197
23198         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
23199         click. This handles offsets for scrolling properly and reduces
23200         memory. Also fixed GetNode to not offset now that TopNode works
23201         properly.
23202         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
23203         
23204 2005-04-17  Jackson Harper  <jackson@ximian.com>
23205
23206         * CursorConverter.cs: Initial implementation.
23207
23208 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23209
23210         * ListControl.cs: work towards complex data binding support on ListControl
23211         * CurrencyManager.cs: work towards complex data binding support on ListControl
23212         * ListBox.cs: work towards complex data binding support on ListControl
23213
23214
23215 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23216
23217         * GridTableStylesCollection.cs: fixes name and constructor
23218         * DataGridTableStyle.cs: fixes
23219         * DataGridBoolColumn.cs: fixes names and constructors
23220         * DataGrid.cs: define methods and properties. Some init implementations
23221         * DataGridCell.cs: define methods and properties. Some init implementations
23222         * GridTablesFactory.cs: Define methods and properties
23223
23224 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
23225
23226         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
23227         graphics port changes.  We still want the coordinates in global screen
23228         coordinates.
23229
23230 2005-04-14  Jackson Harper  <jackson@ximian.com>
23231
23232         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
23233         check plus minus or checkbox clicks unless those features are enabled.
23234
23235 2005-04-14  Jackson Harper  <jackson@ximian.com>
23236
23237         * TreeView.cs: Add methods for setting the top and bottom visible
23238         nodes. TreeNode::EnsureVisible uses these methods.
23239         * TreeNode.cs: Implement EnsureVisible
23240
23241 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
23242
23243         * Form.cs: Pospone menu assignation if the window has not been created yet
23244         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
23245         size and position
23246
23247 2005-04-12  Jackson Harper  <jackson@ximian.com>
23248
23249         * TreeView.cs: Set the TopNode properly when scrolling
23250         occurs. This has the added benifit of reducing the amount of
23251         walking that needs to be done when drawing. Also removed an old
23252         misleading TODO.
23253         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
23254         
23255 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
23256
23257         * Timer.cs: fixes interval setting when the timer is already enabled
23258         
23259 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
23260
23261         * FolderBrowserDialog.cs: First approach
23262
23263 2005-04-09  Peter Bartok  <pbartok@novell.com>
23264
23265         * FolderBrowserDialog: Added
23266
23267 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
23268
23269         * LinkLabel.cs: move drawing code into the theme
23270         * ThemeWin32Classic.cs: drawing code and painting background bugfix
23271         * Theme.cs: define DrawLinkLabel method
23272
23273 2005-04-05  Jackson Harper  <jackson@ximian.com>
23274
23275         * BindingContext.cs: Use weak references so these bad actors don't
23276         stay alive longer then they need to.
23277
23278 2005-04-05  Jackson Harper  <jackson@ximian.com>
23279
23280         * ListControl.cs: Basic implementation of complex databinding.
23281         * ComboBox.cs:
23282         * ListBox.cs: Add calls to ListControl databinding methods.
23283
23284 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
23285
23286         * FileDialog.cs:
23287           - Don't change PopupButtonState to Normal when the
23288             PopupButton gets pressed several times.
23289           - Renamed ButtonPanel to PopupButtonPanel
23290
23291 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
23292
23293         * ColorDialog.cs: Use cached objects instead of creating them
23294         * LinkLabel.cs: Use cached objects instead of creating them
23295         * Splitter.cs: Use cached objects instead of creating them
23296         * FontDialog.cs: Use cached objects instead of creating them
23297         * PropertyGridView.cs: Use cached objects instead of creating them
23298         * MessageBox.cs: Use cached objects instead of creating them
23299         * FileDialog.cs: Use cached objects instead of creating them
23300         * ThemeWin32Classic.cs: Use cached objects instead of creating them
23301         * TreeView.cs: Use cached objects instead of creating them
23302         
23303 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
23304
23305         * Control.cs: use Equals to compare the font since no == op
23306         * ScrollBar.cs: use Equals to compare the font since no == op
23307
23308 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
23309
23310         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
23311
23312 2005-04-01  Jackson Harper  <jackson@ximian.com>
23313
23314         * Binding.cs: Implement IsBinding.
23315         * BindingManagerBase.cs:
23316         * PropertyManager.cs:
23317         * CurrencyManager.cs: Add IsSuspended property.
23318
23319 2005-04-01  Jackson Harper  <jackson@ximian.com>
23320
23321         * Binding.cs: Had some IsAssignableFrom calls backwards.
23322
23323 2005-04-01  Jackson Harper  <jackson@ximian.com>
23324
23325         * Binding.cs: Handle null data members when pulling data.
23326         * PropertyManager.cs: Handle the data member being a property that
23327         does not exist.
23328
23329 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
23330
23331         * DataGridTextBoxColumn.cs: fixes signature
23332         * DataGrid.cs: calls right constructor
23333
23334 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
23335
23336         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
23337         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
23338         * GridTableStylesCollection.cs: implements GridTableStylesCollection
23339         * DataGridTableStyle.cs: implements DataGridTableStyle
23340         * DataGridBoolColumn.cs: implements DataGridBoolColumn
23341         * DataGridTextBox.cs: implements DataGridTextBox
23342         * DataGridColumnStyle.cs: implements DataGridColumnStyle
23343
23344 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
23345
23346         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
23347
23348 2005-03-29  Peter Bartok  <pbartok@novell.com>
23349
23350         * Application.cs:
23351           - Properly implemented CompanyName property
23352           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
23353             returns a path that includes CompanyName, ProductName and
23354             Version (fixes bug #70330)
23355
23356 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
23357
23358         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
23359           fixes bug #72588.
23360
23361 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
23362
23363         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
23364         
23365           - Added ReadOnly CheckBox
23366           - Further refactoring: moved some code from Open-/SaveFileDialog
23367             to FileDialog
23368
23369 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
23370
23371         * OpenFileDialog.cs: Fixed CheckFileExists
23372         * FileDialog.cs:
23373           Moved FileView and DirComboBox outside FileDialog class.
23374           They can now be used outside FileDialog
23375
23376 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
23377
23378         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
23379         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
23380
23381 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
23382
23383         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23384           - Added missing CreatePrompt property in SaveDialog
23385           - Overall SaveDialog handling should be better now
23386           - Added non standard ShowHiddenFiles property
23387           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
23388           - Added InitialDirectory and RestoreDirectory support
23389
23390 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
23391
23392         * FileDialog.cs: Made dirComboBox usable
23393
23394 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
23395
23396         * FileDialog.cs: Added Filter support (case sensitiv)
23397
23398 2005-03-24  Jackson Harper  <jackson@ximian.com>
23399
23400         * TabControl.cs: Need a couple more pixels for the lines.
23401
23402 2005-03-23  Jackson Harper  <jackson@ximian.com>
23403
23404         * TabControl.cs: Give the tab page focus when it is selected.
23405
23406 2005-03-23  Jackson Harper  <jackson@ximian.com>
23407
23408         * TabControl.cs: Account for the drawing of tabs borders when
23409         invalidating. If the slider was clicked dont do click detection on
23410         the tabs.
23411
23412 2005-03-23  Jackson Harper  <jackson@ximian.com>
23413
23414         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
23415
23416 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
23417
23418         * CategoryGridEntry.cs: Added
23419         * GridItem.cs: Added helper properties
23420         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
23421         * GridEntry.cs: Updated code for collection
23422         * PropertyGrid.cs: Cleaned up some formatting
23423         * PropertyGridView.cs: Added drop down functionality for enums.
23424         * GridItemCollection.cs: Added enumerator logic
23425         * PropertyGridEntry.cs: Added
23426
23427 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23428
23429         * FileDialog.cs:
23430           - Removed unnecessary commented code
23431           - Fixed handling for entering the filename manually in the combobox
23432
23433 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23434
23435         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
23436
23437 2005-03-18  Peter Bartok  <pbartok@novell.com>
23438
23439         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
23440           them being touching the border
23441
23442 2005-03-18  Peter Bartok  <pbartok@novell.com>
23443
23444         * TextControl.cs: Quick hack to center text better
23445
23446 2005-03-18  Peter Bartok  <pbartok@novell.com>
23447
23448         * ControlPaint.cs:
23449           - Don't throw NotImplemented exceptions, just print a notice once
23450             instead (requested by Miguel). This makes running existing SWF
23451             apps a bit easier
23452         * Control.cs:
23453           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
23454           - Added context menu trigger on right click
23455         * Panel.cs: Trigger invalidate on resize
23456         * StatusBar.cs:
23457           - Removed old double-buffer drawing
23458           - Added ResizeRedraw style to force proper update of statusbar
23459         * ListView.cs:
23460           - Removed debug output
23461         * ThemeWin32Classic.cs:
23462           - Fixed drawing of status bar, now draws Text property if there
23463             are no defined panels
23464
23465 2005-03-18  Jackson Harper  <jackson@ximian.com>
23466
23467         * ImageList.cs: When the image stream is set pull all the images
23468         from it.
23469         * ImageListStreamer.cs: Implement reading image list streams.
23470
23471 2005-03-18  Peter Bartok  <pbartok@novell.com>
23472
23473         * ThemeWin32Classic.cs (DrawPictureBox):
23474           - Fixed calculations for centered drawing
23475           - Fixed drawing for normal mode, not scaling the image on normal
23476
23477 2005-03-18  Peter Bartok  <pbartok@novell.com>
23478
23479         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
23480           textbox
23481         * FileDialog.cs:
23482           - Made Open/Save button the accept button for FileDialog
23483           - Tied the cancel button to the IButtonControl cancel button
23484           - Save/Open now properly builds the pathname
23485           - Now handles user-entered text
23486           - Preventing crash on right-click if no item is selected
23487           - Fixed Text property, now uses contents of textbox
23488           - Fixed SelectedText property, now just returns the text part that
23489             is selected in the text box
23490
23491 2005-03-18  Jackson Harper  <jackson@ximian.com>
23492
23493         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
23494         rect, make sure to de-adjust the interior rect after drawing the
23495         tab text.
23496
23497 2005-03-18  Peter Bartok  <pbartok@novell.com>
23498
23499         * MenuAPI.cs: Remove menu *before* executing selected action to
23500           prevent the menu from 'hanging around'
23501           
23502 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
23503
23504         * XplatUIOSX.cs: Implemented WorkingArea property
23505
23506 2005-03-17  Peter Bartok  <pbartok@novell.com>
23507
23508         * XplatUIX11.cs: Fixed menu coord calculations
23509         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
23510           for calculating offsets
23511
23512 2005-03-17  Peter Bartok  <pbartok@novell.com>
23513
23514         * Hwnd.cs: Do not consider menu presence for default client
23515           rectangle location/size
23516         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
23517           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
23518           translation functions
23519         * FileDialog.cs: Fixed (what I presume is a) typo
23520
23521 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
23522
23523         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
23524           X access (avoids X-Async errors)
23525
23526 2005-03-16  Jackson Harper  <jackson@ximian.com>
23527
23528         * TabControl.cs: Raise the SelectedIndexChanged event.
23529
23530 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
23531
23532         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23533           - Removed vertical ToolBar and replaced it with a custom panel
23534             (desktop and home button already work)
23535           - Added Help button (some controls get resized or relocated then)
23536           - Draw correct text depending on Open or Save.
23537           - Fixed some typos...
23538
23539 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
23540
23541         * ScrollBar.cs:
23542           - Only change Maximum and Minimum when need it (bug fix)
23543
23544 2005-03-15  Peter Bartok  <pbartok@novell.com>
23545
23546         * Form.cs: Use Handle for icon, to trigger creation if
23547           the window does not yet exist
23548         * Control.cs:
23549           - CanSelect: Slight performance improvement
23550           - Focus(): Preventing possible recursion
23551           - Invalidate(): Removed ControlStyle based clear flag setting
23552           - WM_PAINT: fixed logic for calling OnPaintBackground
23553           - WM_ERASEBKGND: Fixed logic, added call to new driver method
23554             EraseWindowBackground if the control doesn't paint background
23555         * XplatUIWin32.cs:
23556           - Moved EraseWindowBackground() method to internal methods
23557           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
23558             is sent via SendMessage on BeginPaint call on Win32
23559         * XplatUIX11.cs:
23560           - Added EraseWindowBackground() method
23561           - No longer sends WM_ERASEBKGND on .Expose, but on call to
23562             PaintEventStart, which more closely matches Win32 behaviour
23563           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
23564           - Fixed SetFocus() to properly deal with client and whole windows
23565         * Hwnd.cs: Added ErasePending property
23566         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
23567         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
23568
23569 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
23570
23571         * XplatUIOSX.cs:
23572           - Fix hard loop when timers exist.
23573           - Fix bugs with middle and right click for 3 button mice.
23574
23575 2005-03-11  Peter Bartok  <pbartok@novell.com>
23576
23577         * XplatUIX11.cs:
23578           - get_WorkingArea: Need to call X directly, GetWindowPos only
23579             returns cached data now
23580           - Added sanity check to GetWindowPos hwnd usage
23581
23582 2005-03-11  Jackson Harper  <jackson@ximian.com>
23583
23584         * BindingManagerBase.cs: This method isn't used anymore as
23585         PullData now updates the data in the control.
23586
23587 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
23588
23589         * Form.cs: fixes menu drawing on X11
23590         * MenuAPI.cs:  fixes menu drawing on X11
23591
23592 2005-03-11  Peter Bartok  <pbartok@novell.com>
23593
23594         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
23595           from Jonathan Gilbert; should fix bug #73606
23596         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
23597           in Screen coordinates. Thanks, Jordi.
23598         * Form.cs: Added missing attribute
23599
23600 2005-03-11  Peter Bartok  <pbartok@novell.com>
23601
23602         * Form.cs:
23603           - Rudimentary Mdi support
23604           - Removed outdated FormParent code
23605           - Implemented lots of missing properties and methods, still missing
23606             transparency support
23607           - Added missing attributes
23608           - Implemented support for MaximumBounds
23609           - Added firing of various events
23610         * XplatUI.cs: Added SetIcon() method
23611         * XplatUIDriver.cs: Added SetIcon() abstract
23612         * XplatUIOSX.cs: Stubbed out SetIcon() method
23613         * XplatUIX11.cs:
23614           - Implemented SetIcon() support
23615           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
23616           - Switched to unix line endings
23617         * XplatUIWin32.cs:
23618           - Made POINT internal so for can access it as part of MINMAX
23619           - Implemented SetIcon() support
23620           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
23621             native Mdi support again, might have to go managed)
23622         * Control.cs: Now fires the StyleChanged event
23623         * MdiClient.cs: Added; still mostly empty
23624
23625 2005-03-10  Peter Bartok  <pbartok@novell.com>
23626
23627         * SaveFileDialog.cs: Added emtpy file
23628
23629 2005-03-08  Peter Bartok  <pbartok@novell.com>
23630
23631         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
23632           in turn triggers OnCreateContro) when creating a handle for the
23633           first time.
23634         * TextControl.cs: Fixed endless loop in certain cases when
23635           replacing the current selection
23636
23637 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
23638
23639         * ScrollBar.cs:
23640           - Honors NewValue changes in Scroll events allowing apps to change it
23641           - Adds First and Last Scroll events
23642           - Fixes Thumb events
23643
23644 2005-03-07  Peter Bartok  <pbartok@novell.com>
23645
23646         * Hwnd.cs: Added DefaultClientRectangle property
23647         * XplatUI.cs: Now using the X11 driver Where() method, which provides
23648           more detailed debug information
23649         * XplatUIX11.cs:
23650           - Fixed size-change feedback loop, where we would pull an old size
23651             off the queue and mistakenly change our window's size to an
23652             earlier value
23653           - Now compressing ConfigureNotify events, to reduce looping and
23654             redraw issues
23655         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
23656           is called
23657
23658 2005-03-07  Jackson Harper  <jackson@ximian.com>
23659
23660         * Binding.cs: Push data pushes from data -> property. Check if the
23661         property is readonly when attempting to set it.
23662
23663 2005-03-07  Jackson Harper  <jackson@ximian.com>
23664
23665         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
23666         instead of IsSubclassOf. Pulling data now sets the value on the
23667         control.
23668         * PropertyManager.cs:
23669         * CurrencyManager.cs: Just need to pull data when updating now,
23670         because PullData will set the value on the control.
23671
23672 2005-03-04  Jackson Harper  <jackson@ximian.com>
23673
23674         * Binding.cs: Implement data type parsing and converting on pulled
23675         data. TODO: Are there more ways the data can be converted?
23676
23677 2005-03-04  Jackson Harper  <jackson@ximian.com>
23678
23679         * Binding.cs: Support <Property>IsNull checks. Also bind to the
23680         controls Validating method so we can repull the data when the
23681         control loses focus.
23682
23683 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
23684
23685         * ColumnHeader.cs:
23686           - Fixes null string format
23687           
23688         * ListView.cs:
23689           - Adds enum type checks
23690           - Fixes redrawing and recalc need after changing some properties
23691           - Fixes on focus_item set after the event
23692           - Fixes adding columns after the control has been created
23693           
23694         * ThemeWin32Classic.cs:
23695           - Fixes CheckBox focus rectangle
23696           - Fixes ColumnHeader drawing
23697
23698
23699 2005-03-03  Jackson Harper  <jackson@ximian.com>
23700
23701         * Binding.cs: Bind to <Property>Changed events so we can detect
23702         when properties are changed and update the data.
23703
23704 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
23705
23706         * ImageList.cs:
23707           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
23708           - Fixes ImageList constructor with ImageList container
23709           - Fixes image scaling (wrong parameters at DrawImage)
23710
23711 2005-02-02  Jackson Harper  <jackson@ximian.com>
23712
23713         * Binding.cs: Make property searches case-insensitive. Eliminate
23714         some duplicated code.
23715
23716 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
23717
23718         * ComboBox.cs:
23719                 - Handle focus event
23720                 - Fix scrollbar events
23721                 - Discard highlighted item if remove it
23722                 - Fixes SelectedItem with strings
23723
23724 2005-03-01  Peter Bartok  <pbartok@novell.com>
23725
23726         * Control.cs:
23727           - Fixed Visible property, now follows (once again) parent chain
23728             to return false if any control in the chain is visible=false
23729           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
23730           - Fixed several places where is_visible instead of Visible was used
23731           - Implemented FIXME related to focus selection when setting focused
23732             control to be invisible
23733
23734         * XplatUIWin32.cs: Now using proper method to find out if window is
23735           visible. Thanks to Jordi for pointing it out
23736
23737 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
23738
23739         * ComboBox.cs: show/hide scrollbar instead of creating it
23740
23741 2005-02-27  Jackson Harper  <jackson@ximian.com>
23742
23743         * CurrencyManager.cs: Add PositionChanged stuff.
23744
23745 2005-02-27  Peter Bartok  <pbartok@novell.com>
23746
23747         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
23748         * XplatUIOSX.cs: Added GetMenuOrigin() stub
23749         * XplatUIWin32.cs: Implemented GetMenuOrigin()
23750         * XplatUIX11.cs:
23751           - Implemented GetMenuDC()
23752           - Implemented GetMenuOrigin()
23753           - Implemented ReleaseMenuDC()
23754           - Implemented generation of WM_NCPAINT message
23755           - Implemented generation and handling of WM_NCCALCSIZE message
23756         * Form.cs: Added debug helper message for Jordi's menu work
23757         * Hwnd.cs:
23758           - Modified ClientRect property; added setter, fixed getter to handle
23759             setting of ClientRect
23760           - Added MenuOrigin property
23761
23762 2005-02-26  Peter Bartok  <pbartok@novell.com>
23763
23764         * XplatUIX11.cs:
23765           - Destroys the caret if a window that's being destroyed contains it
23766           - Ignores expose events coming from the X11 queue for windows that
23767             already are destroyed
23768           - Now uses the proper variable for handling DestroyNotify, before we
23769             marked the wrong window as destroyed
23770           - Improved/added some debug output
23771
23772 2005-02-26  Peter Bartok  <pbartok@novell.com>
23773
23774         * X11Keyboard.cs: Fixes to work on 64bit systems
23775
23776 2005-02-26  Peter Bartok  <pbartok@novell.com>
23777
23778         * Control.cs:
23779           - Now calling OnHandleDestroyed from DestroyHandle()
23780             instead of Dispose()
23781           - Removed bogus call to controls.Remove() from DestroyHandle()
23782
23783 2005-02-26  Peter Bartok  <pbartok@novell.com>
23784
23785         * Control.cs: Properly destroy child windows when our handle is
23786           destroyed
23787
23788 2005-02-25  Peter Bartok  <pbartok@novell.com>
23789
23790         * XplatUI.cs:
23791           - Added 'DriverDebug' define to allow tracing XplatUI API calls
23792           - Alphabetized Static Methods and Subclasses
23793
23794         * XplatUIX11.cs:
23795           - Added XException class to allow custom handling of X11 exceptions
23796           - Created custom X11 error handler, tied into XException class
23797           - Added support for MONO_XEXCEPTIONS env var to allow the user
23798             to either throw an exception on X errors or continue running
23799             after displaying the error
23800           - Added handling of DestroyNotify message
23801           - Added handler for CreateNotify message (still disabled)
23802           - Improved (tried to at least) Where method to provide file and lineno
23803         * X11Structs.cs:
23804           - Added XErrorHandler delegate
23805           - Added XRequest enumeration (to suppor translation of errors)
23806
23807 2005-02-25  Jackson Harper  <jackson@ximian.com>
23808
23809         * PropertyManager.cs: Implement editing features
23810         * CurrencyManager.cs:
23811         * Binding.cs: First attempt at UpdateIsBinding
23812         * BindingManagerBase.cs: Call UpdateIsBinding before
23813         pushing/pulling data.
23814
23815 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
23816
23817         * MenuAPI.cs: Respect disabled items
23818         * ThemeWin32Classic.cs
23819                 - Caches ImageAttributes creation for DrawImageDisabled
23820                 - Fixes vertical menu line drawing
23821                 - Draws disabled arrows in disable menu items
23822
23823 2005-02-24  Peter Bartok  <pbartok@novell.com>
23824
23825         * Hwnd.cs:
23826           - Added UserData property to allow associating arbitrary objects
23827             with the handle
23828           - Fixed leak; now removing Hwnd references from static windows array
23829         * XplatUIWin32.cs:
23830           - Fixed Graphics leak in PaintEventEnd
23831           - Removed usage of HandleData, switched over to Hwnd class
23832         * HandleData.cs: Removed, obsoleted by Hwnd.cs
23833
23834 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23835
23836         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
23837         * ScrollBar.cs: Fixes bug
23838         * TrackBar.cs: removes death code, clipping, mimize refreshes,
23839          keyboard navigation enhancements
23840
23841 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23842
23843         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
23844         * GroupBox.cs: Add control styles
23845         * Label.cs: Add control styles
23846         * UpDownBase.cs: Add control styles
23847         * ListBox.cs: Add control styles
23848         * XplatUIWin32.cs: Fixes wrong parameter order
23849
23850
23851 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
23852
23853         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
23854
23855 2005-02-23  Jackson Harper  <jackson@ximian.com>
23856
23857         * PropertyManager.cs: Implement property binding. This doesn't
23858         seem to work yet though as (I think) there are some bugs in
23859         System.ComponentModel.PropertyDescriptor.
23860         * BindingContext.cs: Use new PropertyManager constructor.
23861
23862 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
23863
23864         * ProgressBar.cs: use clip region in ProgressBar
23865         * ThemeWin32Classic.cs: use clip region in ProgressBar
23866
23867 2004-02-22  Jackson Harper  <jackson@ximian.com>
23868
23869         * BindingsCollection.cs: Remove some debug code.
23870
23871 2005-02-22  Jackson Harper  <jackson@ximian.com>
23872
23873         * BindingContext.cs:
23874         * ControlBindingsCollection.cs:
23875         * CurrencyManager.cs:
23876         * Binding.cs:
23877         * BindingManagerBase.cs: Initial implementation
23878         * BindingsCollection.cs: Add an internal contains method that the
23879         BindingManagerBase uses to ensure bindings aren't added twice to
23880         the collection.
23881         * PropertyManager.cs: Stubbed out.
23882         * Control.cs:
23883         * ContainerControl.cs: Hook up databinding
23884         
23885 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
23886
23887         * XplatUIOSX.cs:
23888           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
23889           Fixed Invalidate/Update chain.
23890           Fixed tons of other minor bugs (this is almost a complete rewrite).
23891
23892 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
23893
23894         * ComboBox.cs: do subcontrol creation when the control is created
23895
23896 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23897
23898         * Label.cs: fixes image drawing (image and imagelist)
23899         * ThemeWin32Classic.cs: cache brushes
23900         
23901 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23902
23903         * Form.cs: Move menu drawing code to Theme class
23904         * ComboBox.cs: Move ComboBox drawing code to Theme class
23905         * MenuItem.cs: Move menu drawing code to Theme class
23906         * MenuAPI.cs: Move menu drawing code to Theme class
23907         * ThemeWin32Classic.cs: New methods
23908         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
23909         * ListBox.cs: Move Listbox drawing code to Theme class
23910         * Theme.cs: New methods
23911
23912 2005-02-20  Peter Bartok  <pbartok@novell.com>
23913
23914         * Control.cs:
23915           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
23916             only process mnemonics on those)
23917           - Fixed event sequence for key handling; first calling
23918             ProcessKeyEventArgs now
23919         * TextBoxBase.cs:
23920           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
23921             for processing non-character keys
23922           - Fixed WM_CHAR to generate proper event sequence before processing
23923         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
23924           generation
23925
23926 2005-02-19  Peter Bartok  <pbartok@novell.com>
23927
23928         * UserControl.cs: Added TextChanged event; added attributes
23929         * SizeGrip.cs: Implemented resizing and optional display of grip
23930         * Form.cs: Fixed attribute
23931         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
23932           Changed meaning of ScrollWindow bool argument; instead of the
23933           clear attribute (which will be true usually anyway), it gives the
23934           option of moving child controls as well.
23935         * XplatUIX11.cs:
23936           - Changed to match new ScrollWindow argument
23937           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
23938             now handles the implicit parent window a WM puts around us
23939         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
23940           to work)
23941         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
23942         * TreeView.cs: Adjusted to new ScrollWindow arguments
23943
23944 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23945
23946         * Form.cs: Menu integration with non-client area
23947         * MenuItem.cs: Menu integration with non-client area
23948         * MenuAPI.cs: Menu integration with non-client area
23949
23950 2005-02-18  Peter Bartok  <pbartok@novell.com>
23951
23952         * MethodInvoker.cs: Added
23953         * MdiLayout.cs: Added
23954         * SendKeys.cs: Started implementation
23955         * ErrorIconAlignment.cs: Added
23956
23957 2005-02-18  Peter Bartok  <pbartok@novell.com>
23958
23959         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
23960         * Form.cs: Added handling for Menu-related Non-client messages
23961
23962 2005-02-17  Peter Bartok  <pbartok@novell.com>
23963
23964         * UpDownBase.cs: Fixed typo, compilation errors
23965         * DomainUpDown.cs: Fixed attribute value
23966
23967 2005-02-16  Miguel de Icaza  <miguel@novell.com>
23968
23969         * UpDownBase.cs: Attach entry events.
23970         Propagate events.
23971         Add ForeColor property, Focused, InterceptArrowKeys (interception
23972         does not work yet).
23973
23974 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
23975
23976         * Form.cs:
23977                 - Redraw non client are on Setmenu
23978                 - Calc proper menu starting point
23979
23980 2005-02-17  Peter Bartok  <pbartok@novell.com>
23981
23982         * Application.cs: Fixed message_filter check
23983
23984 2005-02-17  Peter Bartok  <pbartok@novell.com>
23985
23986         * Application.cs: Now calls registered message filters
23987         * DockStyle.cs: Fixed attribute
23988         * Form.cs: Fixed attribute
23989         * Menu.cs: Fixed attribute
23990         * ToolTip.cs: Fixed attribute
23991         * TreeNode.cs: Added missing attributes and arranged in regions
23992         * PropertyGrid.cs: Fixed signatures
23993         * TreeNodeCollection.cs: Added attributes
23994         * Splitter.cs: Added missing attributes; arranged into regions
23995         * TabPage.cs: Added missing attributes; arranged into regions
23996         * TextBoxBase.cs: Added missing attributes
23997         * TextBox.cs: Added missing attributes
23998         * ArrangeDirection.cs: Added missing attributes
23999         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
24000         * ToolBarButton.cs: Fixed attributes
24001         * AnchorStyles.cs: Fixed attribute
24002         * TrackBar.cs: Fixed attributes
24003         * TabControl.cs: Added missing attributes and arranged into regions
24004         * ToolBar.cs: Fixed attribute
24005         * StatusBar.cs: Fixed signature, organized into regions and added
24006           attributes
24007         * StatusBarPanel.cs: Fixed attributes
24008         * ContentsResizedEventArgs.cs: Implemented
24009         * ContentsResizedEventHandler.cs: Implemented
24010         * DateBoldEventArgs.cs: Implemented
24011         * DateBoldEventHandler.cs: Implemented
24012         * UpDownEventArgs.cs: Implemented
24013         * UpDownEventHandler.cs: Implemented
24014         
24015 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
24016
24017         * Form.cs: first Menu NC refactoring
24018         * MenuAPI.cs: first Menu NC refactoring
24019         
24020 2005-02-16  Peter Bartok  <pbartok@novell.com>
24021
24022         * ImeMode.cs: Added missing attributes
24023         * Menu.cs: Fixed attribute
24024         * GroupBox.cs: Fixed attribute
24025         * Label.cs: Fixed attribute
24026         * ColorDialog.cs (RunDialog): Removed TODO attribute
24027         * ComboBox.cs: Fixed attributes
24028         * ListControl.cs: Added missing attributes
24029         * PropertyGrid.cs: Fixed attributes
24030         * Control.cs: Fixed attributes
24031         * ListViewItem.cs: Added TypeConverter attribute
24032         * NotifyIcon.cs: Fixed attributes
24033         * ListView.cs: Fixed attributes
24034         * ButtonBase.cs: Fixed attribute
24035         * ImageList.cs: Added missing attributes
24036         * ContainerControl.cs: Fixed signature
24037         * CheckedListBox.cs: Fixed attribute; added missing attributes
24038         * Panel.cs: Fixed attributes
24039         * PropertyTabChangedEventArgs.cs: Added missing attribute
24040         * PropertyValueChangedEventArgs.cs: Added missing attribute
24041         * Binding.cs: Fixed attribute
24042         * ListViewItemConverter: Implemented ListViewSubItemConverter class
24043         * ListBox.cs: Fixed attribute; added missing attributes;
24044         * ScrollableControl.cs: Added missing attributes
24045         * PictureBox.cs: Added missing attributes; implemented missing property
24046         * DateTimePicker.cs: Added missing attributes
24047         * Theme.cs (ToolWindowCaptionHeight): Fixed type
24048         * MonthCalendar.cs: Fixed attributes
24049         * StatusBarPanel.cs: Added missing attributes
24050         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
24051
24052 2005-02-16  Peter Bartok  <pbartok@novell.com>
24053
24054         * TextBoxBase.cs: The previous method to enforce height yet remember
24055           the requested high was less than ideal, this is an attempt to do
24056           it better.
24057         * Control.cs: Added comment about possible problem
24058         * Copyright: Updated format
24059         * GridItemType.cs: Fixed swapped values
24060
24061 2005-02-15  Jackson Harper  <jackson@ximian.com>
24062
24063         * BaseCollection.cs: Use property so we never access an
24064         uninitialized list. Also initialize the list in the property.
24065
24066 2005-02-15  Peter Bartok  <pbartok@novell.com>
24067
24068         * GroupBox.cs (ProcessMnemonic): Implemented
24069         * Label.cs (ProcessMnemonic): Implemented
24070         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
24071           hotkeys
24072
24073 2005-02-15  Peter Bartok  <pbartok@novell.com>
24074
24075         * RadioButton.cs (ProcessMnemonic): Implemented
24076         * CheckBox.cs (ProcessMnemonic): Implemented
24077         * Control.cs:
24078           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
24079             handling
24080           - Added internal method to allow calling ProcessMnemonic from other
24081             controls
24082         * ContainerControl.cs:
24083           - Started support for handling validation chain handling
24084           - Implemented ProcessMnemonic support
24085           - Added Select() call to Active, to make sure the active control
24086             receives focus
24087         * Form.cs: Setting toplevel flag for Forms (this was lost in the
24088           FormParent rewrite)
24089         * ThemeWin32Classic.cs:
24090           - DrawCheckBox(): Fixed stringformat to show hotkeys
24091           - DrawRadioButton(): Fixed stringformat to show hotkeys
24092         * CommonDialog.cs: Removed WndProc override, not needed
24093
24094 2005-02-14  Peter Bartok  <pbartok@novell.com>
24095
24096         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
24097           missed those in the rewrite
24098
24099 2005-02-14  Miguel de Icaza  <miguel@novell.com>
24100
24101         * NumericUpDown.cs (Increment, ToString): Add.
24102         (DecimalPlaces): implement.
24103         
24104         Add attributes.
24105         
24106         * UpDownBase.cs: Add the designer attributes.
24107
24108 2005-02-13  Peter Bartok  <pbartok@novell.com>
24109
24110         * Panel.cs: Removed border_style, now in Control
24111         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
24112           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
24113
24114 2005-02-13  Peter Bartok  <pbartok@novell.com>
24115
24116         * MouseButtons.cs: Added missing attributes
24117         * XplatUIStructs.cs: Added enumeration for title styles
24118         * LeftRightAlignment.cs: Added missing attributes
24119         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
24120           it compatible with Graphics.FromHwnd()
24121         * SelectedGridItemChangedEventArgs.cs: Fixed property type
24122         * Keys.cs: Added missing attributes
24123         * SelectionRange.cs: Added missing attributes
24124         * SelectionRangeConverter.cs: Added
24125         * XplatUI.cs:
24126           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
24127             ReleaseMenuDC methods
24128           - Renamed ReleaseWindow to UngrabWindow
24129           - Added proper startup notice to allow version identification
24130         * Form.cs:
24131           - Added missing attributes
24132           - Removed FormParent concept
24133         * Label.cs: Removed border_style field, now in Control
24134         * RadioButton.cs: Now properly selects RadioButton when focus is
24135           received
24136         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
24137         * Control.cs:
24138           - Added missing attributes
24139           - Added borderstyle handling
24140           - Removed FormParent concept support
24141           - Fixed calls to XplatUI to match changed APIs
24142           - Fixed bug that would case us to use disposed Graphics objects
24143           - Removed unneeded internal methods
24144           - PerformLayout(): Fixed to handle DockStyle.Fill properly
24145           - SelectNextControl(): Fixed to properly check common parents
24146         * TextBoxBase.cs: Removed border_style field (now in Control)
24147         * MessageBox.cs:
24148           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
24149             fixed calculations for form size
24150           - Added support for localized strings and icons
24151           - Improved form size calculations, added border
24152         * ListView.cs: Removed border_style field (now in Control)
24153         * X11Structs.cs: Moved several structs from X11 driver here
24154         * X11Keyboard.cs: Changed debug message
24155         * Application.cs: Removed FormParent concept support
24156         * CommonDialog.cs:
24157           - Resetting end_modal flag
24158           - Removed FormParent concept support
24159         * NativeWindow.cs: Removed FormParent concept support
24160         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
24161           Client area and Non-Client whole window to allow support for WM_NC
24162           messages
24163         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
24164           prevent using it until it supports Hwnd as per Geoff Norton's request
24165         * ToolBar.cs: Fixed drawing, was not doing proper drawing
24166         * PictureBox.cs: Removed border_style field, now in Control
24167         * XplatUIWin32.cs: Added new driver methods
24168
24169 2005-02-12  Peter Bartok  <pbartok@novell.com>
24170
24171         * OpacityConverter.cs: Implemented
24172         * Hwnd.cs: Internal class to support drivers that need to emulate
24173           client area/non-client area window behaviour
24174
24175 2005-02-11  Peter Bartok  <pbartok@novell.com>
24176
24177         * KeysConverter.cs: Implemented
24178
24179 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
24180
24181         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
24182         * LinkLabel: Added missing attributes
24183         * MainMenu.cs: fixes ToString
24184         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
24185         * ListBox.cs: fixes event position
24186         * TrackBar.cs: adds missing attributes and events
24187         
24188 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
24189
24190         * MenuItem.cs: Use SystemInformation and bug fixes
24191         * MenuAPI.cs: Use SystemInformation and bug fixes
24192
24193 2005-02-09  Jackson Harper  <jackson@ximian.com>
24194
24195         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
24196         their keystate otherwise things like VK_MENU get stuck "on".
24197
24198 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
24199
24200         * ListBox.cs: Fixes AddRange bug
24201         
24202 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
24203
24204         * ProgressBar.cs
24205                 - Add missing attributes
24206                 - Add missing method
24207                 
24208         * CheckedListBox.cs: Added missing attributes
24209                 - Add missing attributes
24210                 - Remove extra method
24211         
24212         * ComboBox.cs: Added missing attributes
24213         * VScrollBar.cs: Added missing attributes
24214         * ScrollBar.cs:  Added missing attributes
24215         * ListBox.cs: Fixes signature, add missing consts
24216         * LinkArea.cs:   Added missing attributes
24217         
24218
24219 2005-02-08  Peter Bartok  <pbartok@novell.com>
24220
24221         * Menu.cs: Added missing attributes
24222         * MainMenu.cs: Added missing attributes
24223         * GroupBox.cs: Added missing attributes
24224         * Label.cs: Added missing attributes
24225         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
24226         * ColorDialog.cs:
24227           - Added Instance and Options properties
24228           - Added missing attributes
24229         * Cursor.cs: Made Serializable
24230         * NotifyIcon: Added missing attributes
24231         * MenuItem.cs: Added missing attributes
24232         * TextBoxBase.cs: Implemented AppendText() and Select() methods
24233         * Panel.cs: Added Missing attributes
24234         * MonthCalendar.cs: Fixed CreateParams
24235
24236 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24237         
24238         * LinkLabel.cs:
24239                 - Fixes signature
24240                 - Fixes issues with links
24241                 - Adds the class attributes
24242
24243 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24244         
24245         * ComboBox.cs:
24246                 - Fixes button when no items available in dropdown
24247                 - Fixes repainting problems
24248                 - Adds the class attributes
24249                 
24250 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24251
24252         * XplatUIOSX.cs: Detect the menu bar and title bar height from
24253         the current theme.  Cache these on startup.
24254
24255 2005-02-07  Jackson Harper  <jackson@ximian.com>
24256
24257         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
24258         the scrollbar buttons when they are depressed.
24259
24260 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24261
24262         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
24263         Get the display size from the main displayid.  We currently dont
24264         support multiple display configurations.
24265
24266 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24267
24268         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
24269
24270 2005-02-07  Miguel de Icaza  <miguel@novell.com>
24271
24272         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
24273
24274 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
24275
24276         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
24277
24278 2005-02-04  Jackson Harper  <jackson@ximian.com>
24279
24280         * ThemeWin32Classic.cs: Respect the clipping rect when
24281         drawing. Only fill the intersection of clips and rects so there
24282         isn't a lot of large fills.
24283         * ScrollBar.cs: Pass the correct clipping rect to the theme
24284         engine. Remove some debug code.
24285
24286 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
24287         
24288         * DateTimePicker.cs:
24289                 - Fixed crash on DateTime.Parse, use Constructor instead
24290
24291 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24292         
24293         * MenuItem.cs:
24294         * MenuAPI.cs:
24295                 - Owner draw support (MeasureItem and DrawItem)
24296
24297 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24298         
24299         *  Menu.cs:
24300                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
24301                 - Fixes MenuItems.Add range
24302         * MenuItem.cs:
24303                 - MergeMenu and Clone and CloneMenu functions
24304
24305 2005-02-03  Jackson Harper  <jackson@ximian.com>
24306
24307         * ScrollBar.cs: Make abstract
24308         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
24309         is abstract.
24310
24311 2005-02-03  Jackson Harper  <jackson@ximian.com>
24312
24313         * ScrollBar.cs: First part of my scrollbar fixups. This removes
24314         all the unneeded refreshes and uses invalidates with properly
24315         computed rects.
24316
24317 2005-02-03  Peter Bartok  <pbartok@novell.com>
24318
24319         * ComponentModel.cs: Added
24320         * IDataGridEditingService.cs: Added
24321         * Timer.cs: Added missing attributes
24322         * ToolTip.cs: Added missing attributes
24323
24324 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
24325
24326         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
24327
24328 2005-02-03  Peter Bartok  <pbartok@novell.com>
24329
24330         * ListBox.cs: Added missing attributes
24331
24332 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
24333         
24334         * ListBox.cs:
24335                 - Fixes font height after font change
24336                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
24337                 
24338 2005-02-02  Peter Bartok  <pbartok@novell.com>
24339
24340         * HandleData.cs: Introduced static methods to allow class
24341           to be more self-contained and track it's own HandleData objects
24342         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
24343           HandleData to use new static methods
24344
24345 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
24346
24347         * Combobox.cs:
24348                 - Fixes default size and PreferredHeight
24349                 - Missing events
24350                 - ObjectCollection.Insert implementation
24351                 
24352         * ListControl.cs
24353                 - Fixes signature
24354         * ListBox.cs:
24355                 - Several fixes
24356                 - ObjectCollection.Insert implementation
24357                 - No selection after clean
24358                 - Small fixes
24359
24360 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
24361
24362         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
24363
24364 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
24365
24366         * Combobox.cs:
24367                 - Caches ItemHeight calculation for OwnerDrawVariable
24368                 - Handles dropdown properly
24369                 - Fixes several minor bugs
24370
24371 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
24372
24373         * ListBox.cs:
24374                 - Fixes 71946 and 71950
24375                 - Fixes changing Multicolumn on the fly
24376                 - Fixes keyboard navigation on Multicolumn listboxes
24377
24378 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24379         
24380         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
24381         crash reporter log.
24382
24383 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24384
24385         * XplatUIOSX.cs: Allow applications to actually exit.
24386
24387 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24388
24389         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
24390         their parent at creation time rather than lazily later.  Fixes a major
24391         regression we were experiencing.
24392
24393 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
24394
24395         * ThemeWin32Classic.cs: more date time picker painting fixes
24396         * DateTimePicker.cs: more monthcalendar drop down fixes
24397         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
24398
24399 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
24400
24401         * ScrollBar.cs:
24402                 - When moving the thumb going outside the control should stop the moving
24403                 - Adds the firing of missing events
24404                 - Fixes no button show if Size is not specified
24405                 - End / Home keys for keyboard navigation
24406
24407 2005-01-30  Peter Bartok  <pbartok@novell.com>
24408
24409         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
24410           sanity check to prevent theoretical loop
24411         * XplatUIWin32.cs (SetVisible): Removed debug output
24412         * XplatUIX11.cs (SystrayChange): Added sanity check
24413         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
24414         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
24415           behaviour, valid until the X11 client window rewrite is done
24416         * TextBox.cs (ctor): Setting proper default foreground and background
24417           colors
24418
24419 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
24420
24421         * Theme: Added DrawDateTimePicker to interface
24422         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
24423         * DateTimePicker.cs: Created (still needs keys and painting code)
24424         * DateTimePickerFormat.cs: added
24425         * MonthCalendar.cs: fixed CreateParams for popup window mode
24426           
24427 2005-01-29  Peter Bartok  <pbartok@novell.com>
24428
24429         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
24430           this should also the calculations for ligher/darker
24431         * Theme.cs: Fixed defaults for ScrollBar widths/heights
24432
24433 2005-01-29  Peter Bartok  <pbartok@novell.com>
24434
24435         * ArrangeDirection.cs: Added
24436         * ArrangeStartingPositon.cs: Added
24437         * SystemInformation.cs: Implemented
24438         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24439           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
24440           used by SystemInformation class
24441         * X11Strucs.cs: Added XSizeHints structure
24442         * MenuAPI.cs:
24443           - Fixed CreateParams to make sure the menu window is always visible
24444           - TrackPopupMenu: Added check to make sure we don't draw the
24445             menu offscreen
24446
24447 2005-01-29  Peter Bartok  <pbartok@novell.com>
24448
24449         * HandleData.cs: Added method for altering invalid area
24450         * TextBoxBase.cs: Implemented TextLength
24451
24452 2005-01-28  Peter Bartok  <pbartok@novell.com>
24453
24454         * XplatUIX11.cs: Improvement over last patch, not sending
24455           the WM_PAINT directly anymore, instead we scroll any pending
24456           exposed areas and let the system pick out the WM_PAINT later
24457
24458 2005-01-28  Peter Bartok  <pbartok@novell.com>
24459
24460         * SWF.csproj: Deleted, no longer used. Instead,
24461           Managed.Windows.Forms/SWF.csproj should be used
24462         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
24463           directly, to avoid a potential race condition with the next
24464           scroll
24465
24466 2005-01-28  Peter Bartok  <pbartok@novell.com>
24467
24468         * XplatUI.cs: Made class internal
24469
24470 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
24471
24472         * CheckedListBox.cs:
24473                 - Draw focus
24474                 - Fixed Drawing
24475                 - Missing methods and events
24476
24477 2005-01-27  Peter Bartok  <pbartok@novell.com>
24478
24479         * Application.cs (Run): Don't use form if we don't have one
24480
24481 2005-01-27  Peter Bartok  <pbartok@novell.com>
24482
24483         * TextBoxBase.cs (get_Lines): Fixed index off by one error
24484
24485 2005-01-27  Peter Bartok  <pbartok@novell.com>
24486
24487         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
24488         * GridItem.cs: Added; Patch by Jonathan S. Chambers
24489         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
24490         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
24491         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
24492         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
24493         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24494         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24495         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24496         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24497         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24498         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24499
24500 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24501
24502         * Combobox.cs:
24503                 - Draw focus on Simple Combobox
24504                 - Fixes drawing issues
24505                 - fixes 71834
24506
24507 2005-01-27  Peter Bartok  <pbartok@novell.com>
24508
24509         * Form.cs:
24510           - Place window in default location, instead of hardcoded 0/0
24511           - Send initial LocationChanged event
24512         * Control.cs:
24513           - UpdateBounds after creation to find out where the WM placed us
24514           - Make sure that if the ParentForm changes location the Form
24515             is notified
24516         * XplatUIX11.cs: XGetGeometry will not return the coords relative
24517             to the root, but to whatever the WM placed around us.
24518             Translate to root coordinates before returning toplevel
24519             coordinates
24520         * XplatUIWin32.cs: Removed debug output
24521         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
24522           flag to GetWindowPos, to allow translation of coordinates on X11
24523
24524 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24525
24526         * ListBox.cs: connect LostFocus Event
24527
24528 2005-01-27  Peter Bartok  <pbartok@novell.com>
24529
24530         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
24531           XplatUIX11.cs: Extended the Systray API
24532         * Form.cs: Removed debug output
24533         * Application.cs: Fixed focus assignment, always need to call
24534           XplatUI.Activate() since Form.Activate() has rules that may
24535           prevent activation
24536         * NotifyIcon.cs: Should be complete now
24537         * ToolTip.cs: Worked around possible timer bug
24538
24539 2005-01-27  Jackson Harper  <jackson@ximian.com>
24540
24541         * TabControl.cs:
24542         - Only invalidate the effected tabs when the
24543         selected index changes. This reduces drawing and gets rid of some
24544         flicker.
24545         - Only refresh if the tabs need to be shifted, otherwise only
24546         invalidate the slider button.
24547         - On windows the tabs are not filled to right if the slider is
24548         visible.
24549         
24550 2005-01-27  Jackson Harper  <jackson@ximian.com>
24551
24552         * TabControl.cs: Only refresh on mouseup if we are showing the
24553         slider. Also only invalidate the button whose state has changed.
24554
24555 2005-01-26  Peter Bartok  <pbartok@novell.com>
24556
24557         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
24558         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
24559           and SystrayRemove() methods
24560         * XplatUIOSX.cs: Stubbed Systray methods
24561         * XplatUIX11.cs:
24562           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
24563             methods
24564           - Fixed broken XChangeProperty calls (marshalling messed up things)
24565         * X11Structs.cs: Added enums and structs required for Size hinting
24566         * NotifyIcon.cs: Added & implemented
24567
24568 2005-01-26  Jackson Harper  <jackson@ximian.com>
24569
24570         * TabControl.cs: Space vertically layed out tabs properly.
24571
24572 2005-01-26  Peter Bartok  <pbartok@novell.com>
24573
24574         * Form.cs (CreateClientParams): Always set the location to 0,0
24575           since we're a child window.
24576
24577         * Control.cs (SetVisibleCore): Always explicitly setting the location
24578           of a toplevel window, apparently X11 doesn't like to move windows
24579           while they're not mapped.
24580
24581 2005-01-26  Jackson Harper  <jackson@ximian.com>
24582
24583         * TabControl.cs: Implement FillToRight size mode with vertically
24584         rendered tabs.
24585
24586 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24587
24588         * ControlPaint.cs, ThemeWin32Classic.cs
24589                 - Fixes DrawFocusRectangle
24590
24591 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24592
24593         * MenuAPI.cs:
24594                 - MenuBar tracking only starts when item is first clicked
24595                 - Fixes menu hidding for multiple subitems
24596                 - Unselect item in MenuBar when item Executed
24597                 - Fixes bug 71495
24598
24599 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
24600
24601         * ListControl.cs:
24602                 - IsInputKey for ListBox
24603         * ListBox.cs:
24604                 - Focus item
24605                 - Shift and Control item selection
24606                 - Implement SelectionMode.MultiExtended
24607                 - Fixes RightToLeft
24608         * ComboBox.cs:
24609                 - IsInputKey implemented
24610                 - Do not generate OnTextChangedEdit on internal txt changes
24611                 
24612 2005-01-23  Peter Bartok  <pbartok@novell.com>
24613
24614         * AccessibleObject.cs: Partially implemented Select()
24615         * MonthCalendar.cs: Added missing attributes and events
24616         * Form.cs: Fixed CreateParams behaviour, now controls derived from
24617           form can properly override CreateParams.
24618         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24619           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
24620           Control performs Invalidate & Update
24621         * NativeWindow (CreateHandle): Added special handling for Form
24622           and Form.FormParent classes to allow overriding of From.CreateParams
24623         * Control.cs:
24624           - ControlNativeWindow: Renamed 'control' variable to more intuitive
24625             name 'owner'
24626           - ControlNativeWindow: Added Owner property
24627           - Removed usage of Refresh() on property changes, changed into
24628             Invalidate(), we need to wait until the queue is processed for
24629             updates, direct calls might cause problems if not all vars for
24630             Paint are initialized
24631           - Added call to UpdateStyles() when creating the window, to set any
24632             styles that CreateWindow might have ignored.
24633           - Added support for Form CreateParent overrides to UpdateStyles()
24634         * MessageBox.cs: Removed no longer needed FormParent override stuff,
24635           CreateParams are now properly overridable
24636         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
24637           CreateParams are now properly overridable
24638
24639 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
24640
24641         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
24642         OnTextBoxChanged.
24643
24644         Capture LostFocus and OnTextBoxChanged.  The later introduces a
24645         recursive invocation that I have not figured out yet.
24646
24647         Reset the timer when not using (it was accumulating).
24648
24649
24650         (OnTextBoxChanged): Set UserEdit to true here to track whether the
24651         user has made changes that require validation.
24652
24653         Reset changing to avoid loops.
24654
24655 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
24656
24657         * NumericUpDown.cs: Display value at startup.
24658
24659         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
24660         ValidateEditText.
24661
24662         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
24663         filled in.  Added some basic parsing of text.
24664
24665         Still missing the OnXXX method overrides, and figuring out the
24666         events that must be emitted.
24667
24668         * UpDownBase.cs: Handle UserEdit on the Text property.
24669         
24670 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
24671
24672         * ComboBox.cs:
24673           - Fixes IntegralHeight
24674           - ToString method
24675
24676 2005-01-21  Jackson Harper  <jackson@ximian.com>
24677
24678         * TabControl.cs: Set the SelectedIndex property when SelectedTab
24679         is set so that the page visibility is updated and the tabs are
24680         sized correctly.
24681
24682 2005-01-21  Jackson Harper  <jackson@ximian.com>
24683
24684         * TabControl.cs: Use cliping rectangle for blitting. Give the
24685         theme the clipping rect so we can do clipping while
24686         drawing. Remove some debug code.
24687
24688 2005-01-21  Jackson Harper  <jackson@ximian.com>
24689
24690         * TabPage.cs: Add a new method so tab pages can force the tab
24691         control to recalculate the tab page sizes.
24692         * TabControl.cs: UpdateOwner needs to make the tab control recalc
24693         sizes.
24694
24695 2005-01-20  Jackson Harper  <jackson@ximian.com>
24696
24697         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
24698
24699 2005-01-20  Jackson Harper  <jackson@ximian.com>
24700
24701         * TreeView.cs: Set the bounds for nodes properly. They were
24702         getting screwed up when checkboxes were not enabled, but images
24703         were.
24704
24705 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
24706
24707         * ListBox.cs:
24708                 - Owner draw support
24709                 - Fixes
24710                 
24711 2005-01-20  Jackson Harper  <jackson@ximian.com>
24712
24713         * XplatUIStructs.cs: More misc keys
24714         * X11Keyboard.cs: Ignore some control keys.
24715
24716 2005-01-20  Jackson Harper  <jackson@ximian.com>
24717
24718         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
24719         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
24720
24721 2005-01-19  Peter Bartok  <pbartok@novell.com>
24722
24723         * Control.cs: Un-selecting the control when it is loosing focus
24724
24725 2005-01-19  Jackson Harper  <jackson@ximian.com>
24726
24727         * TreeView.cs: Hook up to the text controls leave event so we can
24728         end editing when the users clicks outside the text box.
24729         
24730 2005-01-19  Jackson Harper  <jackson@ximian.com>
24731
24732         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
24733         get set in the conversion array.
24734
24735 2005-01-19  Peter Bartok  <pbartok@novell.com>
24736
24737         * Application.cs (ModalRun): Added a call to CreateControl to ensure
24738           focus is properly set
24739         * Button.cs:
24740           - Added missing attributes
24741           - removed styles, those are already set in the base class
24742         * ButtonBase.cs:
24743           - Added missing attributes
24744           - Added clip window styles
24745         * CheckBox.cs: Added missing attributes
24746         * CommonDialog.cs:
24747           - FormParentWindow.CreateParams: Added required clip styles
24748         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
24749           also filters modifier keys
24750         * MessageBox.cs:
24751           - Added assignment of Accept and Cancel button to enable Enter
24752             and Esc keys in MessageBox dialogs
24753           - FormParentWindow.CreateParams: Added required clip styles
24754         * RadioButton.cs: Added missing attributes
24755         * TextControl.cs: No longer draws selection if control does not
24756           have focus
24757         * TextBoxBase.cs:
24758           - Now draws simple rectangle around test area to make it obvious
24759             there's a control. This is a hack until we properly support borders
24760           - A few simple fixes to support selections better, now erases selected
24761             text when typing, and resets selection when using movement keys
24762
24763 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24764
24765         * UpDownBase.cs: Added some new properties.
24766
24767         * DomainUpDown.cs: Implement a lot to get my test working.
24768
24769 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24770
24771         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
24772
24773 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24774
24775         * OSXStructs (WindowAttributes): Fixed csc complaints
24776
24777 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24778
24779         * XplayUIOSX.cs:
24780           OSXStructs.cs: Initial refactor to move enums and consts into
24781           OSXStructs and use them in the driver for greater readability.
24782
24783 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24784
24785         * XplatUIOSX.cs: Initial support for Standard Cursors.
24786         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
24787
24788 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
24789
24790         * ComboBox.cs: ability to change style when the ctrl is already
24791         created, missing methods and events, bug fixes, signature fixes
24792
24793 2005-01-19  Peter Bartok  <pbartok@novell.com>
24794
24795         * Cursors.cs (ctor): Added ctor to fix signature
24796
24797 2005-01-18  Peter Bartok  <pbartok@novell.com>
24798
24799         * Button.cs: Implemented DoubleClick event
24800         * ButtonBase.cs:
24801           - Fixed keyboard handling to behave like MS, where the press of
24802             Spacebar is equivalent to a mousedown, and the key release is
24803             equivalent to mouseup. Now a spacebar push will give the same
24804             visual feedback like a mouse click.
24805           - Added missing attributes
24806           - Added ImeModeChanged event
24807           - Added support for generating DoubleClick event for derived classes
24808         * CheckBox.cs:
24809           - Implemented DoubleClick event
24810           - Added missing attributes
24811         * CommonDialog.cs: Added missing attribute
24812         * ContextMenu.cs: Added missing attributes
24813         * RadioButton.cs:
24814           - AutoChecked buttons do not allow to be unselected when clicked
24815             (otherwise we might end up with no selected buttons in a group)
24816           - Added missing attributes
24817           - Implemented DoubleClickEvent
24818         * ThreadExceptionDialog.cs: Enabled TextBox code
24819
24820 2005-01-18  Peter Bartok  <pbartok@novell.com>
24821
24822         * Form.cs: Removed debug output
24823         * Button.cs: Added support for DoubleClick method
24824
24825 2005-01-18  Peter Bartok  <pbartok@novell.com>
24826
24827         * Form.cs:
24828           - Added method to parent window that allows triggering size
24829             calculations when a menu is added/removed
24830           - set_Menu: Cleaned up mess from early days of Form and Control,
24831             now properly triggers a recalc when a menu is added/removed
24832           - Added case to select form itself as focused form if no child
24833             controls exist
24834           - Added PerformLayout call when showing dialog, to ensure properly
24835             placed controls
24836         * Control.cs:
24837           - Select(): Made internal so Form can access it
24838           - Focus(): Only call Xplat layer if required (avoids loop), and sets
24839             status
24840         * Application.cs (Run): Removed hack and calls PerformLayout instead
24841           to trigger calculation when Form becomes visible
24842
24843 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
24844
24845         * ComboBox.cs: fixes for ownerdraw
24846
24847 2005-01-18  Peter Bartok  <pbartok@novell.com>
24848
24849         * TextControl.cs:
24850           - Sentinel is no longer static, each Document gets it's own, this
24851             avoids locking or alternatively overwrite problems when more
24852             than one text control is used simultaneously.
24853           - Switched to use Hilight and HilightText brushes for text selection
24854
24855         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
24856
24857 2005-01-18  Peter Bartok  <pbartok@novell.com>
24858
24859         * Control.cs:
24860           - Hooked up the following events:
24861                 o ControlAdded
24862                 o ControlRemoved
24863                 o HandleDestroyed
24864                 o ImeModeChanged
24865                 o ParentChanged
24866                 o TabStopChanged
24867                 o Invalidated
24868                 o SystemColorsChanged
24869                 o ParentFontChanged
24870                 o Move
24871           - Removed debug output
24872           - Added a call to the current theme's ResetDefaults when a color change
24873             is detected
24874         * Form.cs: Now setting the proper ImeMode
24875         * Theme.cs: Defined a method to force recreation of cached resources
24876           and rereading of system defaults (ResetDefaults())
24877         * ThemeWin32Classic.cs: Added ResetDefaults() stub
24878
24879 2005-01-17  Peter Bartok  <pbartok@novell.com>
24880
24881         * Control.cs: Added missing attributes
24882
24883 2005-01-17  Jackson Harper  <jackson@ximian.com>
24884
24885         * TreeNode.cs: Implement editing. Add missing properties selected
24886         and visible.
24887         * TreeView.cs: Implement node editing. Also some fixes to use
24888         Invalidate (invalid area) instead of Refresh when selecting.
24889
24890 2005-01-17  Peter Bartok  <pbartok@novell.com>
24891
24892         * Control.cs:
24893           - Implemented InvokeGotFocus() method
24894           - Implemented InvokeLostFocus() method
24895           - Implemented InvokePaint() method
24896           - Implemented InvokePaintBackground() method
24897           - Implemented InvokeClick() method
24898           - Implemented FindForm() method
24899           - Implemented RectangleToClient() method
24900           - Implemented ClientToRectangle() method
24901           - Implemented ResetBackColor() method
24902           - Implemented ResetCursor() method
24903           - Implemented ResetFont() method
24904           - Implemented ResteForeColor() method
24905           - Implemented ResetImeMode() method
24906           - Implemented ResetLeftToRight() method
24907           - Implemented ResetText() method
24908           - Implemented Scale() methods
24909           - Implemented ScaleCore() method
24910           - Implemented Update() method
24911           - Removed unused variables
24912           - Stubbed AccessibilityNotifyClients and
24913             ControlAccessibleObject.NotifyClients() methods (dunno what to do
24914             with those yet)
24915           - Now setting proper default for RightToLeft property
24916           - Fixed bug in SetClientSizeCore that would cause windows to get
24917             really big
24918           - Now sending Click/DoubleClick events
24919           - Now selecting controls when left mouse button is clicked on
24920             selectable control
24921         * AccessibleEvents.cs: Added
24922         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
24923         * XplatUIOSX.cs: Stubbed UpdateWindow() method
24924         * XplatUIWin32.cs: Implemented UpdateWindow() method
24925         * XplatUIX11.cs: Implemented UpdateWindow() method
24926         * Form.cs: Removed stray semicolon causing CS0162 warning
24927         * ThemeWin32Classic.cs: Fixed unused variable warnings
24928         * ScrollableControl.cs: Now calls base method for ScaleCore
24929         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
24930           style to avoid interference with internal click handler (which is
24931           different than standard Control click handling)
24932         * RadioButton.cs:
24933           - Now unchecks all sibling radio buttons when control is
24934             selected (Fixes #68756)
24935           - Removed internal tabstop variable, using the one inherited from
24936             Control
24937
24938 2005-01-17  Jackson Harper  <jackson@ximian.com>
24939
24940         * NavigateEventArgs.cs: Fix base type.
24941         * LinkLabel.cs: Sig fix
24942         
24943 2005-01-17  Jackson Harper  <jackson@ximian.com>
24944
24945         * TreeView.cs: Only invalidate the effected nodes bounds when
24946         selecting nodes.
24947
24948 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24949
24950         * XplatUIWin32.cs: fixes Win32 marshaling
24951         * XplatUIX11.cs: fixes method signature
24952
24953 2005-01-17  Peter Bartok  <pbartok@novell.com>
24954
24955         * XplatUIX11.cs: Clean up resources when we no longer need them
24956
24957 2005-01-17  Peter Bartok  <pbartok@novell.com>
24958
24959         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
24960           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
24961           and DestroyCursor() methods.
24962         * Cursor.cs: Partially implemented, now supports standard cursors;
24963           still contains some debug code
24964         * Cursors.cs: Implemented class
24965         * Control.cs:
24966           - WndProc(): Added handling of WM_SETCURSOR message, setting the
24967             appropriate cursor
24968           - Implemented Cursor property
24969           - Replaced break; with return; more straightforwar and possibly
24970             faster
24971           - Now properly setting the result for WM_HELP
24972         * X11Structs.cs: Added CursorFontShape enum
24973         * XplatUIStructs.cs:
24974           - Added StdCursor enum (to support DefineStdCursor() method)
24975           - Added HitTest enum (to support sending WM_SETCURSOR message)
24976         * XplatUIX11.cs:
24977           - Now sends the WM_SETCURSOR message
24978           - Implemented new cursor methods
24979         * XplatUIOSX.cs: Stubbed new cursor methods
24980         * XplatUIWin32.cs:
24981           - Implemented new cursor methods
24982           - Added GetSystemMetrics function and associated enumeration
24983
24984 2005-01-15  Peter Bartok  <pbartok@novell.com>
24985
24986         * Control.cs:
24987           - WndProc(): Now handles EnableNotifyMessage
24988           - SelectNextControl(): Fixed bug where if no child or sibling
24989             controls exist we looped endlessly
24990
24991 2005-01-14  Jackson Harper  <jackson@ximian.com>
24992
24993         * TreeView.cs: Recalculate the tab pages when a new one is added
24994         so that the proper bounding rects are created.
24995
24996 2005-01-14  Jackson Harper  <jackson@ximian.com>
24997
24998         * TreeView.cs: Draw a gray box instead of a grip in the lower
24999         right hand corner when there are both horizontal and vertical
25000         scroll bars.
25001
25002 2005-01-14  Jackson Harper  <jackson@ximian.com>
25003
25004         * Control.cs: When erasing backgrounds use FromHwnd instead of
25005         FromHdc when there is a NULL wparam. This occurs on the X driver.
25006         * XplatUIX11.cs: Set the wparam to NULL.
25007
25008 2005-01-13  Jackson Harper  <jackson@ximian.com>
25009
25010         * PictureBox.cs: Implement missing methods (except ToString, need
25011         to test that on windows) and events. When visibility is changed we
25012         need to redraw the image because the buffers are killed. When size
25013         is changed refresh if the sizemode needs it.
25014
25015 2005-01-13  Peter Bartok  <pbartok@novell.com>
25016
25017         * Control.cs (SelectNextControl): Was using wrong method to select
25018           a control
25019
25020 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25021
25022         * ComboBox.cs: fixes dropstyle
25023
25024 2005-01-13  Peter Bartok  <pbartok@novell.com>
25025
25026         * Form.cs:
25027           - Implemented Select() override
25028           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
25029           - Now sets keyboard focus on startup
25030         * Control.cs (SelectNextControl): Now properly handles directed=true
25031         * TextBoxBase.cs:
25032           - WndProc: Now passes tab key on to base if AcceptTabChar=false
25033           - Added (really bad) focus rectangle (mostly for testing)
25034         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
25035           to enforce redraw on focus changes
25036         * ContainerControl.cs:
25037           - Fixed detection of Shift-Tab key presses
25038           - Fixed traversal with arrow keys
25039         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
25040           gonna keep this or if it's complete yet
25041         
25042 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25043
25044         * ComboBox.cs: missing properties, fixes
25045
25046 2005-01-13  Peter Bartok  <pbartok@novell.com>
25047
25048         * Panel.cs (ctor): Setting Selectable window style to off
25049         * Splitter.cs (ctor): Setting Selectable window style to off
25050         * GroupBox.cs (ctor): Setting Selectable window style to off
25051         * Label.cs (ctor): Setting Selectable window style to off
25052
25053 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
25054
25055         * UpDownBase.cs (InitTimer): If the timer has been already
25056         created, enable it.
25057
25058         Use a TextBox instead of a Label.
25059
25060 2005-01-12  Jackson Harper  <jackson@ximian.com>
25061
25062         * TreeView.cs: Refresh the tree after sorting the nodes. Always
25063         draw the connecting node lines (when ShowLines is true).
25064         * TreeNode.cs: The nodes index can now be updated. This is used
25065         when a node collection is sorted.
25066         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
25067         insert or an existing unsorted node collection can be sorted.
25068         
25069 2005-01-12  Peter Bartok  <pbartok@novell.com>
25070
25071         * ContainerControl.cs: Implemented ProcessDialogKeys()
25072
25073 2005-01-12  Peter Bartok  <pbartok@novell.com>
25074
25075         * Control.cs:
25076           - Implemented SelectNextControl() method
25077           - Several focus related bug fixes
25078           - Fixed Docking calculations to match MS documentation and
25079             behaviour
25080
25081 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
25082
25083         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
25084         bug fixes
25085
25086 2005-01-12  Peter Bartok  <pbartok@novell.com>
25087
25088         * Control.cs:
25089           - Fixed broken Contains() method
25090           - Implemented GetNextControl() method. Finally. This is the pre-
25091             requisite for focus handling.
25092
25093 2005-01-12  Peter Bartok  <pbartok@novell.com>
25094
25095         * OSXStrucs.cs: Added
25096
25097 2005-01-12  Peter Bartok  <pbartok@novell.com>
25098
25099         * XplatUIWin32.cs:
25100           - Removed PeekMessageFlags
25101           - Implemented SetWindowStyle() method
25102         * XplatUIStructs.cs: Added PeekMessageFlags
25103         * X11Structs: Added missing border_width field to XWindowChanges struct
25104         * XplatUIX11.cs:
25105           - PeekMessage: Now throws exception if flags which are not yet
25106             supported are passed
25107           - Implemented SetWindowStyle() method
25108           - Fixed SetZOrder to handle AfterHwnd properly
25109         * XplatUI.cs: Added SetWindowStyle() method
25110         * XplatUIDriver.cs: Added SetWindowStyle() abstract
25111         * Control.cs:
25112           - Implemented UpdateStyles() method
25113           - Implemented UpdateZOrder() method
25114         * XplatUIOSX.cs: Added SetWindowStyle() stub
25115
25116 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
25117
25118         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
25119         button mouse).
25120
25121
25122 2005-01-11  Jackson Harper  <jackson@ximian.com>
25123
25124         * TreeView.cs: Still need to draw lines to siblings even if out of
25125         the current node is out of the clip.
25126
25127 2005-01-11  Jackson Harper  <jackson@ximian.com>
25128
25129         * TreeView.cs: When setting the hbar/vbar/grip position use
25130         SetBounds so that perform layout is only called once. Also suspend
25131         and resume layout so layout is only done once for all controls.
25132         - Removed some debug fluff
25133         * SizeGrip.cs: Call base implmentation in overriding methods.
25134         - When visibility is changed the drawing buffers are killed so we
25135         need to redraw.
25136
25137 2005-01-11  Jackson Harper  <jackson@ximian.com>
25138
25139         * TreeView.cs: Calculate the open node count while drawing. This
25140         saves us an entire tree traversal for every paint operation. Use
25141         a member var for the open node count so less vars are passed around.
25142
25143 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
25144
25145         * MonthCalendar.cs:
25146         - fixed selection to use mousemove, not mouse polling on timer
25147         * ThemeWin32Classic.cs
25148         - removed redundant unused variable "no_more_content"
25149         
25150 2005-01-11  Peter Bartok  <pbartok@novell.com>
25151
25152         * XplatUIX11.cs (DoEvents): Needs to return when no more events
25153           are pending, so it now calls PeekMessage instead of GetMessage;
25154           implemented a incomplete version of PeekMessage
25155         
25156 2005-01-11  Peter Bartok  <pbartok@novell.com>
25157
25158         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
25159           I18n issues
25160         * TextBoxBase.cs: Added sending of TextChanged event
25161
25162 2005-01-10  Jackson Harper  <jackson@ximian.com>
25163
25164         * TreeView.cs: Try not to draw outside the clipping rectangle on
25165         each node element.
25166
25167 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
25168
25169         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
25170
25171 2005-01-10  Jackson Harper  <jackson@ximian.com>
25172
25173         * TreeView.cs:
25174         - Implement fast scrolling. Now only the newly
25175         exposed nodes are drawn and the old image is moved using the
25176         XplatUI::ScrollWindow method.
25177         - Factor in height of nodes when calculating whether or not the
25178         node is in the clipping rect.
25179
25180 2005-01-10  Jackson Harper  <jackson@ximian.com>
25181
25182         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
25183
25184 2005-01-10  Peter Bartok  <pbartok@novell.com>
25185
25186         * Application.cs: Added temporary hack to resolve all our resize
25187           required issues on startup. This will get fixed properly at
25188           some point in the future
25189
25190 2005-01-10  Jackson Harper  <jackson@ximian.com>
25191
25192         * SizeGrip.cs: New internal class that is used as a sizing
25193         grip control...hence the name.
25194
25195 2005-01-10  Peter Bartok  <pbartok@novell.com>
25196
25197         * Control.cs: Implemented proper TabIndex handling, now assigning
25198           a tabindex when a control is added to a container
25199         * GroupBox.cs (ctor): Now sets the Container style bit, required
25200           for Control.GetNextControl()
25201
25202 2005-01-09  Jackson Harper  <jackson@ximian.com>
25203
25204         * TextBoxBase.cs: Clear window when scrolling (fixes build).
25205
25206 2005-01-09  Peter Bartok <pbartok@novell.com>
25207
25208         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25209           XplatUIX11.cs: Added ability to control ScrollWindow expose and
25210           an overload for ScrollWindow to allow only scrolling a rectangle
25211
25212 2005-01-09  Peter Bartok <pbartok@novell.com>
25213
25214         * Form.cs:
25215           - Implemented SetDesktopBounds method
25216           - Implemented SetDesktopLocation method
25217
25218 2005-01-08  Jackson Harper  <jackson@ximian.com>
25219
25220         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
25221         the node count has changed, this removes to VScroll::Refresh calls
25222         when drawing.
25223
25224 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
25225
25226         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
25227
25228 2005-01-07  Jackson Harper  <jackson@ximian.com>
25229
25230         * TreeNode.cs: Just update the single node when it is
25231         checked. Don't refresh after toggling, the Expand/Collapse already
25232         handles this.
25233         * TreeView.cs: Respect clipping a little more when drawing. Try
25234         not to redraw things that don't need to be redrawn. Just hide the
25235         scrollbars when they are no longer needed instead of removing
25236         them, so they don't have to be created again and again.
25237         
25238 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
25239
25240         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
25241         coordinates to window space to place the caret properly, FIXED.
25242         Implement GetWindowState & SetWindowState
25243
25244 2005-01-06  Peter Bartok <pbartok@novell.com>
25245
25246         * Form.cs:
25247           - Implemented ClientSize property
25248           - Implemented DesktopBounds property
25249           - Implemented DesktopLocation property
25250           - Implemented IsRestrictedWindow property
25251           - Implemented Size property
25252           - Implemented TopLevel property
25253           - Implemented FormWindowState property
25254         * Control.cs:
25255           - Implemented GetTopLevel() method
25256           - Implemented SetTopLevel() method
25257         * X11Structs.cs (Atom):
25258           - Added AnyPropertyType definition
25259           - Added MapState definiton and updated XWindowAttribute struct
25260         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
25261         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
25262         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
25263         * XplatUIWin32.cs:
25264           - Implemented GetWindowState() and SetWindowState() methods
25265           - Fixed Win32GetWindowLong return type
25266         * XplatUIX11.cs:
25267           - Introduced central function for sending NET_WM messages
25268           - Implemented GetWindowState() and SetWindowState() methods
25269         * TextBoxBase.cs (set_Lines):
25270           - Now uses Foreground color for text added via Text property (Duh!)
25271           - Added code to remember programmatically requested size (fixes
25272             behaviour when Multiline is set after Size)
25273           - Added AutoSize logic
25274
25275 2005-01-06  Jackson Harper  <jackson@ximian.com>
25276
25277         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
25278
25279 2005-01-06  Jackson Harper  <jackson@ximian.com>
25280
25281         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
25282         set to less then 0.
25283
25284 2005-01-06  Jackson Harper  <jackson@ximian.com>
25285
25286         * ScrollableControl.cs: Lazy init the scrollbars.
25287         
25288 2005-01-06  Jackson Harper  <jackson@ximian.com>
25289
25290         * Theme.cs: Speed up getting pens and solid brushes, by using
25291         their ARGB as a hash instead of tostring and not calling Contains.
25292
25293 2005-01-06  Peter Bartok <pbartok@novell.com>
25294
25295         * Form.cs:
25296           - Implemented OnActivated and OnDeactivate event trigger
25297           - Implemented Activate() method
25298           - Fixed ShowDialog() to activate the form that was active before
25299             the dialog was shown
25300         * XplatUIX11.cs:
25301           - Added global active_window var that tracks the currently active
25302             X11 window
25303           - Now always grabs Property changes from the root window to always
25304             catch changes on the active window property
25305           - Added code to PropertyNotify handler to send Active/Inactive
25306             messages when state changes. This puts X11 and Win32 en par on
25307             WM_ACTIVATE notifications (except for double notifications when
25308             the user clicks away from our modal window to another one of our
25309             windows)
25310
25311 2005-01-05  Jackson Harper  <jackson@ximian.com>
25312
25313         * ImageList.cs: Implment ctor
25314
25315 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25316
25317         * XplatUIOSX.cs: Implement Activate/SetTopmost
25318
25319 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25320
25321         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
25322
25323 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25324
25325         * XplatUIOSX.cs: Implement GetActive/SetFocus.
25326
25327 2005-01-05  Peter Bartok <pbartok@novell.com>
25328
25329         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
25330           XplatUIOSX.cs: Added GetActive method to return the currently
25331           active window for the application (or null, if none is active)
25332         * Form.cs:
25333           - Implemented ActiveForm
25334           - Commented out owner assignment for modal dialogs (causes problems
25335             on Win32, since the owner will be disabled)
25336           - Reworked some Active/Focus handling (still incomplete)
25337         * CommonDialog.cs: Commented out owner assignment for modal dialogs
25338           (causes problems on Win32, since the owner will be disabled)
25339         * IWin32Window: Added ComVisible attribute
25340
25341 2005-01-05  Peter Bartok <pbartok@novell.com>
25342
25343         * ToolTip.cs (WndProc): Enable setting focus now that we have the
25344           required XplatUI functions.
25345
25346 2005-01-05  Peter Bartok <pbartok@novell.com>
25347
25348         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
25349           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
25350           to implement focus and activation handling; still incomplete and
25351           with debug output
25352
25353 2005-01-04  Peter Bartok <pbartok@novell.com>
25354
25355         * TextBoxBase.cs: Changed access level for Document property to
25356           match switch to internal for TextControl
25357
25358 2005-01-04  Peter Bartok <pbartok@novell.com>
25359
25360         * AccessibleObject: Added ComVisible attribute
25361
25362 2005-01-04  Jackson Harper  <jackson@ximian.com>
25363
25364         * X11Keyboard.cs: Remove unneeded var.
25365
25366 2005-01-04  Jackson Harper  <jackson@ximian.com>
25367
25368         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
25369         but PAINT.
25370         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
25371         ClientMessage. This makes apps exit cleanly (more often).
25372         
25373 2005-01-04  Jackson Harper  <jackson@ximian.com>
25374
25375         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
25376         handling focus, return correct colors and fonts,
25377         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
25378         handle selection, horizontal scrolling, and mouse interaction.
25379
25380 2005-01-04  Peter Bartok <pbartok@novell.com>
25381
25382         * ICommandExecutor.cs: Added
25383         * IDataGridColumnStyleEditingNotificationService.cs: Added
25384         * IFeatureSupport.cs: Added
25385         * IFileReaderService.cs: Added
25386         * IDataObject.cs: Added ComVisible attribute
25387         * AmbientProperties.cs: Added
25388         * BaseCollection.cs: Added missing attributes
25389         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
25390         * BaseCollection.cs: Added missing attributes
25391         * Binding.cs: Added TypeConverter attribute
25392         * BindingContext.cs: Added DefaultEvent attribute
25393         * BindingsCollection.cs: Added DefaultEvent attribute
25394         * Button.cs: Added DefaultValue attribute
25395         * DragEventArgs.cs: Added ComVisible attribute
25396         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
25397         * KeyEventArgs.cs: Added ComVisible attribute
25398         * KeyPressEventArgs.cs: Added ComVisible attribute
25399         * MouseEventArgs.cs: Added ComVisible attribute
25400         * NavigateEventArgs.cs: Added
25401         * NavigateEventHandler.cs: Added
25402         * FeatureSupport.cs: Added
25403         * OSFeature.cs: Added
25404         * Theme.cs: Added abstract Version property to support OSFeature
25405         * ThemeWin32Classic.cs: Added Version property to
25406           support OSFeature.Themes
25407         * ProgressBar.cs: Removed OnPaintBackground override, not required since
25408           the proper styles to avoid background drawing are set, also doesn't
25409           match MS signature
25410         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
25411         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
25412         * ScrollEventArgs.cs: Added ComVisible attribute
25413         * SplitterEventArgs.cs: Added ComVisible attribute
25414         * AccessibleSelection.cs: Added Flags attribute
25415         * Appearance.cs: Added ComVisible attribute
25416         * Border3DSide.cs: Added ComVisible attribute
25417         * Border3DStyle.cs: Added ComVisible attribute
25418         * BorderStyle.cs: Added ComVisible attribute
25419         * DragAction.cs: Added ComVisible attribute
25420         * ErrorBlinkStyle.cs: Added
25421         * ScrollEventType.cs: Added ComVisible attribute
25422         * AnchorStyles.cs: Added Editor attribute
25423         * DockStyle.cs: Added Editor attribute
25424         * HorizontalAlignment.cs: Added ComVisible attribute
25425         * HelpEventArgs.cs: Added ComVisible attribute
25426         * PaintEventArgs.cs: Added IDisposable
25427
25428 2005-01-04  Peter Bartok <pbartok@novell.com>
25429
25430         * TextControl.cs: Switched Line, LineTag and Document classes to
25431           internal
25432
25433 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25434
25435         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
25436         Simple mode, fixes, IntegralHeight, etc.
25437
25438 2005-01-04  Peter Bartok <pbartok@novell.com>
25439
25440         * TextBoxBase.cs: Using proper font variable now
25441
25442 2005-01-04  Peter Bartok <pbartok@novell.com>
25443
25444         * Form.cs (ShowDialog): Set parent to owner, if provided
25445         * GroupBox.cs: Removed unused vars
25446         * TextControl.cs:
25447           - Added GetHashCode() for Document and LineTag classes
25448           - Removed unused variables
25449           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
25450             to allow translation between continuous char position and line/pos
25451         * CheckBox.cs: Removed vars that are provided by base class
25452         * RadioButton.cs: Removed vars that are provided by base class, added
25453           new keyword where required
25454         * LinkLabel.cs: Added new keyword where required
25455         * Control.cs (WndProc): Removed unused variable
25456         * TextBoxBase.cs:
25457           - Finished SelectionLength property
25458           - Implemented SelectionStart property
25459           - Implemented Text property
25460           - Removed unused vars
25461         * MessageBox.cs: Added new keyword where required
25462         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
25463           WndProc signature
25464         * MenuAPI.cs: Added new keyword where required
25465         * ButtonBase.cs: Removed vars that are provided by base class, added
25466           new keyword where required
25467         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
25468           argument to double, to allow compiling with csc 2.0 (Atsushi ran
25469           into this)
25470         * Application.cs (Run): Now triggers the ThreadExit event
25471         * CommonDialog.cs: Added new keyword where required; now properly sets
25472           parent (owner) for dialog
25473         * XplatUIX11.cs: Commented out unused vars
25474         * StatusBar.cs: Fixed signature for Text property
25475         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
25476
25477 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25478
25479         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
25480         TrackBar.cs, MonthCalendar.cs: remove unused vars
25481
25482 2005-01-03  Jackson Harper  <jackson@ximian.com>
25483
25484         * ThemeWin32Classic.cs:
25485         * X11Keyboard.cs: Remove unused vars.
25486
25487 2005-01-03  Peter Bartok  <pbartok@novell.com>
25488
25489         * TextBox.cs:
25490           - set_Text: Tied into TextControl
25491           - set_TextAlignment: Tied into TextControl
25492         * TextControl.cs:
25493           - Added alignment properties and implemented alignment handling
25494             and drawing (still has a bug, not generating proper expose events)
25495           - Added new Line() constructor to allow passing the line alignment
25496           - Fixed selection setting, properly handling end<start now
25497           - Added aligment considerations to RecalculateDocument()
25498         * TextBoxBase.cs:
25499           - Now properly enforces control height for single line controls
25500           - Added support for CharacterCasing
25501           - Added IsInputKey override
25502           - Fixed Keys.Enter logic
25503           - Added SetBoundsCore override
25504           - Fixed mouse selection handling
25505
25506 2005-01-03  Jackson Harper  <jackson@ximian.com>
25507
25508         * TreeView.cs:
25509           - Collapse and uncheck all nodes when CheckBoxes is disabled.
25510           - Checkboxes are always aligned to the bottom of the node,
25511           regardless of item height.
25512           - Use the node bounds to draw the text so we can center it when
25513           the item height is greater then the font height.
25514           - Node::Bounds are only the text part of the node.
25515         * TreeNode.cs: New method to combine collapsing and unchecking all
25516           nodes recursively.
25517
25518 2005-01-02  Jackson Harper  <jackson@ximian.com>
25519
25520         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
25521         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
25522         tree when a check is changed. TODO: Only refresh the checked node.
25523
25524 2004-12-30  Jackson Harper  <jackson@ximian.com>
25525
25526         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
25527         * TreeNode.cs: When collapsing make sure to never collapse the
25528         root node.
25529
25530 2004-12-29  Jackson Harper  <jackson@ximian.com>
25531
25532         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
25533         
25534 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
25535
25536         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
25537
25538 2004-12-28  Peter Bartok  <pbartok@novell.com>
25539
25540         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
25541           not yet assigned
25542
25543 2004-12-28  Peter Bartok  <pbartok@novell.com>
25544
25545         * Control.cs (WndProc): Added WM_HELP handler, now generates
25546           HelpRequested event
25547         * Form.cs: Added HelpButton property and required support code
25548         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
25549
25550 2004-12-28  Peter Bartok  <pbartok@novell.com>
25551
25552         * CommonDialog.cs:
25553           - Made DialogForm.owner variable internal
25554           - Added check to ensure owner form is set before setting
25555             owner properties in CreateParams
25556
25557 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
25558
25559         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
25560           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
25561           GetCursorPos.  Fix major visibility issues.  Rework the windowing
25562           system to support borderless/titleless windows (implements menus).
25563           Fix GetWindowPos.  Implement initial background color support for
25564           views.
25565
25566 2004-12-28  Peter Bartok  <pbartok@novell.com>
25567
25568         * Form.cs (get_CreateParams): Make sure we have an owner before using
25569           the owner variable. Implement proper default if no owner exists
25570
25571 2004-12-28  Peter Bartok  <pbartok@novell.com>
25572
25573         * In preparation for making Managed.Windows.Forms the default build target
25574           for System.Windows.Forms, the following stubbed files were added.
25575           Dialogs are currently being implemented by contributors and are only
25576           short-term place holders.
25577         * ColorDialog.cs: Initial check-in (minmal stub)
25578         * DataGrid.cs: Initial check-in (minimal stub)
25579         * DataGridLineStyle.cs: Initial check-in (minimal stub)
25580         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
25581         * DataGridTableStyle.cs: Initial check-in (minimal stub)
25582         * FontDialog.cs: Initial check-in (minimal stub)
25583         * FileDialog.cs: Initial check-in (minimal stub)
25584         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
25585         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
25586         * OpenFileDialog: Initial check-in (minimal stub)
25587         * IComponentEditorPageSite.cs: Initial check-in
25588         * Splitter.cs: Initial check-in (for Jackson)
25589         * SplitterEventArgs.cs: Initial check-in (for Jackson)
25590         * SplitterEventHandler.cs: Initial check-in (for Jackson)
25591         * TextBox.cs: Initial check-in; still needs some wiring to
25592           TextControl backend
25593         * Form.cs: Implemented ControlBox property
25594         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
25595         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
25596         * TextControl.cs: Added selection functionality; added todo header
25597         * TextBoxBase.cs:
25598           - Implemented Lines property
25599           - Implemented TextHeight property
25600           - Implemented SelectedText property
25601           - Implemented SelectionLength property
25602           - Implemented SelectAll method
25603           - Implemented ToString method
25604           - Removed and cleaned up some debug code
25605           - Implemented (still buggy) mouse text selection
25606
25607 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
25608
25609         * ComboBox.cs: Complete DropDownList implementation, fixes.
25610
25611 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
25612
25613         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
25614         * ComboBoxStyle.cs: ComboBoxStyle enum
25615         * ComboBox.cs: Initial work on ComboBox control
25616
25617 2004-12-21  Peter Bartok  <pbartok@novell.com>
25618
25619         * Control.cs (ctor, CreateParams): Moved setting of is_visible
25620           forward so that anything that creates a window gets the default,
25621           also no longer uses Visible property in CreateParams to avoid
25622           walking up the parent chain and possibly get the wrong visible
25623           status. Fixed IsVisible to no longer walk up to the parent.
25624
25625 2004-12-21  Peter Bartok  <pbartok@novell.com>
25626
25627         * Form.cs (ShowDialog): Unset modality for the proper window
25628  
25629 2004-12-20  Peter Bartok  <pbartok@novell.com>
25630
25631         * CommonDialog.cs: Initial check-in
25632
25633 2004-12-20  Peter Bartok  <pbartok@novell.com>
25634
25635         * Control.cs (Visible): Now uses the parent window instead of the
25636           client area window for the property
25637
25638         * Form.cs
25639           - ShowDialog(): Now uses the proper window for modality
25640           - The default visibility state for the form parent is now false. This
25641             will prevent the user from seeing all the changes to the form and
25642             its controls before the application hits Application.Run()
25643           - Removed some stale commented out code
25644
25645         * NativeWindow.cs:
25646           - Added FindWindow() method to have a method to check for existence
25647             of a window handle
25648           - Added ability to override default exception handling (for example
25649             when debugging with VS.Net; to do this the ExternalExceptionHandler
25650             define must be set
25651           - Removed some useless debug output
25652
25653         * XplatUIX11.cs:
25654           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
25655             not working as expected
25656           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
25657             property to allow switching back to the modal window if focus is
25658             given to another one of our windows (Application Modal)
25659           - Now only sets override_redirect if we create a window
25660             without WS_CAPTION
25661           - Moved EventMask selection before mapping of newly created window
25662             so we can catch the map event as well
25663           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
25664           - Added various Atom related DllImports
25665           - Implemented Exit() method
25666           - .ctor() : No longer shows window if WS_VISIBLE is not defined
25667             in the CreateParams
25668
25669         * MessageBox.cs: Now properly deals with the FormParent window by
25670           providing an override the FormParent CreateParams property to
25671           set as POPUP instead of OVERLAPPED window.
25672
25673 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25674
25675         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
25676         Minor code cleanup.
25677
25678 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25679         
25680         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
25681
25682 2004-12-18  Peter Bartok  <pbartok@novell.com>
25683
25684         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
25685           implementing SetModal() method
25686
25687 2004-12-18  Peter Bartok  <pbartok@novell.com>
25688
25689         * X11Structs.cs (XGCValues): Fixed type of function element
25690         * XplatUI.cs: Added ScrollWindow() method
25691         * XplatUIDriver.cs: Added ScrollWindow() abstract
25692         * XplatUIWin32.cs: Implemented ScrollWindow() method
25693         * XplatUIX11.cs: Implemented ScrollWindow() method
25694         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
25695
25696 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25697
25698         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
25699         Some more keyboard support (INCOMPLETE)
25700
25701 2004-12-17  Peter Bartok  <pbartok@novell.com>
25702
25703         * TextControl.cs:
25704         - Added color attribute to line tags.
25705         - Added color argument to all functions dealing with tags
25706         - Added color argument support to various functions
25707         - Fixed miss-calculation of baseline/shift in certain circumstances
25708
25709         * TextBoxBase.cs: Added new color option to test code
25710
25711 2004-12-17  Jackson Harper  <jackson@ximian.com>
25712
25713         * TreeNode.cs:
25714         * MonthCalendar.cs: Signature fixes
25715
25716 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25717
25718         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
25719         keyboard event moved it.  Create a new graphics context for each paint resolves this
25720
25721 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25722
25723         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
25724         Make caret exist and go blink blink.  Initial keyboard support.
25725         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
25726         works.
25727
25728 2004-12-17  Jackson Harper  <jackson@ximian.com>
25729
25730         * XplatUIStructs.cs: Updated set of virtual keycodes.
25731         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
25732
25733 2004-12-17  Jackson Harper  <jackson@ximian.com>
25734
25735         * XplatUIX11.cs: Prune old keyboard code.
25736
25737 2004-12-17  Jackson Harper  <jackson@ximian.com>
25738
25739         * XplatUIX11.cs: When generating mouse wparams get the modifier
25740         keys from the ModifierKeys property.
25741
25742 2004-12-17  Jackson Harper  <jackson@ximian.com>
25743
25744         * X11Keyboard.cs: Send up/down input when generating
25745         messages. Remove some unused vars.
25746
25747 2004-12-17  Jackson Harper  <jackson@ximian.com>
25748
25749         * TabControl.cs:
25750         * TreeView.cs: get rid of warnings.
25751
25752 2004-12-17  Jackson Harper  <jackson@ximian.com>
25753
25754         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
25755
25756 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
25757
25758         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
25759           CheckedListBox.cs: Implementation
25760
25761 2004-12-17  Peter Bartok  <pbartok@novell.com>
25762
25763         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
25764
25765 2004-12-16  Peter Bartok  <pbartok@novell.com>
25766
25767         * TextControl.cs:
25768           - InsertCharAtCaret(): Fixed start pos fixup
25769           - CaretLine_get: No longer derives the line from the tag, the tag
25770             could be stale if lines in the document have been added or deleted
25771           - RebalanceAfterDelete(): Fixed bug in balancing code
25772           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
25773           - Line.Streamline(): Now can also elminate leading empty tags
25774           - DumpTree(): Added a few more tests and prevented exception on
25775             uninitialized data
25776           - Added Debug section for Combining lines
25777           - Delete(): Now copies all remaining properties of a line
25778           
25779         * TextBoxBase.cs:
25780           - Left mousebutton now sets the caret (and middle button still acts
25781             as formatting tester, which must go away soon)
25782           - Added Debug section for Deleting/Combining lines
25783           - Fixed calculations for UpdateView after Combining lines
25784
25785 2004-12-16  Peter Bartok  <pbartok@novell.com>
25786
25787         * TextControl.cs: Now properly aligns text on a baseline, using the
25788           new XplatUI.GetFontMetrics() method. Simplified several calculations
25789         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
25790           defined
25791
25792 2004-12-16  Peter Bartok  <pbartok@novell.com>
25793
25794         * XplatUI.cs: Added GetFontMetrics() method
25795         * XplatUIDriver.cs: Added GetFontMetrics() abstract
25796         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
25797           into libgdiplus, our private GetFontMetrics function
25798         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
25799         * XplatUIWin32.cs: Implemented GetFontMetrics() method
25800
25801 2004-12-16  Jackson Harper  <jackson@ximain.com>
25802
25803         * XplatUIStruct.cs: Add enum for dead keys
25804         * X11Keyboard.cs: Map and unmap dead keys.
25805
25806 2004-12-16  Jackson Harper  <jackson@ximian.com>
25807
25808         * X11Keyboard.cs: Detect and use the num lock mask.
25809
25810 2004-12-16  Peter Bartok  <pbartok@novell.com>
25811
25812         * Control.cs (CreateGraphics): Added check to make sure the
25813           handle of the window exists before calling Graphics.FromHwnd()
25814
25815 2004-12-16  Peter Bartok  <pbartok@novell.com>
25816
25817         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
25818           contains a lot of code that's not supposed to be there for the
25819           real thing, but required for developing/testing the textbox
25820           backend.
25821
25822 2004-12-16  Peter Bartok  <pbartok@novell.com>
25823
25824         * TextControl.cs:
25825         - Fixed Streamline method
25826         - Added FindTag method to Line
25827         - Added DumpTree method for debugging
25828         - Added DecrementLines() method for deleting lines
25829         - Fixed UpdateView to update the cursor to end-of-line on single-line
25830           updates
25831         - Added PositionCaret() method
25832         - Fixed MoveCaret(LineDown) to move into the last line, too
25833         - Added InsertChar overload
25834         - Fixed InsertChar tag offset calculations
25835         - Added DeleteChar() method
25836         - Added Combine() method for folding lines
25837         - Fixed Delete() method, no longer allocates wasted Line object and
25838           now copies all properties when swapping nodes
25839         - Delete() method now updates document line counter
25840
25841 2004-12-15  Jackson Harper  <jackson@ximian.com>
25842
25843         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
25844         * X11Keyboard.cs: Expose the currently selected modifier keys
25845         through a property.
25846
25847 2004-12-15  Peter Bartok  <pbartok@novell.com>
25848
25849         * TextControl.cs: Initial check-in. Still incomplete
25850
25851 2004-12-15  Jackson Harper  <jackson@ximian.com>
25852
25853         * TreeNode.cs:
25854         * TreeView.cs: Fix build on csc (second time today ;-))
25855
25856 2004-12-15  Jackson Harper  <jackson@ximian.com>
25857
25858         * TreeView.cs: Store the treenodes plus/minus box bounds when it
25859         is calculated and use this for click testing.
25860         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
25861
25862 2004-12-15  Jackson Harper  <jackson@ximian.com>
25863
25864         * TreeView.cs: Pass the nodes image index to the image list when
25865         drawing that image.
25866
25867 2004-12-15  Jackson Harper  <jackson@ximian.com>
25868
25869         * X11Keyboard.cs: Set messages hwnd.
25870         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
25871         post_message calls.
25872
25873 2004-12-15  Jackson Harper  <jackson@ximian.com>
25874
25875         * X11Keyboard.cs: Fix to compile with csc.
25876         
25877 2004-12-15  Jackson Harper  <jackson@ximian.com>
25878
25879         * X11Structs.cs: Add key mask values
25880         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
25881         * X11Keyboard.cs: New file - Extrapolates and interpolates key
25882         down/up foo into WM_CHAR foo
25883         * KeyboardLayouts.cs: Common keyboard layouts
25884         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
25885         post messages into the main queue.
25886
25887 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
25888
25889         * Button.cs: implement ProcessMnemonic
25890         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
25891           brushes everytime
25892         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
25893         * ButtonBase.cs: Show HotkeyPrefix (not the &)
25894
25895 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
25896         
25897         * MonthCalendar.cs: Implemented click-hold for next/previous month
25898           and date selection
25899           
25900 2004-12-11  Peter Bartok  <pbartok@novell.com>
25901
25902         * X11Structs.cs:
25903           - Added XKeyboardState (moved from XplatUIX11.cs)
25904           - Added XCreateGC related enums and structures
25905           - Added GXFunction for XSetFunction
25906
25907         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
25908
25909         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
25910           CaretVisible() calls
25911
25912         * ToolTip.cs: Added code to prevent stealing focus from app windows
25913
25914         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
25915           DestroyCaret, SetCaretPos and CaretVisible)
25916
25917         * XplatUIX11.cs:
25918           - Added implementation for caret functions
25919           - Moved hover variables into a struct, to make it a bit easier
25920             on the eyes and to debug
25921           - Removed XKeyboardState (moved to XplatUIX11.cs)
25922           - Moved Keyboard properties into the properties region
25923
25924         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
25925           call to get a graphics context for our control
25926
25927         * XplatUIOSX.cs: Added empty overrides for the new caret functions
25928
25929         * TreeView.cs: Fixed bug. No matter what color was set it would always
25930           return SystemColors.Window
25931
25932         * XplatUIWin32.cs: Implemented caret overrides
25933
25934 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
25935
25936         * ListBox.cs: fire events, implement missing methods and properties,
25937         sorting.
25938
25939 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
25940
25941         * MonthCalendar.cs: invalidation bug fixing
25942         * ThemeWin32Classic.cs: paint fixing
25943
25944 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
25945
25946         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
25947         prepare the CGContextRef there now.
25948
25949 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
25950
25951         * MonthCalendar.cs:
25952           - optimisationL only invalidate areas that have changed
25953         * ThemeWin32Classic.cs:
25954           - only paint parts that intersect with clip_area
25955
25956 2004-12-09  Peter Bartok  <pbartok@novell.com>
25957
25958         * Application.cs: Undid changes from r37004 which cause problems
25959         on X11
25960
25961 2004-12-09  Ravindra  <rkumar@novell.com>
25962
25963         * ToolBar.cs: Added support for displaying ContextMenu
25964         attached to a button on ToolBar.
25965         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
25966         property.
25967
25968 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25969
25970         * Label.cs: autosize works in text change and removes unnecessary
25971         invalidate
25972
25973 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25974
25975         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25976         remove warnings
25977
25978 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
25979
25980         * XplatUIOSX.cs: Added mouse move/click/grab support
25981         Remove some debugging WriteLines not needed anymore.
25982         Add window resizing/positioning.
25983         Fix visibility on reparenting.
25984
25985 2004-12-08  Peter Bartok  <pbartok@novell.com>
25986
25987         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
25988
25989 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
25990
25991         * XplatUIOSX.cs: Initial checkin
25992         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
25993
25994 2004-12-03  Ravindra <rkumar@novell.com>
25995
25996         * ListView.cs: Added some keybindings and fixed scrolling.
25997         ScrollBars listen to ValueChanged event instead of Scroll
25998         Event. This would let us take care of all changes being
25999         done in the scrollbars' values programmatically or manually.
26000         * ListView.cs (CanMultiselect): Added a check for shift key.
26001         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
26002         * ListViewItem.cs (Clone): Fixed. We need to make a copy
26003         of ListViewSubItemCollection as well.
26004
26005 2004-12-06  Peter Bartok <pbartok@novell.com>
26006
26007         * Control.cs (Parent): Added check and exception to prevent
26008         circular parenting
26009
26010 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
26011
26012         * ListBox.cs: implemented clipping, selection single and multiple,
26013         bug fixing
26014
26015 2004-12-03  Ravindra <rkumar@novell.com>
26016
26017         * ListView.cs (ListView_KeyDown):
26018         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
26019         when CTRL key is pressed.
26020         * ListViewItem.cs (Selected): Fixed setting the property.
26021
26022 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26023
26024         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
26025
26026         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
26027         MinimizeBox, ShowInTaskbar, TopMost properties.
26028
26029         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
26030         will be implemented).
26031
26032 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26033
26034         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
26035
26036         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
26037         tests.
26038         
26039         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
26040         
26041         * TreeView.cs: BackColor is Colors.Window.
26042
26043 2004-12-01  Jackson Harper  <jackson@ximian.com>
26044
26045         * TreeView.cs: When resizing the tree if the user is making it
26046         smaller we don't get expose events, so we need to handle adding
26047         the horizontal scrollbar in the size changed handler as well as
26048         the expose handler.
26049
26050 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
26051
26052         * DrawItemState.cs: fixes wrong enum values
26053
26054 2004-12-01  Jackson Harper  <jackson@ximian.com>
26055
26056         * TreeView.cs: Resize the hbar as well as the vbar on resize.
26057
26058 2004-12-01  Jackson Harper  <jackson@ximian.com>
26059
26060         * NodeLabelEditEventArgs.cs:
26061         * NodeLabelEditEventHandler.cs:
26062         * OpenTreeNodeEnumerator.cs:
26063         * TreeNode.cs:
26064         * TreeNodeCollection.cs:
26065         * TreeView.cs:
26066         * TreeViewAction.cs:
26067         * TreeViewCancelEventArgs.cs:
26068         * TreeViewCancelEventHandler.cs:
26069         * TreeViewEventArgs.cs:
26070         * TreeViewEventHandler.cs: Initial implementation.
26071
26072 2004-12-01  Ravindra <rkumar@novell.com>
26073
26074         * ListView.cs (CalculateListView): Fixed scrolling related
26075         calculations. Also, removed some debug statements from other
26076         places.
26077         * ListViewItem.cs: Changed access to 'selected' instance variable
26078         from private to internal.
26079         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
26080
26081 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
26082
26083         * ThemeWin32Classic.cs: remove cache of brush and pens for
26084         specific controls and use the global system, fixes scrollbutton
26085         bugs (for small sizes, disabled, etc)
26086         
26087         * ScrollBar.cs: does not show the thumb for very small controls
26088         (as MS) and allow smaller buttons that the regular size
26089
26090 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
26091
26092         * UpDownBase.cs: Add abstract methods for the interface.
26093         Add new virtual methods (need to be hooked up to TextEntry when it
26094         exists).
26095         Add override methods for most features.
26096         Computes the size, forces the height of the text entry.
26097
26098         * NumericUpDown.cs: Put here the current testing code.
26099
26100         * Set eol-style property on all files that do not have mixed line
26101         endings, to minimize the future problems.  There are still a few
26102         files with mixed endings, and someone should choose whether they
26103         want to move it or not.
26104
26105 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
26106
26107         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
26108         System.Colors
26109         
26110 2004-11-30  Ravindra <rkumar@novell.com>
26111
26112         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
26113         drawing and replaced use of SystemColors by theme colors.
26114         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
26115         * ListView.cs (ListViewItemCollection.Add): Throw exception when
26116         same ListViewItem is being added more than once.
26117
26118 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
26119
26120         * MonthCalendar.cs:
26121           - ControlStyles love to make the control not flicker
26122           
26123 2004-11-30  Peter Bartok  <pbartok@novell.com>
26124
26125         * CharacterCasing.cs: Added
26126
26127 2004-11-29  Peter Bartok  <pbartok@novell.com>
26128
26129         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26130           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
26131           I am removing these files as they conflict with already completed
26132           work. While it is fantastic to get contributions to MWF, I
26133           respectfully ask that everyone please coordinate their contributions
26134           through mono-winforms-list or #mono-winforms at this time. We're
26135           explicitly avoiding stubbing and don't want controls that don't have
26136           their basic functionality implemented in svn. Please also see
26137           http://www.mono-project.com/contributing/winforms.html
26138
26139
26140 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
26141
26142         * Application.cs (ModalRun): Don't hang after exit.
26143
26144         * Theme.cs: New TreeViewDefaultSize property.
26145
26146         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
26147         with less hardcoded SystemColors constant.
26148         Implemented TreeViewDefaultSize.
26149
26150         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26151         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
26152
26153
26154 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
26155
26156         * MonthCalendar.cs:
26157           - Fix NextMonthDate and PrevMonthDate click moving calendar
26158
26159 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26160
26161         * MonthCalendar.cs:
26162           - Fix usage of ScrollChange Property when scrolling months
26163
26164 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
26165
26166         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
26167          - Fixes menu destroying
26168          - Support adding and removing items on already created menus
26169
26170 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26171
26172         * MonthCalendar.cs:
26173           - Re-worked all bolded dates handling to match win32
26174         * ThemeWin32Classic.cs:
26175           - Fixed rendering with bolded dates
26176
26177 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
26178
26179         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
26180         - Horizontal scroolbar
26181         - Multicolumn
26182         - Fixes
26183
26184
26185 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
26186
26187         * MonthCalendar.cs:
26188           - Fix Usage of MaxSelectionCount from SelectionRange
26189           - Fixed Shift + Cursor Selection
26190           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
26191           - Fixed normal cursor selection to be compat with win32
26192           - Fixed Shift + Mouse Click selection
26193
26194 2004-11-24  Peter Bartok <pbartok@novell.com>
26195
26196         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
26197         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
26198         * XplatUIX11.cs:
26199           - CreatedKeyBoardMsg now updates keystate with Alt key
26200           - Added workaround for timer crash to CheckTimers, Jackson will
26201             develop a proper fix and check in later
26202           - Implemented DispatchMessage
26203           - Removed calling the native window proc from GetMessage (call
26204             now moved to DispatchMessage)
26205
26206         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
26207           the keydata (Fixes bug #69831)
26208
26209         * XplatUIWin32.cs:
26210           - (DispatchMessage): Switched to return IntPtr
26211           - Added DllImport for SetFocus
26212
26213 2004-11-24  Ravindra <rkumar@novell.com>
26214
26215         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
26216         background drawing.
26217         * ListViewItem.cs: Fixed various properties, calculations
26218         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
26219         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
26220         and some internal properties. Fixed MouseDown handler and Paint
26221         method.
26222
26223 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26224
26225         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
26226
26227 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26228
26229         * ContainerControl.cs: correct accidental check in of local changes
26230
26231 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26232
26233         * ThemeWin32Classic.cs:
26234                 - Fixed Drawing Last month in grid (sometimes not showing)
26235         * MonthCalendar.cs:
26236                 - Fixed title width calculation bug (makeing title small)
26237
26238 2004-11-23  Peter Bartok <pbartok@novell.com>
26239
26240         * XplatUIX11.cs:
26241           - Added generation of WM_MOUSEHOVER event
26242           - Added missing assignment of async_method atom
26243           - Fixed WM_ERASEBKGND; now only redraws the exposed area
26244
26245 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26246
26247         * ThemeWin32Classic.cs:
26248                 - Fixed Drawing of today circle when showtodaycircle not set
26249                 - fixed drawing of first and last month in the grid (gay dates)
26250         * MonthCalendar.cs:
26251                 - Fixed Drawing of today circle
26252                 - Fixed drawing of grady dates
26253                 - Fixed HitTest for today link when ShowToday set to false
26254                 - Fixed DefaultSize to obey ShowToday
26255
26256 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26257
26258         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
26259         * System.Windows.Forms/Theme.cs
26260         * MonthCalendar.cs: added for MonthCalendar
26261         * SelectionRange.cs: added for MonthCalendar
26262         * Day.cs: added for MonthCalendar: added for MonthCalendar
26263         * DateRangeEventArgs.cs: added for MonthCalendar
26264         * DateRangeEventHandler.cs: added for MonthCalendar
26265
26266 2004-11-22  Ravindra <rkumar@novell.com>
26267
26268         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
26269         property.
26270
26271 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
26272
26273         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
26274         event handler.
26275         
26276         * NumericUpDown.cs: Added new implementation.
26277         * UpDownBase.cs: Added new implementation.
26278
26279         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
26280         implementations.
26281         
26282         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
26283         implementations.
26284
26285         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
26286         methods.
26287
26288 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
26289
26290         * Timer.cs  (Dispose): Should call the base dispose when
26291         overriding.
26292
26293 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26294
26295         * ScrollBar.cs: updates thumb position when max, min or increment
26296         is changed
26297
26298 2004-11-21  Ravindra <rkumar@novell.com>
26299
26300         * ListView.cs: Implemented item selection, activation and
26301         column header style. Fixed properties to do a redraw, if
26302         required. Added support for MouseHover, DoubleClick, KeyDown
26303         and KeyUp event handling and some minor fixes.
26304         * ListViewItem.cs: Fixed constructor.
26305         * ThemeWin32Classic.cs: Improved drawing for ListView.
26306
26307 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26308
26309         * ThemeWin32Classic.cs: initial listbox drawing code
26310         * DrawMode.cs: new enumerator
26311         * ListControl.cs: stubbed class
26312         * ListBox.cs: initial implementation
26313         * Theme.cs: new methods definitions
26314         * SelectionMode.cs: new enumerator
26315
26316 2004-11-17  Peter Bartok  <pbartok@novell.com>
26317
26318         * XplatUIWin32.cs: Added double-click events to the class style
26319         * Control.cs (WndProc):
26320           - Added handling of click-count to MouseDown/ MouseUp events.
26321           - Added handling of middle and right mouse buttons
26322           - Removed old debug code
26323
26324 2004-11-17  Jackson Harper  <jackson@ximian.com>
26325
26326         * XplatUIX11.cs: Use the new Mono.Unix namespace.
26327
26328 2004-11-17  Ravindra <rkumar@novell.com>
26329
26330         * ListView.cs: Added event handling for MouseMove/Up/Down.
26331         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
26332         * ThemeWin32Classic.cs: We need to clear the graphics context and
26333         draw column header in a proper state.
26334
26335
26336 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
26337
26338         *  Menu.cs: fixes signature
26339
26340 2004-11-16  Peter Bartok  <pbartok@novell.com>
26341
26342         * XplatUIX11.cs (GetMessage): Implemented generation of
26343           double click mouse messages
26344
26345 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
26346
26347         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
26348         not by menu
26349
26350 2004-11-11  Peter Bartok  <pbartok@novell.com>
26351
26352         * HandleData.cs: Added Visible property
26353         * XplatUIX11.cs (IsVisible): Now uses Visible property from
26354           HandleData
26355         * XplatUIX11.cs: Removed old debug leftovers
26356         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
26357         * Control.cs (WndProc): Removed old debug leftovers,
26358           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
26359           needed WM_SIZE handling
26360
26361 2004-11-11  Jackson Harper  <jackson@ximian.com>
26362
26363         * OwnerDrawPropertyBag.cs:
26364         * TreeViewImageIndexConverter.cs: Initial implementation
26365
26366 2004-11-10  Jackson Harper  <jackson@ximian.com>
26367
26368         * ThemeWin32Classic.cs:
26369         * TabControl.cs: instead of moving tabs by the slider pos just
26370         start drawing at the tab that is offset by the slider. This way
26371         scrolling always moves by exactly one tab.
26372
26373 2004-11-10  Jackson Harper  <jackson@ximian.com>
26374
26375         * TabControl.cs: You can only scroll left when the slider has
26376         already ben moved right.
26377         
26378 2004-11-10  Jackson Harper  <jackson@ximian.com>
26379
26380         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
26381         the clip area.
26382         
26383 2004-11-10  Jackson Harper  <jackson@ximian.com>
26384
26385         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
26386         clip area.
26387         
26388 2004-11-09  Jackson Harper  <jackson@ximian.com>
26389
26390         * TabControl.cs (CalcXPos): New helper method so we can determine
26391         the proper place to start drawing vertical tabs.
26392         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
26393         
26394 2004-11-09  Jackson Harper  <jackson@ximian.com>
26395
26396         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
26397         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
26398         and Bottom, left and right are illegal values for this and
26399         multiline is enabled when the alignment is set to left or right.
26400         (DrawTab): Each alignment block should draw the text itself now
26401         because Left requires special love. Also add rendering for Left
26402         aligned tabs.
26403         
26404 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
26405
26406         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
26407         does not destroy the windows, removes debugging messages
26408
26409 2004-11-09  jba  <jba-mono@optusnet.com.au>
26410
26411         * ThemeWin32Classic.cs
26412         (DrawButtonBase): Fix verticle text rect clipping in windows
26413         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26414         rendering and incorrect text rect clipping
26415         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26416         rendering and incorrect text rect clipping
26417         
26418 2004-11-08  Jackson Harper  <jackson@ximian.com>
26419
26420         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
26421         bottom when they are bottom aligned so the bottoms of the tabs get
26422         displayed.
26423         * TabControl.cs (DropRow): Move rows up instead of down when the
26424         tab control is bottom aligned.
26425
26426 2004-11-08 13:59  pbartok
26427
26428         * XplatUIX11.cs:
26429           - Added handling for various window styles
26430           - Added handling for popup windows
26431           - Added SetTopmost handling
26432
26433 2004-11-08 13:55  pbartok
26434
26435         * XplatUIWin32.cs:
26436           - Added argument to SetTopmost method
26437           - Fixed broken ClientToScreen function
26438
26439 2004-11-08 13:53  pbartok
26440
26441         * XplatUIStructs.cs:
26442           - Added missing WS_EX styles
26443
26444 2004-11-08 13:53  pbartok
26445
26446         * XplatUI.cs, XplatUIDriver.cs:
26447           - Added argument to SetTopmost
26448
26449 2004-11-08 13:52  pbartok
26450
26451         * X11Structs.cs:
26452           - Added XSetWindowAttributes structure
26453           - Improved XWindowAttributes structure
26454           - Added SetWindowValuemask enum
26455           - Added window creation arguments enum
26456           - Added gravity enum
26457           - Added Motif hints structure
26458           - Added various Motif flags and enums
26459           - Added PropertyMode enum for property functions
26460
26461 2004-11-08 13:50  pbartok
26462
26463         * Form.cs:
26464           - Fixed arguments for updated SetTopmost method
26465
26466 2004-11-08 13:49  pbartok
26467
26468         * ToolTip.cs:
26469           - Fixed arguments for updated SetTopmost function
26470           - Fixed usage of PointToClient
26471
26472 2004-11-08 13:44  pbartok
26473
26474         * MenuAPI.cs:
26475           - Added Clipping of children and siblings
26476
26477 2004-11-08 13:41  pbartok
26478
26479         * MainMenu.cs:
26480           - Removed SetMenuBarWindow call. We do this in Form.cs
26481
26482 2004-11-08 13:40  jackson
26483
26484         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
26485           scrolling jimmi in the correct location with bottom aligned tabs
26486
26487 2004-11-08 13:36  pbartok
26488
26489         * ContainerControl.cs:
26490           - Implemented BindingContext
26491           - Implemented ParentForm
26492
26493 2004-11-08 12:46  jackson
26494
26495         * TabControl.cs: Put bottom rendered tabs in the right location
26496
26497 2004-11-08 07:15  jordi
26498
26499         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
26500           removes dead code
26501
26502 2004-11-05 17:30  jackson
26503
26504         * TabControl.cs: When selected tabs are expanded make sure they
26505           don't go beyond the edges of the tab control
26506
26507 2004-11-05 14:57  jackson
26508
26509         * TabControl.cs: Reset show_slider so if the control is resized to
26510           a size where it is no longer needed it's not displayed anymore
26511
26512 2004-11-05 13:16  jackson
26513
26514         * TabControl.cs: Make tab pages non visible when added to the
26515           control
26516
26517 2004-11-05 12:42  jackson
26518
26519         * TabControl.cs: Implement SizeMode.FillToRight
26520
26521 2004-11-05 12:16  jackson
26522
26523         * Control.cs: Do not call CreateHandle if the handle is already
26524           created
26525
26526 2004-11-05 11:46  jackson
26527
26528         * TabControl.cs: Remove superflous call to CalcTabRows
26529
26530 2004-11-05 09:07  jackson
26531
26532         * XplatUIX11.cs: Update for Mono.Posix changes
26533
26534 2004-11-05 07:00  ravindra
26535
26536         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
26537           scrolling.
26538
26539 2004-11-04 22:47  jba
26540
26541         * ThemeWin32Classic.cs:
26542           - Fix Button rendering for FlatStyle = Flat or Popup
26543           - Fix RadioButton and CheckBox rendering when Appearance = Button
26544             (normal and flatstyle).
26545           - Correct outer rectangle color when drawing focus rectangle
26546           - Adjust button bounds to be 1 px smaller when focused
26547           - Make button not draw sunken 3d border when pushed (windows compat)
26548           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
26549           - Offset the text in RadioButton and Checkbox when being rendered as
26550           a button.
26551           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
26552           radiobuttons
26553           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
26554           - Fixed disabled text rendering for normally rendered radiobuttons
26555
26556 2004-11-04 10:26  jackson
26557
26558         * TabControl.cs: Recalculate tab rows when resizing
26559
26560 2004-11-04 07:47  jordi
26561
26562         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
26563           collection completion, drawing issues, missing features
26564
26565 2004-11-04 05:03  ravindra
26566
26567         * ScrollBar.cs:
26568                 - We need to recalculate the Thumb area when
26569                 LargeChange/maximum/minimum values are changed.
26570           - We set the 'pos' in UpdatePos() method to minimum, if it's less
26571                 than minimum. This is required to handle the case if large_change is
26572                 more than max, and use LargeChange property instead of large_change
26573                 variable.
26574           - We return max+1 when large_change is more than max, like MS does.
26575
26576 2004-11-04 04:29  ravindra
26577
26578         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
26579                 - Changed default value signatures (prefixed all with ListView).
26580                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
26581                 ListView.
26582           - Fixed calculations for ListViewItem and implemented Clone()
26583           method.
26584
26585 2004-11-04 04:26  ravindra
26586
26587         * Theme.cs, ThemeWin32Classic.cs:
26588                 - Changed default ListView values signatures (prefixed all with
26589                 ListView).
26590           - Fixed default size values for VScrollBar and HScrollBar.
26591                 - Fixed DrawListViewItem method.
26592
26593 2004-11-04 04:05  ravindra
26594
26595         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
26596
26597 2004-11-04 04:04  ravindra
26598
26599         * ImageList.cs: Implemented the missing overload for Draw method.
26600
26601 2004-11-03 19:29  jackson
26602
26603         * TabControl.cs: Handle dropping rows on selection properly
26604
26605 2004-11-03 11:59  jackson
26606
26607         * TabControl.cs: remove debug code
26608
26609 2004-11-03 11:52  jackson
26610
26611         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
26612           the scrolly widgerywoo
26613
26614 2004-11-02 13:52  jackson
26615
26616         * TabControl.cs: Resize the tab pages and tabs when the tab control
26617           is resized
26618
26619 2004-11-02 13:40  jackson
26620
26621         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
26622           selected tab to the bottom
26623
26624 2004-11-02 13:39  jackson
26625
26626         * TabPage.cs: Store the tab pages row
26627
26628 2004-11-02 12:33  jordi
26629
26630         * MenuItem.cs: fixes handle creation
26631
26632 2004-11-02 11:42  jackson
26633
26634         * TabControl.cs: signature fix
26635
26636 2004-11-02 08:56  jackson
26637
26638         * TabControl.cs: Calculate whether the tab is on an edge properly.
26639           Remove top secret debugging code
26640
26641 2004-11-01 19:57  jackson
26642
26643         * TabControl.cs: Add click handling, and proper sizing
26644
26645 2004-11-01 19:47  jackson
26646
26647         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
26648           tab controls
26649
26650 2004-11-01 19:39  jackson
26651
26652         * TabPage.cs: add internal property to store the bounds of a tab
26653           page
26654
26655 2004-10-30 04:23  ravindra
26656
26657         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
26658           values.
26659
26660 2004-10-30 04:21  ravindra
26661
26662         * ListView.cs, ListViewItem.cs: Added support for scrolling and
26663           fixed calculations.
26664
26665 2004-10-30 03:06  pbartok
26666
26667         * XplatUIX11.cs:
26668           - Removed extension of DllImported libs
26669
26670 2004-10-29 09:55  jordi
26671
26672         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
26673           navigation, itemcollection completion, menu fixes
26674
26675 2004-10-27 22:58  pbartok
26676
26677         * XplatUIX11.cs:
26678           - Now throws a nice error message when no X display could be opened
26679
26680 2004-10-26 13:51  jordi
26681
26682         * ListView.cs: removes warning
26683
26684 2004-10-26 03:55  ravindra
26685
26686         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
26687           ThemeWin32Classic.cs: Some formatting for my last checkins.
26688
26689 2004-10-26 03:36  ravindra
26690
26691         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
26692           control and default values.
26693
26694 2004-10-26 03:35  ravindra
26695
26696         * Theme.cs: Added some default values for ListView control.
26697
26698 2004-10-26 03:33  ravindra
26699
26700         * ToolBar.cs: ToolBar should use the user specified button size, if
26701           there is any. Added a size_specified flag for the same.
26702
26703 2004-10-26 03:33  ravindra
26704
26705         * ColumnHeader.cs: Added some internal members and calculations for
26706           ColumnHeader.
26707
26708 2004-10-26 03:32  ravindra
26709
26710         * ListViewItem.cs: Calculations for ListViewItem.
26711
26712 2004-10-26 03:31  ravindra
26713
26714         * ListView.cs: Added some internal members and calculations for
26715           ListView.
26716
26717 2004-10-22 13:31  jordi
26718
26719         * MenuAPI.cs: speedup menus drawing
26720
26721 2004-10-22 13:16  jackson
26722
26723         * XplatUIX11.cs: Make sure to update exposed regions when adding an
26724           expose event
26725
26726 2004-10-22 11:49  jackson
26727
26728         * Control.cs: oops
26729
26730 2004-10-22 11:41  jackson
26731
26732         * Control.cs: Check to see if the window should have its background
26733           repainted by X when drawing.
26734
26735 2004-10-22 11:31  jackson
26736
26737         * XplatUIX11.cs: When invalidating areas only use XClearArea if
26738           clear is true, this way we do not get flicker from X repainting the
26739           background
26740
26741 2004-10-22 11:28  jackson
26742
26743         * XEventQueue.cs: Queue properly
26744
26745 2004-10-21 09:38  jackson
26746
26747         * XEventQueue.cs: Fix access modifier
26748
26749 2004-10-21 09:36  jackson
26750
26751         * XEventQueue.cs: Don't loose messages
26752
26753 2004-10-21 09:22  jackson
26754
26755         * XEventQueue.cs: Don't loose messages
26756
26757 2004-10-20 04:15  jordi
26758
26759         * BootMode.cs: enum need it by SystemInfo
26760
26761 2004-10-19 21:58  pbartok
26762
26763         * XplatUIWin32.cs:
26764           - Small sanity check
26765
26766 2004-10-19 21:56  pbartok
26767
26768         * Form.cs:
26769           - Added private FormParentWindow class which acts as the container
26770             for our form and as the non-client area where menus are drawn
26771           - Added/Moved required tie-ins to Jordi's menus
26772           - Fixed/Implemented the FormStartPosition functionality
26773
26774 2004-10-19 21:52  pbartok
26775
26776         * Control.cs:
26777           - Removed unneeded locals
26778           - Added code to all size and location properties to understand and
26779             deal with the parent container of Form
26780
26781 2004-10-19 21:33  pbartok
26782
26783         * Application.cs:
26784           - Fixed to deal with new Form subclasses for menus
26785
26786 2004-10-19 17:48  jackson
26787
26788         * XEventQueue.cs: commit correct version of file
26789
26790 2004-10-19 16:50  jackson
26791
26792         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
26793
26794 2004-10-19 16:15  jordi
26795
26796         * MenuAPI.cs: MenuBarCalcSize returns the height
26797
26798 2004-10-19 08:31  pbartok
26799
26800         * Control.cs:
26801           - Added missing call to PreProcessMessage before calling OnXXXKey
26802           methods
26803
26804 2004-10-19 00:04  ravindra
26805
26806         * ToolTip.cs: Fixed constructor.
26807
26808 2004-10-18 09:31  jordi
26809
26810         * MenuAPI.cs: menuitems in menubars do not have shortcuts
26811
26812 2004-10-18 09:26  jordi
26813
26814         * MenuItem.cs: fixes MenuItem class signature
26815
26816 2004-10-18 08:56  jordi
26817
26818         * MenuAPI.cs: prevents windows from showing in the taskbar
26819
26820 2004-10-18 00:28  ravindra
26821
26822         * ToolTip.cs: Suppressed a warning message.
26823
26824 2004-10-18 00:27  ravindra
26825
26826         * Control.cs: Default value of visible property must be true.
26827
26828 2004-10-17 23:19  pbartok
26829
26830         * ToolTip.cs:
26831           - Complete implementation
26832
26833 2004-10-17 23:19  pbartok
26834
26835         * XplatUIX11.cs:
26836           - Added EnableWindow method
26837           - Added SetModal stub
26838           - Added generation of WM_ACTIVATE message (still needs testing)
26839           - Added SetTopMost stub
26840           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
26841
26842 2004-10-17 23:17  pbartok
26843
26844         * XplatUIWin32.cs:
26845           - Removed VirtualKeys to XplatUIStructs
26846           - Implemented SetTopMost method
26847           - Implemented EnableWindow method
26848           - Bugfix in ScreenToClient()
26849           - Bugfixes in ClientToScreen()
26850
26851 2004-10-17 22:51  pbartok
26852
26853         * XplatUIStructs.cs:
26854           - Added WS_EX styles to WindowStyles enumeration
26855
26856 2004-10-17 22:50  pbartok
26857
26858         * XplatUI.cs, XplatUIDriver.cs:
26859           - Added method for enabling/disabling windows
26860           - Added method for setting window modality
26861           - Added method for setting topmost window
26862
26863 2004-10-17 22:49  pbartok
26864
26865         * ThemeWin32Classic.cs:
26866           - Added ToolTip drawing code
26867
26868 2004-10-17 22:49  pbartok
26869
26870         * Theme.cs:
26871           - Added ToolTip abstracts
26872
26873 2004-10-17 22:47  pbartok
26874
26875         * Form.cs:
26876           - Fixed Form.ControlCollection to handle owner relations
26877           - Added Owner/OwnedForms handling
26878           - Implemented Z-Ordering for owned forms
26879           - Removed unneeded private overload of ShowDialog
26880           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
26881             so I hope)
26882           - Fixed Close(), had wrong default
26883           - Added firing of OnLoad event
26884           - Added some commented out debug code for Ownership handling
26885
26886 2004-10-17 22:16  pbartok
26887
26888         * Control.cs:
26889           - Fixed/implemented flat list of controls
26890
26891 2004-10-17 22:14  pbartok
26892
26893         * Application.cs:
26894           - Added code to simulate modal dialogs on Win32
26895
26896 2004-10-17 16:11  jordi
26897
26898         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
26899           mouse event
26900
26901 2004-10-17 13:39  jordi
26902
26903         * MenuAPI.cs: menu drawing fixes
26904
26905 2004-10-15 09:10  ravindra
26906
26907         * StructFormat.cs: General Enum.
26908
26909 2004-10-15 09:09  ravindra
26910
26911         * SizeGripStyle.cs: Enum for Form.
26912
26913 2004-10-15 09:08  ravindra
26914
26915         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
26916           in Theme for ListView.
26917
26918 2004-10-15 09:06  ravindra
26919
26920         * ColumnHeader.cs: Flushing some formatting changes.
26921
26922 2004-10-15 09:05  ravindra
26923
26924         * ListViewItem.cs: Implemented GetBounds method and fixed coding
26925           style.
26926
26927 2004-10-15 09:03  ravindra
26928
26929         * ListView.cs: Implemented Paint method and fixed coding style.
26930
26931 2004-10-15 07:34  jordi
26932
26933         * MenuAPI.cs: fix for X11
26934
26935 2004-10-15 07:32  ravindra
26936
26937         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
26938                 - Renamed Paint() method to Draw() for clarity. Also, moved
26939                 DrawImage() to OnPaint().
26940
26941 2004-10-15 07:25  ravindra
26942
26943         * CheckBox.cs, RadioButton.cs:
26944                 - Removed Redraw (), we get it from ButtonBase.
26945                 - Implemented Paint (), to do class specific painting.
26946
26947 2004-10-15 07:16  ravindra
26948
26949         * ButtonBase.cs:
26950                 - Redraw () is not virtual now.
26951                 - Added an internal virtual method Paint (), so that
26952                 derived classes can do their painting on their own.
26953                 - Modified OnPaint () to call Paint ().
26954
26955 2004-10-15 06:43  jordi
26956
26957         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
26958           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
26959
26960 2004-10-15 00:30  ravindra
26961
26962         * MessageBox.cs:
26963                 - MessageBox on windows does not have min/max buttons.
26964                 This change in CreateParams fixes this on Windows. We
26965                 still need to implement this windowstyle behavior in
26966                 our X11 driver.
26967
26968 2004-10-14 05:14  ravindra
26969
26970         * ToolBar.cs:
26971                 - Changed Redraw () to do a Refresh () always.
26972                 - Fixed the MouseMove event handling when mouse is pressed,
26973                 ie drag event handling.
26974                 - Replaced the usage of ToolBarButton.Pressed property to
26975                 ToolBarButton.pressed internal variable.
26976
26977 2004-10-14 05:10  ravindra
26978
26979         * ToolBarButton.cs:
26980                 - Added an internal member 'inside' to handle mouse move
26981                 with mouse pressed ie mouse drag event.
26982                 - Changed 'Pressed' property to return true only when
26983                 'inside' and 'pressed' are both true.
26984                 - Some coding style love.
26985
26986 2004-10-14 00:17  ravindra
26987
26988         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
26989           public method.
26990
26991 2004-10-14 00:15  ravindra
26992
26993         * ButtonBase.cs: Redraw () related improvements.
26994
26995 2004-10-14 00:14  ravindra
26996
26997         * MessageBox.cs: Moved InitFormSize () out of Paint method and
26998           removed unnecessary calls to Button.Show () method.
26999
27000 2004-10-13 17:50  pbartok
27001
27002         * XplatUIX11.cs:
27003           - Formatting fix
27004           - Removed destroying of window until we solve the problem of X
27005             destroying the window before us on shutdown
27006
27007 2004-10-13 16:32  pbartok
27008
27009         * ButtonBase.cs:
27010           - Now Redraws on MouseUp for FlatStyle Flat and Popup
27011
27012 2004-10-13 14:18  pbartok
27013
27014         * XplatUIX11.cs:
27015           - Added code to destroy the X window
27016
27017 2004-10-13 14:18  pbartok
27018
27019         * XplatUIWin32.cs:
27020           - Added code to destroy a window
27021
27022 2004-10-13 14:12  pbartok
27023
27024         * ButtonBase.cs:
27025           - Added the Redraw on Resize that got dropped in the last rev
27026
27027 2004-10-13 09:06  pbartok
27028
27029         * ThemeWin32Classic.cs:
27030           - Path from John BouAntoun:
27031             * Fix check rendering (centre correctly for normal style, offset
27032               correctly for FlatStyle).
27033             * Fix border color usage (use backcolor) for FlatStyle.Popup
27034             * Use checkbox.Capture instead of checkbox.is_pressed when
27035               rendering flatstyle states.
27036
27037 2004-10-12 21:48  pbartok
27038
27039         * ThemeWin32Classic.cs:
27040           - Removed all occurences of SystemColors and replaced them with the
27041             matching theme color
27042
27043 2004-10-12 21:41  pbartok
27044
27045         * ThemeWin32Classic.cs:
27046           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
27047             him using the function for flatstyle drawing
27048           - Changed functions to use the new version of CPDrawBorder3D
27049
27050 2004-10-12 21:15  pbartok
27051
27052         * ControlPaint.cs:
27053           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
27054             match MS documentation. They need to return defined colors if the
27055             passed color matches the configured control color. Thanks to John
27056             BouAntoun for pointing this out.
27057
27058 2004-10-12 20:57  pbartok
27059
27060         * Control.cs:
27061           - Fix from John BouAntoun: Raise ForeColorChanged event when text
27062             color is changed
27063
27064 2004-10-12 20:46  pbartok
27065
27066         * CheckBox.cs:
27067           - Fix from John BouAntoun: Now properly sets the Appearance property
27068
27069 2004-10-12 20:45  pbartok
27070
27071         * ThemeWin32Classic.cs:
27072           - Fixes from John BouAntoun: now handles forecolors and backcolors
27073             for flatstyle rendered controls much better; It also fixes normal
27074             checkbox rendering when pushed or disabled.
27075
27076 2004-10-08 02:50  jordi
27077
27078         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
27079           work
27080
27081 2004-10-07 08:56  jordi
27082
27083         * ThemeWin32Classic.cs: Removes deletion of cached brushes
27084
27085 2004-10-06 03:59  jordi
27086
27087         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
27088           XplatUIWin32.cs: removes warnings from compilation
27089
27090 2004-10-05 12:23  jackson
27091
27092         * RadioButton.cs: Fix ctor
27093
27094 2004-10-05 11:10  pbartok
27095
27096         * MessageBox.cs:
27097           - Partial implementation by Benjamin Dasnois
27098
27099 2004-10-05 10:15  jackson
27100
27101         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
27102           by John BouAntoun
27103
27104 2004-10-05 03:07  ravindra
27105
27106         * ToolBar.cs:
27107                 - Removed a private method, Draw ().
27108                 - Fixed the ButtonDropDown event handling.
27109                 - Fixed MouseMove event handling.
27110
27111 2004-10-05 03:04  ravindra
27112
27113         * ThemeWin32Classic.cs:
27114                 - Added DrawListView method and ListViewDefaultSize property.
27115                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
27116                 - Changed DOS style CRLF to Unix format (dos2unix).
27117
27118 2004-10-05 03:03  ravindra
27119
27120         * Theme.cs:
27121                 - Added DrawListView method and ListViewDefaultSize property.
27122
27123 2004-10-05 02:42  ravindra
27124
27125         * ToolBarButton.cs: Added an internal member dd_pressed to handle
27126           clicks on DropDown arrow.
27127
27128 2004-10-04 22:56  jackson
27129
27130         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
27131           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
27132           Control handle the buffers, derived classes should not have to
27133           CreateBuffers themselves.
27134
27135 2004-10-04 21:20  jackson
27136
27137         * StatusBar.cs: The control handles resizing the buffers now.
27138
27139 2004-10-04 21:18  jackson
27140
27141         * Control.cs: When resizing the buffers should be invalidated. This
27142           should be handled in Control not in derived classes.
27143
27144 2004-10-04 14:45  jackson
27145
27146         * TabPage.cs: oops
27147
27148 2004-10-04 02:14  pbartok
27149
27150         * LeftRightAlignment.cs:
27151           - Initial check-in
27152
27153 2004-10-04 01:09  jordi
27154
27155         * ThemeWin32Classic.cs: fixes right button position causing right
27156           button not showing on horizontal scrollbars
27157
27158 2004-10-02 13:12  pbartok
27159
27160         * XplatUIX11.cs:
27161           - Simplified the Invalidate method by using an X call instead of
27162             generating the expose ourselves
27163           - Added an expose when the window background is changed
27164           - Implemented ClientToScreen method
27165
27166 2004-10-02 13:08  pbartok
27167
27168         * XplatUIWin32.cs:
27169           - Added Win32EnableWindow method (test for implementing modal
27170           dialogs)
27171           - Added ClientToScreen method and imports
27172
27173 2004-10-02 13:07  pbartok
27174
27175         * XplatUI.cs, XplatUIDriver.cs:
27176           - Added ClientToScreen coordinate translation method
27177
27178 2004-10-02 13:06  pbartok
27179
27180         * KeyPressEventArgs.cs:
27181           - Fixed access level for constructor
27182
27183 2004-10-02 13:06  pbartok
27184
27185         * NativeWindow.cs:
27186           - Changed access level for the window_collection hash table
27187
27188 2004-10-02 13:05  pbartok
27189
27190         * Form.cs:
27191           - Added KeyPreview property
27192           - Added Menu property (still incomplete, pending Jordi's menu work)
27193           - Implemented ProcessCmdKey
27194           - Implemented ProcessDialogKey
27195           - Implemented ProcessKeyPreview
27196
27197 2004-10-02 13:02  pbartok
27198
27199         * Control.cs:
27200           - Added private method to get the Control object from the window
27201           handle
27202           - Implemented ContextMenu property
27203           - Implemented PointToScreen
27204           - Implemented PreProcessMessage
27205           - Implemented IsInputChar
27206           - Implemented IsInputKey
27207           - Implemented ProcessCmdKey
27208           - Completed ProcessKeyEventArgs
27209           - Fixed message loop to call the proper chain of functions on key
27210           events
27211           - Implemented ProcessDialogChar
27212           - Implemented ProcessDialogKey
27213           - Implemented ProcessKeyMessage
27214           - Implemented ProcessKeyPreview
27215           - Added RaiseDragEvent stub (MS internal method)
27216           - Added RaiseKeyEvent stub (MS internal method)
27217           - Added RaiseMouseEvent stub (MS Internal method)
27218           - Added RaisePaintEvent stub (MS Internal method)
27219           - Added ResetMouseEventArgs stub (MS Internal method)
27220           - Implemented RtlTranslateAlignment
27221           - Implemented RtlTranslateContent
27222           - Implemented RtlTranslateHorizontal
27223           - Implemented RtlTranslateLeftRight
27224           - Added generation of KeyPress event
27225
27226 2004-10-02 05:57  ravindra
27227
27228         * ListViewItem.cs: Added attributes.
27229
27230 2004-10-02 05:32  ravindra
27231
27232         * ListView.cs: Added attributes.
27233
27234 2004-10-01 11:53  jackson
27235
27236         * Form.cs: Implement the Close method so work on MessageBox can
27237           continue.
27238
27239 2004-09-30 14:06  pbartok
27240
27241         * XplatUIX11.cs:
27242           - Bug fixes
27243
27244 2004-09-30 11:34  jackson
27245
27246         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
27247
27248 2004-09-30 07:26  ravindra
27249
27250         * ListViewItemConverter.cs: Converter for ListViewItem.
27251
27252 2004-09-30 07:26  ravindra
27253
27254         * SortOrder.cs: Enum for ListView control.
27255
27256 2004-09-30 07:25  ravindra
27257
27258         * ColumnHeader.cs: Supporting class for ListView control.
27259
27260 2004-09-30 07:24  ravindra
27261
27262         * ListView.cs, ListViewItem.cs: Initial implementation.
27263
27264 2004-09-30 07:20  ravindra
27265
27266         * ItemActivation.cs: Enum for ListView Control.
27267
27268 2004-09-29 20:29  pbartok
27269
27270         * XplatUIX11.cs:
27271           - Added lookup of pixel value for background color; tries to get a
27272             color 'close' to the requested color, it avoids having to create a
27273             colormap.  Depending on the display this could mean the used color
27274             is slightly off the desired color. Might have to change it to a more
27275             resource intensive colormap approach, but it will work as a
27276           workaround to avoid red screens.
27277
27278 2004-09-29 14:27  jackson
27279
27280         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
27281
27282 2004-09-28 12:44  pbartok
27283
27284         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
27285           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
27286           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
27287           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
27288           TrackBar.cs, VScrollBar.cs:
27289           - Streamlined Theme interfaces:
27290             * Each DrawXXX method for a control now is passed the object for
27291               the control to be drawn in order to allow accessing any state the
27292               theme might require
27293
27294             * ControlPaint methods for the theme now have a CP prefix to avoid
27295               name clashes with the Draw methods for controls
27296
27297             * Every control now retrieves it's DefaultSize from the current
27298             theme
27299
27300 2004-09-28 12:17  jackson
27301
27302         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
27303           drawing
27304
27305 2004-09-24 14:57  jackson
27306
27307         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
27308           Gives us a nice little performance boost.
27309
27310 2004-09-24 12:02  jackson
27311
27312         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
27313           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
27314           Control and supporting classes. Initial checkin
27315
27316 2004-09-23 13:08  jackson
27317
27318         * Form.cs: Temp build fixage
27319
27320 2004-09-23 01:39  ravindra
27321
27322         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
27323           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
27324           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
27325           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
27326           EventHandlers needed by ListView Control.
27327
27328 2004-09-22 14:12  pbartok
27329
27330         * ScrollableControl.cs:
27331           - Implemented DockPadding property
27332           - Implemented AutoScroll property
27333           - Implemented AutoScrollMargin property
27334           - Implemented AutoScrollMinSize property
27335           - Implemented AutoScrollPosition property
27336           - Implemented DisplayRectangle property (still incomplete)
27337           - Implemented CreateParams property
27338           - Implemented HScroll property
27339           - Implemented VScroll property
27340           - Implemented OnVisibleChanged property
27341
27342 2004-09-22 14:09  pbartok
27343
27344         * Form.cs:
27345           - Added Form.ControllCollection class
27346           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
27347             RemoveOwnedForm (still incomplete, missing on-top and common
27348             minimize/maximize behaviour)
27349           - Added StartPosition property (still incomplete, does not use when
27350             creating the form)
27351           - Added ShowDialog() methods (still incomplete, missing forcing the
27352             dialog modal)
27353
27354 2004-09-22 14:05  pbartok
27355
27356         * Application.cs:
27357           - Added message loop for modal dialogs
27358
27359 2004-09-22 14:02  pbartok
27360
27361         * GroupBox.cs:
27362           - Fixed wrong types for events
27363
27364 2004-09-22 14:00  pbartok
27365
27366         * Shortcut.cs, FormWindowState.cs:
27367           - Fixed wrong values
27368
27369 2004-09-22 12:01  jackson
27370
27371         * Control.cs: Text is never null
27372
27373 2004-09-20 22:14  pbartok
27374
27375         * XplatUIWin32.cs:
27376           - Fixed accessibility level for Idle handler
27377
27378 2004-09-20 18:54  jackson
27379
27380         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27381           XplatUIX11.cs: New message loop that uses poll so we don't get a
27382           busy loop
27383
27384 2004-09-17 10:43  pbartok
27385
27386         * ScrollBar.cs:
27387           - Fixed behaviour of arrow buttons. Now properly behaves like
27388             Buttons (and like Microsoft's scrollbar arrow buttons)
27389
27390 2004-09-17 10:14  pbartok
27391
27392         * ScrollBar.cs:
27393           - Added missing release of keyboard/mouse capture
27394
27395 2004-09-17 06:18  jordi
27396
27397         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
27398           Theme.cs: Very early menu support
27399
27400 2004-09-16 17:45  pbartok
27401
27402         * XplatUIWin32.cs:
27403           - Fixed sending a window to the front
27404           - Added overload for SetWindowPos to avoid casting
27405
27406 2004-09-16 17:44  pbartok
27407
27408         * Control.cs:
27409           - Added SendToBack and BringToFront methods
27410
27411 2004-09-16 07:00  ravindra
27412
27413         * Copyright: Added Novell URL.
27414
27415 2004-09-16 07:00  ravindra
27416
27417         * ToolBar.cs: Invalidate should be done before redrawing.
27418
27419 2004-09-15 21:19  ravindra
27420
27421         * ColumnHeaderStyle.cs: Enum for ListView Control.
27422
27423 2004-09-15 21:18  ravindra
27424
27425         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
27426           ListView Control.
27427
27428 2004-09-13 18:26  jackson
27429
27430         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
27431           properly
27432
27433 2004-09-13 18:13  jackson
27434
27435         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
27436           a second thread and post messages into the main threads message
27437           queue. This makes timing much more consistent. Both win2K and XP
27438           have a minimum timer value of 15 milliseconds, so we now do this
27439           too.
27440
27441 2004-09-13 15:18  pbartok
27442
27443         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27444           XplatUIX11.cs:
27445           - Added Z-Ordering methods
27446
27447 2004-09-13 10:56  pbartok
27448
27449         * Form.cs:
27450           - Fixed #region names
27451           - Moved properties and methods into their proper #regions
27452
27453 2004-09-13 10:51  pbartok
27454
27455         * Form.cs:
27456           - Added Accept and CancelButton properties
27457           - Added ProcessDialogKey() method
27458
27459 2004-09-13 08:18  pbartok
27460
27461         * IWindowTarget.cs:
27462           - Initial check-in
27463
27464 2004-09-10 21:50  pbartok
27465
27466         * Control.cs:
27467           - Added DoDragDrop() [incomplete]
27468           - Properly implemented 'Visible' handling
27469           - Added SetVisibleCore()
27470           - Implemented FindChildAtPoint()
27471           - Implemented GetContainerControl()
27472           - Implemented Hide()
27473
27474 2004-09-10 19:28  pbartok
27475
27476         * Control.cs:
27477           - Moved methods into their appropriate #regions
27478           - Reordered methods within regions alphabetically
27479
27480 2004-09-10 18:57  pbartok
27481
27482         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27483           - Added method to retrieve text from window
27484
27485 2004-09-10 18:56  pbartok
27486
27487         * Control.cs:
27488           - Moved some internal functions into the internal region
27489           - Implemented FontHeight
27490           - Implemented RenderRightToLeft
27491           - Implemented ResizeRedraw
27492           - Implemented ShowFocusCues
27493           - Implemented ShowKeyboardCues
27494           - Implemented FromChildHandle
27495           - Implemented FromHandle
27496           - Implemented IsMnemonic
27497           - Implemented ReflectMessage
27498           - All public and protected Static Methods are now complete
27499
27500 2004-09-10 16:54  pbartok
27501
27502         * Control.cs:
27503           - Implemented remaining missing public instance properties
27504           - Alphabetized some out of order properties
27505
27506 2004-09-10 05:51  ravindra
27507
27508         * PictureBox.cs: Added a check for null image.
27509
27510 2004-09-10 00:59  jordi
27511
27512         * GroupBox.cs: remove cvs tag
27513
27514 2004-09-09 05:25  ravindra
27515
27516         * ToolBar.cs: Make redraw accessible from ToolBarButton.
27517
27518 2004-09-09 05:23  ravindra
27519
27520         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
27521           parent redraw.
27522
27523 2004-09-09 02:28  pbartok
27524
27525         * ThemeWin32Classic.cs:
27526           - Improve disabled string look
27527
27528 2004-09-09 01:15  jordi
27529
27530         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
27531           args and handler
27532
27533 2004-09-08 23:56  ravindra
27534
27535         * ItemBoundsPortion.cs: It's enum, not a class!
27536
27537 2004-09-08 23:47  ravindra
27538
27539         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
27540           Enums for Form.
27541
27542 2004-09-08 21:13  ravindra
27543
27544         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
27545           ListView control.
27546
27547 2004-09-08 21:03  ravindra
27548
27549         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
27550           avoid crash.
27551
27552 2004-09-08 21:01  ravindra
27553
27554         * ScrollableControl.cs: Removed unreachable code.
27555
27556 2004-09-08 06:45  jordi
27557
27558         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
27559
27560 2004-09-08 01:00  jackson
27561
27562         * XplatUIX11.cs: Only run the timers when updating the message
27563           queue. This effectively gives X messages a higher priority then
27564           timer messages. Timers still need love though
27565
27566 2004-09-07 14:01  jackson
27567
27568         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
27569           this for us and the handle is no longer valid.
27570
27571 2004-09-07 13:59  jackson
27572
27573         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
27574           loop that manages to not crash. TODO: Add poll and cleanup timers
27575
27576 2004-09-07 11:12  jordi
27577
27578         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
27579
27580 2004-09-07 03:40  jordi
27581
27582         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
27583           fixes, methods, multiple links
27584
27585 2004-09-06 06:55  jordi
27586
27587         * Control.cs: Caches ClientRectangle rectangle value
27588
27589 2004-09-05 02:03  jordi
27590
27591         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
27592           certain situations
27593
27594 2004-09-04 11:10  jordi
27595
27596         * Label.cs: Refresh when font changed
27597
27598 2004-09-02 16:24  pbartok
27599
27600         * Control.cs:
27601           - Added sanity check to creation of double buffer bitmap
27602
27603 2004-09-02 16:24  pbartok
27604
27605         * ButtonBase.cs:
27606           - Fixed selection of text color
27607           - Fixed handling of resize event; now properly recreates double
27608             buffering bitmap
27609           - Added missing assignment of TextAlignment
27610           - Added proper default for TextAlignment
27611
27612 2004-09-02 14:26  pbartok
27613
27614         * RadioButton.cs:
27615           - Added missing RadioButton.RadioButtonAccessibleObject class
27616
27617 2004-09-02 14:26  pbartok
27618
27619         * Control.cs:
27620           - Added missing Control.ControlAccessibleObject class
27621           - Started to implement Select()ion mechanisms, still very incomplete
27622
27623 2004-09-02 14:25  pbartok
27624
27625         * AccessibleObject.cs:
27626           - Added missing methods
27627
27628 2004-09-02 14:23  pbartok
27629
27630         * AccessibleNavigation.cs, AccessibleSelection.cs:
27631           - Initial check-in
27632
27633 2004-09-02 10:32  jordi
27634
27635         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
27636           pool for pens, brushes, and hatchbruses
27637
27638 2004-09-01 15:30  jackson
27639
27640         * StatusBar.cs: Fix typo
27641
27642 2004-09-01 14:44  pbartok
27643
27644         * RadioButton.cs:
27645           - Fixed state
27646
27647 2004-09-01 14:39  pbartok
27648
27649         * Button.cs, RadioButton.cs:
27650           - Functional initial check-in
27651
27652 2004-09-01 14:01  pbartok
27653
27654         * CheckBox.cs:
27655           - Added missing default
27656           - Added missing region mark
27657
27658 2004-09-01 09:10  jordi
27659
27660         * Label.cs: fixes method signatures, new methods, events, fixes
27661           autosize
27662
27663 2004-09-01 07:19  jordi
27664
27665         * Control.cs: Init string variables with an empty object
27666
27667 2004-09-01 04:20  jordi
27668
27669         * Control.cs: fires OnFontChanged event
27670
27671 2004-08-31 20:07  pbartok
27672
27673         * ButtonBase.cs:
27674           - Enabled display of strings
27675
27676 2004-08-31 20:05  pbartok
27677
27678         * Form.cs:
27679           - Added (partial) implementation of DialogResult; rest needs to be
27680             implemented when the modal loop code is done
27681
27682 2004-08-31 19:55  pbartok
27683
27684         * CheckBox.cs:
27685           - Fixed to match the removal of the needs_redraw concept
27686
27687 2004-08-31 19:55  pbartok
27688
27689         * ButtonBase.cs:
27690           - Removed the rather odd split between 'needs redraw' and redrawing
27691           - Now handles the events that require regeneration (ambient
27692             properties and size)
27693
27694 2004-08-31 19:41  pbartok
27695
27696         * Control.cs:
27697           - Added firing of BackColorChanged event
27698           - Added TopLevelControl property
27699           - Fixed handling of WM_ERASEBKGRND message
27700
27701 2004-08-31 12:49  pbartok
27702
27703         * ButtonBase.cs:
27704           - Removed debug
27705           - Minor fixes
27706
27707 2004-08-31 12:48  pbartok
27708
27709         * CheckBox.cs:
27710           - Finished (famous last words)
27711
27712 2004-08-31 04:35  jordi
27713
27714         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
27715           scrolling bugs, adds new methods
27716
27717 2004-08-30 14:42  pbartok
27718
27719         * CheckBox.cs:
27720           - Implemented CheckBox drawing code
27721
27722 2004-08-30 14:42  pbartok
27723
27724         * ButtonBase.cs:
27725           - Made Redraw() and CheckRedraw() virtual
27726           - Improved mouse up/down/move logic to properly track buttons
27727
27728 2004-08-30 09:44  pbartok
27729
27730         * CheckBox.cs:
27731           - Updated to fix broken build. Not complete yet.
27732
27733 2004-08-30 09:28  pbartok
27734
27735         * CheckState.cs:
27736           - Initial checkin
27737
27738 2004-08-30 09:17  pbartok
27739
27740         * Appearance.cs:
27741           - Initial check-in
27742
27743 2004-08-27 16:12  ravindra
27744
27745         * ToolBarButton.cs: Added TypeConverter attribute.
27746
27747 2004-08-27 16:07  ravindra
27748
27749         * ImageIndexConverter.cs: Implemented.
27750
27751 2004-08-27 14:17  pbartok
27752
27753         * Control.cs:
27754           - Removed unneeded stack vars
27755           - First attempt to fix sizing issues when layout is suspended
27756
27757 2004-08-25 15:35  jordi
27758
27759         * ScrollBar.cs: more fixes to scrollbar
27760
27761 2004-08-25 14:04  ravindra
27762
27763         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
27764           Added the missing divider code and grip for ToolBar Control.
27765
27766 2004-08-25 13:20  pbartok
27767
27768         * Control.cs:
27769           - Control now properly passes the ambient background color to child
27770             controls
27771
27772 2004-08-25 13:20  jordi
27773
27774         * ScrollBar.cs: small bug fix regarding bar position
27775
27776 2004-08-25 12:33  pbartok
27777
27778         * Timer.cs:
27779           - Now only calls SetTimer or KillTimer if the enabled state has
27780           changed
27781
27782 2004-08-25 12:33  pbartok
27783
27784         * XplatUIWin32.cs:
27785           - Fixed timer handling, now seems to work
27786           - Improved error message for window creation
27787
27788 2004-08-25 12:32  pbartok
27789
27790         * Control.cs:
27791           - Fixed generation of MouseUp message
27792
27793 2004-08-25 12:29  jordi
27794
27795         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
27796           and fixes for progressbar
27797
27798 2004-08-24 18:43  ravindra
27799
27800         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
27801           in ToolBar control.
27802
27803 2004-08-24 17:15  pbartok
27804
27805         * Panel.cs:
27806           - Added #region
27807           - Added missing events
27808           - Alphabetized
27809
27810 2004-08-24 17:14  pbartok
27811
27812         * StatusBar.cs, PictureBox.cs:
27813           - Now uses Control's CreateParams
27814
27815 2004-08-24 16:36  pbartok
27816
27817         * XplatUIX11.cs:
27818           - Fixed background color handling
27819           - Fixed sending of enter/leave events on a grab
27820
27821 2004-08-24 16:35  pbartok
27822
27823         * X11Structs.cs:
27824           - Refined definitions for CrossingEvent
27825
27826 2004-08-24 12:37  jordi
27827
27828         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
27829           formmating, methods signature, and adds missing events
27830
27831 2004-08-24 12:24  jordi
27832
27833         * Control.cs: fire OnEnabledChanged event
27834
27835 2004-08-24 11:17  pbartok
27836
27837         * XplatUIWin32.cs:
27838           - Implemented SetTimer() and KillTimer()
27839
27840 2004-08-24 11:16  pbartok
27841
27842         * XplatUIX11.cs:
27843           - Now uses Remove instead of Add to kill the timer
27844
27845 2004-08-24 10:16  jackson
27846
27847         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
27848           picture boxes in the theme now. Draw picture box borders and obey
27849           sizing modes
27850
27851 2004-08-24 05:49  jackson
27852
27853         * Timer.cs: Remove top secret debugging code
27854
27855 2004-08-24 05:34  jackson
27856
27857         * PictureBox.cs: Temp hack to make picture boxes draw their full
27858           image
27859
27860 2004-08-24 05:29  jackson
27861
27862         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27863           XplatUIX11.cs: Move timers to the driver level. On X they are
27864           queued by the driver and checked on idle.
27865
27866 2004-08-24 01:07  jackson
27867
27868         * XplatUIX11.cs: Use a queue for async messages instead of passing
27869           them as ClientMessages since that was totally broken. Also simply
27870           check for events and return an idle message if none are found. This
27871           gives us an idle handler, and prevents deadlocking when no messages
27872           are in the queue.
27873
27874 2004-08-23 18:19  ravindra
27875
27876         * XplatUIWin32.cs: Removed the unwanted destructor.
27877
27878 2004-08-23 17:27  pbartok
27879
27880         * ButtonBase.cs:
27881           - Finishing touches. Works now, just needs some optimizations.
27882
27883 2004-08-23 16:53  jordi
27884
27885         * ScrollBar.cs: small fix
27886
27887 2004-08-23 16:45  pbartok
27888
27889         * Application.cs:
27890           - Removed debug output
27891           - Simplifications
27892
27893 2004-08-23 16:43  jordi
27894
27895         * ScrollBar.cs: [no log message]
27896
27897 2004-08-23 16:10  pbartok
27898
27899         * Form.cs:
27900           - Fixed handling of WM_CLOSE message
27901           - Removed debug output
27902
27903 2004-08-23 16:09  pbartok
27904
27905         * Application.cs:
27906           - Added handling of Idle event
27907           - Added handling of form closing
27908           - Fixed reporting of MessageLoop property
27909           - Removed some unneeded code, should provide a bit of a speedup
27910
27911 2004-08-23 15:22  pbartok
27912
27913         * Control.cs:
27914           - Added InitLayout() method
27915           - Added code to properly perform layout when Anchor or Dock property
27916             is changed
27917           - Changed 'interpretation' of ResumeLayout. MS seems to have a
27918             LAMESPEC, tried to do it in a way that makes sense
27919
27920 2004-08-23 14:10  jordi
27921
27922         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
27923           properties and methods
27924
27925 2004-08-23 13:55  pbartok
27926
27927         * Control.cs:
27928           - Properly fixed Jordi's last fix
27929           - Now uses Cursor's Position property instead of calling XplatUI
27930           directly
27931
27932 2004-08-23 13:44  jordi
27933
27934         * PaintEventHandler.cs: Adding missing attribute
27935
27936 2004-08-23 13:39  pbartok
27937
27938         * Cursor.cs:
27939           - Implemented Position property
27940
27941 2004-08-23 13:39  pbartok
27942
27943         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27944           - Added method to move mouse cursor
27945
27946 2004-08-23 13:39  pbartok
27947
27948         * XplatUIX11.cs:
27949           - Fixed setting of background color
27950           - Added method to move mouse cursor
27951
27952 2004-08-23 13:16  jordi
27953
27954         * Control.cs: avoids null exception
27955
27956 2004-08-22 17:46  jackson
27957
27958         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
27959           PictureBox
27960
27961 2004-08-22 17:40  jackson
27962
27963         * XplatUIX11.cs: Add some missing locks
27964
27965 2004-08-22 15:10  pbartok
27966
27967         * Control.cs, Form.cs:
27968           - Removed OverlappedWindow style from Control, instead it's default
27969             now is child
27970           - Made form windows OverlappedWindow by default
27971
27972 2004-08-22 13:34  jackson
27973
27974         * ScrollBar.cs: Update the position through the Value property so
27975           the OnValueChanged event is raised.
27976
27977 2004-08-22 12:04  pbartok
27978
27979         * SWF.csproj:
27980           - Added Cursor.cs and UserControl.cs
27981
27982 2004-08-22 12:03  pbartok
27983
27984         * Cursor.cs:
27985           - Started implementation, not usable yet
27986
27987 2004-08-22 12:00  pbartok
27988
27989         * UserControl.cs:
27990           - Implemented UserControl (complete)
27991
27992 2004-08-21 19:20  ravindra
27993
27994         * ToolBar.cs: Correcting the formatting mess of VS.NET.
27995
27996 2004-08-21 18:49  ravindra
27997
27998         * ToolBar.cs: Probably this completes the missing attributes in
27999           toolbar control.
28000
28001 2004-08-21 18:03  ravindra
28002
28003         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
28004           Fixed toolbar control signatures.
28005
28006 2004-08-21 16:32  pbartok
28007
28008         * LinkLabel.cs:
28009           - Signature Fixes
28010
28011 2004-08-21 16:30  pbartok
28012
28013         * Label.cs:
28014           - Signature fixes
28015
28016 2004-08-21 16:19  pbartok
28017
28018         * Control.cs, Label.cs:
28019           - Signature fixes
28020
28021 2004-08-21 15:57  pbartok
28022
28023         * ButtonBase.cs:
28024           - Added loads of debug output for development
28025           - Fixed typo in method name
28026
28027 2004-08-21 15:52  pbartok
28028
28029         * ToolBarButtonClickEventArgs.cs:
28030           - Added missing base class
28031
28032 2004-08-21 14:53  pbartok
28033
28034         * Control.cs:
28035           - Updated to match new GrabWindow signature
28036
28037 2004-08-21 14:51  pbartok
28038
28039         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28040           - Added method to get default display size
28041
28042 2004-08-21 14:23  pbartok
28043
28044         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28045           - Added method to query current grab state
28046           - Added argument to allow confining a grab to a window
28047
28048 2004-08-21 14:22  pbartok
28049
28050         * Keys.cs:
28051           - Added [Flags] attribute so that modifiers can be used in bitwise
28052           ops
28053
28054 2004-08-21 14:21  pbartok
28055
28056         * TrackBar.cs, ScrollBar.cs:
28057           - Replaced direct XplatUI calls with their Control counterpart
28058
28059 2004-08-21 13:32  pbartok
28060
28061         * Control.cs:
28062           - Implemented Created property
28063
28064 2004-08-21 13:28  pbartok
28065
28066         * Control.cs:
28067           - Implemented ContainsFocus
28068
28069 2004-08-21 13:26  pbartok
28070
28071         * Control.cs:
28072           - Implemented CausesValidation
28073
28074 2004-08-21 13:21  pbartok
28075
28076         * Control.cs:
28077           - Implemented CanFocus
28078           - Implemented CanSelect
28079           - Implemented Capture
28080
28081 2004-08-21 12:35  pbartok
28082
28083         * XplatUIWin32.cs:
28084           - Fixed bug with Async message handling
28085           - Implemented getting the ModifierKeys
28086
28087 2004-08-21 12:32  jackson
28088
28089         * AsyncMethodResult.cs: Make sure we have the mutex before we
28090           release it. Fixes BeginInvoke on windows
28091
28092 2004-08-21 11:31  pbartok
28093
28094         * XplatUIWin32.cs, XplatUIX11.cs:
28095           - Drivers now return proper mouse state
28096
28097 2004-08-21 10:54  jackson
28098
28099         * Control.cs: Implement EndInvoke
28100
28101 2004-08-21 10:48  jackson
28102
28103         * Timer.cs: Remove unneeded finalizer
28104
28105 2004-08-20 19:52  ravindra
28106
28107         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
28108           in mouse event handling in the ToolBar control.
28109
28110 2004-08-20 19:50  ravindra
28111
28112         * ImageList.cs: Changed draw method to use the arguments passed in
28113           to draw the image.
28114
28115 2004-08-20 18:58  pbartok
28116
28117         * XplatUIStructs.cs:
28118           - Added private message for async communication
28119
28120 2004-08-20 17:38  ravindra
28121
28122         * Control.cs: Made RightToLeft property virtual and removed a
28123           Console.WriteLine.
28124
28125 2004-08-20 14:39  jordi
28126
28127         * ThemeGtk.cs: use style_attach
28128
28129 2004-08-20 14:39  pbartok
28130
28131         * XplatUIWin32.cs:
28132           - Added jackson's Async code from X11 to Win32
28133
28134 2004-08-20 14:09  pbartok
28135
28136         * SWF.csproj:
28137           - Added all new files
28138
28139 2004-08-20 14:09  pbartok
28140
28141         * Control.cs:
28142           - Added call to set window background color
28143
28144 2004-08-20 14:03  pbartok
28145
28146         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28147           - Added method for setting the window background
28148
28149 2004-08-20 14:02  pbartok
28150
28151         * XplatUIWin32.cs:
28152           - Added method for setting the background color
28153           - Added handling for erasing the window background
28154
28155 2004-08-20 13:45  jordi
28156
28157         * TrackBar.cs: fixes timer, new properties and methods
28158
28159 2004-08-20 13:34  jackson
28160
28161         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
28162           correct thread
28163
28164 2004-08-20 13:22  jackson
28165
28166         * Timer.cs: Timer Tick events are now handed through Controls Async
28167           mechanism so the callbacks are executed in the same thread as X
28168
28169 2004-08-20 13:19  jackson
28170
28171         * XplatUIDriver.cs: Expose functionality to send async messages
28172           through the driver
28173
28174 2004-08-20 13:18  jackson
28175
28176         * Control.cs: Implement Begininvoke
28177
28178 2004-08-20 13:14  jackson
28179
28180         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
28181           messages through the driver
28182
28183 2004-08-20 13:12  jackson
28184
28185         * XplatUIX11.cs: Lock before all X operations. Also added Async
28186           method functionality through XSendEvent
28187
28188 2004-08-20 13:11  jackson
28189
28190         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
28191           This will screw up on 64 bit systems)
28192
28193 2004-08-20 13:10  jackson
28194
28195         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
28196           Async messages through X/Win32
28197
28198 2004-08-19 19:39  pbartok
28199
28200         * XplatUIX11.cs:
28201           - Updated code to match new HandleData.DeviceContext type
28202
28203 2004-08-19 19:38  pbartok
28204
28205         * HandleData.cs:
28206           - Made DeviceContext a generic object to allow usage from various
28207           drivers
28208           - Added support for queueing Windows messages
28209
28210 2004-08-19 19:37  pbartok
28211
28212         * XplatUIWin32.cs:
28213           - Added generation of MouseEnter, MouseLeave and MouseHover events
28214           - Added cleanup on EndPaint
28215
28216 2004-08-19 19:17  pbartok
28217
28218         * Control.cs:
28219           - Added handling of WM_MOUSEHOVER
28220           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
28221           code
28222
28223 2004-08-19 18:55  jordi
28224
28225         * ThemeGtk.cs: fixes button order
28226
28227 2004-08-19 18:12  jordi
28228
28229         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
28230
28231 2004-08-19 17:09  pbartok
28232
28233         * Control.cs:
28234           - Added Right property
28235           - Added RightToLeft property
28236
28237 2004-08-19 16:27  jordi
28238
28239         * ThemeGtk.cs: experimental GTK theme support
28240
28241 2004-08-19 16:26  jordi
28242
28243         * ITheme.cs, Theme.cs: move themes from an interface to a class
28244
28245 2004-08-19 16:25  jordi
28246
28247         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
28248           theme enhancaments
28249
28250 2004-08-19 16:04  pbartok
28251
28252         * XplatUIX11.cs:
28253           - Added colormap basics
28254           - Added a way to re-initialize with a different display handle
28255           - Fixed setting of the window background color
28256           - Added various X11 imports related to colors and colormaps
28257
28258 2004-08-19 15:51  pbartok
28259
28260         * X11Structs.cs:
28261           - Removed packing hints (Paolo suggested this a while back)
28262           - fixed colormap type
28263           - Added default Atom types
28264           - Added Screen and color structs and enums
28265
28266 2004-08-19 15:39  pbartok
28267
28268         * ImageList.cs:
28269           - Added missing Draw() method
28270           - Added missing RecreateHandle event
28271
28272 2004-08-19 15:30  pbartok
28273
28274         * Form.cs:
28275           - Added handling of WM_CLOSE
28276
28277 2004-08-18 13:16  jordi
28278
28279         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
28280           a table
28281
28282 2004-08-18 09:56  jordi
28283
28284         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
28285
28286 2004-08-17 15:31  ravindra
28287
28288         * SWF.csproj: Updated project.
28289
28290 2004-08-17 15:25  pbartok
28291
28292         * Control.cs:
28293           - Drawing improvement; don't call UpdateBounds if we are not visible
28294             (or have been minimized)
28295
28296 2004-08-17 15:24  pbartok
28297
28298         * XplatUIWin32.cs:
28299           - Finished IsVisible
28300           - Added Win32GetWindowPlacement
28301
28302 2004-08-17 15:08  jackson
28303
28304         * Panel.cs: Initial checkin of the Panel
28305
28306 2004-08-17 14:25  pbartok
28307
28308         * Control.cs:
28309           - Fixed broken handling of default window sizes
28310
28311 2004-08-17 13:29  jackson
28312
28313         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
28314           has a large startup time.
28315
28316 2004-08-17 10:25  jackson
28317
28318         * HandleData.cs: union areas properly
28319
28320 2004-08-17 10:12  jackson
28321
28322         * HandleData.cs: union areas properly
28323
28324 2004-08-16 20:00  ravindra
28325
28326         * ToolBar.cs, ToolBarButton.cs: Added attributes.
28327
28328 2004-08-16 18:48  ravindra
28329
28330         * ToolBar.cs: Added attributes.
28331
28332 2004-08-16 17:17  ravindra
28333
28334         * SWF.csproj: Updated project.
28335
28336 2004-08-16 17:16  jackson
28337
28338         * XplatUIX11.cs: Check for more expose events before sending a
28339           WM_PAINT so they can all be grouped together. This makes dragging a
28340           window across another window redraw in a sane way.
28341
28342 2004-08-16 15:47  pbartok
28343
28344         * Control.cs:
28345           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
28346             support OnMouseEnter/Leave()
28347           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
28348             exposure handling
28349
28350 2004-08-16 15:46  pbartok
28351
28352         * XplatUIStructs.cs, XplatUIX11.cs:
28353           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
28354           OnMouseEnter/Leave()
28355
28356 2004-08-16 15:34  jackson
28357
28358         * XplatUIX11.cs: Group multiple expose events in HandleData, make
28359           sure messages get the message field set to WM_NULL if they are not
28360           handled.
28361
28362 2004-08-16 15:24  jackson
28363
28364         * HandleData.cs: HandleData is used for storing message information
28365           for window handles
28366
28367 2004-08-15 17:23  ravindra
28368
28369         * ColorDepth.cs: Added attribute.
28370
28371 2004-08-15 17:23  ravindra
28372
28373         * SWF.csproj: Updated project for ToolBar Control.
28374
28375 2004-08-15 17:20  ravindra
28376
28377         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
28378           control and also dos2unix format.
28379
28380 2004-08-15 17:13  ravindra
28381
28382         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
28383           ToolBarButtonClickEventArgs.cs,
28384           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
28385           ToolBarTextAlign.cs: First Implementation of ToolBar control.
28386
28387 2004-08-15 15:31  pbartok
28388
28389         * ButtonBase.cs:
28390           - First (mostly) working version
28391
28392 2004-08-13 16:15  pbartok
28393
28394         * Control.cs:
28395           - Fixed Anchor default
28396
28397 2004-08-13 15:43  pbartok
28398
28399         * Control.cs:
28400           - Changed GetCursorPos signature
28401
28402 2004-08-13 15:42  pbartok
28403
28404         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28405           - Changed signature for GetCursorPos
28406
28407 2004-08-13 15:25  pbartok
28408
28409         * XplatUIX11.cs:
28410           - Cleanup
28411           - Fixed resizing/exposure handling
28412
28413 2004-08-13 15:22  jordi
28414
28415         * ThemeWin32Classic.cs: removes redundant code and fixes issues
28416           with tickposition
28417
28418 2004-08-13 14:55  jordi
28419
28420         * TrackBar.cs: change from wndproc to events
28421
28422 2004-08-13 13:00  jordi
28423
28424         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28425           XplatUIX11.cs: implements PointToClient (ScreenToClient)
28426
28427 2004-08-13 12:53  pbartok
28428
28429         * XplatUIWin32.cs:
28430           - Changed GetWindowPos to also provide client area size
28431           - Fixed broken prototypes for several win32 functions
28432
28433 2004-08-13 12:53  pbartok
28434
28435         * XplatUI.cs, XplatUIDriver.cs:
28436           - Changed GetWindowPos to also provide client area size
28437
28438 2004-08-13 12:52  pbartok
28439
28440         * XplatUIX11.cs:
28441           - Added generation of WM_POSCHANGED
28442           - Changed GetWindowPos to also provide client area size
28443
28444 2004-08-13 12:52  pbartok
28445
28446         * Control.cs:
28447           - Added Dispose() and destructor
28448           - Fixed resizing and bounds calculation
28449           - Fixed Layout
28450           - Added memory savings for invisible windows
28451
28452 2004-08-13 12:46  jordi
28453
28454         * TrackBar.cs: adds timer and grap window
28455
28456 2004-08-13 10:25  jackson
28457
28458         * Timer.cs: SWF Timer
28459
28460 2004-08-12 16:59  pbartok
28461
28462         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28463           - Implemented method to get current mouse position
28464
28465 2004-08-12 14:29  jordi
28466
28467         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
28468           enhancement, fix mouse problems, highli thumb, etc
28469
28470 2004-08-12 13:31  pbartok
28471
28472         * Control.cs:
28473           - Fixed Anchoring bugs
28474
28475 2004-08-12 13:01  jackson
28476
28477         * StatusBar.cs: Don't forget things
28478
28479 2004-08-12 12:54  jackson
28480
28481         * ThemeWin32Classic.cs: Handle owner draw status bars
28482
28483 2004-08-12 12:54  jackson
28484
28485         * StatusBar.cs: Implement missing properties, events, and methods.
28486           Handle mouse clicking
28487
28488 2004-08-12 10:19  jackson
28489
28490         * StatusBarPanelClickEventArgs.cs,
28491           StatusBarPanelClickEventHandler.cs: Classes for handling status
28492           bar panel click events
28493
28494 2004-08-12 10:10  jackson
28495
28496         * Control.cs: Add missing properties
28497
28498 2004-08-12 09:46  pbartok
28499
28500         * BindingsManagerBase.cs:
28501           - Name changed to BindingManagerBase.cs
28502
28503 2004-08-12 09:25  jordi
28504
28505         * ScrollableControl.cs: calls ctrlbase instead of exeception
28506
28507 2004-08-11 16:28  pbartok
28508
28509         * InputLanguageChangingEventArgs.cs:
28510           - Never check in before compiling. Fixes the last check-in
28511
28512 2004-08-11 16:26  pbartok
28513
28514         * InputLanguageChangingEventArgs.cs:
28515           - More signature fixes
28516
28517 2004-08-11 16:20  pbartok
28518
28519         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
28520           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
28521           ImageListStreamer.cs, InputLanguage.cs,
28522           InputLanguageChangedEventArgs.cs,
28523           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
28524           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
28525           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
28526           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28527           - Signature fixes
28528
28529 2004-08-11 16:16  pbartok
28530
28531         * Application.cs:
28532           - Fixed Signature
28533           - Added .Net 1.1 method
28534
28535 2004-08-11 15:25  pbartok
28536
28537         * SWF.csproj:
28538           - Fixed BindingManagerBase.cs filename
28539
28540 2004-08-11 15:22  pbartok
28541
28542         * BindingManagerBase.cs:
28543           - Was checked in with wrong filename
28544
28545 2004-08-11 14:50  pbartok
28546
28547         * SWF.csproj:
28548           - Updated
28549
28550 2004-08-11 13:41  jordi
28551
28552         * XplatUIWin32.cs: Fixes ClientRect
28553
28554 2004-08-11 13:19  pbartok
28555
28556         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28557           XplatUIX11.cs:
28558           - We had SetWindowPos and MoveWindow to set window positions and
28559             size, removed MoveWindow. We have GetWindowPos, so it made sense to
28560             keep SetWindowPos as matching counterpart
28561           - Added some X11 sanity checking
28562
28563 2004-08-11 12:59  pbartok
28564
28565         * Control.cs:
28566           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
28567             (It seems that SetBounds is just a front for SetBoundsCore and
28568              SetBoundsCore updates the underlying window system and
28569              UpdateBounds is responsible for updating the variables associated
28570              with the Control and sending the events)
28571           - Major cleanup of Size handling; we now have two sizes, client_size
28572             and bounds. Bounds defines the window with decorations, client_size
28573             without them.
28574
28575 2004-08-11 12:55  pbartok
28576
28577         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28578           - Added method to calculate difference between decorated window and
28579             raw client area
28580
28581 2004-08-11 12:54  pbartok
28582
28583         * Label.cs:
28584           - Forcing redraw on resize
28585
28586 2004-08-11 11:43  pbartok
28587
28588         * ImageList.cs:
28589           - Removed disposing of the actual images when the list is disposed
28590
28591 2004-08-11 09:13  pbartok
28592
28593         * Control.cs:
28594           - Now properly reparents windows
28595
28596 2004-08-11 08:37  pbartok
28597
28598         * Control.cs:
28599           - Duh!
28600
28601 2004-08-11 07:47  pbartok
28602
28603         * Control.cs:
28604           - Rewrote the collection stuff. Might not be as fast now, not
28605             keeping the number of children around and accessible directly, but
28606             it's more straightforward
28607
28608 2004-08-11 07:44  pbartok
28609
28610         * AccessibleObject.cs:
28611           - Fixed to match ControlCollection rewrite
28612
28613 2004-08-11 07:43  pbartok
28614
28615         * ImageList.cs:
28616           - Added missing creation of the collection list
28617
28618 2004-08-10 20:08  jackson
28619
28620         * StatusBar.cs: Get the paint message from WndProc
28621
28622 2004-08-10 19:31  jackson
28623
28624         * ThemeWin32Classic.cs: Create Brushes as little as possible
28625
28626 2004-08-10 19:20  jackson
28627
28628         * UICues.cs: Add Flags attribute
28629
28630 2004-08-10 19:19  jackson
28631
28632         * StatusBarPanel.cs: Signature cleanup
28633
28634 2004-08-10 19:10  jackson
28635
28636         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
28637           Initial implementation of status bar item drawing
28638
28639 2004-08-10 17:27  jordi
28640
28641         * TrackBar.cs: add missing methods, properties, and restructure to
28642           hide extra ones
28643
28644 2004-08-10 16:24  jackson
28645
28646         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
28647           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
28648           attribute
28649
28650 2004-08-10 13:21  jordi
28651
28652         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
28653           enhancements and standarize on win colors defaults
28654
28655 2004-08-10 12:52  jackson
28656
28657         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
28658           ThemeWin32Classic.cs: Implement DrawItem functionality
28659
28660 2004-08-10 12:47  jordi
28661
28662         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
28663
28664 2004-08-10 12:32  jordi
28665
28666         * Control.cs: throw ontextchange event
28667
28668 2004-08-10 11:43  pbartok
28669
28670         * Control.cs:
28671           - Added more to the still unfinished Dock/Anchor layout code
28672
28673 2004-08-10 11:39  pbartok
28674
28675         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28676           - Added GetWindowPos method
28677
28678 2004-08-10 11:36  pbartok
28679
28680         * XplatUIWin32.cs:
28681           - Implemented several methods
28682
28683 2004-08-10 09:47  jackson
28684
28685         * TrackBar.cs: Allow control to handle buffering
28686
28687 2004-08-10 09:41  jackson
28688
28689         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
28690
28691 2004-08-10 09:24  jackson
28692
28693         * Label.cs, LinkLabel.cs: Let Control handle buffering.
28694
28695 2004-08-10 09:09  jackson
28696
28697         * StatusBar.cs: Let Control handle all the buffering.
28698
28699 2004-08-10 09:08  jackson
28700
28701         * Control.cs: Control will now handle the buffering code, so each
28702           control does not have to implement this.
28703
28704 2004-08-10 08:34  jackson
28705
28706         * XplatUIDriver.cs: Use default colors from the theme
28707
28708 2004-08-09 17:12  pbartok
28709
28710         * ImageList.cs:
28711           - Fixed several bugs Ravindra pointed out
28712
28713 2004-08-09 16:11  pbartok
28714
28715         * Control.cs:
28716           - Added incomplete dock layout code
28717           - Added support for mouse wheel
28718
28719 2004-08-09 16:09  pbartok
28720
28721         * XplatUIX11.cs:
28722           - Added handling for middle and right mousebutton
28723           - Added handling for mouse wheel
28724           - Added handling for key state and mouse state and position
28725           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
28726           messages
28727
28728 2004-08-09 15:40  jackson
28729
28730         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
28731           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
28732           checkin
28733
28734 2004-08-09 15:37  jackson
28735
28736         * StatusBar.cs: Initial implementation of StatusBar
28737
28738 2004-08-09 15:36  jackson
28739
28740         * ITheme.cs: Add support for drawing status bar and getting status
28741           bar item sizes
28742
28743 2004-08-09 15:35  pbartok
28744
28745         * MouseButtons.cs:
28746           - Fixed values
28747
28748 2004-08-09 15:34  jackson
28749
28750         * ThemeWin32Classic.cs: Add support for drawing status bar and get
28751           status bar item sizes
28752
28753 2004-08-09 15:21  jackson
28754
28755         * ThemeWin32Classic.cs: Use known colors for default control
28756           colours
28757
28758 2004-08-09 15:12  jackson
28759
28760         * ThemeWin32Classic.cs: Make the default font static, it is static
28761           in control so this doesn't change functionality and creating fonts
28762           is sloooooow.
28763
28764 2004-08-09 14:56  pbartok
28765
28766         * X11Structs.cs:
28767           - Added GrabMode enum
28768
28769 2004-08-09 14:55  pbartok
28770
28771         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28772           - Removed Run method, was only required for initial development
28773
28774 2004-08-09 14:51  pbartok
28775
28776         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28777           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
28778           capture
28779
28780 2004-08-09 13:48  pbartok
28781
28782         * XplatUIX11.cs:
28783           - Fixed default sizing for child windows
28784
28785 2004-08-09 12:56  pbartok
28786
28787         * XplatUIX11.cs:
28788           - Added generation of WM_DESTROY message
28789           - Added handling of window manager induced shutdown
28790
28791 2004-08-09 11:31  jackson
28792
28793         * ThemeWin32Classic.cs: New names for control properties
28794
28795 2004-08-09 11:25  jackson
28796
28797         * Control.cs: Use new color names
28798
28799 2004-08-09 11:02  jackson
28800
28801         * XplatUI.cs: Get default window properties from the theme
28802
28803 2004-08-09 11:01  jackson
28804
28805         * ITheme.cs: The theme engine now controls default window
28806           properties
28807
28808 2004-08-09 11:00  jackson
28809
28810         * ThemeWin32Classic.cs: Add default window color properties
28811
28812 2004-08-09 10:17  jackson
28813
28814         * ThemeWin32Classic.cs: Use correct default back color
28815
28816 2004-08-09 10:05  jackson
28817
28818         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
28819           the theme now.
28820
28821 2004-08-09 09:56  jackson
28822
28823         * XplatUI.cs: Remove defaults, these are handled by the theme now.
28824
28825 2004-08-09 09:54  jackson
28826
28827         * Control.cs: Get default properties from the theme.
28828
28829 2004-08-09 09:53  jackson
28830
28831         * ITheme.cs: Themes now handle default control properties
28832
28833 2004-08-09 09:53  jackson
28834
28835         * ThemeWin32Classic.cs: Themes now handle default control
28836           properties so coloring will be consistent
28837
28838 2004-08-08 16:54  jordi
28839
28840         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
28841
28842 2004-08-08 15:08  jordi
28843
28844         * XplatUIX11.cs: fixes keyboard crash
28845
28846 2004-08-08 13:47  jordi
28847
28848         * Label.cs: add cvs header info
28849
28850 2004-08-08 12:09  jackson
28851
28852         * ThemeWin32Classic.cs: Add pen_buttonface
28853
28854 2004-08-08 11:52  jordi
28855
28856         * Label.cs, LinkLabel.cs: [no log message]
28857
28858 2004-08-08 11:34  jordi
28859
28860         * ThemeWin32Classic.cs: Use Windows Standard Colours
28861
28862 2004-08-07 17:32  jordi
28863
28864         * TrackBar.cs: throw exceptions of invalid enums values
28865
28866 2004-08-07 17:31  jordi
28867
28868         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
28869           draw method name
28870
28871 2004-08-07 16:56  jackson
28872
28873         * HorizontalAlignment.cs: Initial checkin
28874
28875 2004-08-07 13:16  jordi
28876
28877         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
28878           methods
28879
28880 2004-08-07 13:05  jordi
28881
28882         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
28883           GetSysColor defines
28884
28885 2004-08-06 18:01  pbartok
28886
28887         * ThemeWin32Classic.cs:
28888           - Fixed some rounding issues with float/int
28889
28890 2004-08-06 18:00  jackson
28891
28892         * DockStyle.cs, AnchorStyles.cs:
28893
28894                   Add flags and serializable attributes.
28895
28896 2004-08-06 17:46  pbartok
28897
28898         * XplatUIX11.cs:
28899           - Implemented GetParent
28900
28901 2004-08-06 17:18  pbartok
28902
28903         * TrackBar.cs:
28904           - Fixed some rounding issues with float/int
28905
28906 2004-08-06 17:17  pbartok
28907
28908         * X11Structs.cs, XplatUIX11.cs:
28909           - Fixed Refresh and Invalidate
28910
28911 2004-08-06 15:30  pbartok
28912
28913         * Control.cs, X11Structs.cs, XplatUIX11.cs:
28914           - Fixed recursive loop when resizing
28915           - Improved/fixed redrawing on expose messages
28916
28917 2004-08-06 09:53  jordi
28918
28919         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
28920           keyboard navigation
28921
28922 2004-08-06 08:02  pbartok
28923
28924         * X11Structs.cs, XplatUIX11.cs:
28925           - Fixed reparenting
28926           - Fixed window border creation
28927
28928 2004-08-05 15:38  pbartok
28929
28930         * XplatUIX11.cs:
28931           - Attempted fix for reparenting problems
28932
28933 2004-08-04 15:14  pbartok
28934
28935         * Control.cs:
28936           - Fixed Invalidation bug (calculated wrong client area)
28937           - Added ClientSize setter
28938
28939 2004-08-04 15:13  pbartok
28940
28941         * Form.cs:
28942           - Added AutoScale properties
28943
28944 2004-08-04 15:13  pbartok
28945
28946         * SWF.csproj:
28947           - Added latest files
28948
28949 2004-08-04 14:11  pbartok
28950
28951         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28952           XplatUIX11.cs:
28953           - Added Invalidate handling
28954
28955 2004-08-03 17:09  jordi
28956
28957         * XplatUIDriver.cs: fixes spelling mistake
28958
28959 2004-07-27 09:53  jordi
28960
28961         * TrackBar.cs: fixes trackbar events, def classname, methods
28962           signature
28963
28964 2004-07-27 09:29  jordi
28965
28966         * ScrollBar.cs: fixes scrollbar events
28967
28968 2004-07-27 04:38  jordi
28969
28970         * Control.cs: changes to be able to run winforms samples
28971
28972 2004-07-26 11:42  jordi
28973
28974         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
28975           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
28976
28977 2004-07-26 05:41  jordi
28978
28979         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
28980           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
28981           implementation
28982
28983 2004-07-22 09:22  jordi
28984
28985         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
28986           check link overlapping, implement events, and fixes
28987
28988 2004-07-21 10:28  jordi
28989
28990         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
28991
28992 2004-07-21 10:19  jordi
28993
28994         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
28995           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
28996           LinkLabelLinkClickedEventArgs.cs,
28997           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
28998           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
28999           implementation
29000
29001 2004-07-19 13:09  jordi
29002
29003         * Control.cs, Label.cs: label control re-written: added missing
29004           functionlity, events, and properties
29005
29006 2004-07-19 10:49  jordi
29007
29008         * Control.cs: fixes SetBounds logic
29009
29010 2004-07-19 01:29  jordi
29011
29012         * Control.cs: Call RefreshWindow only if the window has created
29013
29014 2004-07-15 14:05  pbartok
29015
29016         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
29017           - Implemented ImageList and ImageList.ImageCollection classes
29018           - Added ColorDepth enumeration
29019           - Updated SWF VS.Net project
29020
29021 2004-07-15 11:06  jordi
29022
29023         * XplatUIStructs.cs: added MsgButons enum
29024
29025 2004-07-15 11:03  jordi
29026
29027         * Control.cs: added basic mouse handeling events
29028
29029 2004-07-15 03:38  jordi
29030
29031         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
29032           Vertical TrackBar control implementation
29033
29034 2004-07-13 09:33  jordi
29035
29036         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
29037
29038 2004-07-13 09:31  jordi
29039
29040         * Control.cs, Form.cs: commit: new properties and fixes form size
29041           problems
29042
29043 2004-07-09 14:13  miguel
29044
29045         * ProgressBar.cs: Spelling
29046
29047 2004-07-09 11:25  pbartok
29048
29049         * ProgressBar.cs:
29050           - Removed usage of Rectangle for drawing. Miguel pointed out it's
29051           faster
29052
29053 2004-07-09 11:17  miguel
29054
29055         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
29056
29057                 * ProgressBar.cs: Fixed spelling for `block'
29058
29059                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
29060                 style guidelines.
29061
29062                 Avoid using the += on rect.X, that exposed a bug in the compiler.
29063
29064 2004-07-08 23:21  pbartok
29065
29066         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
29067           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
29068           BaseCollection.cs, Binding.cs, BindingContext.cs,
29069           BindingMemberInfo.cs, BindingsCollection.cs,
29070           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
29071           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
29072           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
29073           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
29074           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
29075           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
29076           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
29077           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
29078           FrameStyle.cs, GiveFeedbackEventArgs.cs,
29079           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
29080           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
29081           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
29082           InputLanguageChangedEventArgs.cs,
29083           InputLanguageChangedEventHandler.cs,
29084           InputLanguageChangingEventArgs.cs,
29085           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
29086           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
29087           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
29088           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
29089           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
29090           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
29091           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
29092           QueryAccessibilityHelpEventArgs.cs,
29093           QueryAccessibilityHelpEventHandler.cs,
29094           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
29095           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
29096           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
29097           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
29098           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
29099           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
29100           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
29101           XplatUIX11.cs, lang.cs:
29102           - Initial check-in
29103
29104