2007-08-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2
3         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
4         as well as add new ones. This should make work the BackgroundImage
5         property for ListView again.
6
7 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
8
9         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
10         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
11         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
12
13 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
14
15         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
16         IsKeyLocked.
17
18 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
19
20         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
21         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
22
23 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
24
25         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
26         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
27
28 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
29
30         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
31
32 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
33
34         * GridEntry.cs: Implement GetService.
35
36 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
37
38         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
39         for label editting, make sure we focus back on the TreeView.
40         [Fixes bug #82590]
41
42 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
43
44         * ListView.cs: Add some 2.0 overrides.
45
46 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
47
48         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
49         because getter dont returns right value before handle creation. Thanks 
50         to George. Fixes #82569.  
51
52 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
53
54         * Theme.cs: Revert last patch, it causes error under win32. 
55
56 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
57
58         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
59         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
60         logical Desktop rather than the physical file system location. Fixes #82603. 
61
62 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
63
64         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
65         for the patch. Fixes #82568.
66
67 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
68
69         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
70         methods.
71
72 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
73
74         * ListViewInsertionMark.cs: New stubbed class.
75
76 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
77
78         * FolderBrowserDialog.cs: When adding folder, immediately create the
79         directory with temporary name and rename the directory when editing
80         finishes. This matches MS. Ensure the node for the new folder is 
81         selected and LabelEdit is disabled, when editing is either finished
82         or cancelled.
83
84 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
85
86         * TreeView.cs: When editing label of node, ensure node is visible.
87
88 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
89
90         * PropertyGridView.cs: Set the value only if it has changed.
91
92 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
93
94         * ListView.cs: Some more code refactoring to add support sorting
95         with groups (now for Details view). Remove unused code also.
96
97 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
98
99         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
100         Not a big fan of reacting immediately to a field in an EventArg, but that's
101         the way it's done.  (This is part of the previous commit that got left out.)
102
103 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
104
105         * FolderBrowserDialog.cs: Removed need for separate description field.
106         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
107         has focus when dialog box is displayed again, regardless of what
108         button was pressed the previous time. Set RootFolder and SelectedPath
109         each time dialog box is displayed. This ensures the treeview is
110         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
111         when it does not have focus. Added support for more special folders.
112
113 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
114
115         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
116         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
117         it resets the edit_args.
118         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
119         [Fixes bug #82577]
120
121 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
122
123         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
124         button to match MS. Provide more meaningful exception message for
125         invalid RootFolder value. Use zero-length string when SelectedPath
126         is set to null. Allow non-rooted paths in SelectedPath, but ignore
127         them in FolderBrowserTreeView. Allow folders to be created in
128         RootFolder. Fixes bug #82576.
129
130 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
131
132         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
133         since we need to take into account the group headers and the margin
134         between them.
135         * ListViewGroup.cs: Add a rows field to store the number of rows per
136         group.
137
138 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
139
140         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
141           Anyways, let's just follow the lead.
142
143 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
144
145         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
146         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
147         controls in GetPreferredSizeCore.
148         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
149         [Fixes bug #82488]
150
151 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
152
153         * PrintDialog.cs: Need to instantiate the form variable here too.
154
155 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
156
157         * ListView.cs: Do some reorganization to support sorting in groups,
158         by doing the layout sequentially in ListView.Items. Also add support
159         for the Default Group, which should be available for items with no
160         group assigned.
161         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
162         for storing layout info also.
163         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
164         collection, as well as providing internal members to do a traversal
165         including the default group (needed when doing layout/drawing).
166         * ThemeWin32Classic.cs: When drawing group headers use internal
167         ListViewGroupCollection members to take into account the default
168         group.
169
170 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
171
172         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
173
174 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
175
176         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
177         been created.  If handle is created, we want arror keys.  If we are editing
178         a node, we want things like enter, esc, home, end, page up, page down.
179         Allows Esc to work for FolderBrowserDialog.
180
181 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
182
183         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
184         they close when ESC is pressed.  Thanks Andy!
185
186 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
187
188         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
189         This way we can tell if this is a CommonDialog provided with mono, or one
190         that is being implemented outside by a developer.  If it is an external one,
191         the developer is responsible for showing their own form.  We were showing
192         our blank form after the developer showed his.
193         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
194         PageSetupDialog.cs: Instantiate form variable in our constructor.
195         [Fixes bug #82531]
196
197 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
198
199         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
200         and always return true.  [Fixes bug #81616]
201
202 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
203
204         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
205         TextBox.  [Fixes bug #82549]
206
207 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
208
209         * FileDialog.cs: When Save/Open is clicked and no filename is selected
210         or entered then do not close the dialog. Fixes bug #82539. Removed
211         CWLs.
212
213 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
214
215         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
216         code to this method. It is calling every time filter changes. This method
217         will help to fix the bug #80887.
218
219 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
220
221         * CheckBox.cs: Implement AutoSize calculation.
222
223 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
224
225         * CheckBox.cs: Use new 2.0 rendering for 2.0.
226         * Theme.cs: Method declarations for 2.0 rendering path.
227         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
228
229 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
230
231         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
232
233 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
234
235         * ListViewGroupCollection.cs: Implement AddRange the right way, to
236         only call Redraw on the parent one time.
237
238 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
239
240         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
241           GetClipboardContent.
242         * DataGridViewCell.cs: Implemented GetClipboardContent,
243           GetEditedFormattedValue, GetFormattedValue.
244         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
245
246 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
247
248         * TableLayoutStyleCollection.cs: corcompare fix.
249
250 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
251
252         * DataObject.cs: Implemented retrieval of convertible / not convertible
253           objects.
254
255 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
256
257         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
258         ourselves.  This ensures the entire old bounds are repainted, in case our new
259         size is smaller.  [Fixes bug #82518]
260
261 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
262
263         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
264         flag to make fast handle of mouse events, without this the mouse move is
265         handled in some manner, whether it is a mouse move or not. Fixes #81588.
266
267 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
268
269         * ListView.cs: When doing layout calculations don't use a ref
270         param to keep the current item; instead use its Index value (this 
271         is specially important when doing the layout with Groups
272         and Items being sparse). Also don't take into account items added to
273         the Group but not yet added to the main ListView.Items collection.
274
275 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
276
277         * ListViewGroupCollection.cs: Forgot to mimic an issue
278         in the indexer (don't assign the ListView owner for new values).
279
280 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
281
282         * ListViewGroupCollection.cs: Make the string indexer use
283         the int based indexer to re-use code, instead of duplicate the code.
284         Also Redraw as needed and take into account null values.
285
286 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
287
288         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
289         [Fixes bug #82481]
290
291 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
292
293         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
294         when other buttons are clicked or navigated to.
295
296 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
297
298         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
299           it's XplatUIX11 that attaches them.
300
301 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
302
303         * DataGridView.cs: If a column has been added, recreate the editing row.
304           Fixes #82226.
305
306 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
307
308         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
309           of the tag to draw. Makes disappearing text show up again.
310
311 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
312
313         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
314           Contents. Fixes #82487.
315
316 2007-08-19  Andreia Gaita  <avidigal@novell.com>
317
318         * Added HtmlElement.cs, HtmlElementCollection.cs, 
319           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
320           
321 2007-08-19  Andreia Gaita  <avidigal@novell.com>
322
323         * BindingSource.cs: Implement this, dispose and getenumerator.
324         * DataGridViewRowCollection.cs: Move the InvalidOperationException
325         out of AddInternal, throw it only on public Add calls. The 
326         UsingWebBrowser sample was blowing up with this when setting the
327         DataSource after adding DataBindings, so it's likely that .net
328         only throws this exception when Add is called directly. 
329         
330         * ToolStripControlHost.cs: Return the hosted control's text
331         property, and not the ToolStripItem one (it would always return
332         the initial value).
333         
334         * HtmlDocument.cs: Implement GetElementById and All
335         * WebBrowser.cs: Remove exception on set_DocumentStream.        
336
337 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
338
339         * Form.cs: Fix the max and min value for opacity (0~1).
340
341 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
342
343         [Fixes #80118]
344         * DataGridTableStyle.cs: Default header font is now null, on getter it 
345         returns datagrid font when is null. On setter permits null.
346
347         * DataGrid.cs:
348         - When ResetHeaderFont set header font to null.
349         - On EndInit set grid_style.DataGrid.
350
351 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
352
353         * TabControl.cs: Fix regression in default padding x.
354
355 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
356
357         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
358
359 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
360
361         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
362         not 2. Fixes #82229.
363
364 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
365
366         * TabControl.cs: Fix tab size when image height is less than text height.
367         Partially fixes #81837.
368
369 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
370
371         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
372         "alt + tab". It works only for Win32, for X11 theres no way to remove window
373         from taskbar and keep it on "alt_tab". Fixes #81722.
374
375 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
376
377         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
378         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
379         Fixes #80877 and #79418.
380
381 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
382
383         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
384         between position and one of the screen borders. Fixes #82349.
385
386 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
387
388         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
389         the MessageBox in the taskbar. Fixes #82457.
390
391 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
392
393         * MessageBox.cs: Fix form size when icon is set and text height is bigger
394         than icon. Fixes #82468.
395
396 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
397
398         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
399         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
400           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
401           Refactored HandleNCCalcSize somewhat to avoid code duplication.
402         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
403           FormBorderStyle to decide if we're calculating a new size from the
404           client size or not. CreateParams: Don't fake tool windows, only the X11
405           backend manages toolwindows manually.
406
407 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
408
409         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
410         ObjectDisposedException.
411
412 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
413
414         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
415         in OnLoad should not have any effect.  [Fixes bug #82470]
416
417 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
418
419         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
420         paint for controls that create their own ToolTipWindow instead of
421         going through ToolTip.
422
423 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
424
425         * ToolTip.cs: Make Hide internal instead of public to match MS API.
426
427 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
428
429         * ListViewGroupCollection.cs: Use generic List instead of an
430         ArrayList, since this collection is 2.0 only.
431
432 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
433
434         * ToolTip.cs (Hide): Made public to make the build work (should
435         this not be public?).
436
437 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
438
439         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
440         ToolTipWindow.
441         * ToolTip.cs: Add an internal Visible property to facilitate transition.
442
443 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
444
445         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
446         PopupEventHandler.cs: Make these internal for 1.1.
447         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
448         use ToolTipWindow internals.
449         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
450         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
451
452 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
453
454         * X11Dnd.cs: Add a null check.
455
456 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
457
458         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
459           nothing else succeeds. Fixes #82453.
460
461 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
462
463         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
464           rectangle if we're painting to another window than the one the paint
465           message was generated on. Simplify the code somewhat, which makes
466           PaintEventEnd also simpler.
467
468 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
469
470         * Control.cs: When changing parent of a form, let the form decide whether
471           XplatUI.SetParent should be called or not.
472         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
473           recreating the handle. If the new parent's handle isn't created, don't
474           recreate our handle, just destroy it. CreateParams: Check if the
475           parent's handle is created before fetching it.
476
477 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
478
479         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
480           Update calls to PaintEventStart/End to take a Message argument.
481         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
482           take a Message argument.
483         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
484           Message argument, and handle the case where we don't paint to the window
485           for which the paint message was generated.
486
487 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
488
489         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
490           Marshal.GetLastWin32Error. Plug nasty memory leak in
491           PaintEventStart/End, we were creating a DC we weren't releasing.
492
493 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
494
495         * ListView.cs: Add Groups support in Details view. Also have a small
496         method to do the layout of the group header. Don't use a separate
497         method to do the groups calculation in Icons view, since our methods
498         are now a little simpler.
499         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
500         `Bounds'.
501         * ThemeWin32Classic.cs: Likewise.
502
503 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
504
505         * Application.cs: Add FilterMessage method and rework our message loop
506         logic to use it.
507
508 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
509
510         * Application.cs: Add some methods and stub a few methods that are
511         pretty much never used.
512
513 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
514
515         * TreeNode.cs: Add some serialization methods.
516
517 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
518
519         * ListView.cs: In ListViewItemCollection have a 
520         'is_main_collection' field to not modify ListViewItem.ListView
521         when using it as ListViewGroup.Items (and not ListView.Items)
522         and also don't modify selection state (.Net behaviour). 
523         Instead, set group for items contained in a ListViewGroup.Items collection.
524         * ListViewItem.cs: Simplify some code in Group setter.
525         * ListViewGroup.cs: use the new .ctor to pass the current instance
526         to the ItemsCollection.
527         * ListViewGroup.cs: Set the ListView property for ListViewGroup
528         instances when adding/removing. Also make Remove use RemoveAt, which
529         should perform better.
530
531 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
532
533         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
534         that crept into the 1.1 profile.
535
536 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
537
538         * ToolBarButton.cs: Implement ImageKey.
539
540 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
541
542         * ToolBar.cs: Implement ScaleControl/ScaleCore.
543
544 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
545
546         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
547           created, it might have gotten destroyed since we last checked. Fixes
548           #82405.
549
550 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
551
552         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
553         tooltip will hide when mouse is moved off the control.
554         [Fixes bug #82407]
555
556 2007-08-11 Andreia Gaita <avidigal@novell.com>
557
558         * WebBrowserBase.cs, WebBrowser.cs: add implementation
559         using Mono.Mozilla for loading and navigating webcontrol
560         with xulrunner.
561         The initial implementation was done on 
562         /trunk/mozembed/tests/browser , and copied here.
563
564 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
565
566         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
567         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
568
569 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
570
571         * DataGridView.cs: Add support for an editing row. Fixes #82226.
572           RowTemplateFull: throw an exception if a column doesn't have a template.
573         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
574           add the row just before it.
575         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
576           selected.
577         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
578           DataGridView field to be able to reach the grid's editing row.
579
580 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
581
582         * ToolTip.cs: If the control's handle hasn't been created when it has a
583         tooltip set on it, don't check to see if we need to show the tooltip.  This
584         check was causing the control's handle to be created.
585         [Fixes bug #82399]
586
587 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
588
589         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
590                                         1.1             2.0
591         Handle Not Created      -1              0
592         Handle Created          0               0
593         [Fixes bug #82371]
594
595 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
596
597         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
598         [Fixes bug #82348]
599
600 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
601
602         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
603         * ToolTip.cs: Implement some properties and owner draw.
604
605 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
606
607         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
608           show them again, since setting visibility causes a paint, causing an
609           endless loop (instead use a temporary and set it all when it's known if
610           they should be shown or not). Fixes #79265.
611
612 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
613
614         * DataGridView.cs: Only do a full column/row selection if a header was
615           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
616           isn't pressed, deselect everything before selecting something.
617
618 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
619
620         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
621           behaviour according to bug #81075 - they are returned in the order they
622           are selected. Fix HitTest to check if the point is within any of the
623           headers. Allow for row/column selection when in ColumnHeader or
624           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
625           the row and column to call when their selected state changes, and
626           updated selected_[rows|columns] whenever SetSelected* is called.
627         * DataGridViewBand.cs: Initialize isRow correctly. Call
628           SetSelected[Row|Column]CoreInternal when the selected state changes, and
629           add a SelectedInternal to avoid StackOverflows.
630         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
631           ReadOnly no matter what.
632         * DataGridViewSelectedColumnCollection.cs,
633           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
634           the items in reverse order (just as MS does...)
635
636 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
637
638         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
639         itself, not part of a mnemonic.  [Fixes bug #82378]
640
641 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
642
643         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
644         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
645           the DGV, the column, the row, or the cell itself is readonly.
646
647 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
648
649         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
650         OSVersion.Platform.
651         * FileDialog.cs: Same.
652         * TextRendered.cs: Same.
653         * FolderBrowserDialog.cs: Same.
654         * TextBoxBase.cs: Same.
655         * Application.cs: Same.
656         * Cursors.cs: Same.
657         * ThemeClearLooks.cs: Same.
658
659 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
660
661         * XplatUI.cs: Added RunningOnUnix property to be used by controls
662         instead of duplicating these checks everywhere.
663         * FileDialog.cs: Use case-insensitive comparison for populating the
664         DirComboBox when not running on unix. Fixes bug #82385.
665         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
666         "Look in".
667
668 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
669
670         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
671           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
672           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
673           cell and column selection with ctrl and shift pressed. Call the correct
674           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
675           the corresponding virtual method (PaintBackground to paint background,
676           etc).
677         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
678           either the column, row or the cell itself is selected.
679         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
680           OnRowsAdded.
681         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
682           here. When the row is selected, don't select all cells. Each cell now
683           queries the row to see if the row is selected.
684
685 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
686
687         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
688           SelectionMode.
689
690 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
691
692         * ListView.cs: In ListViewItemsCollection check that owner is
693         not null before trying to access it (this happens quite often
694         using Groups). Also don't duplicate calls by calling CollectionChanged
695         method.
696
697 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
698
699         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
700         when we are dismissed to clear keyboard mnemonics.
701         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
702         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
703         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
704         was activated by keyboard or the OS tells us to always draw them.
705         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
706         [Fixes bugs #82376, #82377]
707
708 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
709
710         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
711         shot at having it because Alt was pressed.
712         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
713         the first real menu item.
714         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
715         a mnemonic if Text is null.
716         [Fixes bug #82374]
717
718 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
719
720         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
721         search do check whether the item is already contained in the
722         collection or not; instead check if the owner of the item is the same
723         as ours. Also, remove a redundant check in the same method. 
724
725 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
726
727         * Control.cs: Allow the clip region to be set back to null.
728         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
729         [Fixes button still showing up in bug #82370 when Show Through is turned off]
730
731 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
732
733         * GridEntry.cs: Add a null check.
734         * PropertyGrid.cs: When checking for existing grid entries, ignore category
735           entries. Fixes #82297.
736
737 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
738
739         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
740         for 2.0.
741
742 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
743
744         * ListBox.cs: Implement ScaleControl.
745
746 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
747
748         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
749           have a menu strip.
750         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
751           parent has a menu strip. Fixes #81689.
752
753 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
754
755         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
756           moments, so apply some fuzzy logic to determine if the mouse is still
757           inside a control or not. Fixes #82288 (for the third time).
758
759 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
760
761         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
762           Don't create the child if it has been disposed already (may happen if
763           the user closes the form the Load event).
764
765 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
766
767         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
768           #82288.
769
770 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
771
772         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
773           might call us after we've been destroyed, in which case our own private
774           parent field is null. Fixes #82326.
775
776 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
777
778         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
779         check for setting the dropdown's owner.
780
781 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
782
783         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
784         before removing system menu items.
785
786 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
787
788         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
789         folding.
790         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
791         folding.
792         * ToolStrip.cs: Add a null check to mnemonics.
793         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
794         no ConnectedArea.
795         [Fixes most of bug #81689]
796
797 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
798
799         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
800
801 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
802
803         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
804
805 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
806
807         * DataGridViewCell.cs: EditType: returns
808           DataGridViewTextBoxEditingControl always.
809
810 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
811
812         * TextRenderer.cs: Remove the LineLimit string format flag from the
813         DrawString fallback method so that things like buttons that aren't
814         tall enough to draw a full line will still draw part of the text.
815         [Fixes part of bug #82272]
816
817 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
818
819         * DataGridView.cs: Implemented AutoResizeColumn(s).
820         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
821           according to the Alignment.
822         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
823           Implement alignment and padding when painting.
824         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
825           exists.
826         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
827           way.
828         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
829           a column is added.
830
831 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
832
833         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
834         which is internal.
835
836 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
837
838         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
839         hide GetPreferredSize from public API.
840         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
841         * ToolStripItem.cs: Stub out drag and drop methods and events.
842         * ToolStripManager.cs: Stub out Save/LoadSettings.
843         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
844         * ToolStripPanel.cs: Fix corcompare error.
845         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
846         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
847         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
848
849 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
850
851         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
852         bounds height instead of PreferredHeight.  Puts things back the way 
853         they were for height while still fixing the width.  Fixes broken unit
854         tests.
855
856 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
857
858         * Binding.cs: Implement 2.0 constructors and add a null check.
859
860 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
861
862         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
863           and fix row index (off by one).
864
865 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
866
867         * PropertyGridView.cs: Remove debug output.
868
869 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
870
871         * Control.cs: We need to reset the is_created flags when the handle is
872           destroyed. Fixes #82187.
873         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
874           client coordinates if the window doesn't have a parent.
875           Win32GetParent returns the parent or the owner, and for top-level
876           windows with no parent (but with an owner) we were calculating the
877           location from the location of the owner.
878         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
879           form has been disposed.
880         * MdiClient.cs: Add a null-check.
881
882 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
883
884         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
885         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
886         so we can provide an implementation that returns the current width
887         and preferred height.  Allows anchor = right to work with TextBox 2.0.
888         [Fixes bug #82233]
889
890 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
891
892         * ListView.cs: Add support for navigating items in Groups mode, by
893         creating a big matrix containing all rows and cols of all groups. When
894         are in other mode than Details, pressing Up should have a similar
895         behaviour as that one of Down (moving to the next available column if
896         current one doesn't have an item in the requested row). Also, don't
897         proceed to use groups if ShowGroups is false.
898         * ListViewGroup.cs: Add an internal int field to store the starting
899         row of the group (used by the big matrix used for navigating the
900         ListView).
901         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
902         false.
903
904 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
905
906         * ToolStripDropDown.cs: When we do Show, start with the 
907         DefaultDropDownDirection, but if our popup menu is going to off-screen,
908         modify the direction to keep it on screen.  [Fixes bug #82210]
909
910 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
911
912         * FileDialog.cs: Accept any FilterIndex value, and store it
913         unmodified. When FilterIndex is less than 1, or greater than number
914         of filters, then default to first filter. Only add filter extension to
915         file if user did not specifiy an extension. When type of dialog is
916         OpenFileDialog and DefaultExt is set, then only use filter extension
917         if: CheckFileExists is true and no file wih the default extension
918         exists, or CheckFileExists is false, and user specified file does not
919         exist. When CheckFileExists is true, then add first extension of 
920         selected filter that matches existing file. Perform checks for
921         existing file, overwrite and create after extension has been added to
922         file name. When CheckFileExists is true and type is SaveFileDialog,
923         then only consider first filter extension if DefaultExt is set.
924         When CheckFileExists is true, then ignore DefaultExt if file with that
925         extension does not exist. Also perform check for existing file when
926         type is SaveFileDialog. Changed some field to constants.
927
928 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
929
930         * ListView.cs: Take into account the region used by header
931         control when doing the vertical scroll (this way we invalidate
932         the precise area, and don't get any dirty one).
933
934 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
935
936         * FileDialog.cs: Check for valid filterIndex on button open/save. 
937         Fixes #82184.
938
939 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
940
941         * ListView.cs: Update some layout calculations in details view
942         and clean the code in a pair of assignations.
943
944 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
945
946         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
947         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
948         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
949         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
950
951 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
952
953         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
954         performance of thread-safe Graphic methods.  (Thanks rolf!)
955
956 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
957
958         * ListView.cs: When doing the layout calculations, don't calculate
959         scroll bars before handle is created. This is unnecessary and also
960         calculating them before handle creation item causes a number of random
961         bugs (which begin to appear after Chris' big patch for handle creation
962         fixes). 
963
964 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
965
966         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
967         for things that don't have a Graphics object.  Currently, things just use
968         the static Hwnd.bmp_g which is not thread safe.
969
970 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
971
972         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
973           dialog. Fixes #82187.
974
975 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
976
977         * DataGridViewElement.cs: Initialize state.
978         * DataGridView.cs: Forward a few Mouse events to cells. Add
979           GetRowInternal and GetCellInternal that doesn't unshare rows.
980           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
981           don't use the index, but look it up. Add
982           DataGridViewControlCollection.RemoveInternal to remove controls
983           that Remove won't remove (scrollbars, edit control).
984         * DataGridViewColumn.cs: Initialize State correctly.
985         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
986           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
987           implementing this.
988         * DataGridViewRowCollection.cs: Implemented shared rows.
989         * DataGridViewRow.cs: Throw exceptions as MS do.
990         * DataGridViewCell.cs: A few properties are implemented by a
991           Get<Property> method, so move implementation there and remove the
992           NIEX in the method. Add a bunch of OnXInternal that DataGridView
993           calls when necessary.
994         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
995           complicates matters.
996         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
997           unshare any rows.
998
999 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1000
1001         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
1002         the children controls.  Instead, we will just set up the proper docking for the
1003         children controls so we don't have to worry about it.  [Fixes bug #82188]
1004
1005 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1006
1007         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
1008         canceling and correct Before/AfterLabelEdit properties as layed out in bug
1009         81847.  [Fixes bug #81847]
1010
1011 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
1012
1013         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
1014         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
1015         an explicit size based on the design-time size of the text.  Since our fonts
1016         may not match this explicit size, we tend to cut off the ends of people's labels.
1017
1018 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
1019
1020         * Menu.cs: Add some missing methods to MenuItemCollection.
1021
1022 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1023
1024         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
1025         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
1026         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
1027         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
1028         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
1029         * DataGridViewElement.cs: State defaults to Visible.
1030         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
1031         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
1032
1033 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1034
1035         * Control.cs: Minor 1.1 corcompare fix.
1036
1037 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1038
1039         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
1040         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
1041
1042 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1043
1044         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
1045           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
1046           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
1047           DataGridViewSelectedColumnCollection.cs,
1048           DataGridViewSelectedRowCollection.cs: Corcompare work.
1049
1050 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1051
1052         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
1053         it is autoset by VS2005 designer and the effect is barely noticeable.
1054
1055 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
1056
1057         * TreeView.cs: Implement HitTest.
1058
1059 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1060
1061         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
1062           manually adding and removing the control from the Controls
1063           collecftion.
1064         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
1065           EditingControlInternal property that tracks the editing control.
1066           Always keeping the scrollbars in the Controls collection, as MS
1067           testing confirms is the right behaviour.
1068
1069 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1070
1071         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
1072           according to MSDN and new test.
1073
1074 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1075
1076         * TreeNode.cs: Implement ToolTipText.
1077         * TreeView.cs: Implement tooltips, NodeMouse* events.
1078
1079 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1080
1081         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
1082
1083 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1084
1085         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
1086         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
1087
1088 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
1089
1090         * Control.cs, Form.cs, ContainerControl.cs,
1091         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
1092         for misc properties.
1093
1094 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
1095
1096         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
1097         * TreeView.cs: Implement StateImageList.
1098
1099 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1100
1101         * Form.cs: Don't check if the current form is the active form before
1102           activating it. Fixes #81904.
1103
1104 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1105
1106         * Form.cs: Don't check if the current form is the active form before
1107           activating it. Fixes #81904.
1108
1109 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1110
1111         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
1112
1113 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1114
1115         * Form.cs: Don't try to position the form after loading if the form was
1116           disposed. Fixes #81969.
1117
1118 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1119
1120         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
1121           properties. Had to change ToolBar into ToolStrip, which required a
1122           few #ifs.
1123
1124 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1125
1126         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
1127           resized, fixes part of #79829 (vertical lines in toolbar).
1128           PropertyGrid: Refactored Populate* to something that's easier to
1129           follow at least for me, as well as splitting it up into several new
1130           methods, required to update only subitems when something has
1131           changed by a popup editor or listbox. Don't use events to check
1132           when any values are changed, since the events are unreliable (we're
1133           changing the objects the events are registered with, and if the
1134           event handling requires the objects to be immutable (objects stored
1135           in hashtables for instance), the events will never be raised).
1136         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
1137           everytime we change a value, since events are unreliable.
1138           DropDownButtonClicked: For the same reason don't compare objects to
1139           check if it has changed or not, it would require all objects to
1140           derive Equals. Fix dialog location on windows, MS is doing weird
1141           things when creating parented forms.
1142         * GridEntry.cs: Add a SelectedObject setter.
1143
1144 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1145
1146         * TreeNode.cs: Add some corcompare attributes.
1147         * TreeNodeCollection.cs: Implement 2.0 stuffs.
1148         * TreeView.cs: Implement some 2.0 stuffs.
1149
1150 2007-07-18  Andreia Gaita  <avidigal@novell.com>
1151
1152         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
1153         for moma.
1154
1155 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
1156
1157         * ListBox.cs: Implement custom tab offsets.
1158
1159 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1160
1161         * ToolStripContentPanel.cs: Support System renderer.
1162         * ToolStripControlHost.cs: Set RightToLeft to default to No.
1163
1164 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1165
1166         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
1167
1168 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1169
1170         * CheckBox.cs: Chain TextAlign to base implementation instead of
1171         maintaining another one.
1172
1173 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1174
1175         * ButtonBase.cs: Fix an incorrect string constant.
1176
1177 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1178
1179         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
1180         of creating one for measuring strings.
1181
1182 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
1183
1184         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
1185         Implement MaxItemSize.
1186
1187 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
1188
1189         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
1190         for DeviceContext.  Instead, use the static one available in Hwnd.
1191         Informal tests show this saves about 500k on formtest.exe.
1192
1193 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
1194
1195         * ContainerControl.cs: Implement 2.0 AutoScaling.
1196
1197 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1198
1199         * ComboBox.cs: Work around bug #82120 (bug in mcs).
1200
1201 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1202
1203         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
1204         Darken the focus color.
1205
1206 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
1207
1208         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
1209         for the checkbox.
1210         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
1211         X, Y instead of a rect for drawing text.
1212         - For ControlPaint.DrawCheckBox, center the check a little better when the
1213         checkbox is odd width.  When drawing a flat checkbox, use a white background
1214         when state != inactive.
1215         [Fixes bugs #82097, 82100]
1216
1217 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
1218
1219         * ListControl.cs: When changing CurrencyManager, disconnect event
1220         handlers from previous one. Fixes bug #81771. Code formatting.
1221
1222 2007-07-15  Andreia Gaita <avidigal@novell.com>
1223
1224         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
1225         full preview invalidation from layout invalidation, and only invalidate
1226         the layout when setting zoom or other properties. Invalidation should
1227         always be done even when resetting properties with the same values as
1228         what is there. Fixes #81744 and #79830.
1229
1230 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1231
1232         * ListView.cs: Implement initial support for Groups. Split some of the
1233         LayoutIcons code to render a partial list of the items (needed by
1234         items contained in ListViewGroup instances). Let the
1235         ListViewItemsCollection.ListView property be modifiable (needed when
1236         using Groups, too).
1237         * ListViewGroup.cs: Use a Bounds property rather than a Location
1238         one. Also invalidate the bounds when they get changed.
1239         * ThemeWin32Classic.cs: When drawing items, also draw the group header
1240         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
1241         method as well.
1242
1243 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1244
1245         * ListView.cs: When space gets pressed and CheckBoxes is true, 
1246         don't invoke the Begin and EndUpdate methods. We are generating 
1247         a redraw of the entire control without need to do so.
1248
1249 2007-07-13  William Holmes <billholmes54@gmail.com> 
1250
1251         * Control.cs: Changing logic in FindFlatForward and 
1252           FindFlatBackward to handle multiple Controls with 
1253           the same TabIndex.  
1254           This fixes bug 81687.
1255
1256 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
1257
1258         * OSFeature.cs: Enable IsPresent.
1259
1260 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1261
1262         * Control.cs: Don't do anything in WmShowWindow if the control has been
1263           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
1264           control is created, put on a form, the control is disposed (the
1265           form is never shown), and then we get a MapNotify, triggering a
1266           WM_SHOWWINDOW.
1267         * Form.cs: Exclude the current form when sending Deactivate to all
1268           MdiChildren.
1269         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
1270           there was a race condition because assigning the handle raises
1271           events, we can get more messages, therefore trying to assign the
1272           handle again, which would fail if any of those event handlers
1273           closed/disposed the control.
1274
1275 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1276
1277         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
1278
1279 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1280
1281         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
1282         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
1283
1284 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1285
1286         * DateTimePicker.cs: If there's no part format specifier, return an
1287           empty string.
1288
1289 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
1290
1291         * FlatButtonAppearance.cs: Throw NotSupportedException for a
1292         Transparent BorderColor.
1293
1294 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1295
1296         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
1297           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
1298           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
1299           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
1300           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
1301           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
1302           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
1303           Remove warnings.
1304         * X11Structs.cs: Remove warnings, add ToString implementations.
1305
1306 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1307
1308         * XplatUIX11.cs: Translate min/max size according to the actual min/max
1309           size, and not the current size. Fixes #81798.
1310
1311 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1312
1313         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
1314           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
1315           to the control yet).
1316
1317 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1318
1319         * PropertyGridTextBox.cs: Add a method that sends any forwarded
1320           mousedowns to the contained textbox.
1321         * X11Structs.cs: More ToString implementation.
1322         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
1323           #81791.
1324
1325 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1326
1327         * PropertyGridView.cs: Add a null-check, fixes a few tests.
1328
1329 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
1330
1331         * TableLayoutPanelCellPosition.cs: TypeConverter.
1332
1333 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1334
1335         [ Fixes #79761]
1336         
1337         * PropertyGridTextBox.cs: Propagate any color changes to all contained
1338           controls.
1339         * PropertyGridView.cs: A few color fixes.
1340
1341 2007-07-10  Jackson Harper  <jackson@ximian.com>
1342
1343         * TextControl.cs: Remove some old unused text formatting stuff.
1344
1345 2007-07-10  Jackson Harper  <jackson@ximian.com>
1346
1347         * TreeView.cs: Update full row select invalidation to match the
1348         newer DrawSelection... method.
1349         - Make sure to invalidate the entire width when selecting a new
1350         node, if we have full row selection enabled.
1351
1352 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1353
1354         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
1355           display of properties again.
1356
1357 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
1358
1359         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
1360         to existing collections.
1361
1362 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1363
1364         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
1365         that changed between 1.1 and 2.0.
1366
1367 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1368
1369         * PowerStatus.cs: Added.  This is just a data class, it is filled
1370         in by SystemInformation.
1371
1372 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1373
1374         * Message.cs: Add op_Equality and op_Inequality.
1375
1376 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1377
1378         * MenuStrip.cs: Finish corcompare work.
1379
1380 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1381
1382         * LinkArea.cs: Add op_Equality and op_Inequality.
1383
1384 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1385
1386         * Application.cs: Add MessageLoopCallback delegate.
1387
1388 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1389
1390         * ListBox.cs: First set of 2.0 stuffs.
1391
1392 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
1393
1394         * Control.cs: Make an internal Height property we can override
1395         without messing up the public API.
1396         * ListBox.cs: Override HeightInternal to always return the size
1397         the user set.  [Fixes bug #80466]
1398
1399 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
1400
1401         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
1402         paint cell borders if we haven't calculated where they go yet.
1403         [Fixes bugs #82040 and #82041]
1404
1405 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1406
1407         * ListView.cs: In Details view, set the location of item_control
1408         in the (0,0) position (and the header_control is thus on the
1409         item_control). This way the Bounds of the Items are relative to the
1410         ListView control (before this, they had a Bounds value without the
1411         header_control offset, which wasn't matching .Net). Fixes #82004.
1412
1413 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1414
1415         * ListControl.cs: When DataSource is set to null, pass an empty
1416         array of object to SetItemsCore. This is done to clean the items
1417         in the ListContol children. Fixes #81788.
1418
1419 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1420
1421         * ListControl.cs: Add 2.0 stuffs.
1422
1423 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1424
1425         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
1426         Refresh is overkill for just about every repaint request.
1427
1428 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1429
1430         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
1431         so remove my custom Get method and fix the property getter.
1432
1433 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1434
1435         * Label.cs: DefaultMargin for 2.0.
1436
1437 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1438
1439         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
1440         reported issue where other controls with mnemonics would steal strokes
1441         from a selected ComboBox.
1442
1443 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1444
1445         * ScrollOrientation.cs: Make internal for 1.1.
1446         * ScrollEventArgs.cs: Add 2.0 stuffs.
1447
1448 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
1449
1450         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
1451         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
1452         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
1453
1454 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1455
1456         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
1457
1458 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1459
1460         * ListView.cs: Implement the so-incredibly broken 2.0 
1461         VirtualItemsSelectionRangeChanged event.
1462
1463 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1464
1465         * ListView.cs: When enter is pressed and selection is non empty,
1466         an OnItemActivate event must be fired.
1467
1468 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1469
1470         * ListView.cs: Store the FocusedItem information as an
1471         int instead of a ListViewItem (needed by VirtualMode).
1472         Update the calls to SetFocusedItem to pass an index instead of
1473         an item.
1474         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
1475         the Focused state from the owner ListView. 
1476
1477 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1478
1479         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
1480         property. Also, invalidate previous focused item in the mentioned
1481         property (match .Net).
1482
1483 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1484
1485         * ListView.cs: Implement 2.0 FocusedItem property setter.
1486
1487 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1488
1489         * ListView.cs: Implement 2.0 TopItem property setter.
1490
1491 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
1492
1493         * StatusStrip.cs: The default renderer is System.
1494         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
1495         if the user specifies it.
1496         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
1497         if we are ManagerRenderMode.
1498         * ToolStripMenuItem.cs: Calculate our text color better.
1499         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
1500         from Professional to the base class based off working with the System renderer.
1501         * ToolStripSystemRenderer.cs: Added.
1502
1503 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1504
1505         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
1506
1507 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
1508
1509         * ToolTip.cs: Implement 2.0 Tag property.
1510
1511 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1512
1513         * ListView.cs: Implement 2.0 HitTest methods.
1514
1515 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1516
1517         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
1518         item is under the pointer or not (sugar). Also remove the TODO
1519         regarding to the cursor changes in OneClick activation.
1520         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
1521         the subitems use the parent's HotFont if UseItemStyleForSubItems is
1522         true; otherwise don't show the underline style.
1523
1524 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1525
1526         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
1527         the code to retrieve the item at position only one time. Also
1528         change cursor when Activation is ItemActivation.OneClick as well
1529         as invalidate the item if HotTracking is true (to show/hide the
1530         underline style). Add an internal HotItemIndex property to retrieve
1531         the current hot item's index.
1532         * ListViewItem.cs: Add an internal HotFont property to cache the
1533         font used when HotTracking is true and the pointer moves within the
1534         item's borders.
1535         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
1536         HotFont depending on the hot state of the item.
1537
1538 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1539
1540         * ListView.cs: Implement 2.0 HotTracking property.
1541
1542 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1543
1544         * ToolStripControlHost.cs: If our hosted control never got created,
1545         don't try to dispose it.  [Fixes bug #81909]
1546
1547 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1548
1549         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
1550
1551 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1552
1553         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
1554
1555 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1556
1557         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
1558         Details view.
1559         * DrawListViewColumnHeaderEventArgs.cs:
1560         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
1561         using the DrawText () methods.
1562
1563 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
1564
1565         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
1566         background which got erased in my changes yesterday.
1567
1568 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1569
1570         * ListViewItem.cs: Actually set bounds for subitems in Details view
1571         (2.0 feature).
1572         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
1573         can invoke from the owner draw routines if we need it. Also, add
1574         support for Owner draw in Details view.
1575
1576 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1577
1578         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
1579         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
1580         ShowImageMargin setting, properly align text in a ToolStripLabel
1581         hosted on a ToolStripDropDown.
1582
1583 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1584
1585         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
1586         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
1587
1588 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1589
1590         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
1591
1592 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1593
1594         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
1595         location to match ToolStripMenuItems.
1596
1597 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1598
1599         * DrawListViewColumnHeaderEventArgs.cs:
1600         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
1601         column headers in ListView. 
1602
1603 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1604
1605         * UserControl.cs: Implement AutoSize.
1606
1607 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1608
1609         * DrawListViewItemEventArgs.cs:
1610         * ListView.cs:
1611         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
1612         ListView.
1613
1614 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1615
1616         * ToolStripDropDownItemAccessibleObject.cs: Added.
1617         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
1618         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
1619         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
1620         ToolStripTextBox.cs: corcompare work.
1621
1622 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1623
1624         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
1625         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
1626         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
1627                 corcompare.
1628
1629 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1630
1631         * OSFeature.cs: Add IsPresent.
1632         * PrintPreviewControl.cs: Add RightToLeft.
1633         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
1634         * SplitterPanel.cs: Add AutoSizeMode.
1635
1636 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1637
1638         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
1639         * MdiClient.cs: Add 2.0 ScaleControl.
1640         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
1641         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
1642
1643 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1644
1645         * Form.cs: Implement some scaling methods, stub some RTL methods,
1646         corcompare work.
1647
1648 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1649
1650         * Control.cs: corcompare work.
1651         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
1652
1653 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1654
1655         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
1656         ControlPaint 2.0 stuffs.
1657
1658 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1659
1660         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
1661
1662 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1663
1664         * UpDownBase.cs: Add 2.0 stuffs.
1665
1666 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1667
1668         * NumericUpDown.cs: Add 2.0 stuffs.
1669
1670 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1671
1672         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
1673
1674 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1675
1676         * ErrorProvider.cs: Implement 2.0 stuffs.
1677
1678 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1679
1680         * DomainUpDown.cs: Implement 2.0 stuffs.
1681
1682 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1683
1684         * CheckedListBox.cs: Fix RefreshItems signature.
1685
1686 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1687
1688         * PictureBox.cs: Implement 2.0 stuffs.
1689
1690 2007-06-12  Andreia Gaita  <avidigal@novell.com>
1691         
1692         * TabControl.cs: Check if there are tabpages before checking
1693         the selected index - fix #81802 (font changes raise a ResizeTabs
1694         call on controls.add, which blew up nicely with no tabpages)
1695
1696 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1697
1698         * ListView.cs:
1699         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
1700
1701 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1702
1703         * ListView.cs:
1704         * ListViewItem.cs: In VirtualMode the selection information
1705         resides in the ListView, rather than in the Items. Also, throw
1706         InvalidOperationExceptions when VirtualMode is being used and
1707         CheckedItemCollection is accessed.
1708
1709 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1710
1711         * ComboBox.cs: Add ScaleControl.
1712
1713 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1714
1715         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
1716
1717 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1718
1719         * GroupBox.cs: Add 2.0 stuffs.
1720
1721 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1722
1723         * Panel.cs: Add autosize properties/event.
1724
1725 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1726
1727         * Control.cs:
1728         - When we remove a control, remove it from the collection before performing the layout.
1729         - Setup an internal property for explicit_bounds.
1730         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
1731         - Perform a layout when we set a new AutoSizeMode.
1732
1733 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1734
1735         * ScrollableControl.cs: Add 2.0 stuffs.
1736
1737 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1738
1739         * ScrollBar.cs: Add 2.0 stuffs.
1740
1741 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1742
1743         * Splitter.cs: Add 2.0 stuffs.
1744
1745 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1746
1747         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
1748         to have BindingContext simply use base implementation.
1749
1750 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1751
1752         * ColumnHeader.cs: corcompare fix.
1753
1754 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1755
1756         * Button.cs: corcompare fixes.
1757         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
1758
1759 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1760
1761         * Button.cs: Override GetPreferredSizeCore.
1762         * ButtonBase.cs: PerformLayout after changing properties that can affect
1763         AutoSize.  Simplify some mouse/keyboard code.
1764         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
1765         * MouseEventArgs.cs: Make Location internal for 1.1.
1766         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
1767         * Theme.cs: Add CalculateButtonAutoSize.
1768         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
1769
1770 2007-06-05  Miguel de Icaza  <miguel@novell.com>
1771
1772         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
1773
1774 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1775
1776         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
1777         since we can get different item instances every time we retrieve it.
1778
1779 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1780
1781         * ListView.cs: Work around for #81602, since an unkown an pretty
1782         infrequent condition appears only in some systems (old linux boxes, it
1783         seems).
1784
1785 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1786
1787         * Button.cs: Completely reformat and a little refactor to bring
1788         this closer to Mono circa 2007.
1789
1790 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1791
1792         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
1793         to be ButtonBase.Invalidate.
1794
1795 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1796
1797         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
1798
1799 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1800
1801         * ButtonBase.cs: Completely reformat and a little refactor to bring
1802         this closer to Mono circa 2007.
1803
1804 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
1805
1806         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
1807         values for autosize. Fixes #80137.
1808
1809 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1810
1811         * Control.cs: Don't perform layout when AutoSize changes.
1812         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
1813         directly when autosizing, use SetBounds with BoundsSpecified.None.
1814         Fixes unit tests my last commit broke.
1815
1816 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1817
1818         * Control.cs: Perform layout when AutoSize changes.
1819         * Form.cs: Implement AutoSizing.
1820
1821 2007-06-01  Chris Toshok  <toshok@ximian.com>
1822
1823         * DataGrid.cs: remove the XXX'ed check at the top of
1824         ProcessGridKey.  fixes #80464.
1825
1826 2007-06-01  Chris Toshok  <toshok@ximian.com>
1827
1828         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
1829         adding idempotent (add/remove in Edit()), and also make sure we
1830         don't add it until after we set the text, so it's not tripped in
1831         Edit().  Fixes unit test regression.
1832
1833 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1834
1835         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
1836         change is user explicit, not when the layout engine moves stuff.  Fixes
1837         anchoring to bottom and right.  [Fixes bug #81790]
1838
1839 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1840
1841         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
1842
1843 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1844
1845         * ContainerControl.cs: 
1846         Fire enter event for common ancestor if it is not a ContainerControl.
1847         Send focus to the active_control and not the 'value', the active 
1848         control might have been changed in one of the events fired.     
1849         Definitely fixes #80159.
1850
1851 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1852
1853         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
1854
1855 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1856
1857         * PropertyGrid.cs: Anchor the help description to the bottom of the
1858           help panel and refactor SelectGridItem into a
1859           SelectGridItemInternal that can be set to null (and update it to
1860           clear the help texts when it is set to null). Set root item to null
1861           when there's no SelectedObject. Fixes #80438.
1862         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
1863           when we're recalculating after a resize (only).
1864
1865 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1866
1867         * ListView.cs: Implement 2.0 RedrawItems method.
1868
1869 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1870
1871         * ListControl.cs: Disconnect PositionChanged and ItemChanged
1872         handlers from previous data manager when DataSource is set to
1873         null. Fixes #81771.
1874
1875 2007-05-31  Jackson Harper  <jackson@ximian.com>
1876
1877         * TextBoxBase.cs: These seem to be the correct values.
1878
1879 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
1880
1881         * FileDialog.cs: When close dialog with ok set filterindex using combobox
1882         value. Fixes #81784.
1883
1884 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
1885
1886         * Control.cs: Implement 2.0 scaling methods.
1887
1888 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1889
1890         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
1891           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
1892           corcompare issues.
1893
1894 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1895
1896         * ProgressBar.cs: Implemented missing 2.0 members.
1897
1898 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1899
1900         * Control.cs: Corcompare issues.
1901         * MessageBox.cs: Implemented missing 2.0 functions.
1902
1903 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1904
1905         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
1906           Implemented more 2.0 members.
1907
1908 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1909
1910         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
1911           null (strange, but it seems to happen when running unit tests).
1912
1913 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1914
1915         * ContainerControl.cs: Set active_control even earlier, before 
1916         firing any events, and undo it if validation returns false.
1917
1918 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1919
1920         * ContainerControl.cs: Raise Validation and Enter/Leave events
1921         even if there is no Form and set active_control earlier, just
1922         before firing Enter events (toshok's patches). Fixes #80647.
1923
1924 2007-05-30  Jackson Harper  <jackson@ximian.com>
1925
1926         * TextControl.cs: Redid the pageup/pagedown a little to simplify
1927         things and fix bug #81311.
1928
1929 2007-05-30  Jackson Harper  <jackson@ximian.com>
1930
1931         * X11Dnd.cs: Now that we have our own event loop, we need to
1932         cancel when we get a mouseup but it won't be accepted.
1933
1934 2007-05-30  Chris Toshok  <toshok@ximian.com>
1935
1936         * DataGrid.cs (set_CurrentCell): guard against negative
1937         column/row.
1938
1939         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
1940         array index syntax instead of looping over the property names.
1941
1942         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
1943         and set IsInEditOrNavigateMode to false there.
1944
1945 2007-05-30  Jackson Harper  <jackson@ximian.com>
1946
1947         * TreeView.cs: Make sure we don't get a bad visible order when
1948         setting to the top node.  Fixes some misc crashing in
1949         ControlInspector.
1950
1951 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1952
1953         * UserControl.cs: Add 2.0 AutoSizeMode
1954
1955 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1956
1957         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
1958
1959 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1960
1961         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
1962         lines. Fixes #80285. 
1963
1964 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1965
1966         * DataGridColumnStyle.cs: Add char trimming column header text format. 
1967
1968 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1969
1970         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
1971         Fixes #80147.
1972
1973 2007-05-29  Jackson Harper  <jackson@ximian.com>
1974
1975         * TreeNode.cs: Fix off by one on calculating whether or not a node
1976         is visible.
1977
1978 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
1979
1980         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
1981         * ScrollableControl.cs: Force an UpdateDistances when we move the
1982         scrollbars.
1983         [Fixes bug #80605]
1984
1985 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1986
1987         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
1988         update the page setup screen.
1989
1990 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1991
1992         * PageSetupDialog.cs: Fix landscape mode.
1993
1994 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1995
1996         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
1997         IconSizeHorizontalSpacing.
1998
1999 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2000
2001         * ListView.cs: The declaration of prev_tooltip_item should be inside
2002         a NET_2_0 conditional (avoid a warning).
2003
2004 2007-05-28  Andreia Gaita  <avidigal@novell.com>
2005
2006         * PageSetupDialog.cs: Implement PrintPreview control to display
2007         the preview thumbnail. Change unit conversion to use 
2008         PrinterUnitConvert methods.
2009         
2010         Note: there is a huge bug in ms.net where the default margins are 
2011         interpreted as centimeters (?), when in fact they are set in inches. When 
2012         loading the page setup dialog initially (ms.net), the default margins 
2013         are set to 1 inch, and the dialog shows them with value 10, when in fact 
2014         it should be 25 (properly converted). Our dialog doesn't have this bug.
2015         
2016         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
2017         RectangleF.
2018         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
2019
2020 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2021
2022         * ListView.cs:
2023         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
2024         items.
2025
2026 2007-05-28  Andreia Gaita  <avidigal@novell.com>
2027
2028         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
2029         an IntPtr on csc (it builds fine on mcs, could it be a compiler
2030         bug?), convert the ptr to Int32 first.
2031
2032 2007-05-28  Jackson Harper  <jackson@ximian.com>
2033
2034         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
2035         recieved, we will exit the dnd tracking loop.
2036
2037 2007-05-28  Jackson Harper  <jackson@ximian.com>
2038
2039         * X11Dnd.cs: Keep tracking until the xdnd finished event is
2040         recieved. TODO: I should probably stick a timer on the dropped
2041         event, and finish the drag if the XDND Finished event never shows
2042         (because some apps don't seem to send it).
2043
2044 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
2045
2046         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
2047         #81733.
2048
2049 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2050
2051         * MonthCalendar.cs: Only mark the keypresses we actually handle as
2052           handled.
2053
2054 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2055
2056         * MonthCalendar.cs: Set the size after initializing all the relevant
2057           variables. Fixes #81742.
2058
2059 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2060
2061         * KeyEventArgs.cs: Fix typo.
2062
2063 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
2064
2065         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
2066         to match MS. Fixed MinDate to only accept value less than or equal
2067         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
2068         Removed TODO's that are now verified by unit tests.
2069
2070 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
2071
2072         * TreeNodeCollection.cs: Minor corrections to exceptions to match
2073         MS.
2074
2075 2007-05-25  Jackson Harper  <jackson@ximian.com>
2076
2077         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
2078         it's own message loop.
2079         * XplatUIX11.cs: Remove some of the dnd hooks
2080
2081 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
2082
2083         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
2084         instead of MinimizedWindowSize.
2085
2086 2007-05-25  Jackson Harper  <jackson@ximian.com>
2087
2088         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
2089
2090 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2091
2092         * KeyEventArgs.cs: Added SuppressKeyPress.
2093         * Control.cs: Added support for SuppressKeyPress.
2094
2095 2007-05-24  Andreia Gaita  <avidigal@novell.com>
2096
2097         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
2098         problems with PieChart. suppress_validation should not be a counter,
2099         if there are several BeginInit calls, the first EndInit will 
2100         activate validation. Fix exceptions thrown by set_Value.
2101         * UpDownBase.cs: ValidateText only if it's the user editing it.
2102
2103 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2104
2105         * ListControl.cs: FilterItemOnProperty should return the filtered
2106         item proeprty even if DataSource is null. The same applies for
2107         GetItemText. Fixes #80427.
2108
2109 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2110
2111         * Control.cs: If a control doesn't have a parent when it's Dock is
2112         set, but it has children, it needs to do a layout.  Fixes some nested
2113         controls issues.  [Fixes bug #81199]
2114
2115 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2116
2117         * ComboBox.cs: If there are few items in the drop down list, make it
2118           the exact size the items need, no bigger. Fixes #81612.
2119
2120 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2121
2122         * Application.cs: When we have captured the keyboard for a menu,
2123         check for mouse down events in case we need to close the menu.
2124         * Control.cs, Form.cs: Remove mouse down checks for menus.
2125
2126 2007-05-24  Jackson Harper  <jackson@ximian.com>
2127
2128         * TextControl.cs: Handle tabs in non multiline mode a little
2129         differently.
2130
2131 2007-05-24  Jackson Harper  <jackson@ximian.com>
2132
2133         * TextControl.cs: We need to manually break apart tabbed text and
2134         move the tabs, since the system.drawing tabbing mechanism relies
2135         on tab stops.
2136         * TextBoxBase.cs: Move the caret properly when the user enters a
2137         tab.
2138
2139 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
2140
2141         * ContainerControl.cs: Don't check CanSelect before calling
2142         ProcessMnemonic.
2143         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
2144         release a KeyboardActive on click if it's not ours.
2145
2146 2007-05-23  Andreia Gaita  <avidigal@novell.com>
2147
2148         * ColumnHeader.cs: Add TypeConverter
2149
2150 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2151
2152         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
2153
2154 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2155
2156         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
2157
2158 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2159
2160         * LinkLabel.cs: Implement public Padding property.
2161
2162 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2163
2164         * LinkLabel.cs: Implement public FlatStyle.
2165
2166 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
2167
2168         * Control.cs: Apply patch from George to call parent.PerformLayout
2169         when Visible is changed.  [Fixes bugs #81118, 81718]
2170
2171 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2172
2173         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
2174
2175 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2176
2177         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
2178
2179 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
2180
2181         * ContextMenu.cs: Implement Collapse.
2182
2183 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
2184
2185         * ToolBarButton.cs: Implement Name.
2186
2187 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2188
2189         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
2190         use current_item, it prevents some NRE. Fixes #81675.  
2191
2192 2007-05-22  Andreia Gaita  <avidigal@novell.com>
2193
2194         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
2195         without updating the text.
2196
2197 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2198
2199         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
2200         without calling DeleteObject.  [Should fix bug #81709]
2201
2202 2007-05-22  Jackson Harper  <jackson@ximian.com>
2203
2204         * RichTextBox.cs: Set the line endings correctly, when flushing
2205         RTF text.
2206
2207 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
2208
2209         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
2210          {Width=0,Height=0}.
2211
2212 2007-05-22  Jackson Harper  <jackson@ximian.com>
2213
2214         * TreeView.cs: Setting top with a null node should set to the very
2215         top.
2216
2217 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2218
2219         * Form.cs: ShowDialog: destroy the handle when message loop is
2220           finished, matches MS behaviour. Refactor parts of WmClose into
2221           RaiseCloseEvents, that only raises events if they haven't already
2222           been raised. Fixes #81688 and #81521.
2223         * Application.cs: Don't call close on the form when exiting a modal
2224           loop, it will raise all the (Form)Closed/Closing events again if
2225           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
2226           which doesn'r raise any events it they have been raised before.
2227
2228 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
2229
2230         * Control.cs: Add OnPrint.
2231         * ToolStrip.cs: Add GetChildAtPoint.
2232         * ToolStripContainer.cs: Add OnRightToLeftChanged.
2233         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
2234
2235 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
2236
2237         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
2238
2239 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2240
2241         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
2242           isn't visible anymore. Fixes #81651.
2243
2244 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2245
2246         * Control.cs: WmShowWindow: Update children's z-order after setting
2247           their parent. SetParent may show the window, thereby corrupting
2248           z-order, since the window will be shown on top.
2249         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
2250           multiple (and redundant) WM_SHOWWINDOW messages.
2251         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
2252           event has already been raised.
2253         * Form.cs: Change is_changing_visible_state to a counter, since
2254           SetVisibleCore can be called recursively. CreateHandle: when
2255           creating mdi children, send (De)Activated events.
2256         * MdiClient.cs: Update use of is_changing_visible_state.
2257         * Application.cs: OnThreadException: Surround exception handling with
2258           try/finally to ensure we always reset the error-handling state
2259           before leaving.
2260
2261 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2262
2263         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
2264           (#81704).
2265
2266 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2267
2268         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
2269         SmallIcon views, now that we have a standarized horizontal spacing.
2270
2271         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
2272         4, just like the other views (Match .Net).
2273
2274 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
2275
2276         * Control.cs: Delay calculating anchor distances until we actually layout.
2277         Always query the WM for the actual size and location it put us at instead of
2278         only when we send negative values.
2279         [Fixes bugs #81694, 81695]
2280
2281 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2282
2283         * Application.cs: Avoid a possible stack overflow when trying to exit
2284           the application.
2285
2286 2007-05-19  Marek Safar  <marek.safar@gmail.com>
2287
2288         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
2289         enum value.
2290
2291 2007-05-19  Andreia Gaita  <avidigal@novell.com>
2292
2293         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
2294         * NumericUpDownAcceleration.cs, 
2295           NumericUpDownAccelerationCollection.cs: Added 2.0
2296           implementation.
2297
2298 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
2299
2300         * RichTextBox.cs: Recalculate the document after the ScrollBars
2301         property is changed. Fixes bug #81681.
2302
2303 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
2304
2305         * DataObject.cs: Implement 2.0 methods.
2306
2307 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2308
2309         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
2310         in the center of the checkbox, not in the left-top corner. 
2311         Fixes #80037.
2312
2313 2007-05-18  Jackson Harper  <jackson@ximian.com>
2314
2315         * RichTextBox.cs: Recalculate the document after the scrollbars
2316         property is changed.
2317         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
2318         81486.
2319
2320 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2321
2322         * CreateParams.cs: Make HasWindowManager marginally faster.
2323         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
2324           into Hwnd so that other drivers can use it as well.
2325         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
2326           the default location from Hwnd. Fixes MDI client windows always
2327           showing up at (0,0) in Windows (Win32 won't set the default
2328           location since the window styles aren't correct).
2329
2330 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
2331
2332         * TreeView.cs: Modified DoubleBuffered to just use the base
2333         implementation.
2334
2335 2007-05-18  Jackson Harper  <jackson@ximian.com>
2336
2337         * TreeView.cs: Set the top node to the last child node when
2338         expanding all
2339         - When we get focus, if there is no selected node, use the top
2340         node.
2341
2342 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
2343
2344         * KeysConverter.cs: Add CanConvertTo.
2345         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
2346         * LinkConverter.cs: Added.
2347
2348 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2349
2350         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
2351         it prevents error when file dont have write access. Fixes #81669 and #81667.  
2352
2353 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2354
2355         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
2356         button text. Fixes #79640.  
2357
2358 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2359
2360         * Control.cs: According to MSDN controls created in the designer theres 
2361         keyboard accelerators visible by default. So included check for design
2362         in ShowKeyboardCuesInternal.  
2363
2364 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2365
2366         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
2367         text. Fixes #81621.  
2368
2369 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
2370
2371         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
2372         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
2373
2374 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2375
2376         * Control.cs: Finish implementation of UI State using WmChangeUIState
2377         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
2378         in some controls to check for show_keyboard_cues to draw accell keys "_".  
2379
2380 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2381
2382         * ListBox.cs: When calculating the horizontal scrollbar
2383         in single column mode, don't use values less than 0 for
2384         Maximum. Fixes #81474.
2385
2386 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2387
2388         * ListBox.cs: Throw the some missing exceptions in
2389         ListBox.ObjectCollection methods.
2390
2391 2007-05-17  Jackson Harper  <jackson@ximian.com>
2392
2393         * TextBoxBase.cs: Recalculate the document when the word wrap
2394         value has changed. This fixes 81488.
2395
2396 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2397
2398         * Clipboard.cs: Implement missing GetText overload.
2399
2400 2007-05-17  Chris Toshok  <toshok@ximian.com>
2401
2402         * Control.cs (CheckDataBindings): remove the binding_context arg
2403         to binding.Check.
2404
2405         * CurrencyManager.cs (OnItemChanged): fix this now that
2406         BindingManagerBase is fixed. also remove the comment telling where
2407         the fix should go.  We set transfering_data to true/false around
2408         the call to PushData to keep UpdateIsBinding from being called.
2409         (ListChangedHandler): remove the extra OnMetaDataChanged call for
2410         PropertyDescriptorAdded in the 1.1 case.  The extra call is
2411         actually generated by System.Data generating 2 metadata changed
2412         events of its own per column add.  The fix should go there.  Add a
2413         comment to that affect in our test's Assert.Ignore.
2414
2415         * BindingManagerBase.cs: Rework PullData and PushData slightly.
2416         we keep a boolean flag (transfering_data) that keeps us from
2417         calling UpdateIsBinding multiple times if we re-enter either of
2418         them.
2419
2420         * ControlBindingsCollection.cs (AddCore): remove the
2421         binding_context arg to binding.Check.
2422
2423         * Binding.cs (IsBinding): don't check if we're binding here, just
2424         return our cached value.  we update it in UpdateIsBinding.
2425         (Check): don't take the binding_context arg, we'll just use our
2426         control's.  Also, for some reason MS doesn't use the data member
2427         field when getting the bindingmanager for this binding.  it just
2428         uses the datasource.  Make this method callable multiple times,
2429         and only do the is_null_desc stuff if manager.Position != -1 (so
2430         we don't get an exception accessing manager.Current).
2431         (UpdateIsBinding): move the code from IsBinding here.
2432         (PositionChangedHandler): call Check here to we can initialize
2433         things that require a non- -1 position.
2434
2435 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2436
2437         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
2438         control.
2439
2440 2007-05-17  Andreia Gaita  <avidigal@novell.com>
2441
2442         * TabControl.cs: Add 2.0 methods and events, including
2443         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
2444         * TabPage.cs: Add 2.0 methods
2445
2446 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2447
2448         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
2449         keyboard_cues is properly handled by message method.  
2450
2451 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2452
2453         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
2454
2455 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2456
2457         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
2458
2459 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
2460
2461         * Control.cs: 
2462         - WmUpdateUIState added to handle state changes, it make call to
2463         OnChangeUICues event.
2464         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
2465         SystemInformation.
2466
2467 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
2468
2469         * ImageKeyConverter.cs: Added.
2470         * TreeViewImageKeyConverter.cs: Added.
2471
2472 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2473         
2474         * ToolTips.cs: Update Text if SetToolTip is called for a control
2475         already showing the tooltip, as well as restarting its timer; show
2476         tooltip if we are inside the control bounds by the time of calling
2477         SetToolTip. Inside ShowTooltip remove the check to not show the 
2478         tooltip again for the active control (it is allowed by .Net to 
2479         show the tooltip on the same control multiple times).
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-16  Andreia Gaita <avidigal@novell.com> 
2486
2487         * ContainerControl.cs: only process tab key if there are no 
2488         modifier keys present, otherwise the control does the 
2489         tab processing, if it needs to. Fixes #81622
2490         * TabControl.cs: Fixes calculation for which tab to select on
2491         shift+ctrl+tab.
2492
2493 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2494
2495         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
2496
2497 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
2498
2499         * Control.cs: Make IsInputCharInternal to allow controls to
2500         override it and still match MS API.
2501         * TextBoxBase.cs: Override IsInputCharInternal and always
2502         return true.
2503         [Fixes bug #81616]
2504
2505 2007-05-15  Jackson Harper  <jackson@ximian.com>
2506
2507         * TextBox.cs: Disable some of the menu options when using a
2508         readonly textbox.
2509
2510 2007-05-15  Jackson Harper  <jackson@ximian.com>
2511
2512         * TextBox.cs:
2513         * TextBoxBase.cs:
2514         * RichTextBox.cs: Some new 2.0 methods
2515
2516 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
2517
2518         * FileDialog.cs: On 1.0 profile, do not support multidotted 
2519         extensions.
2520
2521 2007-05-14  Jackson Harper  <jackson@ximian.com>
2522
2523         * TextBoxBase.cs: Implement some of the new 2.0 methods.
2524         * RichTextBox.cs: We need to override these methods on 2.0.
2525         * MaskedTextBox.cs: These are implemented now
2526         * TextControl.cs: This was off by one.
2527
2528 2007-05-14  Jackson Harper  <jackson@ximian.com>
2529
2530         * TextControl.cs: Because the line endings are including in the
2531         text, we don't need to add them in anymore.
2532
2533 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2534
2535         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
2536         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
2537
2538 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2539
2540         * ToolBar.cs: Adjust size to default size when button theres no text and
2541         image, it fixes remaining issues from #81524.
2542
2543 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2544
2545         * ToolBar.cs: 
2546         - When not flat call redraw to recalculate sizes on creare handle to match
2547         win32 behavior.
2548         - Revert 77220 because it causes some regressions in toobar
2549         button.
2550
2551 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2552
2553         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
2554           now actually enters a usable state.
2555
2556 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2557
2558         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
2559         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
2560         3 buttons.
2561
2562 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2563
2564         * ToolBar.cs: Save default_size on create handle to use later for buttons
2565         without text, needed to mimic win32 behavior.
2566
2567 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2568
2569         * ToolBar.cs: Fix button layour to best fit width or height according to
2570         vertical or not. Fixes #81524.
2571
2572 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2573
2574         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
2575         toolbar size info because different styles theres different sizes.
2576         Fixes #81522.
2577
2578 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2579
2580         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
2581         if we are using checkboxes, checked is true, and we have less
2582         than two images in StateImageList; for the 1.1 in the same scenario
2583         draw the first image if we have at least one image in StateImageList.
2584         Fixes part of #81191.
2585
2586 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2587
2588         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
2589         the owner's Items collection on merge.
2590
2591 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2592
2593         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
2594         * ToolStripItemCollection.cs: Lots of fixes to when events get called
2595         and parent/owner gets changed based on gert's unit tests.
2596
2597 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2598
2599         * MaskedTextBox.cs: Started implementing parts of it.
2600
2601 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2602
2603         * ListView.cs: When clicking the checkbox on the items
2604         take into account the double clicks even if we have only
2605         one image in StateImageList (only for 1.0/1.1). Also 
2606         generate an extra change of checked state when we receive
2607         the second click on checkbox (match .Net behaviour). 
2608         Fixes part of #81191.
2609
2610 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2611
2612         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
2613
2614 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2615
2616         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
2617         even if OnLoad is overriden and base.OnLoad is not called.
2618         [Fixes bug #81582]
2619
2620 2007-05-10  Andreia Gaita  <avidigal@novell.com>
2621
2622         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
2623         shame. (I blame my ever-persisting and annoying cold)
2624
2625 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2626
2627         * ListView.cs: Don't eat navigation keys.  Let them flow through to
2628         KeyDown/KeyPress routines.  [Fixes bug #81569]
2629
2630 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2631
2632         * ListView.cs: When handling keys for selecting the item based off
2633         keyboard input, do not consider keys pressed with Alt or Control.  Also,
2634         correctly handle keys when the Shift key is down. [Fixes bug #81578]
2635
2636 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2637
2638         * Control.cs: When using UseWaitCursor, we have to store the requested
2639         Cursor to use when UseWaitCursor is turned off.
2640
2641 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2642
2643         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
2644         to false.
2645         * Application.cs: Use PreProcessControlMessage instead of
2646         PreProcessMessage.
2647         * PreProcessControlMessage.cs: Make internal for 1.1.
2648
2649 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2650
2651         * Control.cs: Add InternalContains focus property, which hast the same
2652         functionality of ContainsFocus, but also including implicit controls.
2653         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
2654         since we need to know if the focus is contained in our implicit
2655         ItemControl when calculating Layout. Fixes part of #80888.
2656
2657 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
2658
2659         * ToolTip.cs: Remove center form string alignment as it must be align to
2660         left.
2661
2662 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
2663
2664         * ToolStripItemCollection.cs: Set the new item's parent and owner
2665         in Insert like we do in Add.  [Fixes bug #81568]
2666
2667 2007-05-08  Jackson Harper  <jackson@ximian.com>
2668
2669         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
2670         - Off by one error in SetTop
2671         - Disable DoubeBuffering
2672         
2673 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2674
2675         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
2676           control as much as necessary in order to make it entirely visible,
2677           instead of centering the control in the container (matches MS
2678           behaviour). CalculateCanvasSize: we need to take the current scroll
2679           position into account when calculating the maximum canvas,
2680           otherwise the following scenario will fail: resize so that the
2681           scrollbars appear, use the scrollbars to scroll, resize again
2682           smaller, and now the canvas size is too small. Recalculate: when
2683           showing scrollbars make sure they start off at 0, and try to scroll
2684           the active control into view. Fixes #79540. HandleScrollBar: don't
2685           scroll anywhere if the scrollbar isn't visible.
2686
2687 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2688
2689         * ListView.cs: When focus changed, call Layout/Invalidate
2690         in the focused item to update the selected state (should show
2691         entire label when ListView is focused, and a part of it if is not).
2692         * ListViewItem.cs: When doing layout for LargeIcon, take into account
2693         for displaying the entire label not only the Focused state of the
2694         item, but also the Focused state of the ListView (match .Net
2695         behaviour).
2696
2697 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2698
2699         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
2700         Implement UseWaitCursor. 
2701
2702 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2703         Applying contributed patch from Sergey Volk.
2704
2705         * Clipboard.cs: Implement SetDataObject retry logic and new overload
2706         of SetDataObject.
2707         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
2708
2709 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2710
2711         * Control.cs: Implement DrawToBitmap.
2712
2713 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2714         Applying contributed patch from Stefan Noack.
2715         
2716         * Control.cs: Add [Get|Set]AutoSizeMode.
2717
2718 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2719
2720         * MdiClient.cs: Unmerge menus when the last child is closed.
2721
2722 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2723
2724         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
2725         * ToolStripManager.cs: Call Merge on DropDowns.
2726         [Fixes bug #81477]
2727
2728 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2729
2730         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
2731           uints.
2732         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
2733           visibility. We can't create forms visible, since we have to set the
2734           owner before making the form visible (otherwise Win32 will do
2735           strange things with task bar icons). The problem is that we set the
2736           internal is_visible to true before creating the control, so
2737           is_changing_visible_state is the only way of determining if we're
2738           in the process of creating the form due to setting Visible=true -
2739           this works because SetVisibleCore explicitly makes the form
2740           visibile afterwards anyways. Fixes #80775.
2741
2742 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2743
2744         * ThemeWin32Classic.cs: When drawing ListViewItems,
2745         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
2746         or LargeIcon _and_ item is not focused (match .Net behaviour).
2747
2748 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2749
2750         * Control.cs, Form.cs: Fix some obsolete method warnings.
2751
2752 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2753
2754         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
2755         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
2756
2757 2007-05-04  Andreia Gaita  <avidigal@novell.com>
2758
2759         * ContainerControl.cs: Fix active_control attribution when going
2760         up the parent chain so that the first parent container gets the control
2761         and the rest of the parent containers get the child containers (skips
2762         non-containers). Fixes #80729
2763
2764 2007-05-04  Randolph Chung  <tausq@debian.org>
2765
2766         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
2767         [Fixes bug #81499]
2768
2769 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2770
2771         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
2772           takes a size parameter, since the CreateParam's size isn't true for
2773           minimized forms. Fixes #81518,
2774
2775 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2776
2777         * Form.cs: Add OnDeactivateInternal.
2778         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
2779
2780 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2781
2782         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
2783           accessing the parent. Fixes #81508.
2784
2785 2007-05-03  Chris Toshok  <toshok@ximian.com>
2786
2787         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
2788         2.0 block, pass listposition + 1 to ChangeRecordState when a row
2789         was added before the current listposition.  Fixes the
2790         TestInsertRowBeforeCurrent unit test.
2791
2792 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
2793
2794         * Application.cs: Add RaiseIdle.
2795         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
2796         XplatUIX11.cs: Implement RaiseIdle.
2797
2798 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
2799         corcompare work: N - Z
2800         * NotifyIcon.cs
2801         * ProgressBar.cs
2802         * RadionButton.cs
2803         * ScrollableControl.cs
2804         * SplitContainer.cs
2805         * SplitterPanel.cs
2806         * StatusBar.cs
2807         * SystemInformation.cs
2808         * TabControl.cs
2809         * TableLayoutControlCollection.cs
2810         * TableLayoutPanel.cs
2811         * TabPage.cs
2812         * ToolBar.cs
2813         * ToolBarButton.cs
2814         * ToolStrip.cs
2815         * ToolStripComboBox.cs
2816         * ToolStripContainer.cs
2817         * ToolStripContentPanel.cs
2818         * ToolStripDropDown.cs
2819         * ToolStripDropDownItem.cs
2820         * ToolStripDropDownMenu.cs
2821         * ToolStripItem.cs
2822         * ToolStripItemCollection.cs
2823         * ToolStripMenuItem.cs
2824         * ToolStripPanel.cs
2825         * ToolStripSplitButton.cs
2826         * ToolTip.cs
2827         * TreeNode.cs
2828         * TreeNodeCollection.cs
2829         * TreeNodeMouseHoverEventArgs.cs
2830         * TreeView.cs
2831
2832 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
2833
2834         * ContextMenu.cs: Add public method Show with alignment property to 2.0
2835         stuff. Thanks aatdark for the patch. 
2836
2837 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2838
2839         * GridItem.cs: Implement 2.0 Tag property.
2840
2841 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
2842
2843         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
2844         count instead of Nodes.Length.  [Fixes bug #81448]
2845
2846 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2847
2848         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
2849         [Fixes bug #81506]
2850
2851 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2852         corcompare work: A - M
2853         * BindingNavigator.cs
2854         * Button.cs
2855         * ButtonBase.cs
2856         * CheckBox.cs
2857         * Control.cs
2858         * FlowLayoutPanel.cs
2859         * Form.cs
2860         * Label.cs
2861         * LinkLabel.cs
2862         * ListView.cs
2863
2864 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2865
2866         * Application.cs: Give toolstrips a chance to process mnemonics.
2867         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
2868         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
2869         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
2870
2871 2007-05-01  Jackson Harper  <jackson@ximian.com>
2872
2873         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
2874         wider area too.
2875         - Don't set the BoundsSpecified
2876
2877 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2878
2879         * Application.cs: When using the toolstrip shortcut mechanism, allow the
2880         message to pass through to a regular control if it hosted by a toolstrip.
2881         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2882         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
2883
2884 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2885
2886         * TextRenderer.cs: Use the flags argument when using the MeasureString
2887         fallback algorithm.
2888
2889 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2890
2891         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
2892         the MDI menu item.  [Fixes bug #81483]
2893
2894 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
2895
2896         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
2897         string. When setting Name to null, use zero-length string instead.
2898
2899 2007-04-29  Andreia Gaita  <avidigal@novell.com>
2900
2901         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
2902         DeselectTab). Implement missing 2.0 TabPageCollection methods
2903         (Add, ContainsKey, RemoveByKey, IndexOfKey)
2904
2905 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
2906
2907         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
2908
2909 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
2910
2911         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
2912         Fixes bug #81479. Include details of exception when LoadFile fails.
2913
2914 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
2915
2916         * DrawListViewSubItemEventArgs.cs: Added missing setter
2917
2918 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2919
2920         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
2921         Hide methods (not complete). Implement missing 2.0 OnPopup event.
2922
2923 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2924
2925         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
2926         removed in ly last commit (it was breaking the Label edit feature).
2927
2928         * ThemeWin32Classic.cs: When drawing a ListViewItem use
2929         StringAlignment.Near for LineAlignment (match .Net).
2930
2931 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2932
2933         * TabControl.cs: Change SetTab so it adds the tabpage to the list
2934         of controls if it isn't already there - was blowing up when doing
2935         tabcontrol.TabPages[i]=new TabPage(). 
2936         SetTab now does a replace by removing the page at the index. 
2937         Add a new InsertTab method that inserts a page in a given index 
2938         instead of replacing. 
2939         Implements TabPageCollection.Insert(int, TabPage).
2940
2941 2007-04-27  Chris Toshok  <toshok@ximian.com>
2942
2943         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
2944         internal handler that can be invoked from our subclasses.)  Also,
2945         add a comment to PushData about how we need to fix it.
2946
2947         * CurrencyManager.cs: tons of changes here.  trying to get things
2948         matching the behavior of .net wrt event orders (ItemChanged,
2949         CurrentChanged, PositionChanged.)  I've implemented a private .net
2950         symbol (ChangeRecordState) that appears in stack traces because
2951         it's actually easier to do this than to effective inline all its
2952         various behaviors at every call site.
2953
2954         * RelatedPropertyManager.cs: guard against an exception here by
2955         not using parent.Current if the position is set to -1 (if the
2956         parent datasource is cleared, for instance).
2957
2958         * Binding.cs: don't parse data in PushData (this might be wrong,
2959         but it jives with MS's behavior.)  Also, don't call PushData when
2960         we get a CurrentChanged event.
2961
2962 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2963
2964         * WebBrowser.cs,
2965           WebBrowserBase.cs,
2966           WebBrowserSiteBase.cs,
2967           HtmlDocument.cs: Added stubbed out classes, no real implementations 
2968           yet.
2969
2970 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2971
2972         * MainMenu.cs: In draw method without parameters call draw method with 
2973         PaintEvent, another one (just rect) adjust rectangle and we dont need it
2974         as Rect property is already adjusted. Fixes #80694.
2975
2976 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
2977
2978         * Application.cs: Need to handle keyboard menu deselection here.
2979         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
2980         navigation, allowing keyboard to work on X11.
2981         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
2982
2983 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2984
2985         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
2986         menu bar. It fixes some drawing issues in menu bar.
2987
2988 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2989
2990         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
2991         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
2992         when <alt> key is pressed.
2993
2994 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
2995
2996         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
2997         example just set visible to false and make this prevent from other problems.
2998         In SystrayAdd always remove pending expose. Fixes #81072.
2999
3000 2007-04-26  Marek Safar  <marek.safar@gmail.com>
3001
3002         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
3003         value is set.
3004
3005 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3006
3007         * ListView.cs: Added three missing 2.0 events and corresponding
3008         EventHandlers. Added the OwnerDraw property.
3009         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
3010
3011 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3012
3013         * DrawListViewItemEventArgs.cs
3014         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
3015
3016 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
3017
3018         * TextControl.cs: Fixed typo in constructor
3019
3020 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
3021
3022         * Application.cs: Create a shortcut path so that currently selected
3023         MenuStrips can intercept keyboard events without having focus.
3024         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
3025         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
3026         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
3027         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
3028         generate WM_SYSCOMMAND message in X11 for other platforms.
3029         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
3030         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
3031         * ToolStripSplitButton.cs: Add DefaultItem property.
3032         
3033 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
3034
3035         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
3036         fixes some menu draw problem on Windows with border diferent from default
3037         it also fixes #81403.
3038
3039 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3040
3041         * Form.cs: Refactor WndProc into separate methods, just like Control is
3042           doing it.
3043
3044 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3045
3046         * Control.cs: set_Text: move the call to the driver into a seperate
3047           virtual method so that Form can override it.
3048         * MaskedTextBox.cs: Corcompare fixes.
3049         * Form.cs: Override UpdateWindowText and only update the styles if the
3050           form has been shown (fixes #81405).
3051
3052 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3053
3054         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
3055         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
3056         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
3057         the form lost focus or another control was clicked.
3058
3059 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
3060
3061         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
3062         fixed.
3063
3064 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3065
3066         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
3067           DrawListViewItemEventHandler.cs,
3068           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
3069           Added.
3070         * X11Structs.cs: More ToString implementation.
3071
3072 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
3073
3074         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
3075         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
3076
3077 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3078
3079         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
3080           handle.
3081         * FormCollection.cs: Don't add a form if it's already in the
3082           collection.
3083         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
3084           according to behaviour and MSDN. The ownerWin32 is the active
3085           window at the moment when we call ShowDialog, not the context's
3086           main form (the context's main form may open another form that opens
3087           a form with ShowDialog, the win32 owner is the second form). Add
3088           and remove forms to the Application.OpenForms in other places to
3089           better match MS behaviour. Add an IsActive property that raises
3090           On(de)Activated only if the active state has changed (we were
3091           raising OnDeactivated before OnActivated while creating forms).
3092         * Application.cs: Refactor Enabling/Disabling of windows for modal
3093           dialog loops out to separate methods, and restore the thread
3094           context when we quit the method. Fixes #81407.
3095
3096 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3097
3098         * ListView.cs: In ItemControl.HandleClicks, also fire 
3099         2.0 MouseClick or MouseDoubleClick events on the parent,
3100         not only the Click/DoubleClick events.
3101
3102 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3103
3104         * TableLayoutSettings.cs: 
3105         - Added a GetControls method and a support structure to help the 
3106         TypeConverter to enumerate the controls for     serialization. 
3107         - Added a new serialization constructor. 
3108         - Added a isSerialized flag initialized to true on the 
3109         serialization constructor so that the TableLayoutPanel.LayoutSettings 
3110         setter does not throw the designed NotSupportedOperation exception
3111         when the object is built through deserialization.
3112         - Implemented GetObjectData
3113         
3114         * TableLayoutPanel.cs: Added check on LayoutSettings.
3115
3116 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3117
3118         * ListView.cs: Report Click and DoubleClick events to the parent
3119         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
3120         from breaking the click count state when using dialog forms (Control
3121         reports the clicks in a similar fashion). In the previous behaviour
3122         the last WM_LBUTTONUP message in a  double click was sent to the
3123         ListView's form, instead of the ListView, which was breaking the click
3124         count for it. Fixes #80387.
3125
3126 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
3127
3128         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
3129
3130 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3131
3132         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
3133         us from created dropdowns for menu items that do not have subitems.
3134         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
3135         Check HasDropDownItems before calling DropDown so a dropdown will not be
3136         created if it isn't needed.
3137
3138 2007-04-24  Jackson Harper  <jackson@ximian.com>
3139
3140         * TreeView.cs: Set the first node to the selected node when we get
3141         focus if there is no selected node.
3142
3143 2007-04-24  Andreia Gaita  <avidigal@novell.com>
3144
3145         * MimeIcon.cs: remove using blocks so that image streams are
3146         not disposed of. Fixes #80151
3147
3148 2007-04-24  Jackson Harper  <jackson@ximian.com>
3149
3150         * TextBoxBase.cs: Fixup the height of textboxes when the control
3151         is created.
3152
3153 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
3154
3155         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
3156         for each ToolStripItem when the parent's RightToLeftChanged is called.
3157
3158 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3159
3160         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
3161           Fixes #80163.
3162         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
3163           property, so that the setter can be overriden too.
3164         * TextBox.cs: Change GetContextMenuInternal() to use
3165           ContextMenuInternal.
3166
3167 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3168
3169         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3170           #81406.
3171
3172 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3173
3174         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
3175           #81406.
3176
3177 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3178
3179         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
3180           avoid duplicate work. Mostily skeleton code, it's not working at
3181           all yet.
3182
3183 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
3184
3185         * NotifyIcon.cs : stub for MouseClick event
3186         * Application.cs: stub for SetUnhandledExceptionMode
3187
3188 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
3189
3190         * BindingNavigator.cs : Initial (partial) implementation
3191
3192 2007-04-23  Jackson Harper  <jackson@ximian.com>
3193
3194         * TreeView.cs: Do not create the treeview's handle when setting
3195         the scroll position.
3196         - ExpandAll needs to compute the scrollbars so it knows which
3197         position to set the bar too.
3198         * TreeNode.cs: 
3199         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
3200
3201 2007-04-23  Jackson Harper  <jackson@ximian.com>
3202
3203         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
3204         key. Fixes #81408.
3205
3206 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
3207
3208         * ToolStripItem.cs: Make GetImageSize internal.
3209         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
3210         need to draw an item.  Fixes a reported issue where images on menus
3211         that were not 16x16 were drawing incorrectly.
3212
3213 2007-04-21  Miguel de Icaza  <miguel@novell.com>
3214
3215         * Padding.cs: Use the converter, fixes the resgen2 issue with
3216         XMLNotePad. 
3217
3218 2007-04-21  Jackson Harper  <jackson@ximian.com>
3219
3220         * TreeView.cs: Dont try to unhighlight the selected node if there
3221         isn't a selected node.
3222
3223 2007-04-21  Jackson Harper  <jackson@ximian.com>
3224
3225         * UpDownBase.cs:
3226         * TextBoxBase.cs:
3227         * ListView.cs:
3228         * ListBox.cs:
3229         * TreeView.cs: Use the InternalBorderStyle property to set the
3230         initial border style, this forces the client rectangle to be sized
3231         correctly.
3232
3233 2007-04-20  Jackson Harper  <jackson@ximian.com>
3234
3235         * TreeView.cs: Simplify scrolling to the last node after expanding
3236         all.
3237         - Fix some off by ones with setting the bottom.
3238
3239 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3240
3241         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
3242         that.  We were incorrectly doing it the other way around.  Also,
3243         update ClientSize if we change the BorderStyle before the control
3244         is created.
3245
3246 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3247
3248         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3249         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3250         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
3251         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
3252         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
3253         Caption to CaptionHeight.
3254         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
3255         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
3256         and FixedFrameBorderSize to return value from current XplatUI driver.
3257         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
3258         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
3259         and FixedFrameBorderSize using win32 API. Renamed Caption to
3260         CaptionHeight.
3261         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
3262         * SystemInformation.cs: Fixed typo in BorderSize.
3263
3264 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
3265
3266         * XplatUI.cs: Added MenuAccessKeysUnderlined.
3267         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
3268         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
3269         returning false.
3270         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
3271         value from XplatUI driver.
3272         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
3273         SystemParametersInfo.
3274         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
3275         override.
3276         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
3277         returning false.
3278
3279 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3280
3281         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
3282
3283 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3284
3285         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
3286
3287 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
3288
3289         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
3290         MenuStrips that contain ToolStripSeparators.
3291
3292 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3293
3294         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
3295           DefineStdCursorBitmap.
3296         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
3297           has been created off a standard cursor. This is used to get a
3298           bitmap of the standard cursor when Draw or DrawStretched is called
3299           in order to draw the cursor.
3300         * X11Structs.cs: Added XcursorImage and XcursorImages.
3301         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
3302           DefineStdCursorBitmap.
3303         * Cursors.cs: Update all relevant creations of Cursor to use the new
3304           internal constructor.
3305
3306 2007-04-19  Jackson Harper  <jackson@ximian.com>
3307
3308         * TextBox.cs: Move the has_been_focused into the base control, so
3309         some of the text adding methods can manipulate it (probably time
3310         for a better name for this flag too).
3311         - Call a new version of selectall that doesn't scroll
3312         * TextBoxBase.cs: When we append text, if the document is empty,
3313         don't scroll.  If the document has text already, we scroll to the
3314         end of the appended text.
3315         - When the text is changed, we reset the has_been_focused, so the
3316         next time the control gets focused, all the text is selected.
3317
3318 2007-04-19  Jackson Harper  <jackson@ximian.com>
3319
3320         * TextControl.cs: Move the margins to the document, add a method
3321         so the margin sizes can be updated.
3322         * TextBoxBase.cs: When the border style is changed, update the
3323         border sizes.
3324
3325 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
3326
3327         * Control.cs: Respect DefaultPadding.
3328         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
3329         padding into account.
3330         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
3331
3332 2007-04-19  Jackson Harper  <jackson@ximian.com>
3333
3334         * TextControl.cs: Oops, we need to use the ClientRect not the
3335         bounds here.
3336
3337 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3338
3339         * ListView.cs: In ItemControl.ItemsMouseDown, take into
3340         account the double clicks when CheckBoxes are used and
3341         the pointer is inside the checkbox. Fixes part of #81191.
3342
3343 2007-04-18  Jackson Harper  <jackson@ximian.com>
3344
3345         * TextControl.cs: Pressing the end key shouldn't move the caret
3346         past the line ending.
3347         * TextBoxBase.cs: We can still delete if we are in the line
3348         ending and the combine will just kill the existing line ending.
3349
3350 2007-04-18  Jackson Harper  <jackson@ximian.com>
3351
3352         * TextControl.cs: We can't move lines, then invalidate their
3353         bounds, we need to get the old bounds and combine that with the
3354         new bounds.
3355         * TextBoxBase.cs: Before combining two lines for a delete, we need
3356         to invalidate the area of the old line, since that will be moved
3357         in the combine operation.
3358
3359 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
3360
3361         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
3362         with transparent background. Fixes #80482.
3363
3364 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
3365
3366         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
3367         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
3368         [Fixes bug #81391]
3369
3370 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3371
3372         * CreateParams.cs: Add a couple of helper methods and do a less string
3373           concatenation in ToString.
3374         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
3375           overload that takes a Control parameter, since this method may be
3376           called before a control is assigned to the hwnd (from
3377           CreateWindow), and update CreateWindow to use the new overload. In
3378           GetMenuOrigin subtract the title bar from the y position if the
3379           form has a window manager (since we're painting it and not X).
3380         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
3381           CreateParams to calculate the origin (since border sizes may vary).
3382           In ScreenToMenu only subtract the title height if we actually have
3383           a title.
3384         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
3385           mdi children never have menus of themselves.
3386         * InternalWindowManager.cs: Implement menu handling like form does.
3387           Added GetMenuOrigin to calculate the menu origin, can't use the
3388           CreateParams from the form like normally since it's lying.
3389         * Hwnd.cs: Implement GetBorderSize better (in the sense more
3390           windows-like) and add Inflate and comparison operators to the
3391           Borders type. When calculating MenuOrigin and it's a form with a
3392           window manager, use the window manager to calculate it.
3393
3394 2007-04-17  Chris Toshok  <toshok@ximian.com>
3395
3396         * Control.cs (CreateControl): turns out in 2.0 we don't need this
3397         OnBindingContextChanged thing here.  It's only generated from
3398         ContainerControl.OnCreateControl.  Fixes a newly written unit test
3399         - BindingTest.BindingContextChangedTest4.
3400         
3401 2007-04-17  Jackson Harper  <jackson@ximian.com>
3402
3403         * ScrollBar.cs: When setting values, make sure the current
3404         position stays within the new values range.
3405
3406 2007-04-17  Chris Toshok  <toshok@ximian.com>
3407
3408         * Control.cs (CreateControl): talk about a bizarre corner case.
3409         Don't emit OnBindingContextChanged here if we're a parentless
3410         control (i.e. if we're a form.).  Fixes
3411         BindingTest.BindingContextChangedTest2.
3412
3413 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3414
3415         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
3416         from win32. Fixes #81255.
3417
3418 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3419
3420         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
3421         already present in CalculateButtonTextAndImageLayout.
3422
3423 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3424
3425         * XplatUIX11.cs: When setting min/max size for a window we need to
3426           translate the coordinates to x coordinates. Create an overload of
3427           SetWindowMinMax that takes a CreateParams handling this, and change
3428           SetWMStyles to call this function (can't use Control.FromHandle in
3429           the SetWindowMinMax to get the control/CreateParams from the handle
3430           because the handle might not have been assigned to the control
3431           yet). Fixes #81371.
3432
3433 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3434
3435         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
3436         if StateImageList is non-null and it has less than two items (match MS
3437         behaviour). Also, in HandleNavKeys handle the Space key, calling
3438         the new ToggleItemsCheckState method, which tries to change the
3439         checked state of the selected items. Fixes part of #81191.
3440
3441 2007-04-16  Jackson Harper  <jackson@ximian.com>
3442
3443         * RichTextBox.cs: namespace cleanup.
3444
3445 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3446
3447         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
3448
3449 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3450
3451         [Fixes #79447]
3452         * Control.cs: Call invalidate in set_Region.
3453
3454         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
3455         it dont works here.
3456
3457 2007-04-16  Jackson Harper  <jackson@ximian.com>
3458
3459         * TextBoxBase.cs: When enter is pressed, we need to update all
3460         lines below the current.
3461
3462 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
3463
3464         * MdiClient.cs: Implement implicit menu merging for MDI
3465         children.  When a child form is active, if it has a menustrip
3466         and the parent form has a MainMenuStrip, automatically merge
3467         the menus.
3468
3469 2007-04-15  Andreia Gaita  <avidigal@novell.com>
3470
3471         * TabControl.cs: Refactored sizing methods to not repeat
3472         code all over the place. Tab bounds are now calculated
3473         as if alignment is top and single line, and only when 
3474         setting the bounds are the positions adjusted according
3475         to alignment. Replaced hardcoded positions, spacings and
3476         paddings by getting the values the ThemeEngine. 
3477         Fixes #79619.
3478         
3479         * Theme.cs: Change TabControl properties and methods so
3480         that all start with TabControl*. Added more properties
3481         to help remove hardcoded values on tabcontrol.
3482         Add CPDrawBorder3D declaration so the Theming classes
3483         can access it.
3484         
3485         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
3486
3487         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
3488         on the Theming namespace, and call the appropriate methods here.
3489         Change CPDrawBorder3D to public.
3490
3491 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3492
3493         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
3494         the control after firing the OnMouseUp event, instead of sending
3495         the message before the mentioned event. This is so we can match the
3496         MS behaviour. Fixes part of #80385.
3497
3498 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3499
3500         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
3501         RightToLeft property.
3502
3503 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3504
3505         * ToolStrip.cs: Add properties and internal methods to support merging.
3506         * ToolStripItem.cs: Add MergeAction and MergeIndex.
3507         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
3508         not trigger reparenting or layouts.
3509         * ToolStripManager.cs: Add Merge and RevertMerge methods.
3510         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
3511         is hosting the overflow menu.
3512
3513 2007-04-13  Jackson Harper  <jackson@ximian.com>
3514
3515         * TextControl.cs: Set the line ending correctly for the first
3516         inserted line.
3517
3518 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3519
3520         * Theme.cs: Update GetMethod to get the new definition for 
3521         KnownColors.Update (and fix theme color updates).
3522
3523 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
3524
3525         * MessageBox.cs: Fix some test and button position.
3526
3527 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3528
3529         * Form.cs: Consider the implicit controls in
3530         GetRealChildAtPoint. We need it since this method
3531         is called on Form when handling the some messages in
3532         WndProc, and need to consider those implicit ones too.
3533         Fixes #80385.
3534
3535 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
3536
3537         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
3538         if there are no ShortcutKeys set.
3539         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
3540         set, use it when painting.
3541
3542 2007-04-12  Jackson Harper  <jackson@ximian.com>
3543
3544         * TextControl.cs: Fix some off-by-one issues in line duplication
3545         and insertion in the undo manager. Also, overwrite the first tag
3546         of a line on insert, if it is just a zero lengthed tag. This
3547         prevents us from getting an extra stranded tag at the beginning of
3548         the first line.
3549
3550 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
3551
3552         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
3553         to calculated proper size including when handle was not created yet.
3554
3555 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3556
3557         * MdiWindowManager.cs: When moving a form, allow the form to be moved
3558           when the mouse is outside of it's parent's client rectangle. Fixes
3559           #79982 (take 3, part 2).
3560
3561 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3562
3563         * X11Structs.cs: Add a few ToString() overrides.
3564         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
3565           the window location in a window-manager independent way. Reworked
3566           FrameExtents, it now actually works. Reworked AddConfigureNotify
3567           and ReparentNotify handling to use GetTopLevelWindowLocation
3568           instead of the earlier, more hacky solution. Reworked SetWMStyles,
3569           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
3570           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
3571           for all other windows (fixes #81281 part 1), a toolwindow is hidden
3572           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
3573           and generally refactored to do as few calculations as possible
3574           inside the lock.
3575
3576 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
3577
3578         * Theme.cs: Change "reflective-contract" between MWF and SD to 
3579         minimize # of calls, avoid Color serialization and avoid updating 
3580         every "known colors" each time a single one is updated.
3581
3582 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3583
3584         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
3585         when not readonly and the text is explicitly set. Code style updates.
3586         * DataGridTableStyle.cs: Removed extra line.
3587         * DataGrid.cs: Code style updates. Removed extra whitespace.
3588         * DataGridColumnStyle.cs: Code style updates. Removed extra 
3589         whitespace.
3590
3591 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3592
3593         * XplatUIX11.cs: Added comment that "fixes" #80021.
3594
3595 2007-04-09  Jackson Harper  <jackson@ximian.com>
3596
3597         * TextControl.cs: We don't need this -1 on the line count anymore.
3598
3599 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3600
3601         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
3602         entered value to underlying type, and convert it back to a string to
3603         apply formatting. Modified GetFormattedValue to use TypeConverter
3604         if available.
3605
3606 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
3607
3608         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
3609         Use SubItems property when we want to ensure there's at least one
3610         subitem. Modified SubItems property to ensure there's always at least
3611         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
3612         the NRE's reported by MS.
3613
3614 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
3615
3616         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
3617         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
3618         Spaces to tabs. Removed extra tabs.
3619
3620 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
3621
3622         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3623         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
3624
3625 2007-04-06  Jackson Harper  <jackson@ximian.com>
3626
3627         * TextBoxBase.cs: When a delete removes a line, recalculate all
3628         lines below that line (they need to get offsets setup correctly)
3629         and invalidate.
3630
3631 2007-04-05  Jackson Harper  <jackson@ximian.com>
3632
3633         * TextControl.cs: We need to invalidate across the width of the
3634         document when we are invalidating multiple lines.
3635         * TextBoxBase.cs: Don't delete into the line ending.
3636
3637 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3638
3639         * ListView.cs: Restore the check for the MouseHover event
3640         in ListView. It looks like the ListView fires more than one MouseHover
3641         event when HoverSelection is true  _only_ in weird-corner scenarios, but
3642         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
3643         event.
3644
3645 2007-04-05  Mike Kestner  <mkestner@novell.com>
3646
3647         * ListView.cs : raise MouseDown before updating selection.
3648         [Fixes #80373 tab 1&3]
3649
3650 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3651
3652         * ToolStripRenderer.cs: Add static method to mirror image.
3653         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
3654         and RightToLeftAutoMirrorImage.
3655         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
3656
3657 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3658
3659         * ToolStripSplitStackLayout.cs: Support Alignment property.
3660         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
3661
3662 2007-04-05  Jackson Harper  <jackson@ximian.com>
3663
3664         * TextControl.cs: Move around the line endings when crossing line
3665         boundaries.
3666         - When combining lines, strip the ending text off the first line.
3667
3668 2007-04-05  Jackson Harper  <jackson@ximian.com>
3669
3670         * TextControl.cs:
3671         * TextBoxBase.cs: Try to never move the cursor into the line
3672         ending.
3673         
3674 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3675
3676         * ToolStripItem.cs: Make sure we aren't firing mouse events when
3677         the item is disabled.  Also add a few missing methods.
3678
3679 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3680
3681         * ListView.cs: We don't need the MouseEnter/MouseLeave check
3682         to fire just one MouseHover event when HoverSelection is true, since
3683         .Net does fire more than one MouseHover event in that scenario. Also,
3684         fix the selection in HoverSelection, by invoking UpdateMultiSelect
3685         if MultiSelect is true, instead of only setting ListViewItem.Selected.
3686         Finally, we need to reset the Hover logic in MouseMove, even when we
3687         don't have a selected item.
3688
3689 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3690
3691         * ToolStrip.cs: Add several missing methods, properties, and events.
3692
3693 2007-04-04  Chris Toshok  <toshok@ximian.com>
3694
3695         * DataGridTextBoxColumn.cs: set the bounds of the text box to
3696         (0,0,0,0) in Commit, as MS does.
3697
3698         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
3699         make sure we set CurrentRow on a row header click *before* calling
3700         Select.  This moves the current cell (and the textbox) to the new
3701         row.  The call to Select then hides the textbox, giving us the
3702         correct behavior.  Fixes #80362.
3703
3704         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
3705         (ListChangedHandler): reorder the position/current changed events,
3706         and call UpdateIsBinding in the ItemAdded case.
3707
3708         * GridColumnStylesCollection.cs: add some columns events, one of
3709         which raises the CollectionChanged event.
3710
3711 2007-04-04  Jackson Harper  <jackson@ximian.com>
3712
3713         * TextControl.cs: When we delete multiple selection lines
3714         invalidate the selection area, don't need to do that for single
3715         lines because the final update view will handle it.
3716
3717 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3718
3719         * Control.cs: When we CreateControl, we need to also create all of the
3720         control's children.  The child's OnLoad must also fire before the parent's
3721         OnLoad.  Fixes the toolbox size in PDN.
3722
3723 2007-04-04  Jackson Harper  <jackson@ximian.com>
3724
3725         * TextBoxBase.cs: When the user presses enter, insert a line
3726         ending into the text. (Maybe this would be a good spot for
3727         Environment.NewLine).
3728         * TextControl.cs: Remove undo manager hack, line endings get
3729         inserted properly now.
3730         
3731 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3732
3733         * MenuAPI.cs: 
3734         - Remove unneeded parameters in UpdateCursor.
3735         - Fix UpdateCursor to check if menu is active.
3736         - Call UpdateCursor when menu deactivate my click.
3737         [Fixes remaining issues from #80410]
3738
3739 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3740
3741         * Control.cs: GetRealChildAtPoint method added, it make an
3742         recursive child control search for the point. 
3743
3744         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
3745         menu.
3746
3747         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
3748
3749 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3750
3751         * Form.cs: Fix mouse position when send back mouse event after closes
3752         menu.
3753
3754 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3755
3756         * Form.cs: Simplify the BUTTONDOWN for active tracker.
3757
3758 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3759
3760         * Control.cs: Fix an issue where if a user resized a control inside
3761         a sizing method like OnResize, we would overwrite their explicit
3762         value.  Also, only call DefaultSize once in the constructor instead
3763         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
3764         nothing actually changed.
3765
3766 2007-04-03  Jackson Harper  <jackson@ximian.com>
3767
3768         * TextControl.cs: Don't attempt to copy text for lines with no
3769         text in them (technically this shouldn't happen, but we aren't
3770         always inserting line endings when we should be).
3771
3772 2007-04-03  Jackson Harper  <jackson@ximian.com>
3773
3774         * TextBoxBase.cs: Calculate the scrollbars before calculating the
3775         document, because this sets some of the document size properties
3776         that are needed.
3777
3778 2007-04-03  Jackson Harper  <jackson@ximian.com>
3779
3780         * TextBoxBase.cs: We need to calculate maximums even if this is
3781         not a multiline control, because the maxs are used for scrolling.
3782         - Display the caret after doing a page up/down, we need to
3783         manually display it because a proper CaretMoved event isn't
3784         triggered (this is because of the way the math is done to
3785         determine how far to scroll).
3786
3787 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3788
3789         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
3790         (ToolBar was relying on SetBoundsCore to default the values sent 
3791         base off of BoundsSpecified.)
3792
3793 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3794
3795         * DateTimePicker.cs: Change Text so that when a null value or empty
3796           string is assigned to the test we always raise ValueChanged and
3797           TextChanged (earlier implementation would only raise ValueChanged
3798           if the current date value was different from DateTime.Now).
3799
3800 2007-04-03  Andreia Gaita <avidigal@novell.com> 
3801
3802         * ButtonBase: Call update after invalidation, fixes #80194
3803
3804 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3805
3806         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
3807           #79335.
3808
3809 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3810
3811         * XplatUIX11.cs: SetWMStyles: If the control is a form with
3812           FormBorderStyle = None, don't give the window any decorations.
3813           Fixes #81276.
3814
3815 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3816
3817         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3818         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
3819           to check for is a mix of several styles (such as WS_CAPTION for
3820           instance).
3821         * Control.cs: Don't paint an area bigger than the client area when
3822           painting the background colour. Add an internal GetCreateParams.
3823           Update calls to XplatUI.CalculateWindowRect due to API change.
3824         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
3825           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
3826           the size if it hasn't been handled by any windows. When creating
3827           and moving windows, X wants the location of the entire window, but
3828           the size of the client window, so add
3829           TranslateClientRectangleToXClientRectangle,
3830           TranslateWindowSizeToXWindowSIze and
3831           TranslatedXWindowSizeToWindowSize to cope with this, and call them
3832           before every window creation and move. Update CalculateWIndowRect
3833           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
3834           In AddConfigureNotify don't do anything if the hwnd is a zombie
3835           (fixes the BadWindow we were getting while running the tests),
3836           always calculate the offsets when it's a parentless window, not
3837           only when reparented, and translate the window size, since we're
3838           getting the client size of the whole window, excluding entire
3839           window.
3840         * Theme.cs: Added BorderSizableSize.
3841         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3842           anymore. Update calls to XplatUI.CalculateWindowRect due to API
3843           chang
3844         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
3845           change. Fake the window styles here instead of in XplatUIWin32 so
3846           that all back-ends get the same window styles (and it's Form that's
3847           deciding when to use wm, not the Win32 backend anyways)
3848         * Hwnd.cs: Completely reworked GetWindowRectangle and
3849           GetClientRectangle - they are now passed a CreateParams and they
3850           only use Style and ExStyle to determine the rectangles (they should
3851           now work just like Win32AdjustWindowRectEx - though quite a few
3852           special cases are probably missing). They should also be 100%
3853           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
3854           == rect), and all numbers (borders, menu sizes) are taken from the
3855           current theme. Added a GetBorders helper function that will return
3856           the borders for any given CreateParams (including captions and
3857           menus), and GetBorderSize that returns the given border size only.
3858         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
3859           Hwnd.GetClientRectangle.
3860
3861 2007-04-02  Chris Toshok  <toshok@ximian.com>
3862
3863         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
3864         logic between the values we present to the user and the values
3865         which are stored in the column's property.  Also, don't call
3866         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
3867
3868 2007-04-02  Jackson Harper  <jackson@ximian.com>
3869
3870         * TextBoxBase.cs: Scroll faster!
3871
3872 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3873
3874         * StatusStrip.cs: Layout fixes for PDN.
3875         * ToolStrip.cs: Set item's available to true, and placement to main when
3876         added.
3877         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
3878         changing in setter before doing any work, add InternalVisible.
3879         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
3880         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3881         infinite loop.
3882
3883 2007-04-02  Jackson Harper  <jackson@ximian.com>
3884
3885         * TextBox.cs: LBUTTON does not make the textbox select all of it's
3886         text on focus.
3887
3888 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3889
3890         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
3891           Makes ToolStripComboBoxes show up again.
3892
3893 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3894
3895         * ListView.cs: Add a hover_pending field in ListView
3896         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
3897         cycle (we are resetting the MouseHover logic in XplatUI
3898         to handle HoverSelection). Fixes #80429.
3899
3900 2007-04-02  Jackson Harper  <jackson@ximian.com>
3901
3902         * TextControl.cs: Make sure the attributes get set on the last
3903         tag.
3904         - Still have to do the end tag if we have stepped all the ways to
3905         the end.
3906
3907 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3908
3909         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
3910         on an internal libgdiplus call when the information is already 
3911         available via the public API.
3912
3913 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3914
3915         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
3916           control is removed from a control collecftion.
3917         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
3918           Fixes FormPropertyTest (failed on rare occasions).
3919         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
3920           of Win32SetParent (when changing from no parent to a parent it
3921           might add the new parent's location in screen coordinates to this
3922           window's location).
3923         * Form.cs: Rework ChangingParent once again, now the handle is
3924           recreated whenever a FormWindowManager is added or removed (that is
3925           whenever a normal form is parented or abandoned). Also change
3926           CreateParams so that all non-toplevel windows always get the
3927           specified sice (StartupPosition is never considered for
3928           non-TopLevel forms).
3929         * ContainerControl.cs: Add ChildControlRemoved, the container control
3930           needs to be notified when a control is removed from it's
3931           collection, in the case the removed control is the active control.
3932
3933 2007-04-02  Jackson Harper  <jackson@ximian.com>
3934
3935         * RichTextBox.cs: Use the new methods for setting the font and
3936         color, these methods set the specified attribute without
3937         overriding the other attributes.
3938
3939 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3940
3941         * ToolStripPanel.cs: Fixes for better layouts in PDN.
3942
3943 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
3944
3945         * TextBox.cs: Added internal ChangeBackColor method to special-case
3946         Color.Empty. Added check for invalid ScrollBars value.
3947         * TextBoxBase.cs: Added internal ChangeBackColor method.
3948         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
3949         internal ChangeBackColor method to special-case Color.Empty. Added
3950         check for invalid ScrollBars value.
3951
3952 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
3953
3954         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
3955
3956 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3957
3958         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
3959         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
3960         [Based on submitted patch from Olivier Duff.]
3961
3962 2007-03-30  Jackson Harper  <jackson@ximian.com>
3963
3964         * TextBox.cs: Only select all on initial focus if the user has not
3965         specified a selection area.
3966
3967 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3968
3969         * UserControl.cs: Override CreateParams.
3970
3971 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3972
3973         [ Fixes #80995 ]
3974
3975         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3976         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
3977           check for is a mix of several styles (such as WS_CAPTION for instance).
3978         * Control.cs: Don't paint an area bigger than the client area when painting
3979           the background colour. Add an internal GetCreateParams. Update calls to
3980           XplatUI.CalculateWindowRect due to API change.
3981         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
3982           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
3983           hasn't been handled by any windows. When creating and moving windows, X
3984           wants the location of the entire window, but the size of the client
3985           window, so add TranslateClientRectangleToXClientRectangle,
3986           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
3987           to cope with this, and call them before every window creation and move.
3988           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
3989           removing DeriveStyles). In AddConfigureNotify don't do anything if the
3990           hwnd is a zombie (fixes the BadWindow we were getting while running the
3991           tests), always calculate the offsets when it's a parentless window, not
3992           only when reparented, and translate the window size, since we're getting
3993           the client size of the whole window, excluding entire window.
3994         * Theme.cs: Added BorderSizableSize.
3995         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3996           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
3997         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
3998           Fake the window styles here instead of in XplatUIWin32 so that all
3999           back-ends get the same window styles (and it's Form that's deciding when
4000           to use wm, not the Win32 backend anyways)
4001         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
4002           they are now passed a CreateParams and they only use Style and ExStyle
4003           to determine the rectangles (they should now work just like
4004           Win32AdjustWindowRectEx - though quite a few special cases are probably
4005           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
4006           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
4007           sizes) are taken from the current theme. Added a GetBorders helper
4008           function that will return the borders for any given CreateParams
4009           (including captions and menus), and GetBorderSize that returns the given
4010           border size only.
4011         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
4012           Hwnd.GetClientRectangle.
4013
4014 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4015
4016         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
4017           layout of the mdi children is handled by CreateParams. Fixes
4018           #79964,
4019
4020 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4021
4022         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
4023         processed.
4024
4025         * Form.cs: When active tracker mouse down is not processed, send event 
4026         back to control inside mouse position. [Fixes #81227]
4027
4028 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4029
4030         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
4031         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
4032         stealing focus from the active form on Windows.  (Control will be made
4033         visible in ShowWindow.)
4034
4035 2007-03-29  Mike Kestner  <mkestner@novell.com>
4036
4037         * ImageList.cs : add internal Changed event.
4038         * ListView.cs : hook up to StateImageList.Changed to perform
4039         invalidations when the the state icon list changes. [Fixes #81191]
4040
4041 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
4042
4043         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
4044         to prevent tooltips from stealing focus from the active form on Windows.
4045
4046 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4047
4048         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
4049
4050         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
4051
4052 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4053
4054         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
4055         balloons.
4056
4057 2007-03-29  Jackson Harper  <jackson@ximian.com>
4058
4059         * TextControl.cs: When deleting text from non multiline textboxes,
4060         we need to update the entire document, because line offsets will
4061         be shifting.
4062
4063 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
4064
4065         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
4066         added to theme, now we can create themes that uses diferent notify engines
4067         like notification-daemon from galago project or growl for Mac OS.
4068
4069 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4070
4071         * NotifyIcon.cs: Prevent Balloon to show in task bar.
4072
4073 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4074
4075         * XplatUIX11.cs: Prevent system to open more than one balloon.
4076
4077         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
4078         some compiler warning messages.
4079
4080 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
4081
4082         [Fixes #79149]
4083
4084         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
4085
4086         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
4087         implemented, this methods is used by NotifyIcon.BalloonWindow class.
4088
4089         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
4090         systems.
4091
4092 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4093
4094         * ListViewItem.cs: Forgot to make Invalidate internal.
4095
4096 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4097
4098         * ListView.cs: Add a InvalidateSelection method to
4099         invalidate methods which are currently selected, and call
4100         it when setting FullRowSelect and HideSelection, instead of
4101         calling Redraw.
4102
4103 2007-03-28  Chris Toshok  <toshok@ximian.com>
4104
4105         * XplatUIX11.cs (UnmapWindow): reindent this block.
4106
4107         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
4108         the selection_start if we're moving the selection (that is, not
4109         extending it). Fixes bug #80461.
4110
4111 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4112
4113         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
4114         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
4115         create private ControlCollection.
4116
4117 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4118
4119         * Control.cs: We need to call OnVisibleChanged for our implicit
4120         children as well as our normal children.  Fixes scrollbars in
4121         comboboxes not showing up.
4122
4123 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4124
4125         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
4126         the check for IsHandleCreated first.  The check in CreateHandle is not
4127         good enough because CreateHandle can be overriden, and the override 
4128         should not be called if the handle is already created.
4129
4130 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
4131
4132         * ToolStrip.cs: Remove MonoTODO for tooltips.
4133         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
4134         * ToolStripContainer.cs: Add custom ControlCollection class.
4135         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
4136         * ToolStripDropDown.cs: Add some missing properties/methods.
4137         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
4138         * ToolStripItem.cs: Remove MonoTODO for tooltips.
4139         * ToolStripManager.cs: Add IsShortcutDefined.
4140         * ToolStripOverflow.cs: Override LayoutEngine.
4141         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
4142         * ToolStripSeparator.cs: Add ImageKey.
4143
4144 2007-03-28  Jackson Harper  <jackson@ximian.com>
4145
4146         * TextControl.cs: If a char delete removes a line ending, we need
4147         to update the ending style.
4148         - Make sure the line ending calcs get called.
4149
4150 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4151
4152         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
4153           it was making the new code not work. Fixed a typo in the new code
4154           as well. Fixes #79826.
4155
4156 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4157
4158         * XplatUIWin32.cs:
4159         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
4160         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
4161         - SystrayBalloon method implemented.
4162         [Add support for notifyicon balloon on win32, #79149]
4163
4164 2007-03-27  Mike Kestner  <mkestner@novell.com>
4165
4166         * ThemeWin32Classic.cs : update StateImageList selection to mirror
4167         the ms behavior when only one image is added to the list.
4168         [Fixes #81191]
4169
4170 2007-03-27  Jackson Harper  <jackson@ximian.com>
4171
4172         * TextControl.cs: Improvements to non multiline line ending
4173         drawing/measuing.
4174
4175 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4176
4177         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
4178
4179 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4180
4181         * NotifyIcon.cs: 
4182         - Balloon message handling added.
4183         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
4184
4185         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
4186         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
4187         to SystrayBalloon to me like other Systray method, also a
4188         handle parameter added.
4189
4190 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4191
4192         * ListView.cs: Show scrollbars even when items.Count == 0
4193         but the columns Width is bigger than the ListView.Width.
4194         Also, when columns.Count == 0 set layout_wd and layout_ht
4195         to the ClientRectangle values, so we don't show any scrollbar
4196         in that case.
4197
4198 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4199
4200         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
4201
4202 2007-03-27  Jackson Harper  <jackson@ximian.com>
4203
4204         * RichTextBox.cs: The RTF library decodes the text properly for us
4205         now.
4206
4207 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4208
4209         * ListView.cs: Display HeaderControl even when columns.Count == 0.
4210         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
4211         ListView header (HeaderControl), instead of Control.BackColor.
4212
4213 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4214
4215         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
4216         Fixes tab control issues where controls would not show up because they
4217         never received their OnVisibleChanged call.
4218
4219 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
4220
4221         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
4222         BalloonTipShown).
4223
4224 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
4225
4226         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
4227         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
4228         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
4229         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
4230         the handle.  Fix WindowState by using the internal variable until we are 
4231         sure that we've been shown.
4232         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
4233         max or min.
4234         [Fixes bug #81198]
4235
4236 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4237
4238         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
4239           (at least borders). Fixes #79386 on Linux (with a small difference
4240           in behaviour: when trying to resize a caption-less window metacity
4241           shows the sysmenu. Resizing is still possible though).
4242         * XplatUIWin32.cs: When setting window styles send request an extra
4243           WM_NCCALCSIZE when it's a form without title (due to no text and no
4244           caption), since Win32 seems to calculate it wrong the first time we
4245           get the message, though the second time things work as they should.
4246         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
4247           newly reparented window might show up unparented. Update
4248           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
4249           there's no title text. Fixes #79386.
4250
4251 2007-03-27  Mike Kestner  <mkestner@novell.com>
4252
4253         * ListBox.cs : don't perform invalidations if the handle hasn't been
4254         created.  [Fixes #80753]
4255
4256 2007-03-27  Mike Kestner  <mkestner@novell.com>
4257
4258         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
4259         [Fixes #80428]
4260
4261 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4262
4263         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
4264         needed to implement Balloon.
4265
4266 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4267
4268         * ListViewItem.cs: In the constructors that take
4269         an array of strings, don't use ListViewSubItemCollection.AddRange
4270         method to add items, since we need to have a different behaviour (in
4271         the constructors we add an item for each null string, opposed to
4272         the behaviour of AddRange, which adds nothing).
4273
4274 2007-03-26  Andreia Gaita  <avidigal@novell.com>
4275
4276         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
4277
4278 2007-03-26  Jackson Harper  <jackson@ximian.com>
4279
4280         * TextControl.cs: Draw and measure line endings when in non
4281         multiline mode.
4282         - When searching the text, count the end of the last line as a
4283         word boundary.
4284
4285 2007-03-26  Jackson Harper  <jackson@ximian.com>
4286
4287         * RichTextBox.cs: The selection_start and selection_end don't
4288         really track the correct tags for the selection. So we'll manually
4289         compute the correct tag here.
4290
4291 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4292
4293         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
4294           and Continuous styles. Fixes #79469.
4295
4296 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4297
4298         * ToolStrip.cs: Implement Tooltips.
4299         * ToolStripItem.cs: Create internal method for determining tooltip.
4300
4301 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
4302
4303         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
4304
4305 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4306
4307         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
4308         it prevents a problem thak keeps icon visible after application 
4309         closes on win32.
4310
4311 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
4312
4313         * NotifyIcon.cs: Balloon properties and methods created.
4314
4315         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
4316         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
4317
4318 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
4319
4320         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
4321
4322 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4323
4324         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
4325         parameter indicates which aspects were explicit/user-set.
4326         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
4327
4328 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
4329
4330         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
4331         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
4332         SmallChange, and Value (2.0).
4333         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
4334
4335 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4336
4337         * ListView.cs: Always set item_control.Width in LayoutDetails
4338         if View is Details. Setting it later in CalculateScrollBars
4339         in a not-so-corner scenario (the sum of columns width is
4340         not bigger than the ListView width when handle is created, and then
4341         that sum gets bigger by increasing the width of the columns)
4342         causes a very weird recursion path (which shouldn't be happening,
4343         since header_control sets it in CalculateScrollBars too). This bug
4344         appeared after Chris' fixes for handle created issues, so probably
4345         it's related to some handle-creation time.
4346
4347 2007-03-23  Chris Toshok  <toshok@ximian.com>
4348
4349         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
4350         case where there's an add row, just so we don't end up in a case
4351         where it's not displayed (this happens when the row is partially
4352         obscured).  Fixes bug #79574.
4353
4354 2007-03-23  Jackson Harper  <jackson@ximian.com>
4355
4356         * TextControl.cs:
4357         * TextBoxBase.cs:
4358         * RichTextBox.cs: Preserve line endings in the lines text buffer,
4359         also added an enum that represents the line ending type. 
4360
4361 2007-03-23  Andreia Gaita  <avidigal@novell.com>
4362
4363         * NumericUpDown.cs: Fix logic so Text and Value properties are not
4364         messed with in every method call, but only from DownButton, 
4365         UpButton, UpdateEditText() and ValidateText. Fixes #80346
4366
4367 2007-03-23  Chris Toshok  <toshok@ximian.com>
4368
4369         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
4370         format objects if the format spec is "".  Fixes bug #80889.
4371
4372 2007-03-22  Miguel de Icaza  <miguel@novell.com>
4373
4374         * ToolStripPanel.cs (Join): added stubs to build PDN3
4375
4376         * Control.cs (AutoScrollOffset): Add.
4377
4378         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
4379         property, its only implemented for Win32, on X11 it defaults to
4380         some hardcoded value.
4381
4382         * ToolStripItem.cs (AllowDrop): Add property
4383
4384 2007-03-22  Mike Kestner  <mkestner@novell.com>
4385
4386         * ListView.cs : in FullRowSelect Details mode, only enable box
4387         selection if the user clicks over the "item" column outside of the
4388         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
4389
4390 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4391
4392         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
4393           handle is not created yet.
4394         * Form.cs: Select: Don't call CreateHandle if the handle is already
4395           created, avoids a stack overflow on Windows when we are recreating
4396           controls.
4397         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
4398           they are made visible, and override AfterTopMostControl to keep
4399           them on top when other controls are brought to front.
4400           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
4401           or force_*scroll_visible is true (old implementation always shows
4402           scrollbars when needed, no matter what auto_scroll was set to).
4403         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
4404           IsHandleCreated check.
4405
4406 2007-03-22  Andreia Gaita  <avidigal@novell.com>
4407
4408         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
4409         row or col separator.
4410         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
4411
4412 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4413
4414         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
4415
4416 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4417
4418         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
4419         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
4420         every time. Fixes #80410.
4421
4422 2007-03-22  Chris Toshok  <toshok@ximian.com>
4423
4424         * BindingSource.cs (AddNew): partially implement.
4425
4426         remove a couple of NotImplementedException's
4427         to get bug #81148 closed.
4428
4429 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4430
4431         [Fixes #80380]
4432         
4433         * Control.cs:
4434         - UpdateCursor method added to update the screen cursor.
4435         - GetAvailableCursor method added to return cursor for enabled tree,
4436         it searches for cursor on control and it's parent's for enabled control.
4437         - Call UpdateCursor method on setter of Cursor property.
4438         - On setter of Enabled call UpdateCursor when it is false, we need to
4439         change cursor to normal (or to this parent cursor) because cursor 
4440         setting theres no effect to disabled controls.
4441         - Some minor source changes to follow the coding style guidelines.
4442
4443         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
4444         controls.
4445
4446 2007-03-22  Chris Toshok  <toshok@ximian.com>
4447
4448         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
4449         generates.
4450
4451 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4452
4453         * XplatUIX11.cs: Implement default locations for forms.
4454         * Form.cs: Completely rework startup location for forms. Fixes #79964.
4455         * Hwnd.cs: Add previous_child_startup_location (to track the current
4456           startup location for any child forms of the current form) and
4457           previous_main_startup_location (to track the startup location for
4458           the current toplevel form).
4459
4460 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4461
4462         * Control.cs: Don't trigger a layout if an implicit control is added
4463         that isn't visible.  Also, don't notify the owner when an implicit control
4464         is added.  (Owners shouldn't even know about their implicit controls.)
4465
4466 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4467
4468         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
4469         to save some re-layouts.
4470
4471 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
4472
4473         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
4474         [Fixes #81203]
4475
4476 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4477
4478         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
4479         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
4480
4481 2007-03-21  Mike Kestner  <mkestner@novell.com>
4482
4483         * ListView.cs : disable selection update for non-left button clicks
4484         with mods and over selected items.  [Fixes #80524]
4485
4486 2007-03-20  Jackson Harper  <jackson@ximian.com>
4487
4488         * TextControl.cs:
4489         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
4490         \r\r\n, \n.
4491
4492 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4493
4494         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
4495           very probably a more complicated calculation there. Update the
4496           textbox' ForeColor and BackColor when the ComboBox' colors are
4497           changed. Change the border change in LayoutComboBox to only affect
4498           the textbox, not all the calculations there. Seems to fix most of
4499           #79436.
4500
4501 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4502
4503         * ComboBox.cs: Handle Home and End keys as well as all combinations of
4504           modifiers + navigation keys as input keys, enables advanced text
4505           selection in the combobox (like Shift+Left Arrow for instance).
4506           ComboTextBox now overrides Focused and returns whatever
4507           ComboBox.Focused returns, since it really should be focused
4508           whenever the ComboBox is. Fixes #80795. Also make the border around
4509           the text box one pixel bigger, as mentioned in #79436.
4510
4511 2007-03-20  Jackson Harper  <jackson@ximian.com>
4512
4513         * TreeView.cs: Don't offset the images, this was causing some
4514         artifacts when expanding/collapsing with images that were the
4515         exact height of the treenode.
4516
4517 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4518
4519         * TrackBar.cs: Query the theme for the correct value when the mouse
4520           moves and the thumb is pressed. 
4521         * Theme.cs: Added TrackBarValueFromMousePosition
4522         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
4523           implementation was updating the trackbar value when drawing, now
4524           the drawing methods only draw. Fixes #80900. Refactored the
4525           calculations out to TrackBarValueFromMousePosition and
4526           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
4527           according to the mouse position whenever it wants to. Changed the
4528           light coloured pen when drawing the thumb from ControlLight to
4529           ControlLightLight, because the ControlLight is the same colour as
4530           the background so the 3D effect is lost. 
4531
4532 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4533
4534         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
4535         defined. Fixes #80784.
4536
4537 2007-03-20  Marek Habersack  <mhabersack@novell.com>
4538
4539         * ContextMenuStrip.cs: align with the change introduced in
4540         revision 74664.
4541
4542 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4543
4544         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
4545         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
4546         in SetTopmost.
4547
4548 2007-03-19  Chris Toshok  <toshok@ximian.com>
4549
4550         * Control.cs (WmPaint): don't make use of the Handle property
4551         after an event is emitted, as the user could have closed the
4552         form/destroyed the control.  Store the Handle in a local variable
4553         and make use of that.  Fixes bug #80768.
4554
4555 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4556
4557         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
4558         behavior in X11 environments.
4559
4560 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4561
4562         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
4563         because on setter of topmost we dont call SetTopmost when handle is not
4564         created.
4565
4566 2007-03-20  Jackson Harper  <jackson@ximian.com>
4567
4568         * TextControl.cs: Need to use SelectionLength () not
4569         selection_length, since that var is reset to -1.
4570         - Draw the caret when we don't have focus.
4571         * TextBox.cs: The selectall actually doesn't occur until the first
4572         focus.
4573         * TextBoxBase.cs: Need to update the caret position after a
4574         selectall.
4575         
4576 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4577
4578         * ListView.cs: Enable scrolling when using Tile view.
4579
4580 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4581
4582         [Fixes #80902]
4583
4584         * XplatUIDriver.cs: Abstract SetOwner method created.
4585
4586         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
4587         must be implemented and was masked as todo.
4588
4589         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
4590         GWL_HWNDPARENT.
4591
4592         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
4593         cheking for null owner to remove transient. The SetTopmost will be change
4594         on a decond step.
4595
4596         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
4597         SetTopmost. Now owned forms will work properly in win32 and X11.
4598
4599 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4600
4601         * MdiWindowManager.cs: Update function name.
4602         * Form.cs: After closing a form MdiParent is always null.
4603         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
4604           better what it should do: necessary book-keeping when the form is
4605           closed, it should not close the form itself.
4606
4607 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4608
4609         * ListViewItem.cs: Fix back and fore color. The subitems only
4610         use their own colors if they are set, otherwise use the listview's
4611         colors. Don't set default colors on constructor for subitem.
4612         Fixes #79315.
4613
4614 2007-03-19  Mike Kestner  <mkestner@novell.com>
4615
4616         * ListView.cs : make box selection for Details views with 
4617         FullRowSelect conform to MS behavior when clicking in the "item" 
4618         column and clicking outside the defined columns.
4619         [Fixes case 5-6 of #80374]
4620
4621 2007-03-19  Chris Toshok  <toshok@ximian.com>
4622
4623         * ScrollableControl.cs: create the controls from within the ctor,
4624         but don't actually add them until our handle is created.  this
4625         fixes a NRE possibility jpobst found (if you override OnLayout in
4626         a subclass, it's called before your ctor).  Also, add a
4627         IsHandleCreated guard to UpdateSizeGripVisibility as well.
4628
4629 2007-03-19  Jackson Harper  <jackson@ximian.com>
4630
4631         * TextBox.cs: Reduce the amount of invalidation we do.
4632         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
4633         some of them are true by default on MS.
4634         - Add some functions to reduce the amount of invalidates we do.
4635         * TextControl.cs: Less invalidation.
4636
4637 2007-03-19  Chris Toshok  <toshok@ximian.com>
4638
4639         [ Fixes #81773, and *seems* to fix #81553 as well ]
4640
4641         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
4642         AccumulateDestroyedHandles.  We need to do it *after* we send
4643         WM_DESTROY, as the user's code can access Control.Handle in
4644         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
4645         move the WM_DESTROY/zombie handling to before the call to
4646         XDestroyWindow.  For some reason without this ordering
4647         FormTest.RecreateHandle hangs.  This ordering is semantically
4648         equivalent, however, as XDestroyWindow is async anyway.
4649
4650 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
4651
4652         * RichTextBox.cs: Reset backcolor_set after setting default.
4653
4654 2007-03-19  Chris Toshok  <toshok@ximian.com>
4655
4656         * ScrollableControl.cs: the scroll position should not effect the
4657         canvas size.  commit patch from georgegiolfan@yahoo.com, which
4658         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
4659         
4660 2007-03-19  Chris Toshok  <toshok@ximian.com>
4661
4662         * ScrollableControl.cs: clean this up a bit.  create the
4663         scrollbars in the ctor and just show/hide them as needed.  Also,
4664         make hscroll_visible/vscroll_visible internal to Recalculate, and
4665         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
4666         everywhere else.  This seems to fix the scrollbars appearing
4667         beneath the content for me (i have *no* idea why that is,
4668         however.)
4669
4670 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4671
4672         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
4673         some redundacy for stuff in Anchor and Dock that base will take care of.
4674         [Fixes #80762]
4675
4676 2007-03-19  Mike Kestner  <mkestner@novell.com>
4677
4678         * ListView.cs : make box selection for Details views without 
4679         FullRowSelect dependent on the text bounds, not item bounds.
4680         * ListViewItem.cs : add an internal property to obtain the TextBounds
4681         in Details view.  [Fixes case 1-4 of #80374]
4682
4683 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4684
4685         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
4686         we're < 2.0. #78448 && #80316
4687
4688 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4689
4690         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
4691         have the same style available as the previously selected one.  Also,
4692         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
4693
4694 2007-03-19  Jackson Harper  <jackson@ximian.com>
4695
4696         * TextControl.cs: Add an alignment property that all new lines
4697         will be given.
4698         - Make sure to use the align shift when calculating the line's X
4699         position.
4700         * TextBox.cs: Set the alignment on the document as well as on all
4701         the document lines.
4702
4703 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4704
4705         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
4706           throw if setting the parent of an mdichild that already has an
4707           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
4708           AssemblyProductAttribute in the assembly, use the type's namespace (as
4709           MS seems to do). CreateControl: don't create the handle if the control
4710           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
4711           create handle if the control is not a form. Change FocusInternal to
4712           virtual so that it can be overriden by Form.
4713         * TextBox.cs: Update call to FocusInternal.
4714         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
4715           form is not a toplevel form when it's a mdi child, so update is_toplevel
4716           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
4717           hasn't been created. Show (IWin32Window): Don't allow this overload for
4718           toplevel windows. CenterToParent/CenterToScreen/Select: create the
4719           handle as MS does. SetVisibleCore: if called on a MdiChild and the
4720           parent isn't visible yet, save the visibility and restore it when the
4721           parent is made visible.
4722         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
4723           methods, since the visibility of the scrollbars can be changed from
4724           several places, not only from AutoScroll.
4725           [Fixes #81179]
4726
4727 2007-03-19  Jackson Harper  <jackson@ximian.com>
4728
4729         * RichTextBox.cs: Enable shortcuts by default.
4730         * TextBoxBase.cs: Add conditional shortcuts.  
4731
4732 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4733
4734         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
4735
4736 2007-03-19  Chris Toshok  <toshok@ximian.com>
4737
4738         [ Fixes bug #80604]
4739         
4740         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
4741         swallow the message we're waiting on, instead of delivering it, as
4742         this is only used for the WM_SHOWWINDOW raised from
4743         MapWindow/UnmapWindow, and the message needs to be generated
4744         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
4745         before doing the Map/Unmap.  Also make sure that the Hwnd is still
4746         alive after the message has been handled.
4747
4748         *before* the window is shown.
4749
4750         * Control.cs (CreateControl): guard a few more things inside the
4751         if (!is_created) block, as we might end up being called again -
4752         yay .net.
4753         (WmShowWindow): call CreateControl if we're showing the control.
4754
4755 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4756
4757         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
4758           controls without a handle if they have any parent with a handle. In
4759           Dispose add a check whether the handle is created or not before
4760           calling BeginInvoke, this removes the need of the extra disposing
4761           parameter (which was bogus anyway since it didn't prevent the
4762           invoke from happening, it only skipped the check for an existing
4763           handle, meaning that the invoke would call on an inexistent
4764           handle).
4765
4766 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4767
4768         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
4769         appears in taskbar.
4770
4771 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4772
4773         * MessageBox.cs:
4774         - Fixed a problem that dont show help button for messages with 3 buttons.
4775         - Refactory button size and position calculations, now dont use fixed 
4776         values, also fixed button sizes (#80043) and form's border space.
4777         - AddButton method created, now all other AddButton methods call this one.
4778         - Some other source code cosmetic changes.
4779
4780 2007-03-18  Jackson Harper  <jackson@ximian.com>
4781
4782         * RichTextBox.cs: Don't do this all fonts must match check if
4783         there is only one char selected.
4784
4785 2007-03-18  Jackson Harper  <jackson@ximian.com>
4786
4787         * TreeView.cs: ScrollWindow works properly now, so we don't need
4788         to screw around with the scroll area.  This fixes some artifacts
4789         when expanding and collapsing.
4790
4791 2007-03-18  Jackson Harper  <jackson@ximian.com>
4792
4793         * TextBoxBase.cs: Allow updating the selection position when the
4794         cursor is outside the textarea, but we have a capture.
4795         * TextControl.cs: A special case for when the cursor is outside
4796         the bounds of the TB.
4797         
4798 2007-03-18  Jackson Harper  <jackson@ximian.com>
4799
4800         * TextBoxBase.cs: Remove image pasting code for now.  There is no
4801         way to get an image on the clipboard right now anyways.
4802         * TextControl.cs:
4803         * RichTextBox.cs: Use the new RTF Picture class for pictures.
4804
4805 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4806
4807         * MessageBox.cs:
4808         - Set window properties in constructor intead of on CreateParams.
4809         - Remove topmost from Window ExStyle.
4810         - Set ShowInTaskbar to false.
4811         - Set form border to FixedDialog.
4812         - Some cosmetic changes and remove unneeded comments.
4813         - It fixes itens 2,3 and 4 of bug #80043.
4814
4815 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
4816
4817         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
4818         none was explicitly set. Fixes part of bug #79949.
4819
4820 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4821
4822         * ToolStripComboBox.cs: Add AutoComplete*.
4823
4824 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4825
4826         * ToolStripComboBox.cs: Add FlatStyle.
4827
4828 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
4829
4830         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
4831         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
4832
4833 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4834
4835         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
4836           CheckBox.cs, RadioButton.cs, BindingSource.cs,
4837           DataGridColumnStyle.cs: Remove warnings.
4838
4839 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4840
4841         * Menu.cs: MergeMenu: Check menu argument for null before looping over
4842           it.
4843         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
4844           visibility of mdi child forms. FormSizeChangedHandler: update the
4845           maximized size if size has changed while maximized.
4846         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
4847           creating the handle.
4848         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
4849           avoid creating the handle if not created.
4850         * XplatUI.cs: Update debug output.
4851         * XplatUIStructs.cs: Added ToString's for a couple of structs.
4852
4853 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
4854
4855         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
4856         ProcessCmdKey().
4857         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
4858         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
4859         Implement keyboard shortcuts.
4860
4861 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4862
4863         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
4864         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
4865         ColorDialog and all derived classes.
4866
4867 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4868
4869         [ Fixes bug #79828 ]
4870
4871         * ToolBar.cs:
4872         - Rename ToolBarButtonInfor to ToolBarItem.
4873         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
4874         - Maintain an array of ToolBarItem, used instead of ToolBarButton
4875         collection to be able add same button more than one time on a toolbar.
4876         - Refactory all properties and methods to use ToolBarItem. 
4877
4878         * ToolBarButton.cs: 
4879         - Remove all propeties and methods that is now in ToolBarItem.
4880         - Rectangle propery now gets the rectangle from first ToolBarItem to
4881         mimic win32 behavior.
4882         - Size calculation and layout methods also removed.
4883
4884         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
4885         ToolBarItem instead of ToolBarButton to right drawing buttons when
4886         same button/separator was added more than one time to ToolBar.
4887
4888         * ThemeNice.cs: Same as above. 
4889
4890 2007-03-15  Andreia Gaita  <avidigal@novell.com>
4891
4892         * XplatUIX11.cs: Fire extra MouseMove events right after
4893         MouseDown and MouseUp, emulating win32's <censored> behaviour
4894         for apps that rely on it.
4895
4896 2007-03-15  Jackson Harper  <jackson@ximian.com>
4897
4898         * TextControl.cs:
4899         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
4900         it is drawn on the controls client window and there is no NC
4901         area.
4902         - Set the background color to gray on 2.0 when we are readonly.
4903
4904 2007-03-15  Chris Toshok  <toshok@ximian.com>
4905
4906         [ Fixes bug #81144 ]
4907         
4908         * XplatUIX11.cs: implement VirtualScreen independently of
4909         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
4910         property.
4911
4912 2007-03-15  Chris Toshok  <toshok@ximian.com>
4913
4914         * Hwnd.cs: add an internal field for the cached_window_state.
4915
4916         * XplatUIX11.cs: cache the window state, invalidating the cache
4917         (and thus re-querying the X server) only when we see an update to
4918         the _NET_WM_STATE property.
4919
4920 2007-03-15  Chris Toshok  <toshok@ximian.com>
4921
4922         * BindingSource.cs: get a lot of the unit tests working.
4923
4924 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4925
4926         * Control.cs: Modify UpdateStyles to store distances when bounds >=
4927         0 instead of just bounds > 0.  [Fixes bug #80912]
4928
4929 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4930
4931         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
4932         and methods.
4933
4934 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
4935         
4936         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
4937         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
4938         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
4939         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
4940
4941 2007-03-15  Chris Toshok  <toshok@ximian.com>
4942
4943         [ Fixes #81101 ]
4944         
4945         * Control.cs: add Ivan's fix for 81101, with a slight modification
4946         - you can set control.Target to null.
4947
4948 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
4949
4950         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
4951         HideDropDown, use Hide instead to prevent an NRE.
4952         [Fixes bug #81147]
4953
4954 2007-03-14  Jackson Harper  <jackson@ximian.com>
4955
4956         * TextBoxBase.cs: Mess with the creation stuff a little. We need
4957         to calculate the document before the handle is created, in some
4958         cases. (Actually just one case).
4959
4960 2007-03-14  Jackson Harper  <jackson@ximian.com>
4961
4962         * TextBoxBase.cs: Need to display the caret after letting the base
4963         wndproc handle the focus methods, because the caret display
4964         methods check the focus state.
4965         - Try to display the caret after updating it's position with SelectWord.
4966         - Don't need to do an immediate update on this recalc, since there
4967         will be an invalidate anyways.
4968
4969 2007-03-14  Jackson Harper  <jackson@ximian.com>
4970
4971         * TreeView.cs: Some workarounds so that we can match event order a
4972         little better.
4973
4974 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
4975
4976         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
4977         #80803. Avoid NullReferenceException when Control does not have
4978         parent. Fixed different blinkstyle issues. Only subscribe to Tick
4979         event a single time. Only draw error icon when control is created and
4980         visible. Fixes failing unit tests.
4981
4982 2007-03-14  Andreia Gaita  <avidigal@novell.com>
4983
4984         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
4985         Selecting events. Fire Leave and Enter events when changing tabs.
4986
4987 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
4988
4989         * TreeView.cs: Add TreeViewNodeSorter.
4990         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
4991
4992 2007-03-14  Chris Toshok  <toshok@ximian.com>
4993
4994         * Form.cs: go ahead and remove the RecreateHandles that jpobst
4995         removed earlier and I had him add back it.  It turns out metacity
4996         *does* in fact handle the MOTIF_WM_HINTS property changing, it
4997         just doesn't redraw the window titlebar until you resize the
4998         window.  This also means we aren't recreating the entire window
4999         hierarchy on X when you change this property.  And it looks better
5000         on windows, too.
5001
5002 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5003
5004         * ListViewItem.cs:
5005         * ListView.cs: Collecting selection information
5006         is now done in SelectedIndexCollection rather than in
5007         SelectedListViewItemCollection. This is done so we can
5008         have the selection information code in one single place
5009         (virtual mode selection information entirely depends on
5010         SelectedIndexCollection).
5011
5012 2007-03-13  Miguel de Icaza  <miguel@novell.com>
5013
5014         * ErrorProvider.cs: Add stubs for ISupportInitialize
5015
5016 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5017
5018         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
5019         in the right order with the right values, from the Checked property, 
5020         just as MS does (instead of triggering them from ListView).
5021
5022         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
5023
5024 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5025
5026         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
5027         the correct handler in OnItemCheck method (ItemCheckEventHandler 
5028         instead of EventHandler). This used to throw an InvalidCastException.
5029
5030 2007-03-13  Jackson Harper  <jackson@ximian.com>
5031
5032         * TextBoxBase.cs: Calculate the document before the handle is
5033         created, so there isn't an extra invalidate called.
5034
5035 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
5036
5037         * Form.cs: Don't set owner in ShowDialog until we are sure
5038         that we aren't going to throw an exception.  [Fixes bug #80773]
5039
5040 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
5041
5042         * TreeView.cs: Make it compile.
5043
5044 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5045
5046         * Control.cs: Another place we don't call SizeFromClientSize.
5047         * Form.cs: Another place we don't call SizeFromClientSize.
5048         [Fixes bug #81125]
5049
5050 2007-03-12  Jackson Harper  <jackson@ximian.com>
5051
5052         * TreeView.cs: Basically emulating some strangness here with
5053         exanding nodes and setting node positions when windows aren't
5054         created.
5055         - Also attempting to walk the node tree less than previously, and
5056         just use visible order calculations for determining offsets.
5057         - oops made scrolling backwards.
5058         * TreeNode.cs: We need to start nodes with a zero visible order,
5059         because the order calcs are based on the first nodes order.
5060
5061 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5062
5063         * Form.cs: Don't exit the program if RecreateHandle is called on
5064         the main form.
5065
5066 2007-03-12  Chris Toshok  <toshok@ximian.com>
5067
5068         * XEventQueue.cs: remove the use of PostQuitState.
5069
5070         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
5071         WM_QUIT message in GetMessage, return false (and if we're in the
5072         nested WaitForHwndMessage, repost the WM_QUIT message).
5073
5074 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5075
5076         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
5077         or the MaximizeBox properties.  [Part of bug #80640]
5078
5079 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
5080
5081         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
5082         no links.
5083
5084 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5085
5086         * ToolStripItem.cs: Fix some tests I broke by checking Visible
5087         instead of visible.
5088
5089 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
5090
5091         * FileDialog.cs: Use text of File name combobox to determine what
5092         files the user selected. Added tokenizer to parse the file names.
5093         Fixes bug #81123.
5094
5095 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
5096
5097         * Control.cs: We can't call SizeFromClientSize in the constructor,
5098         but we still need to do the same work, so make an internal version.
5099         [Fixes bug #80621]
5100
5101 2007-03-12  Jackson Harper  <jackson@ximian.com>
5102
5103         * TreeView.cs:
5104         * TreeNode.cs:
5105         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
5106         IsExpanded.
5107
5108 2007-03-12  Jackson Harper  <jackson@ximian.com>
5109
5110         * TextBoxBase.cs: Now that the handles are being created a little
5111         later, we need to make sure that the document is recalculated when
5112         the handle is created.
5113
5114 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
5115
5116         * Theme.cs: GetLinkFont abstract method added.
5117         
5118         * LinkLabel.cs: 
5119         - Remove CalcTrimRectangle, no longer needed.
5120         - Factor also remove, position issues must be fixed in libgdiplus.
5121         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
5122         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
5123         care about font used to draw links.
5124         - Set TabStop to true when control is "Selectable", control is selectable
5125         when have one or more links. Fixes #80501 (test case is also added).
5126         - Set the LinkArea values after links change, LinkArea values must be
5127         based in first link position and size, a test case was created.
5128         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
5129         the attribute must be true LinkArea.Length > 0. The same was applied to
5130         TabStop.
5131         
5132         * ThemeWin32Classic.cs: 
5133         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
5134         in draw method.
5135         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
5136         color change.
5137         - Draw focus rectangle for every parts focused, including parts that 
5138         is on another line, its because regions returns various rectangles
5139         and not only one. Needed to mimic W32 look.
5140         - Uses Graphics.Clip to delimite region painted, it mean that now 
5141         complete text is passed to DrawString, with this we solve layout
5142         issues without create another text renderer.
5143         - Uses Region.Intersect to fix some flickers problems, now only needed
5144         parts will redrawed.
5145         - This changes fixes #79614 and some other unreported issues, on Linux 
5146         some layout problems still remain, the problem is under 
5147         MeasureCharacterRanges but it is an libgdiplus bug.
5148
5149 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
5150
5151         * TextBox.cs: Set for foreground color.
5152         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
5153         this is already done in Control.
5154
5155 2007-03-10  Jackson Harper  <jackson@ximian.com>
5156
5157         * TextBox.cs: Set the background color, but reset the
5158         backcolor_set flag which is just for the user setting the
5159         background color.
5160
5161 2007-03-09  Chris Toshok  <toshok@ximian.com>
5162
5163         * Control.cs: really remove the call to XplatUI.SetVisible from
5164         CreateHandle(), like I said I did when I merged the branch.
5165
5166         * BindingSource.cs: implement some more of this stuff.
5167
5168 2007-03-09  Jackson Harper  <jackson@ximian.com>
5169
5170         * TextBox.cs: Don't explicitly set our background colors.
5171         * TextControl.cs:
5172         * TextBoxBase.cs: Draw readonly text.
5173         - Need to invalidate when backcolor or readonly are changed.
5174         
5175 2007-03-09  Jackson Harper  <jackson@ximian.com>
5176
5177         * TextBoxBase.cs: Don't set the forecolor until the handle is
5178         created.
5179         - Do not raise OnPaint, and removed some old debug code.
5180
5181 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
5182
5183         * ScrollableControl.cs: Fix mouse wheel scrolling.
5184
5185 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
5186
5187         * Control.cs: Wire up MouseDoubleClick event.
5188
5189 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
5190
5191         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
5192         top or bottom.
5193         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
5194         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
5195         item is added.  This logic was moved to ToolStrip.OnItemAdded.
5196         [Fixes bug #81090]
5197
5198 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5199
5200         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
5201
5202 2007-03-08  Jackson Harper  <jackson@ximian.com>
5203
5204         * TreeView.cs: Show the correct image for selected node (this used
5205         to work, not sure how the code got deleted). Also implemented 2.0 feature
5206         SelectedImageKey.
5207
5208 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5209
5210         * ListView.cs:
5211         * ListViewItem.cs: Cache index in items when retrieving them
5212         in VirtualMode.
5213
5214 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5215
5216         * ToolStripItem.cs: Don't return the explicit_size if we are using 
5217         AutoSize.  Fixes invalidation issue when user has explicitly set a
5218         size and has AutoSize = true.
5219
5220 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5221
5222         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
5223
5224 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5225
5226         * DataGridView.cs: Remove event handler from DataView when a
5227         DataTable is used as DataSource.
5228
5229 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
5230
5231         * Control.cs: Create internal setter for client_size to allow it to be
5232         set without triggering resizing code.
5233         * Form.cs: Calculate client_size in constructor, only change client_size
5234         in FormBorderStyle property if Handle has been created.
5235         [Fixes #80574, #80791]
5236
5237 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
5238
5239         * SystemInformation.cs: Add TerminalServerSession.
5240
5241 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5242
5243         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
5244         TreeView code.
5245
5246 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5247
5248         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
5249         Handle before we were supposed to.  Now checks ActivateOnShow property
5250         in Control.
5251         * Control.cs: Add internal ActivateOnShow property.
5252         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
5253         for ActivateOnShow.
5254         * Hwnd.cs Remove no longer needed no_activate field.
5255
5256 2007-03-07  Jackson Harper  <jackson@ximian.com>
5257
5258         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
5259         2.0 properties
5260         * DrawTreeNodeEventHandler.cs: Add
5261         * DrawTreeNodeEventArgs.cs: Correct default value.
5262         
5263 2007-03-07  Chris Toshok  <toshok@ximian.com>
5264
5265         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
5266         to be called before NativeWindow.WndProc.  Put the HwndCreating
5267         magic there to hook up our Hwnd's to handles.
5268
5269 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
5270
5271         * DataGridView.cs: Comment out debug code.
5272
5273 2007-03-07  Chris Toshok  <toshok@ximian.com>
5274
5275         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
5276         to make the rest of the world happy]
5277
5278         * Control.cs (CreateHandle): there's no need to call
5279         XplatUI.SetVisible here, it's effectively done by
5280         XplatUI.CreateWindow on X now, and always was on windows.
5281
5282         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
5283         shortcircuit out of the loop if we have a message loop running on
5284         this thread.
5285
5286         [Changelog from merge]
5287
5288         2007-03-05  Chris Toshok  <toshok@ximian.com>
5289
5290                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
5291                 causes handle creation.
5292
5293         2007-02-28  Chris Toshok  <toshok@ximian.com>
5294
5295                 * ApplicationContext.cs: Add a flag to make sure we only raise the
5296                 ThreadExit event once (ExitThreadCore can be indirectly called
5297                 from a few places.)  I don't like the additional flag, but it
5298                 makes the event ordering/count correct.
5299
5300                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
5301                 without locking the collection.  An enumerator doesn't give us any
5302                 protection from modification anyway.  Lock the thread hash and
5303                 replace the complicated enumerator loop with a foreach.
5304                 (Application.CloseForms): make internal so it can be called from
5305                 ApplicationContext.  This should probably be moved to MWFThread.
5306                 (Application.ExitThread): don't call MWFThread.Current.Exit()
5307                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
5308                 when the runloop exits (in response to WM_QUIT.)
5309                 (Application.RunLoop): add a comment (and check) for
5310                 context.MainForm being null after setting context.MainForm.Visible
5311                 = true.  This is because you're perfectly free to dispose of a
5312                 form in VisibilityChanged.  Chalk this up to another case where we
5313                 need to synchronously generate WM_ACTIVATE from Control.Show.
5314                 Also, add handling for WM_QUIT here so we'll exit the loop.
5315                 
5316                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
5317                 fact that we don't wait if we're only unmapping the whole_window
5318                 makes me a bit nervous, but it doesn't seem to cause any problems
5319                 yet.
5320
5321                 also, add a comment about the stupid, broken and wrong resetting
5322                 of PostQuitState to false in GetMessage().
5323
5324                 In PostQuitMessage, we need to add a WM_QUIT message to the
5325                 thread's queue.  We use the FosterParent to get the right
5326                 handle/hwnd/queue.
5327
5328                 Lastly, in SetVisible, we need to unmap both windows, since the
5329                 waiting only happens when we're unmapping the client window.  So
5330                 now, the *only* time we unmap just the whole_window is in the hack
5331                 for resizing a control to 0,0.
5332                 
5333         2007-02-21  Chris Toshok  <toshok@ximian.com>
5334
5335                 * Application.cs (CloseForms): rewrite this so that we don't
5336                 modify the list while we're traversing it.
5337
5338         2007-02-20  Chris Toshok  <toshok@ximian.com>
5339
5340                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
5341                 of OnHandleCreated.
5342                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
5343                 handle is created.  otherwise we'll create it here.
5344                 (VerticalScrollEvent): same here.
5345
5346                 * Application.cs (CloseForms): call Form.Dispose, don't post
5347                 WM_CLOSE_INTERNAL.
5348
5349                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
5350                 here. Application should Dispose() of the Form's.
5351
5352                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
5353                 WM_DESTROY as well.
5354                 (MapWindow,UnmapWindow): only actually do the waiting for
5355                 SHOWWINDOW if the control we're dealing with is a Form.
5356                 (CreateWindow): if the control isn't a form, SendMessage
5357                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
5358
5359                 * Control.cs (SetVisibleCore): always use is_visible here, not
5360                 value.  If we use value, we can end up re-setting something
5361                 visible if, for instance, you do Control.Hide() in a delegate
5362                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
5363
5364         2007-02-20  Chris Toshok  <toshok@ximian.com>
5365
5366                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
5367                 the message we need.  PeekMessage returning false should not be a
5368                 condition under which we exit the loop.
5369
5370         2007-02-15  Chris Toshok  <toshok@ximian.com>
5371
5372                 * Control.cs (Refresh): only refresh if we've got a handle and are
5373                 visible.
5374                 (CreateAccessibilityInstance): CreateControl() here.
5375                 (UpdateChildrenZOrder): complicate the code loop even more by
5376                 taking into account controls that haven't had their handle
5377                 created, and those that aren't visible.  But on the flip side,
5378                 simplify the code by splitting it into two loops.  one which
5379                 builds up the list of child controls we're interested in, and the
5380                 other that sets the z order of those children.
5381
5382         2007-02-14  Chris Toshok  <toshok@ximian.com>
5383
5384                 * Control.cs: Control.AccessibilityObject causes the control to be
5385                 created, not just the handle.
5386
5387         2007-02-14  Chris Toshok  <toshok@ximian.com>
5388
5389                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
5390                 problem on X where a window might have its handle created (and be
5391                 visible) while the window is unmapped.  calling XConfigureWindow
5392                 on an unmapped window is bad, and generates X errors.
5393
5394         2007-02-13  Chris Toshok  <toshok@ximian.com>
5395
5396                 * Control.cs (CreateHandle): don't loop over our children setting
5397                 their parent here.  do it when in WndProc when we're shown.
5398                 (UpdateChildrenZOrder): make this internal so we can call it from
5399                 ScrollableControl.
5400                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
5401                 creating its handle.  Also, remove the calls to PerformLayout from
5402                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
5403                 OnVisibleChanged only seems to be called directly here for the
5404                 toplevel control.  It's propagated down the window hierarchy by
5405                 calls to child.OnParentVisibleChanged.
5406                 (OnVisibleChanged): don't do layout here - it's done (oddly
5407                 enough, according to a glance at stack traces on ms.net..) in
5408                 ScrollableControl.
5409                 
5410                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
5411                 z order of our children before calling PerformLayout.
5412
5413         2007-02-12  Chris Toshok  <toshok@ximian.com>
5414
5415                 [big change, fixes #80020]
5416                 
5417                 * AccessibleObject.cs: we need to make owner internal again to fix
5418                 some of ControlAccessibleObject.
5419
5420                 * Control.cs: lots of changes here.  add support for WM_CREATE,
5421                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
5422                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
5423                 we create child controls.  leave the MonoTODO's for the
5424                 accessibility calls, but fix the exceptions so the tests pass.
5425
5426                 Add the InvalidOperationExceptions to Invoke methods, and remove a
5427                 couple of InvokeInternal methods we aren't using.
5428                 
5429                 Also, add a couple of CreateHandle calls in places where we know
5430                 the handles are being created but our code doesn't reference
5431                 .Handle.
5432
5433                 Make SetVisibleCore call OnVisibleChange if the handle isn't
5434                 created.  If the handle is created, we rely on XplatUI.SetVisible
5435                 generating the event synchronously.
5436                 
5437                 Lastly, make sure we don't use this.Handle inside CreateHandle,
5438                 because we can call back into client (and that code can dispose of
5439                 the control).
5440
5441                 * XplatUIStructs.cs: misc/cleanup.
5442
5443                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
5444                 although we don't populate the wParam properly.
5445                 (CreateWindow): generate WM_CREATE.
5446                 (MapWindow,UnmapWindow): make these calls synchronous, at great
5447                 performance expense (particularly in the unmap case), to match
5448                 win32 behavior.
5449
5450                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
5451                 to call it.
5452                 (set_MdiParent): don't recreate the handle unless it's been
5453                 created already.
5454                 
5455                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
5456                 it's created.
5457
5458                 * NativeWindow.cs: this is probably the weirdest part of the
5459                 patch.  We need a way to link up the window being created to the
5460                 WM_CREATE message.  Since we can only be creating one window at a
5461                 time on a given thread, we keep track of a per-thread reference so
5462                 we can dispatch it properly.  We also need to keep track of the
5463                 Hwnd currently being created so that the win32 backend doesn't
5464                 have problems.
5465                 
5466                 * XplatUIWin32.cs: a similar change to the one we made in
5467                 NativeWindow.cs.
5468
5469 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5470
5471         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
5472         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
5473         to draw the menu shortcut string.
5474
5475 2007-03-07  Jackson Harper  <jackson@ximian.com>
5476
5477         * TreeNode.cs: Add the 2.0 collapse method.
5478
5479 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5480
5481         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
5482
5483 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5484
5485         * DataGridView.cs: Change DataSource will clear column and row
5486         lists. Call Invalidate() to reflect DataSource change.
5487
5488 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5489
5490         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
5491         and a new row is added to it.
5492
5493 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5494
5495         * DataGridView.cs: Add columns when DataSource is en empty list but
5496         is a System.Data.DataView (from a System.Data.DataTable).
5497
5498 2007-03-06  Andreia Gaita  <avidigal@novell.com>
5499
5500         * Label.cs: Implement AutoEllipsis (2.0)
5501
5502 2007-03-06  Jackson Harper  <jackson@ximian.com>
5503
5504         * TreeView.cs: Implement 2.0 TopNode setter property.
5505         - Use a local var instead of the skipped_nodes field for computing
5506         how many nodes to skip.  Otherwise we won't scroll because the
5507         valuechanged handler checks if skipped_nodes is equal to the new
5508         value.
5509         - Implement 2.0 Sort method.
5510         - Add useless 2.0 DoubleBuffer property
5511         - Implement 2.0 LineColors property.  Lets you change the color of
5512         the lines in the tree. Terribly useful for creating non cohesive
5513         desktops.
5514         - Implement 2.0 image key feature.
5515
5516 2007-03-06  Jackson Harper  <jackson@ximian.com>
5517
5518         * TreeView.cs: We can't get the bounds of the nodes before raising
5519         the AfterSelect event, because that event could change the node's
5520         bounds (scrolling, font change, etc).
5521
5522 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5523
5524         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
5525         * Form.cs: Don't recreate handle when creating FormWindowManager, just
5526           update window styles. In CreateParams us VisibleInternal instead of
5527           VIsible to get the actual visible flag set for this form.
5528         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
5529           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
5530           handle the case when the form is already maximized, in which case
5531           it should be restored. Fixes #81043.
5532
5533 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5534
5535         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
5536
5537 2007-03-05  Jackson Harper  <jackson@ximian.com>
5538
5539         * TreeViewHitTestInfo.cs: implement.
5540
5541 2007-03-05  Jackson Harper  <jackson@ximian.com>
5542
5543         * InternalWindowManager.cs: class status fix.
5544
5545 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5546
5547         * InternalWindowManager.cs: All windows that have a parent
5548         are confined to their parent when they're being moved.
5549         Fixes #80822.
5550
5551 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
5552
5553         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
5554         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
5555
5556 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5557
5558         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
5559           buttons invisible before deciding which ones should be visible
5560           (fixes minimize/maximize buttons showing up in toolwindows). Remove
5561           an unused variable.
5562         * InternalWindowManager.cs: Remove warning.
5563
5564 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5565
5566         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
5567         to throw an InvalidOperationException is virtual mode is being used.
5568
5569 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5570
5571         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
5572         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
5573         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
5574         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
5575         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
5576         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
5577
5578 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5579
5580         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
5581           driver.KeyboardDelay from XplatUI.KeyboardDelay 
5582         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
5583           (patch by Sergey Volk)
5584
5585 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5586
5587         * ToolWindowManager.cs: Added, contains logic for
5588           tool windows.
5589         * CreateParams.cs: Add a few helper methods and an
5590           internal variable to know which control the CreateParams belongs
5591           to.
5592         * Control.cs: Call Form.ChangingParent when the
5593           parent is about to be changed.
5594         * XplatUIX11.cs: DeriveStyles (): Set
5595           caption_height for all windows that have captions and are children.
5596           Update to use ToolWindowManager instead of InternalWindowManager
5597           for ToolWindows.
5598         * XplatUIWin32.cs: Set fake window styles for all
5599           windows that have window managers.
5600         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
5601           now duplicated for mdi windows when they are
5602           maximized, first for the buttons the window itself has, then for
5603           the buttons that appear in the menu bar. Makes things a little
5604           easier). Updated UpdateWindowDecorations, SetWindowState and the
5605           mouse eventhandlers accordingly.
5606         * Form.cs: Add ChangingParent (), contains the
5607           logic of what should happen when the parent changes. In MdiParent
5608           don't set things that ChangingParent () is doing. When handling
5609           WM_CLOSE, we can close the form if there are any other modal forms
5610           and the current form is a descendent of the modal form.
5611         * InternalWindowManager.cs: A lot of refactoring,
5612           the title buttons are now extracted to a separate container class
5613           that takes care of all button code (clicks, tooltips, etc). Moved
5614           Iconic|Maximized|Normal Bounds properties to this class from
5615           MdiWindowManager, so that the window state logic can succeed for
5616           other than mdi wm's. Implemented general window state change logic.
5617           Moved CreateButtons to ThemeWin32Classic, since the theme might
5618           override which buttons are available when as well as the exact
5619           location.
5620         * FormWindowManager.cs: Added, contains logic for
5621           normal forms.
5622         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
5623           which buttons go where (and if they are at all visible). 
5624           Removed special handling of maximized windows, since they aren't special. 
5625           In DrawManagedWindowDecorations don't try to draw the text if it is
5626           empty.
5627         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
5628           use whatever the wm gives us.
5629
5630 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5631
5632         * ButtonBase.cs: Add 2.0 properties.
5633         * Button.cs: Override Draw for 2.0.
5634         * Control.cs: Add Entered and Selected properties.
5635         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
5636         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
5637         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
5638         buttons.
5639         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
5640
5641 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5642
5643         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
5644
5645 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5646
5647         * XplatUIWin32.cs: Register a new class with Windows each time we get
5648         a new ClassStyle.  [Fixes bugs #79432, #80817]
5649         * Controls.cs: Set the correct ClassStyle in CreateParams.
5650         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
5651
5652 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
5653
5654         * ListView.cs: Add fireEvent argument to ReorderColumn since the
5655         ColumnReordered event must not be signaled when modifying DisplayIndex
5656         of a ColumnHeader. Added internal ReorderColumns method which takes
5657         care of drawing, and updating the internal DisplayIndex of the
5658         ColumnHeader. Added AddColumn method which is invoked from
5659         ColumnHeaderCollection when adding or inserting columns, and which
5660         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
5661         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
5662         Recalculated dispay indices after removing a ColumnHeader.
5663         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
5664         match MS. Allows last display index to be returned after ListView
5665         is disposed. Update actual location of ColumnHeader when DisplayIndex
5666         is modified.
5667
5668 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
5669
5670         * LinkLabel.cs: Improve CalcTrimRectangle.
5671         
5672         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
5673
5674 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5675
5676         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
5677         get rectangle as a result value.
5678
5679 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5680
5681         * LinkLabel.cs: Theres some diferences between rectangle return from 
5682         MeasureCharacterRanges and the area used for DrawString to fix this 
5683         CalcMeasurementFactor method was created, it calcules the diferences
5684         to be use later to adjust rectangle in draw operations. Fixes #80473.
5685         
5686         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
5687         to adjust draw rectangle.
5688
5689 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5690
5691         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
5692         text and some other changes to reduce and optimize source code.
5693
5694 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5695
5696         * RadioButton.cs: Implement 2.0 event.
5697         * RelatedImageListAttribute.cs: Implement new class.
5698
5699 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5700
5701         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
5702
5703 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5704
5705         * CheckBox.cs: Implement 2.0 functionality.
5706
5707 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5708
5709         * ListView.cs: Refactor Add and AddRange methods of
5710         ListViewItemCollection, to not update the ListView
5711         everytime an item is added in AddRange. Also move the update
5712         code to a new CollectionChanged method, and call it
5713         from other methods that need it as well (this should also fix some
5714         bugs when Sorting is used).
5715
5716 2007-02-27  Jackson Harper  <jackson@ximian.com>
5717
5718         * TextControl.cs: Try to never let the caret stay in a non-text
5719         tag.
5720         * TextBoxBase.cs: Update the caret.
5721
5722 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
5723
5724         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
5725         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
5726         delete POINT structure, duplicate of one in XplatUIStructs.
5727         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
5728
5729 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
5730
5731         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
5732         edit box since otherwise the Label would immediately be set (even if
5733         the user did not modify the label). In OnKeyDown set Handled to true
5734         if Return or Escape was pressed. In ColumnHeaderCollection unlink
5735         columns that are to be removed. In ListViewItemCollection unlink items
5736         that are to be removed.
5737
5738 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
5739
5740         * TextRenderer.cs: If we set a GDI clip region, we need to clear
5741         it when we are done.  [Fixes bug #80949]
5742
5743 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5744
5745         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
5746
5747 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5748
5749         * ListView.cs: I forgot to commit the changes for ListView 
5750         in my previous patch.
5751
5752 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5753
5754         * Clipboard.cs: Partially implement an overload of SetDataObject.
5755         * Form.cs: Implement ShowWithoutActivation.
5756         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
5757
5758 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5759
5760         This is a first set of changes to make the Virtual mode works,
5761         by avoiding the retrieval of ListViewItem instances until
5762         draw time.
5763
5764         * ListView.cs: Store item position in the ListView instead of the
5765         ListViewItem, this way we don't request the Bounds property of
5766         ListViewItem inside the ListView calculations, as well as cache the item
5767         size in item_size field. Store indexes instead of ListViewItem
5768         instances in the matrix used by icon view. Add a ItemMatrixLocation
5769         struct to hold the row and col info of the matrix info.
5770
5771         * ListViewItem.cs: Don't store the location anymore, and only cache
5772         the rectangles for GetBounds. Use the ListView.GetItemLocation
5773         method to retrieve the actual location.
5774
5775 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5776
5777         * TextRenderer.cs: Add clipping support, thanks to George.
5778         [Fixes bug #80949]
5779
5780 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5781
5782         * ListViewItem.cs: Cancel label edit when item is removed from 
5783         ListView.
5784         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
5785         event before the edit textbox is displayed.  Added CancelEdit method
5786         which is used end to editing while ignoring the value set by the
5787         user. In EndEdit, set focus to ListView to avoid losing focus to
5788         other controls. In ListViewItemCollection.Clear, cancel editing of
5789         any of the items.  In Remove, cancel editing of item being removed.
5790         Avoid udplicate code by modifing RemoveAt to invoke Remove.
5791
5792 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5793
5794         * FileDialog.cs: Update FSEntry when move is successful. Fixes
5795         bug #80948.  
5796
5797 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5798
5799         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
5800         compatible with non X11 systems. Fixes #80901.
5801
5802 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5803
5804         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
5805         whether the item should be unselected and reselect. We do no want this
5806         when we're starting to edit the label. Do not fire the 
5807         SelectedIndexChanged event from ListView when its already been fired
5808         by modifying ListViewItem.Selected. Fixes bug #80943.
5809
5810 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5811
5812         * TextRenderer.cs: Previos commit logic was backwards.
5813
5814 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5815
5816         * TextRenderer.cs: Don't add padding on MeasureText if we were
5817         sent the NoPadding flag.
5818
5819 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5820
5821         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
5822         after DrawButton. To prevent image overlaps button borders SetClip and 
5823         ResetClip added before and after draw image. Fixes #79129.
5824
5825 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5826
5827         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
5828         window size, it fix problem when you run under win32 that theres
5829         Size diferent than ClientSize. Also fix controls size and positions
5830         to mimic Win32. Fixes #80837.
5831
5832 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
5833
5834         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
5835         menu area to fix some problems for non X11 systems. Fixes #80613.
5836
5837 2007-02-22  Jackson Harper  <jackson@ximian.com>
5838
5839         * TreeNode.cs: When a node is expanded, set its is_expanded flag
5840         even if it doesn't have any children.
5841
5842 2007-02-22  Jackson Harper  <jackson@ximian.com>
5843
5844         * TreeView.cs: Calculate the top node 'on the fly', this
5845         eliminates issues where you need to click on the tree before
5846         scrolling it to get the top node computed correctly.
5847         * TreeNodeCollection.cs: We don't need to mess with the top node
5848         anymore.
5849
5850 2007-02-22  Jackson Harper  <jackson@ximian.com>
5851
5852         * DataGridViewRow.cs: Fix typo so height can actually be set.
5853         Patch by Peter Grimm.
5854
5855 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5856
5857         * FileDialog.cs: Fixed support for renaming files and directories.
5858         * ListView.cs: Do not lose focus when edit is canceled. Process
5859         Escape as regular key (to prevent closing of dialogs).
5860
5861 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5862
5863         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
5864         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
5865
5866 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5867
5868         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
5869         did not modify label.
5870         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
5871         modified the text. Reset Label when user presses Escape in edit mode.
5872         Move focus to ListView after having cancelled or finished editing the
5873         label.
5874
5875 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
5876
5877         * ComboBox.cs: Removed unnecessary initializations. Marked items field
5878         private. Clear textbox when Text is set to null and SelectedIndex is
5879         already -1.
5880         * FileDialog.cs: Removed unnecessary initializations. Removed 
5881         workarounds for ComboBox bugs that are now fixed. Modified
5882         DefaultExt, InitialDirectory and Title property to change null to
5883         zero-length string in getters. Avoid directly accessing fields.
5884
5885 2007-02-20  Jackson Harper  <jackson@ximian.com>
5886
5887         * TextControl.cs: Remove RecalAlignments call, that was some
5888         debugging leftovers.
5889         - Don't use the line indent when we shouldn't.
5890         * RichTextBox.cs: Add support for paragraph left indents.
5891
5892 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5893
5894         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
5895         Seems like the class status pages doesn't catch params differences.
5896
5897 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5898
5899         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
5900
5901 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5902
5903         * ComboBox.cs: Setting Text should have no effect if item text of
5904         selected item exactly matches value. First lookup text using
5905         case-sensitive comparison, and fallback to case-insensitive comparison.
5906         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
5907         allow startIndex to be last index. Changed ArgumentOutOfRangeException
5908         paramname to match MS. Restart from first item if string is not found
5909         after startIndex. Fixed paramname of ArgumentNullException that is
5910         thrown for null value in ObjectCollection.Contains.
5911
5912 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5913
5914         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
5915
5916 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5917
5918         * ListControl.cs: In SelectedValue use value.Equals to compare for
5919         equality instead of ==, otherwise it will fail for strings.
5920         Fixes #80794.
5921
5922 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5923         
5924         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
5925         since the caret won't show up unless ShowSelection is true. 
5926         Fixes #80795.
5927
5928 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5929
5930         * Application.cs: When disabling all forms but the main form, do not
5931           disable any descendants of the main form (such as mdi children or
5932           other parented forms). Fixes #80822 on Windows.
5933         * Form.cs: If we have a parent, set the WS_CHILD style.
5934         * Control.cs: Update the window styles if the control whose parent has
5935           changed is a form (the WS_CHILD style has to be switched).
5936
5937 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5938
5939         * XplatUIStructs.cs: MsgUIState structure added.
5940
5941 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5942
5943         * FileDialog.cs: Removed need for separate fileName field. On 2.0
5944         profile, do not check filename(s) for illegal character if filename(s)
5945         were set non-interactively but always check on 1.0 profile. Fixed NRE
5946          in DefaultExt and only strip off first leading dot. Improve exception
5947         message when invalid Filter is set. Do not ignore InitialDirectory if
5948         it does no exist. Store specified Title, and if empty use default
5949         title (depending on type of dialog). Added an internal DialogTitle 
5950         property for retrieving dialog title. Fixed logic of displayed dir to
5951         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
5952         string as its buggy.
5953         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
5954         FileName is a zero-length string (it can never be null). Override 
5955         DialogTitle property to set default title of dialog box.
5956         * SaveFileDialog.cs: Override DialogTitle property to set default
5957         title of dialog box.
5958
5959 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5960
5961         * FileDialog.cs: Modify default text of filename and filetype labels
5962         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
5963         after we've updated the SelectedIndex. Fixes part of bug #80887.
5964         * SaveFileDialog.cs: Set text of filetype label.
5965
5966 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5967
5968         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
5969         label field. Needed by latest Jackson's fixes for ListView.
5970
5971 2007-02-16  Andreia Gaita  <avidigal@novell.com>
5972
5973         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
5974         print preview images.
5975
5976 2007-02-16  Jackson Harper  <jackson@ximian.com>
5977
5978         * ListView.cs: Make AfterLabelEdit work correctly.
5979         * FileDialog.cs: After changing the name of the folder, we have to
5980         make sure that it is created, or that we pop up an error because
5981         it already exists.
5982
5983 2007-02-16  Jackson Harper  <jackson@ximian.com>
5984
5985         * X11Dnd.cs: Implement aliases on mime handlers, so things like
5986         System.String are mapped to text.
5987         - Handle dataobjects, getting all the possible formats out of them
5988         - We dont need the drag event args before we give feedback. This
5989         allows feedback cursors to be immediate before selections have
5990         been converted.
5991
5992 2007-02-16  Jackson Harper  <jackson@ximian.com>
5993
5994         * TextBoxBase.cs: Modified the method for inserting images to
5995         taking a line and position instead of tag and position.
5996         * RichTextBox.cs: Handle PngBlip data by inserting the png image
5997         into the RTF file.
5998         * TextControl.cs: Allow images to be inserted as the first tag of
5999         a line.
6000         - Fix some off by one issues when we assume the first tag is a
6001         text tag, not an image tag.
6002
6003 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6004
6005         * ListView.cs: Set focus to ListView when ItemControl gets a
6006         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
6007         Fixes part of #80467.
6008
6009 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6010
6011         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
6012           validate Text input (if null or empty string reset Value to default
6013           value). Fixes #80830.
6014
6015 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6016
6017         * ListView.cs: Set owner as null for columns and items when
6018         Dispose is invoked. Fixes #80607.
6019
6020 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
6021
6022         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
6023         showing DropDowns, don't show a Grip when doing Flow layout.
6024         [This fixes the toolbox in PDN 2.72.]
6025         * ToolStripItem.cs: Add Anchor property and some internal properties to
6026         reduces needed changes to FlowLayout.
6027         * ToolStripOverflow.cs: Remove unused variable.
6028         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
6029         use it in the layout calculations.
6030
6031 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6032
6033         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
6034         reported in #79640.
6035         
6036         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
6037         size calculation.
6038
6039 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6040
6041         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
6042         MeasureString format, it can make button very large in some cases, it is
6043         strange but is what win32 do.
6044
6045 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6046
6047         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
6048         size calculation.
6049
6050         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
6051         rendering, the value is based on MenuAccessKeysUnderlined.
6052
6053 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
6054
6055         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
6056         for most themes.
6057         
6058         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
6059         
6060         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
6061         and use MenuAccessKeysUnderlined instead.
6062
6063 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6064
6065         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
6066         A selected control would not get a Focus call if:
6067                 - the default active control of the container is the same as
6068                   the one that was selected
6069                 - we are switching from one container to another
6070         Under these conditions, the container being selected already has
6071         an active_control, which is the same as the one being activated, 
6072         so set_ActiveControl would always return and not send the Focus
6073         call. Fix to check if the currently active control of the container
6074         is actually focused.
6075
6076 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
6077
6078         * StatusStrip.cs: Implement the spring layout.
6079         * ToolStripControlHost.cs: Make sure the hosted control's visibility
6080         always matches the host.
6081         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
6082         and TextAfterImage.
6083
6084 2007-02-13  Andreia Gaita  <avidigal@novell.com>
6085
6086         * Control.cs: Code reorganization only.
6087           - Reorganize the WndProc cases so that each case has it's own handling method, 
6088           to help with the no-line-numbering stack traces.
6089           - Formatting changes (it's vstudio's fault, really :p)
6090
6091 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6092
6093         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
6094           Thread.CurrentUICulture to match DateTimePicker's (and MS)
6095           behaviour.
6096
6097 2007-02-12  Jackson Harper  <jackson@ximian.com>
6098
6099         * RichTextBox.cs:
6100         * TextBox.cs: By default we have a non multiline document
6101         - use the multiline property instead of the internal variable
6102         * TextBoxBase.cs: Treat multiline and non multiline the same in
6103         most places.
6104         - Use the documents multiline flag instead of tracking it ourself
6105         * TextControl.cs: Attempt at getting multiline to match MS
6106         behavior.  Lines now track an offset, which is either their X or Y
6107         offset depending on whether or not we are in multiline mode.
6108         - Update all the methods to understand that lines have an X value.
6109         - Fix crash in Undo::Duplicate when empty lines are deleted.
6110
6111 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6112
6113         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
6114         code moved to properties PreferredHeight and PreferredWidth. It solve the
6115         all problems when preferred sizes must be recalculated. Fixes #80801.
6116
6117 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
6118
6119         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
6120         font height when compatible_text_rendering is false. Partially fix #80801.
6121
6122 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6123
6124         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
6125
6126 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6127
6128         * Form.cs: Improved exception messages in ShowDialog.
6129
6130 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
6131
6132         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
6133         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
6134         if not set. Fixes bug #80764. Avoid accessing current_settings field
6135         directly.
6136
6137 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
6138
6139         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
6140         false.
6141
6142         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
6143         public in 2.0 and for easy maintenance and dont break compatibility it is 
6144         internal in 1.1.
6145         
6146 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6147
6148         * ToolStripItem.cs: Implement using images from ImageList.
6149
6150 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6151
6152         * DateTimePicker.cs: Change default date-formatting culture from
6153           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
6154           seems to be the way MS does it.
6155
6156 2007-02-08  Andreia Gaita  <avidigal@novell.com>
6157
6158         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
6159         (the 6 was cut off on the right side)
6160
6161 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6162
6163         * Form.cs: Tell MenuStrips to close when the form is clicked.
6164         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
6165         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
6166         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
6167         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
6168         support for Overflow, where items that do not fit are automatically
6169         reparented to a drop down menu.
6170         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
6171         Also: fixes bug #80747.
6172
6173 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6174
6175         * ComboBox.cs: Remove warning (unused code).
6176         * ScrollableControl.cs: Remove warning for 1.1 profile.
6177
6178 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6179
6180         * Form.cs: Remove a warning.
6181
6182 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6183
6184         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
6185           'g' specifier, not documented anywhere, but seems to always show up
6186           as a single space (might have something to do with the DateTime 'g'
6187           specifier, which is the era format, but since DateTimePicker can't
6188           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
6189           won't crash if the format has an unmatched quote. Now shows
6190           single-character formats correctly. Fixes #80744.
6191
6192 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
6193
6194         * StatusStrip.cs: Stretch property needs to call base.Stretch,
6195         not this.Stretch to fix stack overflow. [Fixes bug #80760]
6196
6197 2007-02-07  Chris Toshok  <toshok@ximian.com>
6198
6199         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
6200         background color.  it overwrites the background image we've
6201         already painted.  Fixes #80599.
6202
6203 2007-02-07  Chris Toshok  <toshok@ximian.com>
6204
6205         * DataGrid.cs: return immediately from Edit() when there are no
6206         columns.  Fixes #80662.
6207
6208 2007-02-07  Chris Toshok  <toshok@ximian.com>
6209
6210         * MessageBox.cs: fix #80625.  don't always show the Help button in
6211         2.0.  use the displayHelpButton parameter to determine if we
6212         should show it. Also, make the internal show_help field private.
6213
6214 2007-02-07  Chris Toshok  <toshok@ximian.com>
6215
6216         * Control.cs (SetVisibleCore): check in the proposed patch for
6217         80604, and set is_visible before calling CreateControl.
6218
6219 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
6220
6221         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
6222         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
6223         on it.
6224
6225 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
6226
6227         * MenuAPI.cs: hotkey_active internal field added, it is required because
6228         we need to know when hotkeys must be draw, before this change a keystate
6229         Navigating was used but we can have menu in navigating state without
6230         hotkeys. Fixes #80694.
6231         
6232         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
6233
6234 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6235
6236         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
6237           corresponding events and methods to be internal for 1.1 profile and
6238           public for 2.0 profile (required by SizeGrip).
6239         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
6240           implicit control list). Don't set the size nor the location of the
6241           SizeGrip anymore as it's not needed.
6242         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
6243           draw directly on the captured control (fixes #80656). Removed
6244           ShowGrip (it wasn't used anywhere), redraw (always true), added
6245           GetDefaultSize and GetDefaultRectangle to calculate defaults.
6246         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
6247           be called from SizeGrip.
6248
6249 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6250
6251         * Timer.cs: Throw ArgumentException if Interval <= 0.
6252
6253 2007-02-05  Jackson Harper  <jackson@ximian.com>
6254
6255         * TreeView.cs: We need to check scrollbar visibility when window
6256         visibility is updated, because non visible trees don't ever add
6257         scrollbars.
6258         * Cursor.cs: We want the override cursor to be reset to NULL when
6259         we set current cursor to the default cursor.
6260
6261 2007-02-05  Jackson Harper  <jackson@ximian.com>
6262
6263         * TextControl.cs: Don't have crlfs when we are non multiline.
6264         - Consolidate the line position.
6265
6266 2007-02-05  Jackson Harper  <jackson@ximian.com>
6267
6268         * X11Keyboard.cs: BACK+CTRL gets a special char code.
6269
6270 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6271
6272         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
6273           handling LeaveNotify->NotifyUngrab in order to send
6274           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
6275           after calling XUngrabPointer, so we call WindowUngrabbed directly
6276           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
6277         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
6278           MouseCaptureChanged correctly. Also create handles if changing
6279           Capture (matches MS behaviour).
6280
6281 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6282
6283         * SizeGrip.cs: Make the last change 2.0 only.
6284
6285 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6286
6287         * SizeGrip.cs: If resizing and the capture is lost, revert any size
6288           changes to initial size (fixes #80597).
6289
6290 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6291
6292         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
6293
6294 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6295
6296         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
6297           background) and only allow dragging if enabled. This way the
6298           sizegrip can be used to fill the open square that otherwise would
6299           have been shown in the bottom right corner of ScrollableControl
6300           when ScrollableControl is not suppose to support sizing.
6301         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
6302           sizegrip is shown and enabled, and hook up with necessary events.
6303
6304 2007-02-01  Chris Toshok  <toshok@ximian.com>
6305
6306         * DataGridTextBoxColumn.cs: clean up the
6307         GetFormattedString/GetColumnValueAtRow combination of functions.
6308         Also fix UpdateUI, and the initial state of
6309         IsInEditOrNavigateMode.
6310
6311         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
6312         aren't supposed to scroll the textbox here, we're supposed to
6313         scroll the datagrid.
6314
6315 2007-02-01  Chris Toshok  <toshok@ximian.com>
6316
6317         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
6318         setting the position.
6319
6320 2007-02-01  Chris Toshok  <toshok@ximian.com>
6321
6322         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
6323         here, since the most recent focus fixes keep us from generating
6324         the Leave event when our textbox gets focus.
6325         (Edit): we should be passing null for the column style's
6326         instantText parameter.
6327         
6328 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
6329
6330         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
6331         raised.  Fixes menu text/icons not showing up in PDN.
6332
6333 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6334
6335         * Control.cs: Remove code in constructor that makes every
6336         control with WS_CHILD set have initial location -1, -1.
6337
6338 2007-01-31  Jackson Harper  <jackson@ximian.com>
6339
6340         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
6341         XplatUIX11.
6342         * XplatUIX11.cs: Give teh keyboard to teh dnd.
6343
6344 2007-01-31  Jackson Harper  <jackson@ximian.com>
6345
6346         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
6347         - Remove some debug code.
6348
6349 2007-01-31  Jackson Harper  <jackson@ximian.com>
6350
6351         * XplatUIX11.cs: If you set the override cursor during a grab, it
6352         should actually override the grab cursor.  This comes into play
6353         when you are setting custom cursors in a DND feedback method.
6354
6355 2007-01-31  Jackson Harper  <jackson@ximian.com>
6356
6357         * X11Dnd.cs: Add support for handling the QueryContinue and
6358         GiveFeedback events.
6359         - Cancel drag and drop actions when the escape key is clicked.
6360         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
6361         can handle the ESCAPE key.
6362         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
6363         done when dnd events are continued after the button is released.
6364         - Add a new helper method so that dnd can translate key events.
6365
6366 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
6367
6368         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
6369         make it more obvious what is happening.
6370
6371 2007-01-30  Jackson Harper  <jackson@ximian.com>
6372
6373         * XplatUIX11.cs: Don't break when handling button release in drag
6374         and drop operations. We need that BUTTONUP message to get through
6375         so capture is released.
6376         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
6377         this is handled automatically when the mouse is down.
6378
6379 2007-01-30  Jackson Harper  <jackson@ximian.com>
6380
6381         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
6382         is closed, so we need to make sure that we aren't changing the
6383         dialog result when the OK (Open or Save) button has been clicked
6384         and we are closing the window ourselves.  Note we don't need to
6385         worry about the cache being written in this case, because it was
6386         already done in the previous FilOk call.
6387
6388 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6389         
6390         * DateTimePicker.cs: Remove a warning.
6391         * ComboBox.cs: Remove a couple of warnings.
6392
6393 2007-01-29  Chris Toshok  <toshok@ximian.com>
6394
6395         * XplatUIX11.cs: don't crash, and remove the icon if the user has
6396         set one, if SetIcon is passed a null icon.
6397
6398 2007-01-29  Andreia Gaita  <avidigal@novell.com>
6399
6400         * TextBox.cs: Redraw when the password characters changes
6401         * TextControl.cs: Check if textbox has a password char and draw 
6402         a line of password chars instead of the text in the line. LineTag gets 
6403         an extra Draw() method which allows document.Draw to override the text 
6404         that will be drawn. Removes 1024 char limitation on length of passworded 
6405         lines.
6406
6407 2007-01-29  Jackson Harper  <jackson@ximian.com>
6408
6409         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
6410         single chars is not.
6411
6412 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
6413
6414         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
6415         one pixel.  Fix a StackOverflowException caused by an overload wrongly
6416         calling itself.
6417
6418 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
6419
6420         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
6421         also remove ProcessArrowKey and put the code inside ProcessKeys.
6422
6423 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
6424
6425         * PaddingConverter.cs: Added.
6426
6427 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6428         
6429         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
6430         ShowPanels is false (fixes #80600). Only draw up to 127 characters
6431         of text (fixes #80601). For panels clip the text to draw to the
6432         panel (fixes #80603).
6433
6434 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6435
6436         * ComboBox.cs: Fixed implementation of ResetText.
6437
6438 2007-01-25  Jackson Harper  <jackson@ximian.com>
6439
6440         * TextControl.cs: For the last char of a line we need to use the
6441         line size, not that chars width, since it won't actually be
6442         computed since the right side of a char is based on the start of
6443         the left side of the next char, and the next char does not exist.
6444
6445 2007-01-25  Chris Toshok  <toshok@ximian.com>
6446
6447         * Splitter.cs: fix the new unit tests, and reindent some switch
6448         statements.
6449
6450 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6451
6452         * ComboBox.cs: Implemented 2.0 methods and events.
6453         * TextBoxBase.cs: Added OnTextUpdate, so that
6454         ComboBox.ComboTextBox can inform ComboBox of it.
6455
6456 2007-01-25  Jackson Harper  <jackson@ximian.com>
6457
6458         * TextControl.cs: Respect ShowSelection when deciding whether or
6459         not to display the caret, this allows comboboxes to have carets
6460         when the combotextbox does not have focus.
6461
6462 2007-01-25  Jackson Harper  <jackson@ximian.com>
6463
6464         * TextControl.cs: Add a Suspend/Resume for updating, basically the
6465         same as the Suspend/Resume for recalc, except this will do actual
6466         Invalidates.
6467         - New Undo manager, works much like the MS version.
6468         - Implemented Redo
6469         * TextBoxBase.cs: The Cut operation is undoable.
6470
6471 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6472         
6473         * TextBoxBase.cs: Don't antialias text. Makes it look way better
6474         on Windows (no difference on Linux).    
6475
6476 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6477
6478         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
6479         we don't want to activate any windows. Fixes #79433.
6480
6481 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
6482
6483         - ButtonBase.cs: Fix capitalization of parameter: disposing.
6484         [Fixes bug #80609]
6485
6486 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
6487
6488         * FileDialog.cs:
6489         - Move to using System.ComponentModel.EventHandlerList
6490         - Replace Refresh with Invalidate
6491         - Clear the mime filecache on closing
6492         - Some other memory reducing work. After beeing closed FD now uses
6493           only about 300 KB for the fdo mime stuff plus the memory of the
6494           cached icons.
6495         * Mime.cs: Changed coding style and removed unnecessary commented
6496         code. Some more memory memory reducing work.
6497
6498 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6499
6500         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
6501         a few other missing 2.0 properties.
6502         * Theme.cs: Added DrawFlatStyleComboBox.
6503         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
6504
6505 2007-01-24  Chris Toshok  <toshok@ximian.com>
6506
6507         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
6508         wake_waiting flag, not just when there's data to be read.  if we
6509         don't, then future wakeup's won't reach us and we'll be doomed to
6510         wait for the entire 1 second timeout forever (unless there are X
6511         events to be had).
6512
6513 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6514
6515         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
6516         until you pass Items.Count, not Items.Count - 1 like 1.1.
6517
6518 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
6519
6520         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
6521
6522 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6523
6524         * ToolStripContainer.cs: The recent Dock fix exposed that I was
6525         adding the panels in the wrong order.
6526
6527 2007-01-24  Jackson Harper  <jackson@ximian.com>
6528
6529         * TextBoxBase.cs: When we move the caret we also need to move the
6530         selection, this fixes some random crashing after doing select
6531         text, unselect, delete a char, paste.
6532
6533 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6534
6535         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
6536
6537 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6538
6539         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
6540         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
6541         * ToolBar.cs: Force redraw in BackgroundImageChanged.
6542
6543 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6544
6545         * ToolBar.cs:
6546         - Implement support for vertical toolbars. Fixes #80539;
6547         - Call LayoutToolBar when resize, it fix some other problems in layout.
6548         - Rename requested_height to requested_size, as we can have width on it
6549         when toolbar is vertical.
6550         - Create a private property "Vertical" that uses Dock to verify when 
6551         toolbar is vertical or not.
6552         - Set ControlStyles when change Dock property.
6553         - Refactory in LayoutToolBar to have better variables names and to support
6554         vertical toolbars.
6555         - Fixes default value for ButtonSize when button count is equal zero, size
6556         must be (39, 36) test case writed.
6557
6558 2007-01-23  Chris Toshok  <toshok@ximian.com>
6559
6560         * Control.cs: fix the checks so that they work correctly for mdi
6561         parents/children.
6562
6563 2007-01-23  Chris Toshok  <toshok@ximian.com>
6564
6565         * Control.cs: ControlCollection seems to have super-secret
6566         abstraction breaking knowledge of Mdi containers.  allow MdiClient
6567         to add toplevel controls.
6568
6569 2007-01-23  Chris Toshok  <toshok@ximian.com>
6570
6571         * Control.cs: throw an ArgumentException if a toplevel control is
6572         added to our control collection from ControlCollection.Add, as
6573         well as from ControlCollection.IList.Add.  This fixes the
6574         ControlSetTopLevelTest.TestTopLevelAdd unit test.
6575
6576         Also, in ControlCollection.IList.Add, don't through an
6577         ArgumentNullException, throw an ArgumentException, when value ==
6578         null.  This matches MS.
6579
6580 2007-01-23  Chris Toshok  <toshok@ximian.com>
6581
6582         * BindingSource.cs: initial, incomplete, implementation of
6583         BindingSource.
6584
6585 2007-01-23  Jackson Harper  <jackson@ximian.com>
6586
6587         * TextControl.cs:
6588         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
6589         that I can fix a broken unit test (TextBoxTest::ClearUndo)
6590         
6591 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6592
6593         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
6594
6595 2007-01-23  Andreia Gaita  <avidigal@novell.com>
6596
6597         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
6598         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
6599         IndexOfKey() for 2.0
6600
6601 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6602
6603         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
6604         to prevent it from changing z-order.
6605         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
6606         leave UI updates in MdiWindowManager.
6607         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
6608         1 sized (NC handling goes weird on Linux otherwise).
6609         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
6610         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
6611         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
6612         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
6613         and SetWindowState(s) to allow for changing the size of an activated child
6614         before activating it (reduces a lot of flicker).
6615
6616 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6617
6618         * Form.cs: Changing FormBorderStyle has different semantics based
6619         on whether the Form is visible or not.  If not visible, don't change
6620         the Size.  But InvalidateNC needs to be called to force the window
6621         to pick up the changes and redraw itself.  [Fixes bug #80574]
6622
6623 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6624
6625         [Moma work]
6626         * ContainerControl.cs: ProcessCmdKey.
6627         * ErrorProvider.cs: new constructor.
6628         * Form.cs: fix AutoValidateEvent compiler warning.
6629         * Label.cs: fix OnAutoSizeChanged compiler warning.
6630         * MenuStrip.cs: fix CanOverflow compiler warning.
6631         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
6632         * TextBox.cs: Dispose.
6633         * ToolStrip.cs: CanOverflow, re-enable double buffering.
6634         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
6635         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
6636         * ToolStripItem.cs: Overflow, RightToLeft properties.
6637
6638 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6639
6640         * Form.cs: Move the layout of the main form to MdiWindowManager.
6641         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
6642         do a layout of the main window to update MdiClient's client area to
6643         the right area. Fixes #80533. Remove the calculation of nc size, 
6644         it was just wrong and the correct one is the same as for 
6645         InternalWindowManager. 
6646
6647 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
6648
6649         * Control.cs: Setting Anchor or Dock needs to reset the other
6650         to its default.  [Fixes bug #80556]
6651
6652 2007-01-20  Chris Toshok  <toshok@ximian.com>
6653
6654         * CheckedListBox.cs: class status changes.
6655
6656         * ScrollableControl.cs: same.
6657
6658         * RichTextBox.cs: same.
6659
6660         * ContainerControl.cs: same.
6661
6662         * ListView.cs: same.
6663
6664         * NotifyIcon.cs: same.
6665
6666         * MenuStrip.cs: same.
6667
6668         * RadioButton.cs: same.
6669
6670         * CheckBox.cs: same.
6671
6672         * PrintPreviewDialog.cs: same.
6673
6674         * Form.cs: same.
6675
6676 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
6677
6678         * TreeNode.cs: Apply Alan's patch for Name property.
6679
6680 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6681         
6682         * Form.cs: Implemented SizeGripStyle.
6683         * SizeGrip.cs: Check for minimum and maximum size for the
6684         control being resized and only resize if size has actually
6685         changed.
6686
6687 2007-01-19  Chris Toshok  <toshok@ximian.com>
6688
6689         * DataGridColumnStyle.cs: stop setting _readonly in the
6690         PropertyDescriptor setter.  fixes a unit test failure.
6691
6692         also, rename ParentReadOnly to TableStyleReadOnly, and have it
6693         just consult our table style (if we have one).  We don't need to
6694         consult the datagrid readonly attribute because that's passed in
6695         as the _ro arg to Edit.  this simplifies things a little.
6696         
6697         * DataGrid.cs: use CurrentColumn instead of
6698         current_cell.ColumnNumber just to simplify some of the code.
6699
6700         switch the order of some things in the CurrentCell setter to keep
6701         the previous cell from getting a textbox again -
6702         EnsureCellVisibility causes scrolling to happen, which calls Edit.
6703         So we need to set the new cell before calling it.
6704         
6705         call Edit in OnEnter, as does Microsoft.
6706         
6707         also, make sure the current table style isn't the one we create
6708         initially when checking to see if it's different than the one
6709         we're setting it to in BindColumns (this fixes #80421).
6710
6711         * GridTableStylesCollection.cs: table styles can have "" for a
6712         mapping name.  part of the fix for #80421.
6713
6714         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
6715         Edit significantly.
6716
6717 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6718
6719         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
6720         and less GDI object leaky-er.
6721
6722 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6723
6724         * LinkLabel.cs: Add opaque control style
6725
6726 2007-01-18  Jackson Harper  <jackson@ximian.com>
6727
6728         * TextControl.cs: Calculate width properly.
6729         - Don't store the tag's X offset, this can be figured out very
6730         easily.
6731         - When getting the caret tag make sure to get the last empty tag.
6732
6733 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6734
6735         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
6736         [Fixes bug #79959]
6737
6738         * Control.cs: Color.Empty shouldn't count for previous transparent
6739         redraw changes.
6740
6741 2007-01-18  Jackson Harper  <jackson@ximian.com>
6742
6743         * TextBox.cs:
6744         * RichTextBox.cs:
6745         * TextControl.cs: Starting to merge in some pieces of my older
6746         undo work.  Basically just some slight cleanup of the undo API.
6747
6748 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6749
6750         * TrackBar.cs: Fix signature of RightToLeftLayout.
6751         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
6752         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
6753         * Application.cs: Implemented UseWaitCursor.
6754
6755 2007-01-18  Jackson Harper  <jackson@ximian.com>
6756
6757         * TextControl.cs: We can't skip tags if any part of the tag is
6758         visible.
6759
6760 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6761
6762         * ContainerControl.cs: Override OnLayout.
6763
6764 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6765
6766         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
6767
6768         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
6769         everything else.
6770
6771 2007-01-18  Chris Toshok  <toshok@ximian.com>
6772
6773         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
6774         (leftover from the container_selected days, I'd wager).  fixes bug
6775         #80546.
6776
6777 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6778
6779         * Control.cs: Apply patch from George to fix the new testcase on
6780         bug #80451.  We can't just check for Color.Transparent, we need 
6781         to check if the back color's alpha channel is < 255.
6782
6783 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6784
6785         * Form.cs: Move setting show_icon = true to before the constructor
6786         so that the base constructor has that information when it calculates
6787         the form's size.  Was causing forms to be (6, 6) bigger than they
6788         were supposed to be.  Thanks for catching this Rolf!
6789
6790 2007-01-18  Jackson Harper  <jackson@ximian.com>
6791
6792         * TextControl.cs: When replacing a selection we need to invalidate
6793         from the initial selection start, because selection start is moved
6794         to the end of the replacement.
6795
6796 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6797
6798         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
6799
6800 2007-01-18  Chris Toshok  <toshok@ximian.com>
6801
6802         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
6803         I just added.
6804
6805 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
6806
6807         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
6808         layout methods and properties from ToolBarButton must be available
6809         into ToolBarButtonInfo.
6810
6811 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6812
6813         * Control.cs: If the control has a transparent background, we
6814         need to refresh it when it moves and when it's parent's background
6815         image changes.  [Fixes bug #80451]
6816
6817 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6818
6819         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
6820
6821 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6822
6823         * XplatUIWin32.cs: Implement proper double buffering for Windows.
6824         [Fixes bug #80447, and probably speeds up things as well]
6825
6826 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6827
6828         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
6829         * XplatUIWin32.cs: We need to recalculate NC size after changing 
6830         window style to toolwindow (otherwise the client rectangle will be
6831         3 pixels to small for some reason).
6832         * MdiWindowManager.cs: Revert NC size calculations to match how
6833         they are calculated only based on window styles (to match
6834         Win32AdjustWindowRectEx, since otherwise when setting size or 
6835         location, Control will call Win32AdjustWindowRectEx to update client 
6836         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
6837         calculate a different value of client size causing another paint 
6838         (and flickering))
6839         * InternalWindowManager.cs: When moving or resizing a window only
6840         update size or location if they actually changed.
6841         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
6842         (seems to match Windows behaviour better). Cleaned up 
6843         ManagedWindowDecorations to draw what's needed and nothing else
6844         (was drawing borders and lines where they shouldn't be)
6845         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
6846         (style = 0xFFFF) and takes into account caption height when 
6847         calculating window rectangle.   
6848
6849 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6850
6851         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
6852         can be added to toolbar multiple times, we need to maintain a list of 
6853         button information for each positions.
6854
6855 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6856
6857         * ToolBar.cs: Some small stetic changes.
6858
6859 2007-01-16  Jackson Harper  <jackson@ximian.com>
6860
6861         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
6862         that allow us to have nested recalc = false blocks.
6863         - Add paste support for images in the RichTextBox
6864         * RichTextBox.cs: flush the text after the color is changed, so
6865         the change takes effect.
6866         - Use SuspendRecalc
6867         - Some extra debugging info
6868         * TextControl.cs: Tags no longer track their length, it is just
6869         computed from the next tags length, this makes things a little
6870         simpler and reduces places that we have to track length changes.
6871         - Refactored the linetag class a little so we could make it
6872         a base class for different kinds of tags
6873         - Created a image tag, a tag that can have a single image inserted
6874         into it
6875         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
6876         that we can call suspend multiple times.
6877         - Add some debugging methods
6878
6879 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6880
6881         * MdiClient.cs: Add ActivatePreviousChild for 
6882         mdi child window navigation.
6883         * Form.cs: Use MdiClient.ActivateNextChild/
6884         ActivatePreviousChild instead of Form.SelectNextControl
6885         to select the next/previous child since 
6886         SelectNextControl doesn't do it in the same order
6887         as mdi children should do it.
6888
6889 2007-01-16  Chris Toshok  <toshok@ximian.com>
6890
6891         * Control.cs: remove container_selected field.
6892
6893 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6894
6895         * MdiClient.cs: Update main form's ActiveChild when
6896         updating keyboard focus for the mdi child.
6897
6898 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
6899
6900         * Control.cs: PreferredSize fix.
6901
6902         * Form.cs: Add several 2.0 events, properties, and methods.
6903
6904 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
6905
6906         * Form.cs: Provide meaningful message when MdiParent is assigned a
6907         Form that is not an MdiContainer.
6908
6909 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6910
6911         * MdiClient.cs: Update main form's ActiveChild when
6912         activating a mdi child.
6913
6914 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6915
6916         * MdiWindowManager.cs: Fix NRE when merging menus and main form
6917         doesn't have a menu.
6918
6919         * Form.cs: Request NCRecalc after creating a mdi child window.
6920         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
6921         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
6922         
6923         * MdiClient.cs: Add new method SendFocusToActiveChild that either
6924         sends keyboard focus to the active child, or to the MdiClient
6925         if there are no child forms.
6926         
6927 2007-01-15  Chris Toshok  <toshok@ximian.com>
6928
6929         * ListView.cs: drop the *Internal overrides, just do our work in
6930         ItemControl's WndProc instead.
6931
6932         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
6933         of the various controls, and forward the events properly (in the
6934         same manner as MS) from the textbox to the UpDown.  Also the
6935         ActiveControl of the UpDownBase gets set properly now.  Finally,
6936         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
6937
6938         * NumericUpDown.cs: set Text in the ctor.
6939
6940         * DomainUpDown.cs: call UpdateEditText in the ctor.
6941         
6942         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
6943         so even a Selectable = false textbox can be focused if you click
6944         in it.  Go figure.
6945
6946         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
6947         just add their handling in their respective WndProc's.  Also add
6948         an explicit FocusInternal method that doesn't consult CanFocus
6949         before calling Select(this).
6950
6951         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
6952         do our work in WndProc instead.
6953
6954         * TabControl.cs: same.
6955
6956         * ComboBox.cs: same.
6957
6958 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6959
6960         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
6961         Fixes #80006.
6962
6963 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
6964
6965         * ListViewItem.cs:
6966         * ThemeWin32Classic.cs: Don't draw the item text outside
6967         item bounds in Details view, as well as use trimming.
6968         Fixes bug #80376.
6969
6970 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6971
6972         * Form.cs: Implement Form.ShowIcon.
6973         
6974         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
6975         null, which when combined with the DlgModalFrame window style removes
6976         the icon from the title bar.
6977
6978 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6979
6980         * Control.cs: Call OnMouseClick after OnClick. (2.0)
6981
6982 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6983
6984         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
6985         menu when mdi child windows theres a menu, uses insert to get icon
6986         at first position. Partially fix #80006.
6987
6988 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6989
6990         * Clipboard.cs: Implement 2.0 methods.
6991
6992 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6993
6994         * Menu.cs: Implement Insert method of MenuItemCollection class
6995         to fix MenuMerge.
6996
6997 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6998
6999         * ListView.cs: Implement 2.0 FindItemWithText method.
7000
7001 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
7002
7003         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
7004         to calculate menu bar size. Fixes #80290.
7005
7006 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
7007
7008         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
7009
7010 2007-01-11  Chris Toshok  <toshok@ximian.com>
7011
7012         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
7013         initial form.
7014
7015 2007-01-11  Chris Toshok  <toshok@ximian.com>
7016
7017         * LinkLabel.cs: make sure to call base.Select in our Select method
7018         if it turns out we're going to be selected (i.e. if we have a link
7019         that is going to receive focus).  That way our container's
7020         ActiveControl is updated properly.
7021
7022 2007-01-11  Chris Toshok  <toshok@ximian.com>
7023
7024         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
7025         they have 1 or more links.  this fixes the crash gert reported.
7026
7027 2007-01-11  Andreia Gaita  <avidigal@novell.com>
7028
7029         * ContainerControl.cs: Remove ContainerSelected flag, not needed
7030         anymore.
7031
7032         * Control.cs (Controls.Add): Check if control to be added to the collection
7033         is a top level control, and throw an ArgumentException if it is.
7034         Remove ContainerSelectedFlag, not needed anymore.
7035
7036         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
7037         top most control doesn't activate the form. This fixes a problem in the
7038         MessageBox, where the default button wouldn't get focus because the form
7039         was activated before being Loaded - when the Owner is set, SetTopMost is
7040         called, and it would activate it.
7041
7042 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
7043
7044         * Button.cs: When clicked and setting the parent form's DialogResult,
7045         use FindForm instead of Parent, since parent could be a container
7046         control and not the Form.  Fixes bug #80495.
7047
7048 2007-01-10  Chris Toshok  <toshok@ximian.com>
7049
7050         * Form.cs: move the call to SendControlFocus into the same
7051         is_loaded check.
7052
7053 2007-01-10  Chris Toshok  <toshok@ximian.com>
7054
7055         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
7056         It breaks in the face of the new ActiveControl stuff, and should
7057         be unnecessary.
7058
7059         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
7060         activecontrol's focus if it's not already set, after we set
7061         ActiveControl, but before we call OnActivated.  Re-fixes #79667
7062         after the previous focus/active control fixes regressed it.
7063
7064         * Control.cs: reindent some code.
7065         
7066 2007-01-10  Chris Toshok  <toshok@ximian.com>
7067
7068         * Splitter.cs: clearing some outstanding changes from my tree.
7069         Replace all accesses (not writes) to the internal dock_style field
7070         with the Dock property.
7071
7072 2007-01-10  Chris Toshok  <toshok@ximian.com>
7073
7074         * Control.cs: make FireEnter, FireLeave, FireValidating, and
7075         FireValidated virtual.
7076
7077         * Form.cs: override and don't chain up calls to FireEnter and
7078         FireLeave.
7079
7080 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7081
7082         * ListView.cs: Add more text padding space when using
7083         auto resize for columns (the previous value didn't work fine).
7084
7085         * ThemeWin32Classic.cs: Update text position inside columns,
7086         to match the appeareance of .Net.
7087
7088         * ColumnHeader.cs: When using auto resize, only the Width should
7089         depend on the sub items, not the Height. Also, set width after
7090         auto resizing (the value of Width should never remain as -1 or -2).
7091
7092 2007-01-10  Chris Toshok  <toshok@ximian.com>
7093
7094         * Application.cs: fix compilation errors when debug is enabled.
7095
7096 2007-01-10  Chris Toshok  <toshok@ximian.com>
7097
7098         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
7099         add some nice ascii art pictures and explanation of the process).
7100         (GetMostDeeplyNestedActiveControl): new utility function we need
7101         because our ActiveControl can refer to a child container with its
7102         own ActiveControl.
7103
7104         * Form.cs (OnActivated): remove the call to SelectActiveControl
7105         from here, since you can override this method and not chain up,
7106         and winforms still sets the active control.
7107         (OnCreateControl): also remove the unnecessary SelectActiveControl
7108         call from here.
7109         (WndProc): it's actually called from the WM_ACTIVATE block, just
7110         before calling OnActivated.
7111
7112         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
7113         inside the else.  the ActiveControl setter will end up setting
7114         focus on @control.  This keeps us from setting it again (and
7115         generating an extra LostFocus/GotFocus pair).
7116         (Select (bool, bool)): reindent.
7117
7118 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
7119
7120         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
7121         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
7122         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
7123         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
7124         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
7125         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
7126         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
7127         ToolStripTextBox.cs: Another wave of corcompare work.
7128
7129 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7130
7131         * ColumnHeader.cs: Implement 2.0 AutoResize method using
7132         the Width property.
7133
7134         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
7135         methods by callling Column.AutoResize method on columns.
7136
7137 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7138
7139         * Control.cs: Provide proper implementations of PreferredSize
7140         and GetPreferredSize (2.0).
7141
7142 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
7143
7144         * Form.cs: Remove one character (!) to make my previous OnClosing
7145         stuff work for modal windows like MessageBox.
7146
7147 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7148
7149         * ListView.cs:
7150         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
7151         ListView.Columns to get the last displayed column. Fixes #80452.
7152
7153 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
7154
7155         * Label.cs, LinkLabel.cs: Source code identation fixes.
7156
7157 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
7158
7159         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
7160         we dont need to invalidate only borders because when we invalidate four
7161         border lines the invalidate's generates a complete redraw of button, 
7162         because it now invalidate a complete rect some other redraws operations
7163         are fixed. Fixes #80196.
7164         
7165         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
7166         Remove ToolBarInvalidateEntireButton as it is not used.
7167
7168 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7169         
7170         * Form.cs: Make sure that both OnClosing and OnFormClosing are
7171         called for 2.0 profile.
7172         * CloseReason.cs: Make class internal for 1.1.
7173
7174 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
7175
7176         * ToolStripManager.cs: Implement FindToolStrip functionality.
7177         * ToolStrip.cs: Register and unregister with ToolStripManager.
7178
7179 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
7180
7181         * Control.cs: This was messy.  2.0 moves much of ControlCollection
7182         to ArrangedElementCollection.  Implemented this with as few #if's as 
7183         possible (which is still too many).
7184
7185 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
7186
7187         * Control.cs: Implement SizeFromClientSize() [2.0].
7188
7189 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
7190
7191         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
7192         use Theme.BorderSize to calculate area instead of static value 1, 
7193         by the way use new BorderStaticSize instead     Border3DSize when 
7194         border_static is true. Fixes #79537.
7195         
7196         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
7197         
7198         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
7199         it is not needed.
7200
7201 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7202
7203         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
7204
7205 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
7206
7207         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
7208         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
7209         
7210         * Hwnd.cs: 
7211         - border_static field added, it will used to define when a control 
7212         theres 3D border but it must be static (thin).
7213         - In GetWindowRectangle use Theme.BorderSize to calculate area 
7214         instead of static value 1, by the way use new BorderStaticSize instead
7215         Border3DSize when border_static is true.
7216
7217         * XplatUIX11.cs, XplatUIOSX.cs: 
7218         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
7219         
7220         * Theme.cs: BorderStaticSize field added.
7221
7222 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7223
7224         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
7225
7226 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
7227
7228         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
7229         mimic same behavior than win32 that set border only in CreateParams,
7230         it fix problems under CreateParams overrides. Fix #79442 and partial
7231         fix #79537.
7232         
7233         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
7234         of thi control you must call recreate handle. 
7235         
7236         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
7237         need to do anything as RecreateHangle will take care about borders.
7238
7239 2007-01-05  Mike Kestner  <mkestner@novell.com>
7240
7241         * ListView.cs: hack to eliminate Lost/Got focus notifications on
7242         cycles between the ItemControl and parent.  Fixes #80388.
7243
7244 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
7245
7246         * Control.cs: Lazy init layout engine. Do not directly use 
7247         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
7248
7249 2007-01-05  Chris Toshok  <toshok@ximian.com>
7250
7251         * DataGrid.cs: don't forceably rebind columns in SetDataSource
7252         unless our list manager has changed (i.e. unless we have reason to
7253         believe our columns have changed).  Fixes #80422.
7254         
7255         also, disable the call do BindColumns in
7256         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
7257         1.1 the event isn't raised in response to a column addition on a
7258         table.)
7259
7260 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7261
7262         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
7263         that inheritors can not call it if they choose.  Fixes bug #80456.
7264
7265 2007-01-05  Andreia Gaita  <avidigal@novell.com>
7266
7267         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
7268         doesn't blow up with a null exception on marshalling.
7269         
7270 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
7271
7272         * Control.cs: Implement several 2.0 protected properties and methods.
7273         Ensure that all necessary events are being called when properties
7274         are set.
7275
7276 2007-01-05  Mike Kestner  <mkestner@novell.com>
7277
7278         * ListView.cs: implement PgUp/PgDn for Details view.  Also
7279         fixes First/LastVisibleIndex to use the item_control.ClientRect 
7280         instead of the parent control.  Fixes #80378.
7281
7282 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
7283
7284         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
7285           determine whether to use yard-pound or not (bug #78399).
7286
7287 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
7288
7289         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
7290         problems. So it is time to bring back the old popupbutton colors.
7291
7292 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7293
7294         * ColumnHeader.cs:
7295         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
7296         property by using the internal information of the
7297         columns order in ListView.
7298
7299 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
7300
7301         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
7302         Add 2.0 Tag properties.
7303
7304         * LinkArea.cs: Add 2.0 ToString method.
7305
7306 2007-01-03  Chris Toshok  <toshok@ximian.com>
7307
7308         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
7309         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
7310         when we're editing, which fixes #80047.
7311
7312 2007-01-03  Chris Toshok  <toshok@ximian.com>
7313
7314         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
7315         #80404.
7316
7317 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
7318
7319         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
7320         property and implementation.
7321
7322         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
7323         for MdiWindowListItem property.
7324
7325         * ToolStripDropDown.cs: Don't consider hidden menu items while
7326         laying out the menu.
7327
7328 2007-01-03  Andreia Gaita  <avidigal@novell.com>
7329
7330         * SendKeys.cs: window handle is not needed in win32, so just
7331         get the active window for X after parsing keys and don't use
7332         it when building the message; it is passed by parameter to the 
7333         Xplat method and used there to build the message instead. Also,
7334         wait for events to be processed on SendWait, as opposed to Send,
7335         which doesn't wait :) Playing with threads and Send() completely 
7336         hangs on ms.net, only SendWait() works.
7337         
7338         XplatUIX11.cs
7339         X11Display.cs: Check for valid window handle.
7340
7341 2007-01-03  Jackson Harper  <jackson@ximian.com>
7342
7343         * TextControl.cs: Need to prevent wrap calculations when replacing
7344         text (this was there before i removed it accidently).
7345         - Don't update the cursor during the positioning, just set it to
7346         selection_start at the end of the operaion.
7347
7348 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7349
7350         * Control.cs:
7351         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
7352         
7353 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7354
7355         * MonthCalendar.cs: Added Click and DoubleClick events again,
7356         but this time they only hide Control's Click and DoubleClick.
7357         
7358 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
7359
7360         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
7361         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
7362
7363 2007-01-02  Jackson Harper  <jackson@ximian.com>
7364
7365         * TextBoxBase.cs: We move the caret with the split now, so we
7366         don't need to explicitly move the caret after splitting.  This
7367         fixes the caret bumping down an extra line on Enter.
7368
7369 2007-01-02  Miguel de Icaza  <miguel@novell.com>
7370
7371         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
7372         2.72). 
7373
7374         * ScrollableControl.cs: Add Scroll event.
7375
7376 2007-01-02  Mike Kestner  <mkestner@novell.com>
7377
7378         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
7379         to fix all hdr height padding codepaths.  Fixes #80207.
7380
7381 2007-01-02  Chris Toshok  <toshok@ximian.com>
7382
7383         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
7384         setting it to the Control defaults anyway, and it being after the
7385         Dock set was screwing up layout.
7386         (set_Dock): don't short circuit out of setting base.Dock.  Also,
7387         no need to call UpdateStatusBar here, as it'll be re-layed out if
7388         it needs to be.
7389
7390 2007-01-02  Mike Kestner  <mkestner@novell.com>
7391
7392         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
7393         to header height for width == -1. Fixes the rest of #80207.
7394
7395 2007-01-02  Mike Kestner  <mkestner@novell.com>
7396
7397         * ListView.cs: rework the mouse event forwarding everaldo added
7398         to translate the coordinates to the parent control not
7399         raise the parent events until after we've done our work. Hover
7400         needs more work, in the case where HoverSelection is on, because
7401         the item control receives more than one MouseHover per Enter
7402         event, so we need to ensure only the "first" hover gets forwarded.
7403         Opening a minor bug for that.
7404
7405 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
7406
7407         * CheckedListBox.cs: Fixed SelectionMode to match MS.
7408         * ListControl.cs: Implemented AllowSelection property. Removed extra
7409         tabs.
7410         * ListBox.cs: Implemented AllowSelection property.
7411
7412 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7413
7414         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
7415         SelectedItem, it prevent for errors when you must disable item
7416         before perform click. Fixes #80409.
7417
7418 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7419
7420         * MenuAPI.cs: Prevent second level and beyond submenus to close
7421         until first level when move out side of popup.
7422         
7423 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7424
7425         * MenuAPI.cs:
7426         - Down submenu positin in three pixels.
7427         - Closes sub menu when mouse leaves from menu. Fixes #80402.
7428
7429 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7430
7431         * ThemeWin32Classic.cs:
7432         - Fix popup menu size adding one pixel on the top.
7433         - Down menu item border from two to one to mimic Win32.
7434         - Some source identation fixes. 
7435
7436 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7437
7438         * ThemeWin32Classic.cs: Use float numbers to calculate size and
7439         position of menu arrows, it fix wrong arrow size.
7440
7441 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7442
7443         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
7444         instead of line, it simplify draw operation and fix it using 3D
7445         borders to mimic Win32.
7446
7447 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
7448
7449         * StatusStrip.cs: Add implementation of the sizing grip.
7450
7451         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
7452         StatusStrip rendering.
7453
7454 2006-12-31  Chris Toshok  <toshok@ximian.com>
7455
7456         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
7457         override the layout style (anchor/dock) of the control.  assign to
7458         Dock instead.  Fixes bug #80416.
7459
7460         * ToolStrip.cs: same.
7461
7462 2006-12-31  Andreia Gaita  <avidigal@novell.com>
7463
7464         * ContainerControl.cs: Use ContainerSelected flag to check if 
7465         a Container is directly selected, or if Select is called on a 
7466         non-container. If a container is directly selected, focus events 
7467         should not be raised.
7468         Apply #80411 patch to throw exception on set_ActiveControl if 
7469         control is the same as the current one.
7470         
7471         * Control.cs: Use ContainerSelected flag (see above).
7472         Add invalidation check to raise event but not invalidate if 
7473         dimensions are 0.       
7474         Apply #80411 patch.
7475         
7476
7477 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
7478
7479         * MenuAPI.cs: After click, dont close popup menu when menu is
7480         ContextMenu. Fixes #80399.
7481
7482 2006-12-30  Chris Toshok  <toshok@ximian.com>
7483
7484         * ContainerControl.cs: make sure we throw the exception if the
7485         container control doesn't contain the control we're setting
7486         ActiveControl to.
7487
7488 2006-12-30  Chris Toshok  <toshok@ximian.com>
7489
7490         * Control.cs (SetTopLevel): fix the exception raised by
7491         SetTopLevel for child controls.
7492         (set_Anchor): call UpdateDistances when setting the anchor type.
7493         This fixes bug #80336.
7494
7495 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7496
7497         * Theme.cs: For now, revert back to 8pt font.
7498
7499 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
7500
7501         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
7502         Fixes #80395.
7503
7504 2006-12-29  Chris Toshok  <toshok@ximian.com>
7505
7506         * Control.cs: reorder the code in OnResize to give the same event
7507         ordering as MS.
7508
7509 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7510
7511         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
7512         TileHorizontally and TileVertically.
7513         
7514 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
7515
7516         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
7517         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
7518         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
7519         Corrected copyright and email adress.
7520
7521 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7522
7523         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
7524         of Exception in FullPath property if no TreeView is associated with
7525         the TreeNode.
7526
7527 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7528
7529         * Theme.cs: Marked default_font as private, and initialize it in ctor
7530         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
7531         on 2.0 profile.
7532         * ThemeGtk.cs: Removed default_font intialization.
7533         * ThemeWin32Classic.cs: Removed default_font initialization.
7534
7535 2006-12-28  Chris Toshok  <toshok@ximian.com>
7536
7537         * Control.cs: fix a couple of place where we were creating handles
7538         more aggressively than we should be.  Fixes ControlRefresh unit
7539         tests.
7540
7541 2006-12-28  Chris Toshok  <toshok@ximian.com>
7542
7543         * Control.cs: contrary to what the comment said, Control.Dock does
7544         not supercede Control.Anchor - the last one you assign to decides
7545         the layout behavior.  so we need to keep track of which was the
7546         last set.  Also, fix some of the affected property arguments in
7547         PerformLayout calls, and remove an redundant parent.PerformLayout
7548         call in OnResized.
7549
7550         Add a VisibleInternal property, which returns is_visible.  We
7551         can/should get rid of all the usage of this field elsewhere.
7552
7553 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7554         
7555         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
7556         control style, not DoubleBuffer. Added UseDoubleBuffering property
7557         that indicates whether doublebuffering is enabled and supported.
7558         (comment from and code based on Gert Driesen's patch in #80324).
7559         Fixes #80324.
7560
7561 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7562         
7563         * Control.cs: Fixed a NRE.
7564
7565 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7566
7567         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
7568         for 2.0.
7569
7570 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7571
7572         * Control.cs: Rewrote double buffering, now a seperate
7573         class handles all the buffering, no Graphics is disposed of
7574         until the painting is finished (earlier implementation 
7575         would crash if the control was resized in the OnPaint, 
7576         since it would cause the double buffer to be recreated
7577         and the old one disposed), a separate Graphics is 
7578         created for every paint (MS behaviour and anyways the state
7579         of the Graphics would have to be saved and restored otherwise)
7580         
7581         * XplatUIDriver.cs: 
7582         * XplatUIX11.cs:
7583         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
7584         so that we can get the graphics for the back buffer without
7585         having to create a new one and remove the offscreen_dc parameter
7586         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
7587         
7588 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7589
7590         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
7591         Also make virtual all the key-related methods.
7592
7593         * ListViewItem.cs: Make virtual the key related methods for
7594         ListViewSubItemCollection.
7595
7596 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7597
7598         * ListView.cs:
7599         * ListViewItem.cs:
7600         * ThemeWin32Classic.cs:
7601         * Theme.cs: Initial support for Tile view in ListView,
7602         as well as the implementation of the required bits for it (Item
7603         and Subitem).
7604
7605 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7606
7607         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
7608         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
7609         Provide useful exception messages.
7610
7611 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7612
7613         * TrackBar.cs: Remove a warning.
7614         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
7615         when used by DateTimePicker, fixes #80287. This also requires that 
7616         MonthCalendar implements it's own drawing for the yearly updown control,
7617         otherwise the Capture tracking would be too complicated. Removed the Click 
7618         and DoubleClick events (according to comments they were hiding the base class
7619         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
7620         raise these events, not that they cannot be raised. It is possible to raise 
7621         them by calling OnClick and OnDoubleClick). Added two internal fields in 
7622         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
7623         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
7624         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
7625         event, no longer needed.
7626         
7627 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7628
7629         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
7630         true if new value differs from current value.
7631
7632 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7633
7634         * Control.cs: ControlCollection.Count must be public. Fixed build of
7635         unit tests.
7636
7637 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7638
7639         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
7640
7641 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7642
7643         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
7644
7645 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7646
7647         * Control.cs: Invalidates control including when Width and Height is 
7648         equal zero or is not visible, only Paint event must be care about 
7649         this. Fixes #79913.
7650
7651 2006-12-26  Chris Toshok  <toshok@ximian.com>
7652
7653         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
7654         more corcompare work.
7655
7656         * DataGridView.cs: fix compiler warning.
7657
7658         * ColumnHeader.cs: some corcompare work, and also take the
7659         opportunity to make the internal fields private.
7660
7661         * ListView.cs: fix the fallout from the above field change.
7662
7663 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7664
7665         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
7666         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
7667         ToolStripTextBox.cs: Fixes to events and corcompare.
7668
7669 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7670
7671         * ListView.cs: Call owner.OnMousexx event to propagate events from
7672         item to ListView. Fixes #80367.
7673
7674 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7675
7676         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
7677         if value is less than one. ItemHeight should not be set to a value
7678         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
7679         Removed extra tabs.
7680
7681 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7682
7683         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
7684         * ToolStripStatusLabel.cs: Add Spring for Moma.
7685
7686 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7687
7688         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
7689         Fixed code formatting. Removed debug code.
7690         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
7691
7692 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7693
7694         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
7695         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
7696         ArgumentOutOfRangeException if ColumnCount is negative. In 
7697         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
7698         less than 4 or higher than 32768.
7699         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
7700         Fixed FormatProvider to return CurrentCulture unless explicitly set.
7701         Fixed IsFormatProviderDefault to return true if FormatProvider has
7702         not been explicitly set.
7703
7704 2006-12-25  Chris Toshok  <toshok@ximian.com>
7705
7706         * Application.cs: add a couple of 2.0 events.
7707
7708 2006-12-25  Chris Toshok  <toshok@ximian.com>
7709
7710         * Control.cs: fix compiler warning.
7711
7712         * AxHost.cs: corcompare fixes.
7713
7714         * ApplicationContext.cs: corcompare fixes.
7715
7716 2006-12-25  Chris Toshok  <toshok@ximian.com>
7717
7718         * Control.cs: only update dist_right/dist_bottom if the
7719         width/height is > 0.  this fixes anchored controls being resized
7720         smaller until they disappear and then resized larger again.
7721
7722 2006-12-25  Chris Toshok  <toshok@ximian.com>
7723
7724         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
7725         since they're nothing more than X/Left and Y/Top, respectively.
7726
7727         Also, move back to a per-control Bitmap/Graphics for
7728         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
7729         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
7730         Height.
7731
7732 2006-12-25  Miguel de Icaza  <miguel@novell.com>
7733
7734         * MessageBox.cs: Implemented overload that takes a new "bool
7735         displayHelpButton" by adding a new internal field "show_help".
7736         When clicked this will raise the HelpRequested on the owner or the
7737         main form. 
7738
7739         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
7740         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
7741
7742         * ListView.cs: Add support ColumnWidthChanged and
7743         ColumnWidthChanging. 
7744
7745         Add support for ColumnReordered event.
7746         (ReorderColumn): Add NET_2_0 specific support for cancelling the
7747         reorder.
7748
7749         Very nice codebase!
7750
7751         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
7752
7753         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
7754
7755 2006-12-24  Chris Toshok  <toshok@ximian.com>
7756
7757         * GridTablesFactory.cs: 2.0 corcompare work.
7758
7759         * ToolStripContainer.cs: add "override" to
7760         ContextMenuStripChanged, and remove the local event object.
7761
7762         * ToolStripDropDown.cs: same with a couple properties.
7763
7764         * ToolStripPanel.cs: same with AutoSizeChanged event.
7765
7766         * TextBoxBase.cs: add "override" to AutoSizeChanged.
7767
7768         * Form.cs: add the remaining 2.0 events, and do some corcompare
7769         attribute work.
7770
7771         * DateTimePicker.cs: add "new" to padding.
7772
7773         * ButtonBase.cs: use Control's use_compatible_text_rendering.
7774
7775         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
7776
7777         * DataGridView.cs: PaddingChanged is overridden.
7778
7779 2006-12-24  Chris Toshok  <toshok@ximian.com>
7780
7781         * Control.cs: corecompare work here too.
7782
7783         * DataGridViewElement.cs, DataGridView.cs,
7784         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
7785         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
7786         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
7787         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
7788         work.
7789
7790 2006-12-24  Miguel de Icaza  <miguel@novell.com>
7791
7792         * Control.cs: Switched the error message on the console for a
7793         todo.  A review of the code will have to cope with this anyways
7794         (since its a large feature, it is in our radar) and it was
7795         producing too much output when running PDN.
7796
7797         * ToolStripComboBox.cs: Set the text when the SelectedIndex
7798         changes.  Applications depend on this (PDN 2.72)
7799
7800 2006-12-23  Chris Toshok  <toshok@ximian.com>
7801
7802         * TableLayoutSettings.cs: finish up the corcompare work for this
7803         class.
7804
7805 2006-12-23  Chris Toshok  <toshok@ximian.com>
7806
7807         * Control.cs: make SetImplicitBounds internal, do some futzing
7808         with LayoutEngine so that it's available in 1.1, and remove the
7809         entire duplicated code mess from PerformLayout.  Use
7810         System.Windows.Forms.Layout.DefaultLayout instead.
7811
7812         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
7813
7814 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7815
7816         * Form.cs: Add MainMenuStrip property.
7817
7818 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7819
7820         * Control.cs: Add ContextMenuStrip property and implementation.
7821         Fix ContextMenu implementation to show menu centered on control when
7822         activated using the keyboard instead of showing at screen (0,0).
7823
7824         * ToolStripDropDown.cs: Fix needed overload of Show ().
7825
7826 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7827
7828         * Menu.cs: Name property added for 2.0 profile.
7829         
7830 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7831
7832         * Menu.cs: Update information about FindMenuItem, method to be
7833         implemented soon.
7834
7835 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7836
7837         * MenuAPI.cs: When deselect items deselect also selected subitems.
7838         
7839 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7840
7841         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
7842         FindSubItemByCoord to found itens that is not active, also an
7843         cheking added to FindSubItemByCoord to search for items only 
7844         in visible popup windows. Fixes #80274.
7845
7846 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
7847
7848         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
7849         internal property, it be care about change ExStyle. 
7850
7851 2006-12-22  Andreia Gaita  <avidigal@novell.com>
7852
7853         * ContainerControl.cs: set activeControl for parent forms up the 
7854         tree when the new activecontrol is a container.
7855         When validating the active control, if it is a container, also
7856         raise up the validation for it's active control. Fixes #80280
7857         
7858         * Control.cs: Add internal property flag and check to prevent
7859         Focus events from getting raised when Select() is called for
7860         a ContainerControl. There are still too many focus events being
7861         raised at the moment though.
7862         Cleaned up the code a bit.
7863
7864 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7865
7866         * Control.cs: Added all missing 2.0 events.and
7867         fixed a couple of corcompare issues.
7868         * TrackBar.cs: Implemented missing 2.0 bits.
7869         * MonthCalendar.cs, 
7870         * DateTimePicker.cs, 
7871         * MdiClient.cs: Fixed some corcompare issues.
7872
7873 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7874
7875         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
7876         SplitterPanel.cs: corecompare work.
7877
7878 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7879
7880         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
7881         Clean up warnings for BackgroundImageChanged and PaddingChanged
7882         events now that they are implemented in Control.cs.
7883
7884 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7885
7886         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
7887         
7888         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
7889         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
7890         of TableLayoutPanel and supporting cast.
7891
7892 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7893
7894         * XplatUIWin32.cs: 
7895         - GrabWindow now confines the mouse pointer to the confine window.
7896         - Added Win32ClipCursor and Win32GetClipCursor.
7897
7898         * Control.cs: 
7899         - Added CaptureWithConfine to be able to capture and confine 
7900         mouse pointer.
7901         
7902         * InternalWindowManager.cs: 
7903         - Call CaptureWithConfine instead of Capture if we're an
7904         MdiChild (fixes #79982).
7905
7906 2006-12-21  Chris Toshok  <toshok@ximian.com>
7907
7908         * DataGrid.cs: guard against the initial state of selection, where
7909         selection_start == -1.  make sure we only select from index >= 0.
7910         Fixes bug #80291.
7911
7912 2006-12-21  Chris Toshok  <toshok@ximian.com>
7913
7914         * Control.cs: we don't need to be so draconian with
7915         UpdateDistances, and we thusly don't need to call it before
7916         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
7917
7918 2006-12-21  Daniel Nauck  <dna@mono-project.de>
7919
7920         * ComboBox.cs,
7921         TextBox.cs: Implemented AutoComplete properties.
7922
7923 2006-12-20  Chris Toshok  <toshok@ximian.com>
7924
7925         * DataGridView*.cs: some corecompare work.
7926
7927 2006-12-20  Jackson Harper  <jackson@ximian.com>
7928
7929         * XplatUIX11.cs: We need to hide the caret when deleting it,
7930         otherwise you get carets left lying around everywhere.
7931         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
7932         prevents getting some weird half drawn caret tracers when
7933         scrolling.
7934         * TextControl.cs: Attempt to reduce the number of times we need to
7935         recreate the caret.
7936
7937 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
7938
7939         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
7940
7941 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7942
7943         * DateTimePicker.cs:
7944         - Implemented missing 2.0 bits.
7945         - Changed some default values to match MS.
7946         
7947 2006-12-20  Jackson Harper  <jackson@ximian.com>
7948
7949         * TextBoxBase.cs: When changing the font across the document we
7950         can't recalculate after changing each line, since that will cahnge
7951         the line count.
7952         - PreferredHeight is a little different than i thought.
7953         - When backspacing, move the caret before we do the actual char
7954         delete, because when that delete crosses a wrap boundary the
7955         positional information will change.
7956
7957 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7958
7959         * Control.cs: Added some missing 2.0 bits: 
7960         BackgroundImageLayout, BackgroundImageLayoutChanged, 
7961         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
7962         add IBindableComponent and IDropTarget implementation.
7963         
7964         * MonthCalendar.cs: 
7965         - Added all missing 2.0 features:
7966         BackgroundImageLayout, RightToLeftLayout, 
7967         OnHandleDestroyed, RightToLeftLayoutChanged, 
7968         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
7969         PaddingChanged.
7970         - Rewrote all the BoldDate code, it was completely broken.
7971         - Fixed all the tests (the tests can now be re-enabled, the
7972         problems were not with the tests, but with the control, it was
7973         mostly broken).
7974         
7975         * DateTimePicker.cs: Changed the location where the 
7976         MonthCalendar is shown.
7977         
7978 2006-12-19  Chris Toshok  <toshok@ximian.com>
7979
7980         * DataGridView.cs: add IDropTarget implementation.
7981
7982         * ToolStripPanel.cs: add IDropTarget implementation.
7983
7984 2006-12-19  Jackson Harper  <jackson@ximian.com>
7985
7986         * TextControl.cs: soft now means something different than what it
7987         used to mean, we want to move the caret regardless of whether or
7988         not this break was soft (would we really have wanted the caret
7989         to not move with the break in the old context?)
7990         * TreeView.cs: Make sure we factor in the vert scrollbar when
7991         calculating the horizontal scrollbar's maximum.
7992
7993 2006-12-19  Andreia Gaita  <avidigal@novell.org>
7994
7995         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
7996         check for keywords in alternate casing, close bug #80049.
7997
7998 2006-12-19  Chris Toshok  <toshok@ximian.com>
7999
8000         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
8001         methods (which all do nothing).
8002
8003         * IDropTarget.cs: add the 4 missing methods.
8004
8005 2006-12-19  Chris Toshok  <toshok@ximian.com>
8006
8007         * TableLayoutRowStyleCollection.cs: corcompare work.
8008         
8009         * TableLayoutSettings.cs: same.
8010
8011         * TableLayoutStyle.cs: same.
8012
8013         * TableLayoutColumnStyleCollection.cs: same.
8014
8015 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
8016
8017         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
8018         TableLayoutPanel I've had in my local tree for way too long.
8019
8020 2006-12-19  Miguel de Icaza  <miguel@novell.com>
8021
8022         * TableLayoutSettings.cs: Finish the public API (still needs all
8023         the logic to update on changes). 
8024
8025         * TableLayoutPanelCellPosition.cs: new file.
8026         
8027         * TableLayoutRowStyleCollection.cs,
8028         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
8029         TableLayoutSettings.cs: Track the final 2.0 table api.
8030
8031 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8032
8033         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
8034         and Image List 2.0 members for ColummnHeader.
8035         * ListView.cs: Add key-related 2.0 methods for
8036         ColumnHeaderCollection.
8037
8038 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8039
8040         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
8041         ArgumentNullException if items argument is null. Ignore null item in
8042         arrays. Removed extra tabs.
8043
8044 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
8045
8046         * MonthCalendar.cs: Fixed InvalidCastException.
8047
8048 2006-12-19  Jackson Harper  <jackson@ximian.com>
8049
8050         * TextControl.cs: Don't increment the position here.
8051         - When calculating char positions only add in the line break size
8052         for hard line breaks.
8053
8054 2006-12-19  Andreia Gaita  <avidigal@novell.org>
8055
8056         * SendKeys.cs: Changed some things to match ms.net behaviour
8057         when parsing shifted capital letters.
8058         
8059         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
8060         Add window handle as parameter to SendInput. X11 needs the 
8061         window handle, and the handle being passed      to it in the keys 
8062         queue is the active control handle (which windows needs), not 
8063         the window handle.
8064         
8065         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
8066         to support SendKeys on X.       
8067         
8068         * X11Keyboard: Implement helper method to lookup a linux keycode
8069         given the virtual keycode. Added table of keycode-2-virtualkey
8070         values to support this.
8071
8072 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8073
8074         * ListView.cs: Add support for SelectedIndexCollection
8075         and SelectedItemCollection 2.0 methods. Implement support
8076         for ImageKey too.
8077         * ListViewItem.cs: Add support for ListViewSubItemCollection
8078         2.0 methods. Also, fix an incorrect behavior of AddRange method
8079         (it shouldn't call Clear).
8080         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
8081
8082 2006-12-19  Jackson Harper  <jackson@ximian.com>
8083
8084         * RichTextBox.cs: 
8085         * TextBoxBase.cs: New args for FormatText
8086         * TextControl.cs: Rewrote the main drawing method, this version
8087         feels a little easier to understand and debug to me.  Hopefully it
8088         does to others also
8089         - Fix FormatText to OR in the new formating values.  Added
8090         FormatSpecified param, basically this works in the same way as
8091         BoundsSpecified in Control.
8092         - Set the caret properties when the caret is positioned.
8093         - When wrapping text make sure that we calculate the width of the
8094         last character
8095         - when calculating alignments we might have wrapped down to the
8096         next line, so don't search for an individual tag, search for the
8097         end of the line
8098         - We need to invalidate the selection area when we replace the
8099         selection.
8100         
8101 2006-12-19  Daniel Nauck  <dna@mono-project.de>
8102
8103         * Application.cs: add Restart () 2.0 support
8104
8105 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8106
8107         * MenuItem.cs: Invalidate menu item rectangle after change Enable
8108         property. Fixes #80268.
8109         
8110 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8111
8112         * MenuAPI.cs: Dont trigger select event when closes top menu
8113         item. Fixes #80270.
8114
8115 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8116
8117         * MenuAPI.cs: When you click on menuitem only trigger onselect
8118         event for top menu itens. Fixes #80271.
8119         
8120 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8121
8122         * MdiWindowManager.cs: Make IconicBounds depend on
8123         the bottom of MdiClient, not the top (fixes #80267)
8124         
8125 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8126
8127         * MdiClient.cs: Added missing 2.0 attribute
8128
8129 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8130
8131         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
8132         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
8133
8134 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
8135
8136         * MenuAPI.cs: Fix click when menuitem is not popup,
8137         this regression was caused by last commit (#80272).
8138
8139 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
8140
8141         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
8142         fire click event or close menu. Fixes #80272.
8143
8144 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8145
8146         * ListViewHitTestInfo.cs: add
8147
8148 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8149
8150         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
8151         * FlatButtonAppearance.cs: add
8152         * DockingAttribute.cs: add
8153
8154 2006-12-17  Chris Toshok  <toshok@ximian.com>
8155
8156         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
8157         and rebind our columns when it does - this way, if you make
8158         changes to the DataTable (or set the Table attribute on a DataView
8159         after setting it as the DataGrid's DataSource, the changes are
8160         made visible.)  Fixes bug #80107.
8161
8162 2006-12-17  Daniel Nauck  <dna@mono-project.de>
8163
8164         * ListViewGroup.cs: add internal Location property for layouting.
8165         * Theme.cs: add abstract ListViewGroupHeight function.
8166         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
8167
8168 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8169
8170         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
8171         Added reset of selected index to 0 when adding first tab page.
8172         Fixes #80264
8173         
8174         * NumericUpDown.cs: Fix NET_2_0 check
8175
8176 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8177
8178         * ListViewGroup.cs: fixed DefaultValueAttribute value
8179
8180 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8181
8182         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
8183
8184 2006-12-15  Miguel de Icaza  <miguel@novell.com>
8185
8186         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
8187         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
8188         ScrollableControl.cs: Add a handful of methods that are
8189         overwritten in 2.0 
8190
8191 2006-12-15  Chris Toshok  <toshok@ximian.com>
8192
8193         * XplatUIWin32.cs: initial implementation of the Reversible
8194         drawing functions.  there are some problems.  DrawReversibleFrame
8195         doesn't seem to work at all for Dashed FrameStyle, and in the
8196         Thick case there are drawing errors at the corners (we probably
8197         need to bind Rectangle instead of doing moveto/lineto's.)
8198
8199 2006-12-16  Andreia Gaita  <avidigal@novell.com>
8200         
8201         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
8202         to send blocks of key messages. Send accumulates keys to send with Flush, 
8203         while SendWait sends all keys immediately.
8204                 
8205         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
8206         XplatUIX11.cs,  XplatUIX11-new.cs:
8207         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
8208         to Win32 SendInput.
8209         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
8210         
8211         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
8212         testing for ms.net on this class is very tricky, as the tests run too fast 
8213         to allow the hook to release, essentially freezing the keyboard and the 
8214         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
8215         category :p
8216
8217 2006-12-16  Daniel Nauck  <dna@mono-project.de>
8218
8219         * Padding.cs: fixed serialization compability to MS ("_var" field names),
8220                         added missing attributes.
8221  
8222 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8223
8224         * ListViewGroup.cs: Added missing attributes.
8225         * ListViewGroupCollection.cs: Added missing attributes.
8226
8227 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8228
8229         * ListViewItem.cs: fixed ListViewSubItem text property.
8230
8231 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8232         
8233         * Control.cs: Added missing 2.0 attributes
8234         
8235 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8236         
8237         * MdiClient.cs: Added missing 2.0 attribute.
8238         * MonthCalendar.cs: Added some missing 2.0 attributes 
8239         and properties.
8240         
8241 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8242
8243         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
8244
8245 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
8246
8247         * MainMenu.cs: Add the new 2.0 constructor to help out people
8248         using the MainMenu in VS2005.
8249
8250 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8251         
8252         * MdiChildContext.cs: Removed it, no longer used.
8253         * MdiClient.cs: Added missing 2.0 attributes.
8254         
8255 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8256         
8257         * InternalWindowManager.cs: Fix a NullRef with previous 
8258         changes for toolwindows.
8259         
8260 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8261
8262         * Control.cs: 
8263         - Added AfterTopMostControl to allow for certain controls 
8264         to always stay on top when normal controls are brought to 
8265         front.
8266         
8267         * XplatUIWin32.cs: 
8268         - (DrawInversibleRectangle): Get window rectangle from Win32 
8269         in stead of from control, since Win32 doesn't calculate
8270         screen coords correctly from control's Location if it 
8271         have docked siblings.
8272         
8273         * MdiWindowManager.cs:
8274         - Correct the control menu popup location when clicked on
8275         the maximized form icon. (fixes #80223.1)
8276         - Don't show moving rectangle if mouse hasn't moved from
8277         the original clicked point.
8278         - Removed FormGotFocus handler (not used).
8279         - Calculate the control buttons location from the main
8280         window's size and not client size (fixes #79770).
8281         - Form is now closed when the form icon is double-clicked
8282         (fixes #79775). 
8283         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
8284         
8285         * InternalWindowManager.cs:
8286         - Moved some MDI-only methods to MdiWindowManager.
8287         - Removed unused properties and methods.
8288         - Unified method naming for methods handling wm messages.
8289         - Moved all message handling to seperate methods for
8290         each message.
8291         
8292         * ThemeWin32Classic.cs:
8293         - DrawManagedWindowDecorations now draws the title bar 
8294         with a gradient brush.
8295         - Add a CPDrawButtonInternal that allows us to specify
8296         light, normal and dark colors for the buttons (control 
8297         buttons for MDI children were drawn with the same light
8298         color as the background, therefore loosing the 3D effect).
8299         
8300         * SizeGrip.cs:
8301         - Add a CapturedControl property that is used to 
8302         determine the control to resize (defaults to parent). 
8303         Needed for MdiClient, since its SizeGrip's parent is
8304         MdiClient, but the control to resize is the main form.
8305         
8306         * MdiClient.cs:
8307         - Set SizeGrip's CapturedControl to the main form in order
8308         to resize the main form and not the MdiClient.
8309         - Override AfterTopMostControl to leave the scrollbars 
8310         always on top.
8311
8312 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8313
8314         * ListView.cs: fixed ListViewItemCollection AddRange and
8315                         implemented ListViewItemCollection AddRange 2.0 support.
8316
8317 2006-12-15  Daniel Nauck  <dna@mono-project.de>
8318
8319         * ListViewGroup.cs: Add.
8320         * ListViewGroupCollection.cs: Add
8321         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
8322         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
8323                                 stub for ImageKey 2.0 support.
8324
8325 2006-12-14  Mike Kestner  <mkestner@novell.com>
8326
8327         * ListView.cs: add text padding to the autocalculation for columns
8328         of width -2.  Fixes #80207.
8329  
8330 2006-12-14  Mike Kestner  <mkestner@novell.com>
8331
8332         * ListView.cs: add some index guarding for partial row navigation 
8333         logic.  Fixes #80250.
8334
8335 2006-12-14  Mike Kestner  <mkestner@novell.com>
8336
8337         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
8338         are added or inserted to the collection.  Fixes #81099.
8339
8340 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
8341
8342         * MenuAPI.cs: Closes menu when right click out side of popup
8343         it fix problem in ContextMenu and MainMenu. Fixes #80252.
8344
8345 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8346
8347         * ListViewItem.cs: Fix dumb error.
8348
8349         * ListView.cs: Add Find and ContainsKey methods in 
8350         ListViewItemCollection, and also return true for IsReadOnly
8351         and IsFixedSize (changes for 2.0). 
8352
8353 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
8354
8355         * Control.cs: Allow Region to be set to null.
8356
8357 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8358
8359         * MdiWindowManager.cs: Remove unused (commented out) code.
8360         * Form.cs: When the MdiChild is maximized, the form needs 
8361         WM_NCMOUSELEAVE, so request it.
8362         * InternalWindowManager.cs: 
8363         - Added tooltips to control buttons.
8364         - Removed duplicated control button handling code.
8365         - Removed unused (commented out) code.
8366         
8367 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
8368
8369         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
8370         was used because we must set cursor without trigger ChangeCursor event
8371         and without change Cursor control property. Fixes #79963.
8372
8373 2006-12-12  Andreia Gaita  <avidigal@novell.com>
8374         
8375         * Control.cs: Check if Region setter value is null, and ignore
8376
8377 2006-12-12  Jackson Harper  <jackson@ximian.com>
8378
8379         * TextControl.cs: We were almost always drawing one more line then
8380         needed, since the GetLineByPixel will return the last line found
8381         at that pixel. In most cases though, we were invalidating up to
8382         the junction between two lines.
8383         - Improve debug code.
8384
8385 2006-12-12  Chris Toshok  <toshok@ximian.com>
8386
8387         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
8388         and FillReversibleRectangle.
8389
8390         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
8391         and FillReversibleRectangle.
8392
8393         * XplatUIWin32.cs: add stubs which do nothing for
8394         DrawReversibleFrame, DrawReversibleLine, and
8395         FillReversibleRectangle.
8396
8397         * XplatUIOSX.cs: add stubs which raise NIE for
8398         DrawReversibleFrame, DrawReversibleLine, and
8399         FillReversibleRectangle.
8400
8401         * XplatUIX11.cs: add working implementation for
8402         DrawReversibleFrame, DrawReversibleLine, and
8403         FillReversibleRectangle.
8404         
8405         * ControlPaint.cs: implement DrawReversibleFrame,
8406         DrawReversibleLine, and FillReversibleRectangle, by calling into
8407         the appropriate XplatUI method.
8408
8409 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8410
8411         * Form.cs: Make MdiClient have the focus even if it's
8412         not selectable, since it should receive WM_KEY* and WM_MOUSE 
8413         messages. Fixes #79907.
8414         
8415 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8416
8417         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
8418         queried after the window is created.
8419         
8420         * XplatUIX11.cs: Added SendParentNotify to implement 
8421         WM_PARENTNOTIFY logic. Fixes #79965.
8422         
8423         * Control.cs: Added MakeParam.
8424         
8425 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8426
8427         * MdiClient.cs: Resume Layout before setting window
8428         states (fixes #80201).
8429
8430 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8431
8432         * MenuAPI.cs: Deselect a menu item after performing
8433         the click (fixes #80197).
8434
8435 2006-12-11  Jackson Harper  <jackson@ximian.com>
8436
8437         * TextBoxBase.cs: We need to cap this value, since Maximum -
8438         ViewPortHeight can be less than zero.
8439         - Only do selection with the left mouse button.
8440         * TextBox.cs: Don't tell the world that we have a context menu.
8441         * Control.cs: New method so that we can control whether or not the
8442         context menu is visible outside MWF.
8443
8444 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8445
8446         * ToolBarButton.cs: Fix text positon. 
8447
8448 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8449
8450         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
8451
8452         * Control.cs (DoubleBuffered): Add implementation.
8453
8454         * Application.cs (OpenForms): Add.
8455
8456 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8457
8458         * Form.cs: Use opacity instead of Opactiy to determine if we need
8459         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
8460
8461 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8462
8463         * Control.cs: Fix NRE if Control.Site was set to null.
8464
8465 2006-12-11  Chris Toshok  <toshok@ximian.com>
8466
8467         * Control.cs: ControlCollection.Remove should return if the arg is
8468         null, and ControlCollection.SetChildIndex should raise a ANE.
8469
8470 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
8471
8472         * Control.cs: Verify value set for Dock property. Code formatting
8473         updates.
8474
8475 2006-12-11  Jackson Harper  <jackson@ximian.com>
8476
8477         * TextControl.cs: Draw the caret and the selection when a flag is
8478         set on the owner.
8479         * TextBoxBase.cs: We want to draw the caret and the selection for
8480         TextBox but not for TextBoxBase.
8481         - If the window is resized and scrolling is no longer needed (the
8482         whole doc is visible) set the scroll position to zero.
8483         - The default SelectWord (the one TextBox uses) should move the
8484         caret to the end of the word.
8485         - SelectAll moves the caret to the end of the selection.
8486         * TextBox.cs: We don't selectall on focus, we just do it when the
8487         control is created.
8488         
8489 2006-12-11  Mike Kestner  <mkestner@novell.com>
8490
8491         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
8492
8493 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8494
8495         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
8496         2.0 support.
8497         * ListViewItem.cs: Add Name 2.0 property.
8498
8499 2006-12-11  Andreia Gaita  <avidigal@novell.com>
8500
8501         * TabControl.cs: Set visibility on selected or default tab 
8502         when tabcontrol handle is created, so that it's contents
8503         actually show up (duh). Fixes #80193
8504         Don't redraw the control if there is no handle created, as
8505         the selected index might be completely invalid. Added some tests
8506         to check for this.
8507
8508 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8509
8510         * ToolBar.cs: Uses maximun width and height of all buttons as 
8511         button rectangle when ButtonSize specified, it looks strange but
8512         is what happens in Win32. Fixes #80189.
8513
8514 2006-12-11  Jackson Harper  <jackson@ximian.com>
8515
8516         * TextControl.cs: Need to track undo levels ourself, since
8517         compound actions will mess them up.
8518
8519 2006-12-10  Andreia Gaita  <avidigal@novell.com>
8520
8521         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
8522         SelectedIndex value is changed (even if it's not valid).
8523         Reset SelectedIndex to 0 when the handle is created and if
8524         the current index is invalid.
8525         Fixes SelectdeIndex unit tests and #80128
8526
8527 2006-12-08  Chris Toshok  <toshok@ximian.com>
8528
8529         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
8530         calls EndEdit, it needs to be called before we set current_cell to
8531         its new value.  Otherwise, we end up committing the value in the
8532         textbox to the new cell as well.  Fixes bug #80160.
8533
8534 2006-12-08  Chris Toshok  <toshok@ximian.com>
8535
8536         * Form.cs (set_CancelButton): if the button's DialogResult is
8537         None, set it to Cancel.  Fixes bug 80180.
8538
8539 2006-12-08  Jackson Harper  <jackson@ximian.com>
8540
8541         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
8542         to watch ourselves when setting the canvas size and setting the
8543         scrollbar values.
8544
8545 2006-12-08  Chris Toshok  <toshok@ximian.com>
8546
8547         * DataGrid.cs: comment out the two MakeTransparent calls for the
8548         time being so people using trunk (and not 1.2.2) on windows can
8549         actually use the datagrid.  This deals with bug #80151.
8550
8551 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8552
8553         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
8554         Graphics.DrawImage (image, int, int, int, int) overload instead
8555         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
8556         the dpi difference and was blurring images it drew.
8557         [Fixes bug #79960]
8558
8559 2006-12-08  Chris Toshok  <toshok@ximian.com>
8560
8561         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
8562         rowcnt is 0 (such as with an empty datasource), and make sure we
8563         initialize not_usedarea.Y to cells.Y, so we don't draw over the
8564         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
8565
8566 2006-12-08  Chris Toshok  <toshok@ximian.com>
8567
8568         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
8569         grid.
8570
8571 2006-12-08  Chris Toshok  <toshok@ximian.com>
8572
8573         [ Fixes bug #80167 ]
8574         
8575         * ThemeWin32Classic.cs: don't draw the image if the button's flat
8576         style is FlatStyle.System.
8577
8578         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
8579         ButtonBase.flat_style private, and switch uses of it to the public
8580         property.
8581         
8582 2006-12-08  Chris Toshok  <toshok@ximian.com>
8583
8584         [ Fixes bug #80121 ]
8585         
8586         * ThemeWin32Classic.cs: center the caption text in the datagrid
8587         when we draw it.
8588
8589         * DataGrid.cs: lessen the amount we add to the caption height from
8590         6 to 2.  6 was making it huge.
8591
8592 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8593
8594         * UpDownBase: Handle MouseWheel call directly instead of capturing
8595         the inner textbox's OnMouseWheel. Fixes #80166
8596
8597 2006-12-08  Jackson Harper  <jackson@ximian.com>
8598
8599         * TextControl.cs: We need to invalidate the textbox when we empty
8600         it (how had this not been discovered before?)
8601
8602 2006-12-08  Jackson Harper  <jackson@ximian.com>
8603
8604         * TextBoxBase.cs: Reworked the mouse down code so I could get it
8605         to behave like MS, we now ignore the eventargs.Click and just
8606         track state ourself, which we were already doing anyways.
8607         - Constrain the double click handler to the double click size.
8608         
8609 2006-12-08  Chris Toshok  <toshok@ximian.com>
8610
8611         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
8612         direction if that scrollbar isn't shown.  fixes bug #80158.
8613
8614 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8615
8616         * NumericUpDown.cs: Update value on getter. Fixes #79950
8617
8618 2006-12-08  Chris Toshok  <toshok@ximian.com>
8619
8620         * MenuItem.cs: add back in the event cloning code.  I didn't know
8621         how to do it in the face of the EventHandlerList work i'd done
8622         last week.  Fixes bug #80183.
8623
8624 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8625
8626         * Control.cs: Add an invalidate to the BackgroundImage setter.
8627         [Fixes 80184]
8628
8629 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8630
8631         * ToolStrip*: Add some small properties reported by MoMA, fix event
8632         firing and default properties based off of unit tests, and add some
8633         attributes based off of the class status page.
8634
8635 2006-12-07  Jackson Harper  <jackson@ximian.com>
8636
8637         * TextBoxBase.cs: Take HideSelection into account when determining
8638         whether or not to show the selection.
8639         * RichTextBox.cs: After inserting the RTF into the document move
8640         the cursor to the beginning of the document.
8641
8642 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8643
8644         * Control.cs: Remove static ArrayList "controls" which maintained
8645         a reference to every control created.
8646         * Application.cs: Create a static FormCollection to maintain a reference
8647         to every form created.  Use it in places that formerly enumerated through
8648         the controls one looking for forms.
8649         * Form.cs: Add and remove self from above FormCollection.
8650
8651 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
8652
8653         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
8654           not libgdk (though it makes me wonder why I didn't have any
8655           problems)
8656
8657 2006-12-07  Chris Toshok  <toshok@ximian.com>
8658
8659         [ you had to know this was coming after that last commit...]
8660         
8661         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
8662         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
8663         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
8664         XCopyArea).
8665
8666 2006-12-07  Chris Toshok  <toshok@ximian.com>
8667
8668         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
8669         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
8670         all the behavior we need for double buffering.
8671
8672         * XplatUIDriver.cs: implement the 3 double buffer methods using a
8673         client side Bitmap, just like the old Control-based double buffer
8674         code did.  The methods are virtual, so each XplatUI driver
8675         subclass can replace the implementation to use a faster, platform
8676         specific approach.
8677
8678         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
8679         double buffer code, and clean things up a bit in the process.
8680
8681 2006-12-06  Chris Toshok  <toshok@ximian.com>
8682
8683         * Control.cs: reindent WndProc.
8684
8685 2006-12-06  Chris Toshok  <toshok@ximian.com>
8686
8687         [ I wanna be like BenM when I grow up ]
8688         
8689         * Hwnd.cs: create a single static Graphics object on the static
8690         Bitmap we create.  use this for our text measurements.
8691
8692         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
8693         This was causing us to allocate a backbuffer for every control,
8694         even when it wasn't flagged as double buffered.  Instead use the
8695         single graphics instance.  This might have implications for
8696         multithreaded applications.  If we run into problems we can switch
8697         to creating 1 Graphics per control, on the static Hwnd bitmap.
8698
8699         this change nets us a 7M savings in private dirty mappings when
8700         running FormsTest.exe.
8701
8702 2006-12-06  Chris Toshok  <toshok@ximian.com>
8703
8704         * ListView.cs: the BackgroundImage override is just to set
8705         attributes.  chain up to base.BackgroundImage.
8706
8707         * RichTextBox.cs: same.
8708
8709         * ToolBar.cs: same, but we need to also redraw the toolbar when it
8710         changes, so instead a handler for BackgroundImageChanged.
8711         
8712         * Control.cs: make background_image private.
8713
8714 2006-12-06  Chris Toshok  <toshok@ximian.com>
8715
8716         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
8717         sure we even need this assignment, but roll with it for now.
8718
8719         * Control.cs: make the cursor field private.
8720
8721 2006-12-06  Chris Toshok  <toshok@ximian.com>
8722
8723         * Form.cs: we don't need to explicitly set ImeMode to
8724         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
8725         behavior in the face of ImeMode.Inherit.
8726
8727         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
8728         change the ctor's assignment to use ImeMode instead of ime_mode.
8729
8730         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
8731         ImeModeInherit.  Only check for the parent's imemode (and return
8732         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
8733         This fixes the button unit test, which sets both ImeMode and
8734         DefaultImeMode to ImeMode.Disable.
8735
8736         also make the ime_mode field private.
8737
8738 2006-12-06  Chris Toshok  <toshok@ximian.com>
8739
8740         * Control.cs: make control_style private.
8741
8742         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
8743         setting the styles to true, then setting them to false instead of
8744         reverting to their previous values.
8745
8746         also, call SetStyle on the scrollbars instead of using
8747         control_style directly.
8748
8749 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
8750
8751         * FormCollection.cs: Implement. [2.0]
8752
8753 2006-12-06  Chris Toshok  <toshok@ximian.com>
8754
8755         * Control.cs: make tab_stop private.
8756
8757         * Label.cs: set TabStop, not tab_stop.  reformat some event
8758         add/remove methods to make them more compact.
8759
8760 2006-12-06  Chris Toshok  <toshok@ximian.com>
8761
8762         * RadioButton.cs: fix TabStop handling.
8763
8764 2006-12-06  Chris Toshok  <toshok@ximian.com>
8765
8766         * TextBox.cs: remove the explicit assignments to has_focus.
8767         Control does that.
8768
8769         * ButtonBase.cs: remove the assignment to has_focus.  Control will
8770         manage that.
8771         
8772 2006-12-06  Chris Toshok  <toshok@ximian.com>
8773
8774         * ButtonBase.cs: remove all uses of is_enabled from this code.
8775         it's always true when any of the code containing the checks is
8776         executed.
8777
8778 2006-12-06  Chris Toshok  <toshok@ximian.com>
8779
8780         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
8781         with different semantics (some are present in both 1.1 and 2.0
8782         profiles) so that we match MS's behavior in our unit tests.
8783
8784 2006-12-06  Jackson Harper  <jackson@ximian.com>
8785
8786         * TextControl.cs: Make this operation undoable.
8787         * TextBoxBase.cs: Factor the border width into the preferred
8788         height.
8789         - implement Modified as per the spec.
8790
8791 2006-12-06  Chris Toshok  <toshok@ximian.com>
8792
8793         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
8794
8795 2006-12-06  Chris Toshok  <toshok@ximian.com>
8796
8797         * Control.cs: make right_to_left and context_menu fields private.
8798
8799 2006-12-06  Chris Toshok  <toshok@ximian.com>
8800
8801         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
8802         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
8803         Control.child_controls private.  switch all uses over to
8804         Control.Controls.
8805
8806 2006-12-06  Chris Toshok  <toshok@ximian.com>
8807
8808         * System.Windows.Forms/GroupBox.cs,
8809         System.Windows.Forms/AccessibleObject.cs,
8810         System.Windows.Forms/ErrorProvider.cs,
8811         System.Windows.Forms/Control.cs,
8812         System.Windows.Forms/UpDownBase.cs,
8813         System.Windows.Forms/ScrollBar.cs,
8814         System.Windows.Forms/DateTimePicker.cs,
8815         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
8816         System.Windows.Forms/ToolTip.cs,
8817         System.Windows.Forms/RadioButton.cs,
8818         System.Windows.Forms/LinkLabel.cs,
8819         System.Windows.Forms/Splitter.cs,
8820         System.Windows.Forms/TextBoxBase.cs,
8821         System.Windows.Forms/ToolStripTextBox.cs,
8822         System.Windows.Forms/ContainerControl.cs,
8823         System.Windows.Forms/ThemeWin32Classic.cs,
8824         System.Windows.Forms/SizeGrip.cs,
8825         System.Windows.Forms/ToolStripDropDown.cs,
8826         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
8827         private.  switch all uses over to Control.Parent.
8828
8829 2006-12-06  Chris Toshok  <toshok@ximian.com>
8830
8831         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
8832         Control does this before calling emitting these events.
8833
8834         * TabControl.cs: same.
8835
8836         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
8837         Control.client_rect.
8838
8839         * ButtonBase.cs: use the ClientSize property instead of the
8840         client_size field.
8841
8842         * ScrollableControl.cs: same.
8843
8844         * Control.cs: another pass at making properties private.  also,
8845         move the initialization of tab_stop to the ctor.
8846
8847 2006-12-05  Andreia Gaita <avidigal@novell.com>
8848
8849         * TabControl.cs: Let the selected index be set freely if the 
8850         control handle is not yet created.
8851
8852 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8853
8854         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
8855         internal until I can rewrite DefaultLayout.
8856         * ToolStrip.cs: Fix build error and some general cleaning.
8857         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
8858         Fix build errors caused by making some of Control's fields private.
8859
8860 2006-12-05  Jackson Harper  <jackson@ximian.com>
8861
8862         * TextControl.cs: Redo Insert a little so that it use IndexOf
8863         instead of Split, this prevents it from messing up on things like
8864         \n\n\n. Also more effecient since the split array doesn't need to
8865         be created.
8866         * TextBoxBase.cs: AppendText doesnt handle multiline and non
8867         multiline text differently, this is the first of many fixes that
8868         will make multiline/non-multiline the same thing as far as the
8869         TextBoxBase is concerned.
8870         - Don't split the text and insert lines, this can lose some line
8871         endings (like is the last line a soft or hard break). Instead use
8872         the new Insert.
8873         - Fix an off by one when combining all the lines in the Text
8874         getter.
8875         - Remove separate multiline handling from the Text getter/setter.
8876
8877 2006-12-05  Chris Toshok  <toshok@ximian.com>
8878
8879         * ButtonBase.cs: a few changes:
8880
8881         - don't reinitialize internal Control fields in the ctor when they
8882         have the same values as Control sets them.
8883
8884         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
8885         this before calling those methods.
8886
8887         - we don't need to call Refresh for anything.  use Invalidate
8888         instead.
8889
8890         - OnEnabledChanged doesn't need to redraw at all - Control.cs
8891         calls Refresh in its OnEnabledChanged.
8892         
8893         - several of the events we were registered for in the ctor to
8894         redraw ourselves already include calls to Invalidate in the
8895         property setters that raise the events.  remove the extra
8896         invalidation.
8897
8898         - reformat a switch statement that was 83274658 columns wide.
8899         
8900 2006-12-05  Mike Kestner  <mkestner@novell.com>
8901
8902         * ComboBox.cs: fix a unit test regression from a TextBox
8903         SelectionLength return of -1 when there's no selection.  
8904
8905 2006-12-05  Chris Toshok  <toshok@ximian.com>
8906
8907         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
8908         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
8909         cleaning up some of the internal Control fields being used by
8910         subclasses.
8911
8912 2006-12-05  Mike Kestner  <mkestner@novell.com>
8913
8914         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
8915         listbox after AddImplicit calls since it defaults to hidden. Add a 
8916         hack to preserve requested heights across DropDownStyle changes.
8917
8918 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8919
8920         * PropertyGrid.cs: Hide FindFirstItem method from public API.
8921
8922 2006-12-05  Chris Toshok  <toshok@ximian.com>
8923
8924         * DataGridView.cs: fix compiler warnings.
8925
8926         * PrintControllerWithStatusDialog.cs: same.
8927
8928         * ToolBar.cs: same.
8929
8930         * FolderBrowserDialog.cs: same.
8931
8932         * Splitter.cs: same.
8933
8934         * DataGridViewComboBoxCell.cs: same.
8935
8936         * XplatUIWin32.cs: same.
8937
8938         * PictureBox.cs: same.
8939
8940         * Win32DnD.cs: same.
8941
8942         * PageSetupDialog.cs: same.
8943
8944         * FileDialog.cs: same.
8945
8946         * PrintDialog.cs: same.
8947
8948         * DataGridTextBoxColumn.cs: same.
8949
8950         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
8951
8952 2006-12-05  Chris Toshok  <toshok@ximian.com>
8953
8954         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
8955         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
8956         System.ComponentModel.EventHandlerList work.
8957
8958 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
8959
8960         * DrawTreeNodeEventArgs.cs: Added.
8961
8962 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8963         
8964         * InternalWindowManager.cs: Remove an unused field.
8965         
8966 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8967
8968         * InternalWindowManager.cs:
8969         - Save the point where the title bar is clicked.
8970         
8971         * MdiWindowManager.cs:
8972         - Only allow moving of the window as long as the 
8973         clicked point on the title bar does not get out of
8974         MdiClient's rectangle. Fixes #79982.
8975         
8976         * MdiClient.cs:
8977         - Added Horizontal/VerticalScrollbarVisible.
8978         - Simplified the scrollbar sizing algorithm.
8979         - Cache the difference in scrolled value in
8980         H/VBarValueChanged and move the calculation out
8981         of the for loop.
8982
8983 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8984
8985         * Control.cs: Make the Console.WriteLine in WndProc 
8986         write more info.
8987
8988 2006-12-05  Chris Toshok  <toshok@ximian.com>
8989
8990         * ToolStripManager.cs, ToolStripButton.cs,
8991         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
8992         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
8993         ToolStripSplitButton.cs, ToolStripSeparator.cs,
8994         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
8995         ToolStripProgressBar.cs, ToolStripContainer.cs,
8996         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
8997         to using System.ComponentModel.EventHandlerList.
8998
8999 2006-12-04  Chris Toshok  <toshok@ximian.com>
9000
9001         * LinkLabel.cs: fix up compiler warnings.
9002
9003         * TableLayoutSettings.cs: same.
9004
9005         * TreeView.cs: same.
9006
9007         * ToolBar.cs: same.
9008
9009         * TabControl.cs: same.
9010
9011         * RichTextBox.cs: same.
9012
9013         * ListViewItem.cs: same.
9014
9015         * PropertyGrid.cs: same.
9016
9017         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
9018
9019         * ToolTip.cs same.
9020
9021         * TextRenderer.cs: fix up compiler warnings.
9022
9023         * Label.cs: same.
9024
9025         * Form.cs: corcompare fixes.
9026
9027         * PictureBox.cs: fix up compiler warnings.
9028
9029         * ImageListStreamer.cs: same.
9030
9031         * TrackBar.cs: corcompare fix.
9032
9033         * Control.cs: fix up compiler warnings.
9034
9035         * SplitterPanel.cs: same.
9036
9037         * NumericTextBox.cs: same.
9038
9039         * ImageList.cs: same.
9040
9041         * StatusStrip.cs: same.
9042
9043         * ProgressBar.cs: corcompare fix.
9044
9045         * ToolStripButton.cs: fix up compiler warnings.
9046
9047         * ToolStripStatusLabel.cs: same.
9048
9049         * ToolStripSplitButton.cs: same.
9050
9051         * ToolStripSeparator.cs: same.
9052
9053         * ToolStripProgressBar.cs: same.
9054
9055         * ToolStripDropDownMenu.cs: same
9056
9057         * ToolStripDropDown.cs: same.
9058
9059         * ToolStripDropDownButton.cs: same.
9060
9061         * ToolStrip.cs: same.
9062
9063         * ToolStripControlHost.cs: same.
9064
9065         * ToolStripContentPanel.cs: same.
9066
9067         * ToolStripDropDown.cs: same.
9068
9069         * ToolStripContainer.cs: same.
9070
9071         * ToolStripPanel.cs: same, and add "new" where we need it to work
9072         with the new ArrangedElementCollection.
9073
9074         * ToolStripItemCollection.cs: add "new" where we need it to work
9075         with the new ArrangedElementCollection.
9076
9077 2006-12-04  Andreia Gaita <avidigal@novell.com>
9078
9079         * TabControl.cs: Fix default tab selection to after TabControl
9080         gets focus and not before. Fixes #80128
9081
9082 2006-12-04  Chris Toshok  <toshok@ximian.com>
9083
9084         * DataGridTableStyle.cs: remove the gross calling of
9085         datagrid.Refresh from here.  It's a broken idea and it doesn't
9086         work anyway.
9087
9088         * DataGrid.cs: instead, just register/unregister from the
9089         DataGridTableStyle events in CurrentTableStyle.  we play it
9090         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
9091         even though some would most likely not require it.  Fixes bug
9092         #80115 (and one portion of #80117 as a side effect).
9093
9094 2006-12-04  Chris Toshok  <toshok@ximian.com>
9095
9096         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
9097         so the textbox (if any) goes away.  Fixes bug #80117.
9098
9099 2006-12-04  Chris Toshok  <toshok@ximian.com>
9100
9101         * DataGridColumnStyle.cs: set the column's readonly property
9102         initially based on the property descriptor's IsReadOnly.  Fixes
9103         bug #80044.
9104
9105 2006-12-04  Chris Toshok  <toshok@ximian.com>
9106
9107         * ComboBox.cs: wrap the dropdown style changing work in
9108         SuspendLayout/ResumeLayout.  Fixes bug #79968.
9109
9110 2006-12-04  Jackson Harper  <jackson@ximian.com>
9111
9112         * TextBoxBase.cs: Fix off by one, since these are one-based.
9113         * TextBox.cs: Select all the text when we get focus.  The TextBox
9114         does this but the RTB does not.
9115
9116 2006-12-04  Chris Toshok  <toshok@ximian.com>
9117
9118         * DataGridTextBoxColumn.cs: remove some spew.
9119
9120         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
9121         but some part of me is saying "it shouldn't be here.."  At any
9122         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
9123         setting the value.
9124
9125 2006-12-04  Chris Toshok  <toshok@ximian.com>
9126
9127         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
9128         to reassign the propertydescriptor.
9129
9130 2006-12-04  Jackson Harper  <jackson@ximian.com>
9131
9132         * TextBoxBase.cs:
9133         * TextControl.cs: Remove some unused variables.  Maybe this will
9134         patch things up between mike and I.
9135         - don't split lines less then one char wide, if the viewport is
9136         that small text won't be visible anyways.
9137         
9138 2006-12-04  Jackson Harper  <jackson@ximian.com>
9139
9140         * TextBoxBase.cs: Default selection length is -1, need to do some
9141         more testing on windows to see when this is used for the property.
9142         - Redid the Lines [] property to that we properly remove soft line
9143         breaks
9144         - added support for preserving carriage returns
9145         -  CanUndo is not a variable like 'is undo enabled' it just returns
9146         true if there is undo operations available.
9147         - AppendText doesn't need to grab the last tag itself anymore,
9148         this happens automatically when we move the cursor.
9149         * TextControl.cs: Add CompoundActions to the undo class. This
9150         allows combining the other operations into one big option.  ie a
9151         paste will combine { delete old, insert new, move cursor }
9152         - Add InsertString undo operation
9153         - New method for deleting multiline text
9154         - Add carriage returns to lines. So we can preserve carriage
9155         returns when text is 'roundtripped'
9156
9157 2006-12-04  Chris Toshok  <toshok@ximian.com>
9158
9159         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
9160         minimum 0.  Fixes the scrollbar exception in bug #80136.
9161
9162 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9163
9164         * MdiClient.cs: 
9165         * MdiWindowManager: Removed unused fields and methods.
9166         
9167 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9168         
9169         * StatusBar.cs: Update all panels when a AutoSize=Contents
9170         panel needs updating.
9171         
9172         * StatusBarPanel.cs: Remove twidth and only use initialize.
9173         Fixes #80031.
9174                 
9175 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9176
9177         * Form.cs: When a form's MdiParent is set add it directly
9178         on top of the z-order in stead of relying on MdiClient's
9179         ActivateChild to do it. Fixes #80135.
9180         
9181         * MdiClient.cs: 
9182         - Remove original_order, mdi_child_list is already doing
9183         the same thing.
9184         - Create mdi_child_list on construction in
9185         stead of first use (avoids a few null checks).
9186
9187         * MenuItem.cs: Use an already existing list of mdi children
9188         to get the correct order of children and remove the other
9189         redundant list.
9190
9191 2006-12-04  Chris Toshok  <toshok@ximian.com>
9192
9193         * PropertyGridView.cs: cached_splitter_location is only used in
9194         !DOUBLEBUFFER code.
9195
9196         * PropertyGrid.cs: implement the ComComponentNameChanged event
9197         using Events, hoping that would fix the warning.  Looks like a
9198         compiler bug instead (#80144).
9199
9200         * PropertyManager.cs: remove unused method.
9201
9202 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
9203
9204         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
9205         include parentesis to fix expression evaluation. Fixes #79634.
9206
9207 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
9208         
9209         * MenuAPI.cs:
9210         - Changes to fix behavior in Menu control, some reported in #80097
9211         and other detected during behavior refactory like a select event
9212         problems.
9213         - Remove unneded "if's" conditions.
9214         - Created an internal to flag when popup is active in control, we need 
9215         it because in .NET you can have menu active but without popup active
9216         when you active menu using popup without visible items.
9217         - Mimic win32 behavior for Select and Popup events.  
9218         - Dont open popup menu when you dont have visible subitems.
9219         - Do nothing when click on disabled menu item.
9220         - Some small changes to follow the coding style guidelines.
9221         - Unselect menu only when another control gives focus. Fixes #80097.
9222         - Remove unused code.
9223         
9224         * MenuItem.cs: internal VisibleItems method to check if menu
9225         theres visible subitems, it will be usefull to fix some 
9226         behavior in Menu control.
9227         
9228 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9229         
9230         * Timer.cs: Tag property for 2.0 profile.
9231         
9232 2006-12-01  Chris Toshok  <toshok@ximian.com>
9233
9234         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
9235         
9236         * Win32DnD.cs: comment out some unused fields.
9237
9238         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
9239         some unused properties/methods.
9240
9241         * XplatUIX11.cs: fix MousePosition so we override the base class's
9242         property instead of conflicting with it.
9243
9244         * PictureBox.cs: comment out some unused fields
9245
9246         * OSXStructs.cs: make some struct fields public.
9247
9248         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
9249         MousePosition so we override the base class's property instead of
9250         conflicting with it.
9251
9252         * X11Dnd.cs: comment out some unused fields
9253
9254         * X11DesktopColors.cs: fix some struct field visibility to quiet
9255         the compiler.
9256
9257         * X11Dnd.cs: remove some debug code.
9258
9259         * ThemeClearlooks.cs: comment out unused field.
9260
9261         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
9262
9263         * ThemeGtk.cs: comment out some unused pinvokes.
9264
9265         * Timer.cs: remove some unused fields.
9266
9267         * ThemeClearlooks.cs: comment out unused field.
9268
9269         * UpDownBase.cs: comment out unused field.
9270
9271         * DataObject.cs: comment out unused field.
9272
9273         * DataGridBoolColumn.cs: reomve unused field.
9274
9275         * DataGrid.cs: remove unused field.
9276
9277         * Cursor.cs: remove old ToBitmap code.
9278
9279         * ControlPaint.cs: remove unused method.
9280
9281         * ScrollBar.cs: remove unused fields.
9282
9283         * ComboBox.cs: remove unused field, and chain up to
9284         AccessibleObject ctor.
9285
9286         * ListBox.cs: remove unused field.
9287
9288         * ButtonBase.cs: wrap a couple fields in NET_2_0.
9289
9290         * GridEntry.cs: remove unused fields.
9291
9292         * Binding.cs: remove unused fields.
9293
9294         * AxHost.cs: remove unused method.
9295
9296         * ContainerControl.cs: remove unused field.
9297
9298         * ScrollableControl.cs: remove unused fields.
9299
9300 2006-12-01  Chris Toshok  <toshok@ximian.com>
9301
9302         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
9303         the Where/WhereString stuff.  it's easy enough to CWL
9304         Environment.StackTrace.
9305
9306         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
9307         unused private fields.
9308
9309 2006-12-01  Jackson Harper  <jackson@ximian.com>
9310
9311         * TextControl.cs: Do not update the view while inserting multiline
9312         text. If we update the view we might wrap lines, before entering
9313         the new lines, which causes the new line insertion calculations to
9314         be totally fubared.
9315         - Remove an old TODO
9316         - Make debug output a little nicer
9317         
9318 2006-12-01  Chris Toshok  <toshok@ximian.com>
9319
9320         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
9321
9322 2006-12-01  Chris Toshok  <toshok@ximian.com>
9323
9324         [ fix the majority of the CS0108 warnings we've been suppressing ]
9325         
9326         * TreeView.cs: mark BackgroundImageChanged as 'new'.
9327
9328         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
9329         to "LayoutToolBar" to quiet mcs.
9330         
9331         * TabControl.cs: mark our ControlCollection class as 'new'.
9332
9333         * TextBoxBase.cs: mark some events as 'new'.
9334
9335         * Splitter.cs: TabStop is 'new'.
9336
9337         * ControlBindingsCollection.cs: mark a few methods as new since
9338         they change the visibility from protected to public.
9339
9340         * RadioButton.cs: DoubleClick -> base class, and remove unused
9341         HaveDoubleClick.
9342
9343         * MonthCalendar.cs: ImeMode property -> base class, and mark many
9344         events as new.
9345
9346         * NumericUpDown.cs: TextChanged -> base class.
9347
9348         * CheckedListBox.cs: mark our ObjectCollection class as new to
9349         quiet mcs.
9350
9351         * FolderBrowserDialog.cs: make HelpRequest event new and have it
9352         muck with the base class.
9353
9354         * StatusBar.cs: fix some mcs warnings about Update being the same
9355         name as a base class method.
9356
9357         * RichTextBox.cs: mark some events as new, and make them do things
9358         to the base class impl.
9359
9360         * UserControl.cs: mark TextChanged as new, and have it manipulate
9361         base.TextChanged.
9362
9363         * UpDownBase.cs: mark some things new.
9364
9365         * CheckBox.cs: mark DoubleClick "new", and add some text about
9366         what we need to look at.
9367
9368         * Panel.cs: make the events "new", and manipulate the base
9369         version.  these are just here for attributes.
9370
9371         * AccessibleObject.cs: make owner private.
9372
9373         * Control.cs: deal with AccessibleObject.owner being private.
9374         cache our own copy if we need it.
9375
9376         * Button.cs: add "new" to the DoubleClickEvent.
9377
9378         * ListBox.cs: no need to track our own has_focus here.  let
9379         Control.has_focus do it for us.  Also some other work to clear up
9380         warnings about not overriding base class methods of the same name.
9381         
9382         * ComboBox.cs: clear up some warnings about not override base
9383         class methods of the same name.
9384
9385 2006-12-01  Chris Toshok  <toshok@ximian.com>
9386
9387         * Form.cs: flag a few things as "new" to quiet some of the mcs
9388         warnings.
9389
9390         * AxHost.cs: same.
9391
9392         * PrintPreviewDialog.cs: same.
9393
9394         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
9395         now DGV isn't so horrible on the class status page.  also, move
9396         all events to using System.ComponentModel.EventHandlerList.  my
9397         wrists hurt.
9398
9399 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9400
9401         * MdiWindowManager.cs:
9402         - Set form to active mdi child if shown,
9403         and update the active mdi child to the next 
9404         remaining child in the z-order if the form is hidden.
9405
9406         * Form.cs: 
9407         - Track if the form has been visible and if its 
9408         visibility is beeing changed, so that the MdiClient
9409         can properly decide the ActiveMdiChild. The MdiClient 
9410         cannot track this since the form can change visibility 
9411         before MdiClient is created.
9412
9413         * MdiClient.cs:
9414         - Don't activate anything of the parent form is changing
9415         its visibility.
9416         - Rework ActiveMdiChild to only return visible mdi 
9417         children and take into account several other corner 
9418         cases.
9419
9420 2006-12-01  Chris Toshok  <toshok@ximian.com>
9421
9422         * IBindableComponent.cs: new 2.0 interface.
9423
9424 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
9425
9426         * DataGrid.cs: Font for caption area is bold by default.
9427
9428 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
9429
9430         * Menu.cs: Tag property for 2.0.
9431         
9432 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9433
9434         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
9435         
9436 2006-12-01  Chris Toshok  <toshok@ximian.com>
9437
9438         * TreeView.cs: doh, the Begin* events should be
9439         TreeViewCancelEventHandler.
9440
9441 2006-12-01  Chris Toshok  <toshok@ximian.com>
9442
9443         * Form.cs: Form.ControlCollection already stores off the
9444         form_owner field.  don't access the base class's internal "owner"
9445         field.
9446
9447         * Control.cs: make all the fields in Control.ControlCollection
9448         private.  there's no need for any internal fields here.
9449
9450 2006-12-01  Chris Toshok  <toshok@ximian.com>
9451
9452         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
9453         OnHandleCreated.  Fixes bug #80109.
9454
9455 2006-12-01  Chris Toshok  <toshok@ximian.com>
9456
9457         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
9458         SplitContainer.cs, Control.cs, StatusStrip.cs,
9459         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
9460         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
9461         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
9462         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
9463         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
9464         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
9465         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
9466         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
9467         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
9468         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
9469
9470         do most of the work to convert our code over to use
9471         System.ComponentModel.Component.Events for
9472         adding/removing/dispatching events.
9473
9474
9475 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9476
9477         * DataGridView.cs: Fix an ArgumentNullException reported 
9478         twice today in IRC.
9479
9480 2006-11-30  Mike Kestner  <mkestner@novell.com>
9481
9482         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
9483         grabbed listbox.  Fixes #80036 and #80101.
9484
9485 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9486
9487         * Message.cs: Changed ToString() to match MS.
9488         
9489 2006-11-30  Jackson Harper  <jackson@ximian.com>
9490
9491         * TextBoxBase.cs: You can still change the selected text on a read
9492         only textbox.
9493         * TextControl.cs: Lower magic number for wrap calculations. This
9494         lets text get closer to the right (far) edge.
9495
9496 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9497
9498         * Control.cs: Tweak 2.0 layout properties.
9499         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
9500         * TextRenderer.cs: Add a new overload.
9501         * ToolStrip*: Huge amount of changes and new features.
9502
9503 2006-11-30  Mike Kestner  <mkestner@novell.com>
9504
9505         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
9506         scroll range correct.  Fixes #79994.
9507
9508 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9509
9510         * MdiWindowManager.cs: Update main form's text when
9511         a form is closed. (fixes #80038)
9512         
9513 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
9514
9515         * ToolBar.cs:
9516         - Fix an regression in ButtonSize.
9517         - Get ImeMode default value change to "Disable".
9518         - Get ShowTooltips default value change to true, default value is 
9519         "false" but after make a test in .NET we get "true" result as default.
9520         
9521 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
9522
9523         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
9524
9525 2006-11-29  Chris Toshok  <toshok@ximian.com>
9526
9527         * XplatUIWin32.cs (GetWindowTransparency): check return value of
9528         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
9529         SetWindowTransparency hasn't been called.
9530
9531 2006-11-29  Chris Toshok  <toshok@ximian.com>
9532
9533         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
9534         if it's supported.
9535         (set_AllowTransparency): reorder things a little so that the
9536         WS_EX_LAYERED style is removed properly.
9537
9538 2006-11-29  Chris Toshok  <toshok@ximian.com>
9539
9540         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
9541         
9542         * Form.cs: only call the XplatUI transparency method (get/set) if
9543         SupportsTransparency says it's supported. Otherwise fallback to
9544         doing nothing (in the set case) or returning the instance field we
9545         cache (in the get case).
9546
9547         * XplatUIStructs.cs: add TransparencySupport flag enum.
9548         
9549         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
9550         change to SupportsTransparency.
9551
9552         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
9553         TransparencySupport.None from SupportsTransparency.
9554
9555         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
9556         TransparencySupport.Set from SupportsTransparency.
9557
9558         * XplatUIWin32.cs: implement GetWindowTransparency calling
9559         GetLayeredWindowAttributes, and implement SupportsTransparency by
9560         checking whether or not both
9561         GetWindowTransparency/SetWindowTransparency are available
9562         entrypoints.  We need to do this since SetWindowTransparency is
9563         available as of win2k, but GetWindowTransparency requires winxp.
9564         yay win32 api.
9565
9566         * XplatUI.cs: Add GetWindowTransparency, and change
9567         SupportsTransparency to allow for either/both Get/Set.
9568
9569 2006-11-29  Chris Toshok  <toshok@ximian.com>
9570
9571         * DataGrid.cs: keep from going into an infinite loop redrawing a
9572         datagrid that has no datasource.  Fixes bug #80033.
9573
9574 2006-11-29  Chris Toshok  <toshok@ximian.com>
9575
9576         * MenuItem.cs: fix the NRE when we assign text (and therefore call
9577         Invalidate) before the mainmenu has been assigned to a control.
9578
9579 2006-11-29  Chris Toshok  <toshok@ximian.com>
9580
9581         * DataGrid.cs: detect when we should be double the double click
9582         row/column autosize stuff, although that codepath has yet to be
9583         written.  part of the work for bug #79891.
9584
9585 2006-11-29  Chris Toshok  <toshok@ximian.com>
9586
9587         * Binding.cs (SetControl): fix unit test.
9588
9589 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9590
9591         * PageSetupDialog.cs: Validate the margins and set them in
9592         PageSettings. 
9593         * NumericTextBox.cs: New class to mimic the behavior of the
9594         textboxes used in the printing dialogs.
9595
9596 2006-11-29  Andreia Gaita  <avidigal@novell.com>
9597         
9598         * Form.cs: Revert previous change (remove call UpdateBounds
9599         from form constructor), because it messes with the handle creation
9600         order, and that one needs lots and lots of love.
9601         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
9602         for valid printer and throw InvalidPrinterException if document
9603         is set but printer not valid), adding a MonoTODO. Once 
9604         handle creation is done properly, we can put this back in.
9605
9606 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9607
9608         * MenuItem.cs: Create a invalidate method for menu item, to be
9609         calling from set text, it make text changes to imadiate update
9610         on screen. Fixes #80013. 
9611         
9612 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9613
9614         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
9615         fixes bug #80070 and some other problem on toolbar buttons
9616         layout.
9617
9618 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9619
9620         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
9621         with dotted brush.      Fixes #79564
9622         
9623 2006-11-28  Andreia Gaita  <avidigal@novell.com>
9624
9625         * Form.cs: Removed call to UpdateBounds on Form
9626         constructor, it was causing a call to CreateHandle
9627         before it was supposed to.
9628         * PrintControllerWithStatusDialog: Applied patch
9629         by Chris Toshok to hide controller when there are
9630         no printers available.
9631         PrintDialog.cs: initialize printer settings to 
9632         null - correct DefaultValues test #5
9633         * PrintPreviewControl.cs: Move PrintController
9634         initialization to GeneratePreview
9635         * PrintPreviewDialog.cs: 
9636         - Remove Preview generation     from Document_set(). It is 
9637         called on OnPaint
9638         - Throw InvalidPrinterException on CreateHandle if
9639         a Document is set but there are no printers or 
9640         printer is not valid.
9641         * ThemeWin32Classic: don't paint PrintPreviewControl
9642         if there is nothing to paint    
9643
9644 2006-11-28  Miguel de Icaza  <miguel@novell.com>
9645
9646         * Form.cs: Add another popular method.
9647
9648         * TabPage.cs: ditto.
9649
9650 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9651
9652         * MenuItem.cs: Fixed a warning.
9653         * InternalWindowManager: Fixed a warning.
9654
9655 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9656
9657         * MenuItem.cs:
9658         - When cloning a menu also clone MdiList and clone the 
9659           window menu items properly (as the forms and menuitems
9660           are kept in an internal hashtable, these need updating 
9661           as well)
9662         - Rewrote the window menu code, menu items are added in the
9663           order the forms were added to their parent, and they are
9664           updated every time the window menu is shown (before the
9665           list was only generated once, in the current order of the
9666           forms, and would never be updated). A checkmark is shown
9667           next to the item corresponding to the active mdi child.
9668
9669 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9670
9671         * XplatUIStructs.cs: 
9672         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
9673         
9674         * XplatUIWin32.cs: 
9675         - Added TME_NONCLIENT to TMEFlags.
9676         - Handles WM_NCMOUSEMOVE in GetMessage to 
9677           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
9678
9679         * MdiWindowManager:
9680         - Now merges mdi child menu to parent menu when maximized.
9681         - Recalculate NC areas of both mdi child and mdi parent. 
9682           Fixes #79757 (4).
9683           on window state and size changes.Fixes #79844 (3).
9684         - Handle WM_NCCALCSIZE to properly calculate borders.
9685
9686         * Form.cs:
9687         - Add/remove to the mdi containers list of mdi children 
9688           in the order they are added.
9689         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
9690           to the maximized mdi child.
9691         
9692         * InternalWindowManager.cs:
9693         - Only execute a click on the control buttons on the mouse up,
9694           not on the mouse down. Show the state of the button 
9695           (was only showing Normal state, never Pressed state). The
9696           pressed button now follows the mouse (if you click the Close 
9697           button and move the mouse over the Maximize button, the 
9698           Maximize button will be shown as pressed). Since Win32 does
9699           not generate WM_NCLBUTTONUP if you release the button outside
9700           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
9701           it as a mouse up.
9702         
9703         * ThemeWin32Classic.cs:
9704         - Draw a missing border around mdi child forms. Fixes #79844 (2).
9705
9706         * MdiClient.cs:
9707         - Added a list of forms which contains the order the forms are
9708           added to the mdi parent.
9709         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
9710         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
9711         - If the active form changes set the scrollbars to the top
9712           of the Z order, otherwise the form could hide them.
9713         - Scrollbars are now sized according to ClientSize, not 
9714           to Size, and they take into account the other scrollbar
9715           to determine maximum.
9716         
9717 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
9718         
9719         * XplatUI.cs:
9720         * XplatUIDriver.cs:
9721         * XplatUIX11.cs:
9722         * XplatUIWin32.cs:
9723         * XplatUIOSX.cs:
9724         - Added RequestAdditionalWM_NCMessages for windows to 
9725           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
9726           Currently only implemented in XplatUIWin32.
9727
9728 2006-11-27  Chris Toshok  <toshok@ximian.com>
9729
9730         * Hwnd.cs: only add the hwnd to the windows hash in
9731         set_WholeWindow and set_ClientWindow if whole_window/client_window
9732         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
9733
9734 2006-11-27  Mike Kestner  <mkestner@novell.com>
9735
9736         * ComboBox.cs: remove redundant OnDropDown call.  It is called
9737         from the ComboListBox.ShowWindow code. Fixes #79969.
9738
9739 2006-11-27  Chris Toshok  <toshok@ximian.com>
9740
9741         * Hwnd.cs: remove the setters for ExposePending and
9742         NCExposePending - noone uses them.
9743
9744 2006-11-27  Jackson Harper  <jackson@ximian.com>
9745
9746         * TextControl.cs: new param for ReplaceSelection which determines
9747         whether we select the new selection, or set the cursor to the end
9748         of the new selection.
9749         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
9750         pasting, select the new text.
9751         * RichTextBox.cs: Use new param for ReplaceSelection.
9752
9753 2006-11-27  Jackson Harper  <jackson@ximian.com>
9754
9755         * TextBoxBase.cs: Set the selection to the caret after the caret
9756         is moved, otherwise they get out of sync.
9757
9758 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9759
9760         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
9761         it fixes #80015
9762
9763 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9764
9765         * ThemeWin32Classic.cs: 
9766         - Fix toolbar drop down arrow position.
9767         - Fix drop down appearance when ToolBar.Appearance is normal,
9768         it fixes #80018.
9769         
9770 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
9771
9772         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
9773         * Control.cs: Same.
9774         * UpDownBase.cs: Same.
9775         * ButtonBase.cs: Same.
9776         * ScrollBar.cs: Same.
9777         * TrackBar.cs: Same.
9778         * PictureBox.cs: Same.
9779         * UserControl.cs: Same.
9780         * Label.cs: Same.
9781         * ListControl.cs: Same.
9782         * TextBoxBase.cs: Same.
9783         * ListView.cs: Same.
9784         * RichTextBox.cs: Same.
9785         * TreeView.cs: Same.
9786
9787 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
9788
9789         * PrintDialog.cs:
9790         - Text label for where 
9791         - Text label comment was not shown
9792
9793 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
9794
9795         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
9796
9797 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9798
9799         * InternalWindowManager.cs: 
9800         - Handle WM_PARENTNOTIFY to activate the form
9801         if any child control is clicked.
9802         - The form is only sizable if not minimized.
9803
9804         * MdiWindowManager.cs:
9805         - Save the IconicBounds if the form is moved.
9806         - Rework SetWindowState, now the window bounds 
9807         are stored only if the old window state is Normal.
9808         
9809         * MdiClient.cs:
9810         - In SetWindowStates store the old window state if 
9811         the window is maximized and restore window state if
9812         the window looses focus.
9813         - Don't handle any scrollbar value changes if 
9814         initializing the scroll bars. Fixes #79771.
9815         - Reworked ArrangeIconicWindows. Current algorithm
9816         tests bounds agains all other minimized windows, if
9817         any intersections create new bounds (going left to 
9818         right, bottom to top) and then test again. When 
9819         successful the bounds are saved and never computed
9820         again. Fixes #79774.
9821
9822 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9823
9824         * InternalWindowManager.cs: Added HandleTitleBarUp.
9825
9826 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9827
9828         * NumericUpDown.cs: In .NET 1.1, user entered text is still
9829         hexadecimal in ParseUserEdit.
9830
9831         
9832 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9833
9834         * MdiWindowManager.cs: 
9835         - Handle a click on the form's icon to show the 
9836         system menu (when maximized). Fixes #79775.
9837         - Change the existing click handler for the form's
9838         icon when not maximized to show on MouseUp.
9839         Fixes #79776.
9840
9841         * Form.cs: In OnResize only layout the mdi child's
9842         parent if it actually has a parent. Might not if
9843         the window is closing.
9844
9845
9846 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9847
9848         * MdiClient.cs: Ignore active MDI client for text of parent, if
9849         child has no text set.
9850
9851 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9852
9853         * ToolBar.cs: Fixed ToString to match MS.
9854
9855 2006-11-22  Andreia Gaita  <avidigal@novell.com>
9856
9857         * NumericUpDown: 
9858         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
9859         update inner values on set. Fixes #79966.
9860         - Override OnLostFocus to update value on NET 2. Fixes #79950.
9861         - Fix hexadecimal parsing.
9862         
9863         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
9864         parent. Fixes #79957
9865
9866 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9867
9868         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
9869         the actual size has to be queried, since if height /
9870         width is negative Win32 changes it to 0. 
9871         Fixes #79999 on Windows.
9872         
9873         * XplatUIX11.cs: Set height / width to 0 if negative
9874         in SetWindowPos. Fixes #79999 on Linux.
9875         
9876 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9877
9878         * ThemeWin32Classic.cs: Fix text redenring when button is
9879         pressed.
9880
9881 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9882
9883         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
9884         and later navigate by mouse. Fixes #79528.
9885
9886 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9887
9888         * ToolBar.cs: Set default value for TabStop to false in
9889         constructor, it fixes remaining behavior of bug #79863.
9890
9891 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9892
9893         * MdiWindowManager.cs:
9894         * InternalWindowManager.cs:
9895         - Moved a few methods specific to Mdi from 
9896         InternalWindowManager to MdiWindowManager.
9897         Fixes #79996.
9898         
9899 2006-11-21  Chris Toshok  <toshok@ximian.com>
9900
9901         * XplatUIOSX.cs: stub out InvalidateNC.
9902
9903         * XplatUIWin32.cs: implement InvalidateNC using the call I found
9904         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
9905
9906         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
9907
9908         * XplatUIDriver.cs: add InvalidateNC abstract method.
9909
9910         * XplatUI.cs: add InvalidateNC.
9911
9912 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9913
9914         * ToolBar.cs: Invalidate complete button area when pressed status 
9915         was changed.
9916         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
9917         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
9918         by 1 when button is pressed.
9919
9920 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9921
9922         * ToolButton.cs: Invalidate middle of DropDown button when
9923         ToolBar theres DropDownArrows.
9924         * ThemeWin32Classic.cs: Change position of DropDown arrow and
9925         fix DropDown drawing operations.
9926
9927 2006-11-20  Chris Toshok  <toshok@ximian.com>
9928
9929         * NativeWindow.cs: fix the formatting of functions ('{' on the
9930         following line), and enable the thread exception dialog.
9931
9932         * Application.cs: remove the duplicate exception catching from
9933         here.
9934
9935 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9936
9937         * Toolbar.cs: Triggers button click event when click on icon
9938         of dropdown ToolBarButton. Fixes #79912.
9939         
9940 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9941
9942         * Theme.cs:
9943         * ThemeWin32Classic.cs:
9944         - Added a property WindowBorderFont to enable themeing
9945           of mdi child windows' Text.
9946           
9947 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9948
9949         * InternalWindowManager.cs:
9950         * Form.cs:
9951         * MdiClient.cs:
9952         * MdiWindowManager.cs: 
9953         - If mdi child is maximized, set mdi parent's
9954           text to "Parent - [Child]". Fixes #79770.
9955         - If there is any maximized mdi child windows, only the active 
9956           window (and any new windows) is maximized, the rest are normal.
9957         - On a WindowState change only save mdi child's window bounds 
9958           if the old window state was normal. Fixes #79774.
9959         - The scroll bars are now calculated on hopefully all
9960           necessary events. Fixed #79771 / #79844->6 / #79906.
9961         - MdiClient.SizeScrollBars() now takes into account docked 
9962           controls in the parent when calculating available space.
9963         - InternalWindowManager now always repaints the entire title
9964           area. Fixes #79844->1/4/5.
9965         - Added RequestNCRecalc on mdi child windowstate changes.
9966           Fixes #79772.
9967
9968 2006-11-20  Mike Kestner  <mkestner@novell.com>
9969
9970         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
9971         in the MouseUp handler of the listbox and move the return handling
9972         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
9973
9974 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9975
9976         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
9977
9978 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9979
9980         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
9981           working in 1.2.x anymore. So, updated.
9982
9983 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
9984
9985         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
9986         NumberGroupSeparator of current culture instead of assuming en-US.
9987         Fixed bug #79967.
9988
9989 2006-11-17  Mike Kestner  <mkestner@novell.com>
9990
9991         * Control.cs: Add the concept of implicit bounds setting so that
9992         dock/undock round trips preserve explicitly set size/locations.
9993         Fixes #79313.
9994
9995 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9996
9997         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
9998           can't handle those filters. (Fixes bug #79961)
9999
10000 2006-11-17  Chris Toshok  <toshok@ximian.com>
10001
10002         [ fixes the exit/crashes associated with #79835.  it's clearly
10003         suboptimal though, we need to figure out a better way to solve
10004         this. ]
10005         
10006         * PrintPreviewControl.cs: deal with the new invalid printer
10007         exceptions.
10008
10009         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
10010         and return false (so CommonDialog.ShowDialog doesn't actually show
10011         the form.)
10012
10013         * PrintDialog.cs: enable/disable the Ok button depending on
10014         whether or not the printer is valid.
10015
10016         * CommonDialog.cs (ShowDialog): only actually show the form if
10017         RunDialog returns true.
10018
10019 2006-11-17  Jackson Harper  <jackson@ximian.com>
10020
10021         * TextControl.cs: When soft splitting a line, mark it as a soft
10022         split line. Also carry over the current line break to the next
10023         line.
10024
10025 2006-11-17  Chris Toshok  <toshok@ximian.com>
10026
10027         * XplatUIX11.cs: when scrolling a window with an invalid area, we
10028         only want to shift the part of the invalid area that overlaps the
10029         area we're scrolling.  we also don't want to clear the invalid
10030         area unless the invalid area was entirely contained within the
10031         scrolling area.
10032
10033 2006-11-16  Chris Toshok  <toshok@ximian.com>
10034
10035         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
10036         also make sure to free the memory returned by XGetWindowProperty
10037         in GetText().
10038
10039         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
10040
10041 2006-11-16  Chris Toshok  <toshok@ximian.com>
10042
10043         * XplatUI.cs: add a new super secret way to get at the totally
10044         unsupported X11 backend.
10045
10046 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
10047
10048         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
10049
10050 2006-11-16  Jackson Harper  <jackson@ximian.com>
10051
10052         * TreeView.cs: Allow more explicit setting of top node position
10053         for scrollbars. Slower algo, but more accurate.
10054         - CollapseAll should maintain the current top node.
10055         * TextBoxBase.cs: When positioning the caret, use the line, pos
10056         method, since the x, y method does not grab the correct tag, and
10057         the caret height never gets set correctly. (Maybe I should just do
10058         away with the caret having its own height, and always use the
10059         carets current tag for height).
10060
10061 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
10062
10063         [Fixes 79778, 79923]
10064
10065         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
10066         Parent to the FosterParent instead.
10067
10068 2006-11-16  Jackson Harper  <jackson@ximian.com>
10069
10070         * TreeView.cs: Need to recalc the topnode when we expand or
10071         collapse. The scrolling methods can't handle this on their own,
10072         since they use differences between the last scroll position, and
10073         those difference get completely messed up since we are expanding
10074         nodes.  This problem should probably be fixed in the scrolling
10075         methods, so they can figure out exactly where they are, but this
10076         will slow things down a little.
10077         * ThemeWin32Classic.cs: Special case for groupboxes with empty
10078         strings, makes nunit-gui look a lot nicer.
10079
10080 2006-11-16  Chris Toshok  <toshok@ximian.com>
10081
10082         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
10083         the broken multithreaded event handling we have in here.  File
10084         this entry under "Why we should move to the new X11 backend".
10085
10086         Any thread can make it into UpdateMessageQueue, which gets events
10087         from the X socket - some of which could belong to hwnds being
10088         managed by a different thread.  We can also have multiple threads
10089         in UpdateMessageQueue at the same time, with each one reading from
10090         the X socket.  This leads to many problems, with the following
10091         solutions:
10092
10093         We can't use hwnd.Queue.Enqueue anywhere in here and must use
10094         EnqueueLocked.
10095
10096         The MotionNotify compression we do can't work across threads
10097         (without locking the entire queue, perhaps) since we call
10098         hwnd.Queue.Peek, so we just punt and don't compress motion events
10099         unless the owning thread is the one which got the X event.
10100
10101         ConfigureNotify is another fun one, since it modifies the hwnd's
10102         bounds and then enqueues the event.  We add a lock to Hwnd which
10103         is held when setting configure_pending to true (and enqueuing the
10104         event).
10105
10106         There is a race wrt the wake socket.  we need to make sure that
10107         only 1 thread is waiting on that socket, or else a thread could
10108         sleep waiting for data that never comes.  It's difficult (but not
10109         impossible) to make happen, because it seems to require something
10110         like the following:
10111
10112             1. Thread 1 polls on wake_receive
10113         
10114             2. poll returns saying there's data to be read on
10115                wake_receive.
10116         
10117             3. Thread 2 polls on wake_receive and immediately returns
10118                saying there's data to be read.
10119
10120             4. Thread 2 reads the wakeup byte from wake_receive
10121
10122             5. Thread 1 attempts to read the wakeup byte from
10123                wake_receive.
10124
10125             6. Thread 2 exits (due to a form closing, perhaps).
10126
10127             7. Thread 1 blocks forever.
10128         
10129         Fun, eh?
10130
10131         Fixing the Expose handling isn't done yet, and the races inherent
10132         in that piece of code are responsible for the drawing mistakes you
10133         see when generating expose events in a MT app (like NPlot).  This
10134         one is the likely to be the hardest to bandaid, and it doesn't
10135         appear to cause anything but drawing problems.  The other issues
10136         caused apps to exit or hang.
10137
10138         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
10139         called from a different thread than the one that should be calling
10140         these functions.
10141
10142         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
10143
10144 2006-11-15  Chris Toshok  <toshok@ximian.com>
10145
10146         * Application.cs: null out the context's MainForm when we exit
10147         RunLoop.  Fixes a newly checked in unit test as well as the last
10148         ODE from bug #79933.
10149
10150 2006-11-15  Chris Toshok  <toshok@ximian.com>
10151
10152         * Form.cs (set_Owner): allow a null value so we can clear the
10153         form's owner.
10154         (Dispose): set all our owned_form's Owner properties to null, and
10155         clear the owned_forms collection.
10156         (WM_CLOSE): clean up this a little bit.. still not right though.
10157
10158         * ApplicationContext.cs: OnMainFormClosed should only call
10159         ExitThreadCore if the main form isn't recreating.  Fixes unit
10160         test.
10161
10162 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10163
10164         [Fixes 78346]
10165
10166         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
10167
10168 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10169
10170         [Fixes 79433]
10171
10172         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
10173         keep popup window types from stealing focus from the main form
10174         on Windows.
10175
10176         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
10177
10178         * MenuAPI.cs: Set above flag to true.
10179
10180 2006-11-15  Chris Toshok  <toshok@ximian.com>
10181
10182         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
10183         the button being released is not in wParam.
10184
10185 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
10186
10187         * Form.cs: Add the released button to MouseEventArgs.Button
10188         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
10189         on Win32.
10190
10191 2006-11-15  Chris Toshok  <toshok@ximian.com>
10192
10193         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
10194         GetText().  untested because it's unused in our implementation.
10195         Control.Text always caches the text, even if
10196         ControlStyles.CacheText is not set.
10197
10198         fixes bug #79939.
10199
10200 2006-11-15  Chris Toshok  <toshok@ximian.com>
10201
10202         [ fixes #79933 ]
10203         
10204         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
10205         message.  no hiding, no disposing.
10206
10207         in the WM_CLOSE handler, hide the form if it's modal.
10208
10209 2006-11-15  Chris Toshok  <toshok@ximian.com>
10210
10211         * XplatUIX11.cs: use AddExpose instead of sending a message.
10212         fixes textbox border drawing.
10213
10214 2006-11-15  Chris Toshok  <toshok@ximian.com>
10215
10216         * PropertyGridView.cs: keep from crashing on mouse move/down when
10217         the property grid is empty.
10218
10219 2006-11-14  Jackson Harper  <jackson@ximian.com>
10220
10221         * TextControl.cs: Make PageUp and PageDown more like the MS
10222         versions.
10223         * TextBoxBase.cs: When we set the text property position the
10224         cursor at the beginning of the document.
10225
10226 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10227
10228         * Form.cs: if a mdi child's WindowState has changed
10229         before it's creation, it would display wrong control
10230         buttons.
10231         
10232 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
10233
10234         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
10235           (Fixes bug #79927)
10236
10237 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
10238
10239         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
10240         the window gets to paint its borders even if the window is
10241         getting smaller.
10242         
10243         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
10244         otherwise the old control buttons would still be painted 
10245         if the window gets bigger.
10246         
10247         * PaintEventArgs.cs: add an internal method so that the clip 
10248         rectangle can be changed.
10249         
10250 2006-11-13  Chris Toshok  <toshok@ximian.com>
10251
10252         [ fixes bug #79745 ]
10253         
10254         * NotifyIcon.cs: lots of cleanup.
10255
10256         * X11Structs.cs: add an enum for XEMBED messages.
10257
10258         * XplatUIX11.cs: reindent one of the giant switch statements, it
10259         was taking up an additional tab stop, and this file is already way
10260         too wide for my laptop's screen.
10261
10262         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
10263         we get it, resize the hwnd to the WMNormalHints max_width/height.
10264
10265 2006-11-13  Jackson Harper  <jackson@ximian.com>
10266
10267         * TextBoxBase.cs: Compute the value changes for the mouse wheel
10268         teh simple way.
10269
10270 2006-11-13  Chris Toshok  <toshok@ximian.com>
10271
10272         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
10273         #79898.  force a reference to the Region to stick around so the
10274         unmanaged object isn't collected (rendering our handle in the MSG
10275         stale).
10276
10277 2006-11-13  Chris Toshok  <toshok@ximian.com>
10278
10279         * XplatUIX11.cs: fix #79917 for window managers which support
10280
10281         using XStoreName on the raw utf8, and we need to convert to
10282         COMPOUND_TEXT if it's non-latin1.
10283
10284 2006-11-13  Chris Toshok  <toshok@ximian.com>
10285
10286         * Form.cs (set_DialogResult): we need to set closing to false if
10287         we're setting our result to None.  fixes bug #79908.
10288
10289 2006-11-13  Jackson Harper  <jackson@ximian.com>
10290
10291         * TextControl.cs: When formatting text, compute the adjusted tag
10292         lengths correctly, using FindTag for the end tag instead of trying
10293         to figure it out outselves.
10294         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
10295         the item, ItemHeight doesn't work, because trees with large
10296         imagelists use those for their height
10297         * TreeView.cs: ActualItemHeight factors in the image height
10298         - compute left edge of checkboxes correctly
10299         - when expanding/collapsing move the bottom down one pixel, so we
10300         aren't moving part of the node
10301
10302 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10303
10304         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
10305         stack in PaintEventStart so that it won't get disposed by the gc
10306         before reaching PaintEventEnd.
10307
10308 2006-11-13  Jackson Harper  <jackson@ximian.com>
10309
10310         * TextBoxBase.cs: Don't select the word if we are on a line with
10311         no text.
10312         - We don't need to position the caret on mouse up, since the mouse
10313         move handler should be doing this
10314         - When double clicking a blank line, the caret is advanced to the
10315         next line.
10316
10317 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
10318
10319         * TreeNodeCollection.cs: Avoid duplicating indexer code.
10320
10321 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
10322
10323         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
10324         Fixes part of bug #79910.
10325
10326 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
10327
10328         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
10329           (bug #79903). Some minor string updates to match ms.
10330
10331 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10332
10333         * FileDialog.cs: Don't add an extension if the filename
10334           already ends with that extension.
10335
10336 2006-11-10  Jackson Harper  <jackson@ximian.com>
10337
10338         * TreeView.cs: Use the currently highlighted node for the
10339         BeforeSelect event.
10340         * TextBoxBase.cs: There is no need to expand selection on
10341         MouseMove.
10342         - CanUndo means 'is there any undo operations', not 'is undo
10343         allowed on this textcontrol. Fixed ClearUndo unit test.
10344
10345 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
10346
10347         * Button.cs: only perform click when button is Selectable (so as 
10348         not to activate default buttons when they're disabled)
10349         
10350         * Control.cs: Rewrite of the SelectNextControl and related 
10351         methods. HandleClick now selects next control if the current one
10352         is being disabled.
10353         
10354         * Form.cs: OnActivated selects next active control only if Load 
10355         has already occurred. If Load hasn't run, there's no point in 
10356         selecting here, Load might change the state of controls.
10357         
10358         * FocusTest.cs: Tests marked as working again for these fixes
10359
10360 2006-11-10  Chris Toshok  <toshok@ximian.com>
10361
10362         * XplatUIX11.cs: a couple of fixes.
10363
10364         - use XInternAtoms with almost all the atoms we need to register,
10365         instead of many, many calls to XInternAtom.  should help a bit on
10366         startup time, at the expense of making the code look a little
10367         worse.
10368
10369         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
10370         isn't reparented (which seems to be a clue that we're running fon
10371         compiz) and they have an Owner form.  This fixes the tool windows
10372         in paint.net when running under compiz.
10373
10374         - when setting the opacity of a window, support both the case
10375         where the window has been reparented and also when it hasn't been.
10376         Since compiz/beryl doesn't seem to reparent windows, and these are
10377         the only window managers which support translucency, I'm not sure
10378         why we need the hwnd.reparented case at all.. but leave it in.
10379         now we get translucent windows in paint.net under compiz/beryl.
10380
10381 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10382
10383         * FileDialog.cs: Always return the value for FilterIndex that
10384           was set. Internally convert it to values that make sense.
10385
10386 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
10387         
10388         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
10389
10390 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
10391
10392         * Toolbar.cs: Change default value of DropDownArrows to true, the 
10393         signature still using false to make it compatible with MS but the 
10394         initial value is true. Fixes #79855.
10395
10396 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10397
10398         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
10399           only available on Linux.
10400
10401 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
10402
10403         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
10404         reduce number of calls to redraw method during toolbar creation.
10405
10406 2006-11-09  Mike Kestner  <mkestner@novell.com>
10407
10408         * ListView.cs : raise SelectedIndexChanged when an item is selected
10409         programmatically via the Item.Selected property.  Gert's nice 
10410         ListViewSelectedIndexChanged test fixture now runs clean.
10411
10412 2006-11-09  Mike Kestner  <mkestner@novell.com>
10413
10414         * ListView.cs : raise SelectedIndexChanged when a selected item is
10415         removed from the item collection using Remove or RemoveAt.
10416
10417 2006-11-09  Mike Kestner  <mkestner@novell.com>
10418
10419         * ListView.cs : raise SelectedIndexChanged once per selected item
10420         for compat with MS.  Fixes #79849+.
10421
10422 2006-11-09  Chris Toshok  <toshok@ximian.com>
10423
10424         * TabControl.cs: initialize row_count to 0, and set it to 1 when
10425         we need to (if we have any tab pages).  Fixes unit test.
10426
10427 2006-11-09  Chris Toshok  <toshok@ximian.com>
10428
10429         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
10430         width is 0, not 3.  Fixes a unit test.
10431
10432 2006-11-09  Mike Kestner  <mkestner@novell.com>
10433
10434         * ListView.cs : use Implicit scrollbars so that focus isn't 
10435         stolen from the listview when they are clicked. Fixes #79850.
10436
10437 2006-11-09  Chris Toshok  <toshok@ximian.com>
10438
10439         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
10440         have a root item.  Fixes #79879.
10441
10442 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
10443
10444         * FileDialog.cs:
10445           - Fix ToString ()
10446           - An ArgumentException is now thrown if a wrong filter
10447             is applied (matches ms). The previous filter doesn't change
10448             anymore if an exception is thrown.
10449           - Changing the FileName property also affects FileNames
10450         * ColorDialog.cs: The length of the CustomColors array is always
10451           16. It doesn't matter if we use a smaller array or null to update
10452           or change the custom colors property.
10453         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
10454           for RootFolder if we get a undefined value.
10455
10456 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10457
10458         * StatusBarPanel.cs: 
10459         - Width is set to MinWidth if Width is smaller than
10460         MinWidth. Fixes #79842.
10461         - MinWidth now always overrides Width (MSDN says MinWidth
10462         is set to Width when AutoSize = None, but they do not 
10463         behave like that).
10464         - Style has now the the correct default value.
10465         
10466 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10467  
10468         * TrackBar.cs: 
10469         - The control is completely invalidated on 
10470         Got/LostFocus to draw the focus rectangle correctly.
10471         - When AutoSize then height is always 45 (width for 
10472         vertical controls).
10473         
10474         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
10475         on the mouse when moved and it doesn't move when grabbed
10476         until the mouse moves as well. Also fixed some wrong 
10477         calculations when clicking on the thumb (control thought
10478         click was outside of thumb and didn't grab it).
10479         Fixes some of the issues in #79718.
10480
10481 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
10482
10483         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
10484
10485 2006-11-08  Chris Toshok  <toshok@ximian.com>
10486
10487         * PropertyGridView.cs: only call ToggleValue if the item is not
10488         readonly.
10489
10490 2006-11-08  Jackson Harper  <jackson@ximian.com>
10491
10492         * TextBoxBase.cs: The RichTextBox and textbox have very different
10493         word selection methods.  Implement the textbox's simple word
10494         selection here, and let the RichTextBox override and provide it's
10495         own.
10496         - Don't do extra selection on mouseup
10497         * RichTextBox.cs: Use the documents word selection algorithm, I
10498         think ideally, this function will be pulled into the
10499         RichTextBox.cs code someday.
10500
10501 2006-11-08  Chris Toshok  <toshok@ximian.com>
10502
10503         * RootGridEntry.cs: new class to represent GridItemType.Root.
10504
10505         * CategoryGridEntry.cs: reformat, and add boilerplate.
10506         
10507         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
10508         returns the UI parent anyway, and we need special handling to
10509         implement the GetTarget method in the face of it.  Also, implement
10510         Select().
10511
10512         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
10513         a root grid item, and use that instead of PropertyGrid.grid_items.
10514         Also, make use of TypeConverters (and add limitted support for
10515         ICustomTypeDescriptors) when initially populating the grid.
10516         Arrays now show up more or less properly.
10517
10518 2006-11-08  Chris Toshok  <toshok@ximian.com>
10519
10520         * Application.cs: set the modal dialog to non modal after we close
10521         it.  Fixes bug #79866.
10522
10523 2006-11-08  Jackson Harper  <jackson@ximian.com>
10524
10525         * TextControl.cs: When combining lines carry over the line end
10526         style from the end line.
10527         - Invalidate the selected area when setting it, if it is visible.
10528         * TextBoxBase.cs: Only rich text box can do full line selects.
10529         - Make sure to set the cursor position when there is a click,
10530         otherwise two clicks in separate areas could cause a large chunk
10531         to be selected.
10532
10533 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10534
10535         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
10536         Fixes #79863.
10537
10538 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10539
10540         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
10541         time. Remove tooltips when ToolButton click events.  Fixes #79856.
10542
10543 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10544
10545         * MenuAPI.cs: Ignore right click for menu actions and fixes
10546         menu border when clicked.  Fixes #79846.
10547
10548 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10549
10550         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
10551         MouseState after create wParam for message, this fixes mouse button 
10552         equal none in mouse up events.
10553         
10554 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
10555
10556         * Control.cs : Focus() now calls Select to set the Container's
10557         Active Control and to give it focus. To avoid infinite recursion
10558         (because ActiveControl also calls Focus at one point), a check 
10559         is made in Focus with the help of a new internal variable
10560         is_focusing.
10561
10562 2006-11-07  Mike Kestner  <mkestner@novell.com>
10563
10564         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
10565         if there's a selection.  Fixes #79849.
10566
10567 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
10568
10569         * PropertyGrid.cs: Avoid fixed height of help description label.
10570         Fixes part of bug #79829.
10571
10572 2006-11-07  Chris Toshok  <toshok@ximian.com>
10573
10574         * XplatUIX11.cs: fix #79790 again, by using the
10575         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
10576
10577 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10578
10579         * ToolBar.cs: Fix left click checking.
10580
10581 2006-11-07  Chris Toshok  <toshok@ximian.com>
10582
10583         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
10584
10585 2006-11-07  Chris Toshok  <toshok@ximian.com>
10586
10587         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
10588         PropertyManager unit tests.
10589
10590         * PropertyManager.cs: make property_name internal.
10591
10592 2006-11-07  Chris Toshok  <toshok@ximian.com>
10593
10594         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
10595         pass a unit test.  Also, don't set image_index to anything in
10596         response to setting the ImageList property.
10597
10598 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10599
10600         * ToolBar.cs: Ignore click events when mouse button is not a
10601         left button, only accepts other button for dropdown menus.  
10602         Fixes #79854.
10603
10604 2006-11-07  Chris Toshok  <toshok@ximian.com>
10605
10606         * DataGrid.cs: make the back and parent row buttons a little less
10607         ugly.
10608
10609 2006-11-07  Jackson Harper  <jackson@ximian.com>
10610
10611         * TextBoxBase.cs: When converting to Text don't put line breaks in
10612         for soft line breaks.
10613         * TextControl.cs: There is an initial "fake" line in the document,
10614         this is now a soft break line, so that an extra line feed doesn't
10615         get added to the end of documents.
10616
10617 2006-11-07  Chris Toshok  <toshok@ximian.com>
10618
10619         [ fix bug #79778 ]
10620         
10621         * CurrencyManager.cs: if the list is readonly, don't bother
10622         checking if IBindingList.AllowNew is true.
10623
10624         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
10625         for non-DataRowView datasources..  or rather, make it not crash.
10626         (DataGridPaintRelationRow): make sure we limit the row painting to
10627         the area not covered by the row header, and make our cell width at
10628         least large enough to cover the relation area.  This allows grids
10629         that have relations but no rows to render correctly.
10630         (DataGridPaintRowContents): same type of changes here.
10631         (SetDataSource): move back to always calling
10632         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
10633         navigating back through relations.
10634         (HitTest): handle the case where we have no cells but have
10635         relations.  Right now we generate a hit in cell 0 of whatever the
10636         row is, not sure if this is strictly correct, but it works for our
10637         purposes.
10638         
10639         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
10640         bother doing anything.
10641
10642 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
10643
10644         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
10645         early version of StatusStrip.  Not responsible for eaten
10646         application or firstborn children.
10647
10648 2006-11-06  Chris Toshok  <toshok@ximian.com>
10649
10650         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
10651         call GetTabRect with a -1 index.  Fixes #79847.
10652
10653 2006-11-06  Jackson Harper  <jackson@ximian.com>
10654
10655         * TreeNodeCollection.cs: Update scrollbars after clearing.
10656
10657 2006-11-06  Chris Toshok  <toshok@ximian.com>
10658
10659         * NumericUpDown.cs: fix the ToString method for some unit test
10660         love.
10661
10662 2006-11-06  Chris Toshok  <toshok@ximian.com>
10663
10664         * PropertyGrid.cs:
10665         - set the initial SelectedGridItem if we can.
10666
10667         - Exclude non-mergable properties only if we're merging > 1
10668         object.  Merging 1 object isn't really merging, obviously.
10669
10670         - Handle PropertySort.NoSort just like Alphabetical, which is
10671         wrong of course, but at least gets things on the screen.
10672         
10673         * PropertyGridView.cs:
10674         - Add method "FindFirstItem" which finds the first property grid
10675         item, so we can select it by default.
10676
10677         - make use of GridEntry.CanResetValue.
10678
10679         - Don't call RedrawBelowItemOnExpansion here anymore, the
10680         individual GridEntry's will do that.
10681
10682         - Remove the ITypeDescriptorContextImpl internal class.
10683         
10684         * GridEntry.cs:
10685         - this class needs to implement ITypeDescriptorContext, as it's
10686         what MS's PropertyDescriptorGridEntry does, which means we can
10687         remove the ITypeDescriptorContextImpl internal class from
10688         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
10689
10690         - keep a reference to our PropertyGridView, and move the call to
10691         RedrawBelowItemOnExpansion here from PGV.  This means
10692         programmaticly setting Expanded actually does something visible.
10693
10694         - add a CanResetValue() function which takes into account our
10695         possibly multiple "selected_objects" in the merged case.  Shifting
10696         PropertyGridView to use this method fixes another unreported
10697         crasher found running the test for #79829.
10698
10699         - when Top or Bounds is updated, make sure the PropertyGridTextBox
10700         is updated to reflect this.
10701
10702         * CategoryGridEntry.cs: the ctor takes the PGV now.
10703         
10704 2006-11-06  Jackson Harper  <jackson@ximian.com>
10705
10706         * TextControl.cs: These are 1 based.
10707         * TextBoxBase.cs: When setting the selected text, don't change the
10708         selected text tags, this is done by ReplaceText, just position the
10709         cursor at the end of the new text.
10710
10711 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10712
10713         * ListView.cs: Allow label edit only when, when LabelEdit is
10714           set to true.
10715
10716 2006-11-06  Jackson Harper  <jackson@ximian.com>
10717
10718         * TextControl.cs: If a suitable wrapping position isn't found,
10719         just wrap right in the middle of a word.
10720
10721 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10722
10723         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
10724           bug #79820.
10725
10726 2006-11-06  Jackson Harper  <jackson@ximian.com>
10727
10728         * TreeView.cs: Can't use the VisibleCount property when setting
10729         scrollbar heights, because this doesn't take into account whether
10730         or not the horz scrollbar just came visible.
10731
10732 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
10733
10734         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
10735         activated.  Fixes #79369, #79832.
10736
10737 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
10738
10739         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
10740           had to remove support for links that point to a directory. FileInfo
10741           returns no usefull information (means, the directory they point to)
10742           for such links. Replaced some empty string ("") with String.Empty.
10743
10744 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10745
10746         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
10747         NullReferenceException when attempting to remove node that is not in
10748         collection. Throw NullReferenceException when null is passed to 
10749         Remove. Allow first element of the collection to be removed. Fixes
10750         bug #79831.  In GetEnumerator ().Current return null if positioned 
10751         before the first element of the collection. In GetEnumerator ().Reset,
10752         position before first element of the collection.
10753
10754 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10755
10756         * PropertyGrid.cs: To match MS, remove default title and description
10757         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
10758         buttons.
10759
10760 2006-11-04  Chris Toshok  <toshok@ximian.com>
10761
10762         * Theme.cs: add a Clamp method, just for kicks.
10763
10764         * ThemeWin32Classic.cs: clamp all color components to [0..255].
10765
10766 2006-11-04  Chris Toshok  <toshok@ximian.com>
10767
10768         * Form.cs: if the form isn't visible, Close() does nothing.
10769
10770 2006-11-03  Chris Toshok  <toshok@ximian.com>
10771
10772         * Form.cs (Close): if the form is modal, don't Dispose of it, only
10773         Hide it.
10774         (WndProc): don't Dispose after handling the WM_CLOSE message.
10775
10776         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
10777         them as such, instead of using casts from Control to Form.  Also,
10778         don't Dispose of the modal dialog when we fall out of the loop -
10779         Close() it instead.
10780
10781         fixes bug #79813.
10782
10783 2006-11-03  Chris Toshok  <toshok@ximian.com>
10784
10785         * Control.cs (Dispose): only go through the dispose thing if we're
10786         @disposing, and we haven't already been disposed.  Fixes bug
10787         #79814.
10788
10789         * Form.cs: no reason to call "base.Dispose()" here instead of
10790         "Dispose()".
10791
10792 2006-11-03  Mike Kestner  <mkestner@novell.com>
10793
10794         * ComboBox.cs : use ToString instead of casts in AddItem for
10795         sorting functionality.  Fixes #79812.
10796
10797 2006-11-03  Chris Toshok  <toshok@ximian.com>
10798
10799         * Application.cs: pave the way for actually using the thread
10800         exception dialog.  it's ifdefed out at the moment.
10801
10802 2006-11-03  Chris Toshok  <toshok@ximian.com>
10803
10804         * ThreadExceptionDialog.cs: until we get a better layout, actually
10805         hide the details textbox and label when we shouldn't see them.
10806
10807 2006-11-03  Jackson Harper  <jackson@ximian.com>
10808
10809         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
10810         multiline textboxes anymore.  This method also determines the
10811         width/height of a textboxes canvas area.
10812         - Sorta a revert of the last patch.  For multiline just position
10813         the controls, then bail.  This way the scrollbar width won't be
10814         altered.
10815
10816 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
10817
10818         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
10819         it dont need.  Fixes #79537.
10820
10821 2006-11-02  Jackson Harper  <jackson@ximian.com>
10822
10823         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
10824         send the status after firing the DndOver event.
10825
10826 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10827
10828         * TrackBar.cs: Now orientation only switches height / width if
10829         the control's handle is created (Win32 does it like this). Also 
10830         fixed a typo in ToString() for a test to pass, changed the 
10831         exception thrown in set_LargeChange and set_SmallChange to 
10832         match Win32 behaviour, and added TrackBar tests to the unit 
10833         tests.
10834
10835 2006-11-02  Chris Toshok  <toshok@ximian.com>
10836
10837         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
10838         not _NET_WM_STATE_NO_TASKBAR.
10839
10840 2006-11-02  Jackson Harper  <jackson@ximian.com>
10841
10842         * TextControl.cs: Increment count by one, since in the update view
10843         count - 1 is used.
10844
10845 2006-11-02  Jackson Harper  <jackson@ximian.com>
10846
10847         * TextBoxBase.cs: Use client rectangle not bounds for checking if
10848         the mouse is in the client rectangle (duh).
10849
10850 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10851         
10852         * TrackBar.cs: Fixed trackbar jumping around when clicking
10853         on it - the trackbar was not detecting correctly at which
10854         side of the thumb the click was done. (fixes #79718)
10855
10856 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
10857
10858         * ListBox.cs: scroll visible area when change SelectedIndex to
10859         a non visible area.  Fixes #79481.
10860
10861 2006-11-01  Jackson Harper  <jackson@ximian.com>
10862
10863         * TextControl.cs: When replacing the selection move the selection
10864         start/end/anchor to the end of the new text.
10865
10866 2006-11-01  Jackson Harper  <jackson@ximian.com>
10867
10868         * XplatUIWin32.cs: When setting the parent change the controls
10869         visibility to it's visibility flag, not to it's old parents
10870         visibility (.Visible walks the parent chain).
10871
10872 2006-11-01  Chris Toshok  <toshok@ximian.com>
10873
10874         * XplatUIX11.cs: revert the #79790 fix, as the simple.
10875         XSetTransientForHint fix breaks paint .net's tool windows.  more
10876         work needed for that one.
10877
10878 2006-11-01  Chris Toshok  <toshok@ximian.com>
10879
10880         * ScrollBar.cs: throw ArgumentException instead of Exception in
10881         LargeChange/SmallChange setters.  fixes unit tests.
10882
10883 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10884
10885         * ContainerControl.cs: reverted rev.67183 (which was itself
10886         a reversion of rev.66853... eh).
10887         
10888         * Control.cs: Fixes Reflector hang by changing Focus() call
10889         to what it was before rev.66643 (calling Select() here sets 
10890         ActiveControl, which in some situations calls back Focus and 
10891         eventually does a stack overflow). Temp fix.    
10892         Changes to GetNextControl() to not look for children to select when
10893         parent cannot be selectable (so it looks for siblings instead)  
10894         
10895 2006-10-31  Mike Kestner  <mkestner@novell.com>
10896
10897         * CheckedListBox.cs : off by one error in returned index from
10898         ObjectCollection.Add.  Fixes #79758.
10899
10900 2006-10-31  Chris Toshok  <toshok@ximian.com>
10901
10902         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
10903         calls for the textbox/spinner, to keep from recursing to the point
10904         where we crash.  Fixes #79760.
10905
10906 2006-10-31  Chris Toshok  <toshok@ximian.com>
10907
10908         * ListControl.cs (set_SelectedValue): don't throw exceptions on
10909         null/"" value, just return.  matches ms's behavior and fixes some
10910         failing tests.
10911
10912 2006-10-31  Chris Toshok  <toshok@ximian.com>
10913
10914         * Control.cs (set_Capture): make a logic a little easier to
10915         follow.
10916
10917         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
10918         if it's being destroyed.  A necessary fix surely, but a bandaid
10919         also, to fix the stuck capture problem in bug #78413.
10920
10921 2006-10-31  Chris Toshok  <toshok@ximian.com>
10922
10923         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
10924         convention of clearing hwnd.ClientRect when we set the
10925         width/height (so it'll be recalculated by Hwnd).
10926
10927 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10928
10929         * ContainerControl.cs: reversed Contains check from
10930         ActiveControl due to hanging problems. This fix
10931         partly regresses #79667 (button does not have
10932         initial focus), so this might be a symptom for 
10933         a larger parenting problem (set_ActiveControl
10934         is being called but the child control does
10935         not have the parent set yet?)   
10936         
10937 2006-10-31  Mike Kestner  <mkestner@novell.com>
10938
10939         * MenuAPI.cs : fix keynav when menu is click activated.
10940
10941 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
10942
10943         * ToolStrip*: Version 0.2.
10944
10945         * MenuStrip.cs: Version 0.1.
10946
10947         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
10948
10949 2006-10-30  Chris Toshok  <toshok@ximian.com>
10950
10951         [ fixes the oversized notify icon issue in bug #79745 ]
10952         
10953         * NotifyIcon.cs: scale the icon down to the size we're given by
10954         the XplatUI layer (this would be faster if we did it once instead
10955         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
10956         since it's never invoked.
10957
10958         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
10959         pixels high by default, so let's hardcode our systray icon to that
10960         size.  The SYSTEM_TRAY protocol should really have a way for
10961         client apps to query for the correct icon size.. but oh well.  A
10962         couple of patches to deal with the screwy client_window ==
10963         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
10964         instance, and also make sure we don't XSelectInput twice).
10965
10966 2006-10-30  Chris Toshok  <toshok@ximian.com>
10967
10968         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
10969         recreating forms.  Control recreation is the bane of my existence.
10970         Fix it in a way that keeps everyone happy.
10971
10972 2006-10-30  Chris Toshok  <toshok@ximian.com>
10973
10974         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
10975         just non-CHILD ones.  otherwise sometimes scrollbars end up with
10976         client_windows not being resized to the proper size (ReportBuilder
10977         shows this extremely well).
10978
10979 2006-10-30  Chris Toshok  <toshok@ximian.com>
10980
10981         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
10982         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
10983         showing up in the gnome taskbar.  Fixes bug #79790.
10984
10985 2006-10-30  Chris Toshok  <toshok@ximian.com>
10986
10987         * ApplicationContext.cs: guard against a NRE.
10988
10989         * Application.cs: null out the old MainForm for the context, so we
10990         don't try to use it again once it's disposed.  Fixes bug #79783.
10991
10992 2006-10-30  Chris Toshok  <toshok@ximian.com>
10993
10994         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
10995         BindingContext, set the data source directly, otherwise do the
10996         lazy approach - the actual ListManager will be created when we get
10997         a BindingContext. Fixes bug #79700.
10998
10999 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
11000
11001         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
11002           XplatUIX11.cs: Remove old 2 parameter SetVisible.
11003
11004         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
11005
11006 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
11007
11008         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
11009         of SetVisible that allows a window to be shown, but not activated.
11010         This is needed on Windows for MenuStrip, and can probably be used
11011         with MainMenu and ComboBox to fix the focus stealing issues on
11012         Windows.
11013
11014         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
11015
11016 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
11017
11018         * PictureBox.cs: Fix the output of the ToString method.
11019
11020 2006-10-29  Chris Toshok  <toshok@ximian.com>
11021
11022         * Control.cs (get_TopLevelControl): fix bug #79781.
11023
11024 2006-10-29  Chris Toshok  <toshok@ximian.com>
11025
11026         * ListControl.cs (set_DataSource): throw Exception here, not
11027         ArgumentException, to match MS behavior.
11028
11029 2006-10-29  Chris Toshok  <toshok@ximian.com>
11030
11031         * Form.cs: remove the try-catch's around calls to GetWindowState.
11032         We can just check the return value.
11033
11034         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
11035         Instead return -1.
11036
11037         * XplatUI.cs: Add note about additional return value for
11038         GetWindowState.
11039
11040 2006-10-29  Chris Toshok  <toshok@ximian.com>
11041
11042         * Control.cs (CreateHandle): when we create our handle, we also
11043         create the handles of our child controls.  Fixes one of the
11044         Control unit tests (CH11).
11045
11046 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11047
11048         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
11049
11050 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
11051
11052         * ThemeClearlooks.cs: A little speedup.
11053
11054 2006-10-27  Chris Toshok  <toshok@ximian.com>
11055
11056         * Control.cs: implement Control.FromChildHandle in a way that
11057         matches the docs (and fixes the failed test.)
11058
11059 2006-10-27  Chris Toshok  <toshok@ximian.com>
11060
11061         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
11062         comments).
11063
11064         * DataGrid.cs: implement ResetForeColor such that the tests
11065         succeed.
11066         
11067 2006-10-27  Chris Toshok  <toshok@ximian.com>
11068
11069         * ToolBarButton.cs: setting text/tooltiptext to null results in it
11070         being set to "".  Fixes bug #79759.
11071
11072 2006-10-27  Jackson Harper  <jackson@ximian.com>
11073
11074         * TextControl.cs: We need to clear the entire selection area when
11075         setting the start, otherwise multiline selections are still
11076         visible.
11077
11078 2006-10-26  Chris Toshok  <toshok@ximian.com>
11079
11080         * PropertyGridView.cs: 
11081
11082         - ifdef all the code specific to the double
11083         buffer case, and provide some alternatives in the non-doublebuffer
11084         code, which makes heavy use of XplatUI.ScrollWindow to move things
11085         around without having to invalidate (and cause flicker).  There
11086         are still some drawing problems in the non-doublebuffered case, so
11087         DOUBLEBUFFER is defined by default.
11088
11089         - Fix the way dropdowns are handled.  now we explicitly watch for
11090         the events which might cause the dropdown to close, and break out
11091         of the nested event loop there.  This gets rid of all Capture
11092         code, at the expense of the Msg special casing.  Seems to work,
11093         though, and fixes bug #79743.
11094
11095 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
11096         * Control.cs: SetIsRecreating now recreates implicitly added
11097         child controls as well. Finally fixes #79629. The flag passed to 
11098         SetIsRecreating has also been removed since it wasn't used.
11099         
11100 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11101
11102         * PageSetupDialog.cs: Clean some code, fix some bits, 
11103         add some checks, and add a printer sub-dialog.
11104
11105 2006-10-26  Chris Toshok  <toshok@ximian.com>
11106
11107         * PropertyGrid.cs: make set_SelectedObject call
11108         set_SelectedObjects, and move the duplicate logic to the
11109         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
11110
11111         * PropertyGridView.cs: hide the textbox when we get a
11112         SelectedObjectsChanged event.
11113
11114         Fixes bug #79748.
11115
11116 2006-10-26  Chris Toshok  <toshok@ximian.com>
11117
11118         * PropertyGridView.cs: deal with the type converter not supporting
11119         GetStandardValues() or GetStandardValues() returning null, which
11120         is does in the default case.  Fixes #79742.
11121
11122 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11123
11124         * CheckedListBox.cs: nunit no longer crashes when selecting 
11125         Project/Edit menu option
11126         
11127 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
11128
11129         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
11130         is no menu selected. fixes #79739
11131
11132 2006-10-25  Chris Toshok  <toshok@ximian.com>
11133
11134         * PropertyGridView.cs: factor out the splitter invalidation code
11135         into the SplitterPercent setter, and for kicks implement the
11136         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
11137         amount in either direction.
11138
11139 2006-10-25  Chris Toshok  <toshok@ximian.com>
11140
11141         * PropertyGridView.cs: do some cleanup of the brush used to draw
11142         text - read only fields should be grayed out.  not sure how to do
11143         this with the textbox, though.  but the textbox's should also be
11144         readonly now at least.  Also, hide/show the textbox when resizing
11145         the control.
11146         
11147         * CursorConverter.cs: use System.Reflection when getting the
11148         properties of Cursors, as TypeDescriptor.GetProperties isn't
11149         returning static properties.
11150
11151 2006-10-25  Chris Toshok  <toshok@ximian.com>
11152
11153         * PropertyGridView.cs: factor out the up/down handling, and reuse
11154         it for page up/down.  also add End/Home support.
11155
11156 2006-10-25  Chris Toshok  <toshok@ximian.com>
11157
11158         * PropertyGridView.cs:
11159
11160         - ensure the selected grid item is visible in the scrolled area,
11161         fixes bug #79572.
11162
11163         - fix Keys.Down handling when you're on the last item in the
11164         propertygrid.
11165
11166 2006-10-25  Mike Kestner  <mkestner@novell.com>
11167
11168         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
11169         clicks too.  Fixes #79725.
11170
11171 2006-10-24  Chris Toshok  <toshok@ximian.com>
11172
11173         * PropertyGrid.cs: use property.Converter instead of
11174         TypeDescriptor.GetConverter(property.PropertyType), so we catch
11175         TypeConverters declared on the property as well as on the
11176         PropertyType.  Fixes bug #79678.
11177
11178 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
11179
11180         * MimeIcon.cs, Mime.cs:
11181           Fallback to the default platform handler if no shared mime info
11182           stuff exists (fixes #79693).
11183
11184 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
11185         * ContainerControl.cs: Incorrect contains check in ActiveControl 
11186         from previous fix (duh).
11187
11188 2006-10-20  Chris Toshok  <toshok@ximian.com>
11189
11190         * PropertyGridView.cs: the dropdown should be MIN(number of items
11191         in list, 15).  Fixes #79551.
11192
11193 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
11194         Fixes #79384, #79394, #79652, #79667
11195         * Application.cs: 
11196         
11197         - Modal windows are now destroyed in the proper order for windows
11198         
11199         * ContainerControl.cs:
11200         
11201         - ActiveControl setter has more conditions on when to return:
11202                 - if we're reselecting the active control, but it actually
11203                 didn't have focus (window hidden or some such), it runs
11204                 - if the active control being selected doesn't actually 
11205                 exist in the container, it returns
11206         
11207         * Form.cs
11208         
11209         - The ShowDialog now gets the current form as the owner when
11210         invoking without parameters, and correctly activates the owner 
11211         when returning
11212         
11213         * MessageBox.cs
11214         
11215         - MessageBox now catches the Escape key to exit
11216
11217 2006-10-20  Chris Toshok  <toshok@ximian.com>
11218
11219         * PropertyGridView.cs: fix a number of issues (bug #78565, and
11220         most of bug #79676):
11221
11222         - you can navigate around the property grid with the arrow keys.
11223
11224         - the dropdown is sized properly when the pg has a vertical
11225         scrollbar.
11226
11227         - fix the indentation for subentries, and properly select the
11228         entire label rect.
11229
11230         - fix the gray bar's drawing (only draw it to the last element,
11231         not for the height of the control.  Also make sure we draw that
11232         last horizontal grid line.
11233
11234         - use the same mechanism the datagrid uses wrt the editing textbox
11235         when scrolling/resizing/etc.  Namely, we hide it first, do the
11236         operation, then show it again (if it's still visible).
11237         
11238         - aggressively remove a lot of unnecessary refreshes (and also
11239         calls to Invalidate(). call more limited variants, and only redraw
11240         what we need.)
11241         
11242         * PropertyGrid.cs:
11243
11244         - when we're populating the merged collection, fill in the UI
11245         parent with either the passed in item, or the category item we
11246         create.
11247
11248         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
11249
11250         * GridItem.cs: drop some fully qualified names.
11251         
11252         * GridEntry.cs: add a "UIParent", which is basically the parent
11253         treenode.
11254
11255         * GridItemCollection.cs: add an IndexOf method.
11256
11257 2006-10-20  Mike Kestner  <mkestner@novell.com>
11258
11259         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
11260         a working win32 NC invalidation mechanism, we can't invalidate
11261         menus.  [Fixes #79705]
11262
11263 2006-10-20  Mike Kestner  <mkestner@novell.com>
11264
11265         * ListBox.cs : don't update the VScrollbar if the list is empty,
11266         just hide it.  [Fixes #79692]
11267
11268 2006-10-20  Jackson Harper  <jackson@ximian.com>
11269
11270         * RichTextBox.cs: Handle some special chars better, and don't skip
11271         the entire group when we encounter a special char that we don't
11272         handle correctly.
11273
11274 2006-10-18  Chris Toshok  <toshok@ximian.com>
11275
11276         * PropertyGridView.cs: address a number of issues from bug #79676,
11277         mostly of the cosmetic variety.
11278
11279         - The highlight rectangle for indented items not extends all the
11280         way to the left.
11281
11282         - Indented items aren't indented so much.
11283
11284         - the dropdown is properly sized width-wise if the pg has a
11285         vertical scrollbar.
11286
11287 2006-10-18  Chris Toshok  <toshok@ximian.com>
11288
11289         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
11290         systray stuff is rather convoluted to begin with.
11291
11292         systray icons are a single window for some reason (that I haven't
11293         figured out yet), and for them, client_window == whole_window.
11294         Given the way the tests are structured elsewhere to determine
11295         which paints are pending (client vs. nc), that situation will
11296         always yield PAINT, not NCPAINT.  So, if we have a pending
11297         nc_expose and no pending expose, remove the hwnd from the paint
11298         queue, and also set nc_expose_pending to false, to keep us from
11299         blocking further expose's adding the hwnd to the paint queue.
11300
11301         phew.  like i said, a rather convoluted change.  Fixes the
11302         notifyicon repaint issues in bug #79645.
11303
11304 2006-10-18  Chris Toshok  <toshok@ximian.com>
11305
11306         * Form.cs: when getting the backcolor of the form, don't get
11307         base.BackColor, as this allows parents to influence the background
11308         color.  This breaks mdi forms.  Instead, if the background_color
11309         is empty, return the default.
11310
11311 2006-10-18  Chris Toshok  <toshok@ximian.com>
11312
11313         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
11314         to being private instead of internal static.
11315
11316         * Control.cs: remove all the stupid ParentWaitingOnRecreation
11317         crap, it wasn't working for more deeply nested controls anyway,
11318         and we already have the is_recreating flag - use that instead.
11319         Before calling DestroyHandle in RecreateHandle, recurse through
11320         the control tree setting it to true.  this returns the recreate
11321         code to much of its original simplicity, while now guaranteeing we
11322         actually recreate everything we're supposed to.  This change gets
11323         fyireporting actually showing mdi children.
11324
11325 2006-10-17  Chris Toshok  <toshok@ximian.com>
11326
11327         * Form.cs: remove some debug spew, and collapse some duplicate
11328         code at the end of SetClientSizeCore.
11329
11330         * XplatUIX11.cs: 
11331         - add some more debug spew here too wrt Destroy handling.
11332         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
11333         in Control's handling of WM_DESTROY.
11334         - Remove the handling of zombie window DestroyNotifies from the
11335         event loop - we don't need it.  Now the only DestroyNotifies we
11336         actually handle are ones generated by X.
11337         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
11338         match gtk's (functioning) handling of this. This keep metacity
11339         from leaving droppings in the form of wm borders with no window
11340         contents all over the place.
11341
11342         * Control.cs:
11343         - add a bunch of debug spew wrt control recreation.
11344         - fix a bug where we weren't tracking Visible properly on
11345         recreated hwnds.
11346         - fixed the WM_PAINT double buffer handling to support re-entrant
11347         calls (yes, i know it's gross, but it's happening to us).
11348
11349 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11350         * ThemeWin32Classic.cs: changed drawing of selected days
11351         to make them look better.
11352
11353 2006-10-16  Chris Toshok  <toshok@ximian.com>
11354
11355         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
11356         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
11357
11358         * XplatUIX11.cs: move away from using hwnd.client_dc and
11359         hwnd.non_client_dc and on to a stack of dc's (and in window's
11360         case, PAINTSTRUCT's), so we can deal with nested Paint calls
11361         without puking or not disposing of Graphics objects.
11362
11363         * XplatUIOSX.cs: same.
11364
11365         * XplatUIWin32.cs: same.
11366
11367 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
11368
11369         * FileDialog.cs: Don't call on_directory_changed inside
11370           OnSelectedIndexChanged (it changes the SelectedIndex too).
11371           Instead move it to OnSelectionChangeCommitted.
11372
11373 2006-10-13  Chris Toshok  <toshok@ximian.com>
11374
11375         * XplatUIX11.cs: more Destroy work.  the current code does the
11376         following things, in order:
11377
11378         1. Enumerates all handles of all controls at or below the one
11379         being destroyed, in pre-order.  As it is doing this, it marks the
11380         handles as zombie and clears all references to them.
11381         
11382         2. calls XDestroyWindow on the window passed in.
11383
11384         3. SendMessage's WM_DESTROY to all he handles in the accumulated
11385         list.
11386
11387 2006-10-13  Chris Toshok  <toshok@ximian.com>
11388
11389         * XplatUIX11.cs: set hwnd.zombie to true before calling
11390         SendMessage (WM_DESTROY).  this keeps us from marking the new
11391         window a zombie, and also keeps us from calling sendmessage at
11392         all.
11393
11394 2006-10-13  Jackson Harper  <jackson@ximian.com>
11395
11396         * TextControl.cs: Do not show the caret and selection at the same
11397         time.  Reduces ugliness by 35%.
11398
11399 2006-10-13  Chris Toshok  <toshok@ximian.com>
11400
11401         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
11402         zombie after we do the recursive call, so we actually do call
11403         SendMessage on the children controls.
11404         (GetMessage): if we find a pending paint event for a zombie hwnd,
11405         remove the hwnd from the paint queue, or else it will always be
11406         there (and we'll effectively loop infinitely)
11407
11408 2006-10-13  Mike Kestner  <mkestner@novell.com>
11409
11410         * MenuItem.cs : add Selected format under keynav too.
11411         Fixes #79528.
11412
11413 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
11414
11415         * PropertyGrid.cs: Fixed some NRE's and small difference between our
11416         implementation and that of MS.
11417
11418 2006-10-13  Chris Toshok  <toshok@ximian.com>
11419
11420         * Control.cs (OnInvalidated) only futz with the invalid_region if
11421         the control is double buffered.  this fixes the apparent hang in
11422         the ListView unit tests.  Someone needs to make the
11423         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
11424
11425 2006-10-13  Chris Toshok  <toshok@ximian.com>
11426
11427         * PropertyGridView.cs:
11428
11429         - do a little refactoring so that only one place calls
11430         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
11431         else call that.  Also make it Refresh, since there are redraw bugs
11432         otherwise (we should take a look at that...)
11433
11434         - do a little more refactoring work to share the body of code
11435         involved with the drop down.  it was duplicated in the code
11436         dealing with the listbox handling and in the code dealing with the
11437         UITypeEditors.
11438
11439         - add a Capture to the dropdown form's control once it's
11440         displayed, and add a MouseDown handler that checks to make sure
11441         the position is inside the control.  If it's not, close the
11442         dropdown.  This fixes #78190.
11443
11444         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
11445         if the value is different than the initial value.
11446         
11447 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
11448
11449         * Control.cs: see #78650
11450         - Fixed GetNextControl for several cases:
11451                 - Changed FindFlatForward to return 
11452                 correct sibling control when more than one
11453                 control has same TabIndex as the currently 
11454                 focused one.
11455                 - Changed FindFlatBackward to loop children
11456                 from last to first and apply same logic as in
11457                 FindFlatForward
11458                 - Changed FindControlForward to search for
11459                 children when control is not a container
11460                 but has children, or search for siblings if
11461                 control is a container...
11462                 - Changed FindControlBackward   to continue
11463                 searching for child controls when hitting 
11464                 Panel-like parents
11465                 
11466         - Fixed Focus method to update ActiveControl
11467         (FocusTest.FocusSetsActive failure)
11468         
11469         * TabControl.cs:
11470         - Focus rectangle now refreshes when gaining
11471         or losing focus
11472         - Removed grab for Tab key on IsInputKey that 
11473         was keeping tab navigation from working (#78650)
11474
11475 2006-10-13  Chris Toshok  <toshok@ximian.com>
11476
11477         * PropertyGridView.cs:
11478         - Rewrite SetPropertyValue to loop over SelectedGridItem's
11479         SelectedObjects.
11480
11481         - Deal with GridItem.Value == null a few places.
11482
11483         * PropertyGrid.cs: 
11484         - replace the PopulateGridItemCollection with a pair of methods
11485         which compute the intersection of all the properties in the
11486         SelectedObjects array.  Fixes #79615.
11487
11488         - Throw ArgumentException from set_SelectedObjects if there's a
11489         null in the array.
11490
11491         - Add GetTarget method which can be used to traverse up the
11492         GridItem.Parent chain.  It depends on the assumption that
11493         selected_objects for different GridEntries are always in the same
11494         order (a safe assumption).  Use this method and loop over all the
11495         selected objects in the entry when calling RemoveValueChanged and
11496         AddValueChanged.
11497         
11498         * GridEntry.cs: Make this handle multiple selected objects.
11499         .Value returns null if not all the selected objects share the same
11500         value.
11501
11502 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
11503         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
11504           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
11505           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
11506           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
11507           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
11508         add additional functionality.
11509
11510 2006-10-12  Mike Kestner  <mkestner@novell.com>
11511
11512         * ErrorProvider.cs : new ToolTipWindow ctor sig.
11513         * HelpProvider.cs : new ToolTipWindow ctor sig.
11514         * ToolTip.cs : remove ToolTip param from Window sig since it is
11515         not used.
11516         * ToolBar.cs : add tooltip support.  Fixes #79565.
11517
11518 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11519
11520         * ComboBox.cs: move the events in set_SelectedIndex to 
11521         after the call to HighlightIndex in order to avoid 
11522         possible recursion and subsequent problems with the call
11523         to HighlightIndex and include a range check in 
11524         set_HighlightIndex. Fixes #79588
11525         
11526 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11527
11528         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
11529         to ui thread's settings instead of sunday. 
11530         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
11531
11532 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11533
11534         * DateTimePicker.cs
11535         * MonthCalendar.cs
11536         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
11537         and implement missing functionality (selecting different parts 
11538         of the date and edit them individually with the keyboard).
11539         
11540 2006-10-11  Chris Toshok  <toshok@ximian.com>
11541
11542         * Control.cs (OnInvalidated): fix NRE relating to last change.
11543
11544 2006-10-11  Chris Toshok  <toshok@ximian.com>
11545
11546         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
11547         atoms in _NET_WM_STATE here if the window is maximized.  We need
11548         to do this because we're *replacing* the existing _NET_WM_STATE
11549         property, so those atoms will be lost otherwise, and any further
11550         call to GetWindowState will return Normal for a window which is
11551         actually maximized.  Fixes #79338.
11552
11553 2006-10-11  Jackson Harper  <jackson@ximian.com>
11554
11555         * TextControl.cs: Special case for setting selection end to
11556         selection start, we basically kill the anchor.
11557         - some todo comments.
11558
11559 2006-10-11  Chris Toshok  <toshok@ximian.com>
11560
11561         * Control.cs: switch to using an "invalid_region" to track which
11562         parts of the image buffer need updating.  This is more code than
11563         the simple fix from r66532.  That version just attempted to always
11564         fill the entire buffer on redraw, which turns out to be
11565         inefficient when invalidating small rectangles.  This version
11566         simply adds the invalid rectangle to the invalid region.  When we
11567         get any WM_PAINT message we see if it can be filled using the
11568         image buffer, and if it can't (if the paint event's clip rectangle
11569         is visible in the invalid region) we first fill the image buffer.
11570         So, the image buffer is still a cache, we just fill it lazily.
11571
11572         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
11573         need it any longer.
11574
11575 2006-10-11  Chris Toshok  <toshok@ximian.com>
11576
11577         * XplatUIX11.cs (SetWindowPos): we need to update both position as
11578         well as size after calling XMoveResizeWindow.  This keeps us from
11579         ignoring future SetWindowPos calls.  Fixes the disappearing
11580         DateTimePicker in the ToolBarDockExample from bug #72499.
11581
11582 2006-10-11  Chris Toshok  <toshok@ximian.com>
11583
11584         * TextBoxBase.cs: reorder things a bit when it comes to
11585         resizing-causing-recalculation.  we were recalculating the
11586         document when our position was changed, which shouldn't happen.
11587         We only care about size changes.  Clear up some more redundant
11588         recalculation calls while I'm at it.  This makes the toolbar dock
11589         example snappy when you're just dragging toolbars around (since it
11590         causes a relayout whenever you move one.)
11591
11592 2006-10-11  Chris Toshok  <toshok@ximian.com>
11593
11594         * ToolBarButton.cs (get_Rectangle): this only returns
11595         Rectangle.Empty if Visible == false, or Parent == null.
11596         Parent.Visible doesn't matter.
11597
11598 2006-10-10  Chris Toshok  <toshok@ximian.com>
11599
11600         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
11601         by .net 1.1, so switch to an internal method instead.
11602
11603 2006-10-10  Chris Toshok  <toshok@ximian.com>
11604
11605         * Control.cs (WM_PAINT): when a control is double buffered we draw
11606         initially to the ImageBuffer and then copy from there.  But when a
11607         parent control which has child controls is double buffered, the
11608         initial drawing doesn't encompass the entire ClientRectangle of
11609         the parent control, so we end up with uninitialized bits (this is
11610         easily seen by dragging the top toolbar in
11611         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
11612         manually set the ClipRectangle of the paint_event (only the one we
11613         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
11614         of the nastiness in bug #72499.
11615
11616         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
11617         which we use in Control.cs's WM_PAINT handling.
11618
11619 2006-10-10  Jackson Harper  <jackson@ximian.com>
11620
11621         * TextBoxBase.cs: Finish off the autoscrolling stuff.
11622
11623 2006-10-10  Chris Toshok  <toshok@ximian.com>
11624
11625         * Cursor.cs: Apply a slightly different patch to the one suggested
11626         in #79609.
11627
11628 2006-10-10  Jackson Harper  <jackson@ximian.com>
11629
11630         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
11631         not the parent form.
11632         * TextControl.cs: use difference in old line count vs new count to
11633         calculate how many lines were added, this takes into account soft
11634         line breaks properly.
11635
11636 2006-10-10  Chris Toshok  <toshok@ximian.com>
11637
11638         * LinkLabel.cs: don't call MeasureCharacterRanges against a
11639         rectangle located at 0,0 and the size of the text.  Use
11640         ClientRectangle instead.  This fixes rendering of non-left aligned
11641         link labels.
11642
11643 2006-10-10  Jackson Harper  <jackson@ximian.com>
11644
11645         * TextBoxBase.cs: When we set the selection start position the
11646         caret.
11647         * TextControl.cs: Need to update the caret when we decrement it to
11648         zero.
11649         - Make sure that the selection_visible flag gets reset to false if
11650         the selection isn't visible.  Before this you could get it set to
11651         visible by changing the selection start, then changing the end to
11652         equal the start.
11653
11654 2006-10-09  Jackson Harper  <jackson@ximian.com>
11655
11656         * TreeView.cs: Don't update scrollbars when we aren't visible.
11657         * TreeNodeCollection.cs: Only need to update scrollbars if being
11658         added to an expanded visible node or the root node.
11659
11660 2006-10-09  Chris Toshok  <toshok@ximian.com>
11661
11662         * XplatUIX11.cs (SendMessage): fix NRE.
11663
11664 2006-10-09  Jackson Harper  <jackson@ximian.com>
11665
11666         * TextBoxBase.cs: Implement horizontal autoscrolling.
11667         * TextControl.cs: Add a movement types that allows moving forward
11668         and backwards without wrapping.
11669
11670 2006-10-09  Mike Kestner  <mkestner@novell.com>
11671
11672         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
11673         with focus "expansion" of labels.  Fixes #79532 and then some.
11674         * ThemeWin32Classic.cs : add LineLimit to ListView label format
11675         when wrapping.
11676
11677 2006-10-09  Jackson Harper  <jackson@ximian.com>
11678
11679         * TextBoxBase.cs: Set the default max values to MaxValue since
11680         we use the scrollbar for autoscrolling and the default value is
11681         100.  If we don't do this the caret won't keep up with typing
11682         after about 18 characters.
11683         * TextControl.cs: Make sure the selection is offset by the
11684         viewport x.  This fixes selection when using auto scrolling.
11685
11686 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
11687         
11688         * Form.cs: The active control should be selected after the 
11689         OnLoad so that any child control initialization that affects
11690         the selection is done. Fixes #79406
11691
11692 2006-10-06  Chris Toshok  <toshok@ximian.com>
11693
11694         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
11695         to have no evil effects.
11696
11697         - Stop selecting StructureNotifyMask on non-toplevel windows.
11698
11699           The only way children should be resized is by using the SWF api,
11700           and we already send WM_WINDOWPOSCHANGED messages in those cases.
11701           Toplevel windows can be interacted with via the window manager,
11702           and so we keep the input mask there.
11703
11704           The other event StructureNotifyMask gives us (that we care
11705           about) is DestroyNotify.  The code is already structured such
11706           that it assumes we won't be getting a DestroyNotify event for
11707           the window we pass to XDestroyWindow (which is what
11708           StructureNotifyMask is supposed to guarantee.)  So, that code
11709           shouldn't be affected by this either.
11710
11711         - Stop selecting VisibilityChangeMask altogether.
11712
11713           We weren't doing anything with the resulting events anyway.
11714         
11715         This vastly reduces the number of X requests and events we see
11716         when resizing/laying out a large ui.
11717
11718 2006-10-06  Chris Toshok  <toshok@ximian.com>
11719
11720         * ScrollableControl.cs (DisplayRectangle): we need to take into
11721         account the DockPadding regardless of whether or not auto_scroll
11722         == true.  rework this slightly to this effect, and fix bug #79606,
11723         and part of #72499 (you can now see the drag handles and drag
11724         toolbars around).
11725
11726 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
11727
11728         * ListViewItem.cs: Collections of selected and checked items are now
11729         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
11730         we mark the collection "dirty".
11731         * ListView.cs: Marked collections readonly. Modified UpdateSelection
11732         to only clear SelectedItems when a new item is selected and MultiSelect
11733         is enabled. CheckedItems and SelectedItems now subscribe to Changed
11734         event of ListViewItemCollection, and mark its list dirty whenever
11735         that event is fire. This allows us to return selected/checked items 
11736         in the same order as they are in the Items collection. This matches
11737         the MS behavior.
11738
11739 2006-10-06  Chris Toshok  <toshok@ximian.com>
11740
11741         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
11742         right mouse clicks.  Fixes bug #79593.
11743
11744 2006-10-06  Chris Toshok  <toshok@ximian.com>
11745
11746         * Splitter.cs: doh, fix splitters that don't want to cancel the
11747         movement when you drag them.  Also, impose the limits on the
11748         values we send to the SplitterMovingEvent.  Fixes #79598.
11749
11750 2006-10-06  Jackson Harper  <jackson@ximian.com>
11751
11752         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
11753         since we use this for auto scrolling also.
11754
11755 2006-10-05  Chris Toshok  <toshok@ximian.com>
11756
11757         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
11758         beginning to think that most datagrid column types don't need this
11759         method.  Fixes bug #79392.
11760
11761 2006-10-05  Chris Toshok  <toshok@ximian.com>
11762
11763         * DataGrid.cs: move back to a more lazy scheme for creating the
11764         CurrencyManager, so we aren't updating it every time you set
11765         either DataSource or DataMember.  Also, don't call
11766         RecreateDataGridRows if the currency manager hasn't changed.
11767
11768 2006-10-05  Chris Toshok  <toshok@ximian.com>
11769
11770         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
11771         emitted, SelectedIndex should already be updated.  Fixes bug
11772         #78929.
11773
11774 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
11775
11776         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
11777           ToolStripTextBox.cs: Initial commit.
11778         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
11779
11780 2006-10-05  Jackson Harper  <jackson@ximian.com>
11781
11782         * TabControl.cs: We need to invalidate the tab control area when
11783         new ones are added (duh).
11784
11785 2006-10-03  Chris Toshok  <toshok@ximian.com>
11786
11787         * Form.cs (ProcessDialogKey): if the focused control is in this
11788         form and is a button, call its PerformClick method here.  Fixes
11789         #79534.
11790
11791 2006-10-04  Jackson Harper  <jackson@ximian.com>
11792
11793         * TabPage.cs: Ignore setting of Visible, and add an internal
11794         method for setting the controls visibility.  TabPage's Visible
11795         property is a little strange on MS, this seems to make us
11796         compatible, and fixes cases where people set all the tab pages to
11797         visible.
11798         * TabControl.cs: Use the new internal setting on tab pages
11799         visibility.
11800
11801 2006-10-03  Mike Kestner  <mkestner@novell.com>
11802
11803         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
11804
11805 2006-10-03  Mike Kestner  <mkestner@novell.com>
11806
11807         * ListView.cs : use is_visible instead of Visible to check if 
11808         scrollbars should be placed/sized.  Also some max_wrap_width
11809         love for LargeIcon view.  [Fixes #79533]
11810
11811 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
11812
11813         * TextControl.cs :
11814           Make set_TextAlign() do actually update the align. Fixed #78403.
11815
11816 2006-10-03  Chris Toshok  <toshok@ximian.com>
11817
11818         * DataGrid.cs: fix a crash when switching datasources if the
11819         vertical scrollbar is at someplace other than Value = 0.  Also,
11820         reduce the number of recalculation passes we do in SetDataSource
11821         from 2 to 1.
11822
11823 2006-10-03  Jackson Harper  <jackson@ximian.com>
11824
11825         * TextBoxBase.cs: Move the if value the same bail check up, we
11826         don't want to empty the document if it is already empty, this
11827         seems to severly mess up the caret.  TODO: I should probably fix
11828         the empty statement to update teh caret somehow.
11829
11830 2006-10-03  Chris Toshok  <toshok@ximian.com>
11831
11832         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
11833         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
11834         reflection, an internal row type, properties on said type, etc.)
11835         will work with our datagrid.  Fixes #79531.
11836
11837 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
11838
11839         * FileDialog.cs: Don't crash if a path is not accessible
11840           (System.UnauthorizedAccessException). Fixes #79569.
11841         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
11842           a ':' too. Return unknown icon for those paths/files.
11843
11844 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
11845
11846         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
11847         GetContainerControl returns null.
11848
11849 2006-10-02  Chris Toshok  <toshok@ximian.com>
11850
11851         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
11852         call to XGetWindowAttributes instead of "handle".  fixes an X
11853         error using notifyicon after the NotifyIconWindow to Form base
11854         class switch.
11855
11856 2006-10-02  Chris Toshok  <toshok@ximian.com>
11857
11858         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
11859         server grab and looping we need to do to get down to the most
11860         deeply nested child window.
11861         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
11862         QueryPointer again after the WarpPointer so we can generate a
11863         proper (fake) MotionNotify event to be enqueued in the destination
11864         window's queue.
11865         (GetCursorPos): call QueryPointer.
11866
11867         Fixes #79556.
11868
11869 2006-10-02  Jackson Harper  <jackson@ximian.com>
11870
11871         * NotifyIcon.cs: Derive the notify icon from a form, so things
11872         like FindForm work on it.
11873         - Swallow the WM_CONTEXTMENU message, since that is generated on
11874         mouse down, and context menu is a mouse up kinda guy.  I believe
11875         the correct fix here is probably to make the notify icon entirely
11876         NC area, but this seems to work fine for anyone not manipulating
11877         WndProc.
11878
11879 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
11880
11881         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
11882           ToolStripItemCollection.cs, ToolStripLabel.cs,
11883           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
11884           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
11885           Initial implementation.
11886         * TextRenderer.cs: Provide padding to MeasureText.
11887
11888 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
11889
11890         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
11891         of ButtonBaseAccessibleObject. Fix bug #79552.
11892
11893 2006-10-02  Jackson Harper  <jackson@ximian.com>
11894
11895         * MdiWindowManager.cs: When maximizing use the containers client
11896         rect, not it's bounds, so nc area is accounted correctly.
11897         - Use the parent form's size for the menu position, since the
11898         client isn't always the full form size.
11899
11900 2006-10-01  Chris Toshok  <toshok@ximian.com>
11901
11902         * ScrollableControl.cs: make sure neither right_edge or
11903         bottom_edge are < 0, since they're used as LargeChange for the
11904         horiz/vert scrollbars respectively.  Fixes #79539.
11905
11906 2006-10-01  Chris Toshok  <toshok@ximian.com>
11907
11908         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
11909         the xplatuix11 code can cause us to destroy/recreate our handle.
11910
11911         * XplatUIX11.cs
11912         (SystrayAdd):
11913         - this code can be invoked many times for the same Hwnd.  Make
11914           sure we only destroy the client window once (the first time this
11915           method is called).  This fixes bug #79544.
11916         - Remove the call to the improperly bound XSync.  why we had two
11917           bindings to this, I will never know, but this call resulted in
11918           events being discarded from the queue(!).
11919         - correct a misunderstanding of _XEMBED_INFO - the second atom is
11920           not our current state but the state we wish to be in.  So, 0 if
11921           we don't want to be mapped.  Change it to 1.
11922         (SystrayRemove): The XEMBED spec makes mention of the fact that
11923         gtk doesn't support the reparent of client windows away from the
11924         embedder.  Looking at gtksocket-x11.c seems to agree with this.
11925         The only avenue we have for removing systray icons is to destroy
11926         them.  We don't want the handle to go away for good, though, so
11927         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
11928         #79545.
11929         
11930 2006-10-01  Chris Toshok  <toshok@ximian.com>
11931
11932         * Form.cs (WndProc): inline the native_enabled variable usage into
11933         the cases in which it's used.  Fixes #79536.
11934
11935 2006-09-29  Mike Kestner  <mkestner@novell.com>
11936
11937         * ListView.cs : toggle the selection state for ctrl clicks in 
11938         multiselect mode. [Fixes #79417]
11939
11940 2006-09-29  Mike Kestner  <mkestner@novell.com>
11941
11942         * ListView.cs : kill CanMultiSelect and refactor the selection
11943         code to support multiselection in the absence of mod keys. Steal
11944         arrow/home/end keys by overriding InternalPreProcessMessage to
11945         restore regressed keynav behavior.
11946         [Fixes #79416]
11947
11948 2006-09-29  Jackson Harper  <jackson@ximian.com>
11949
11950         * MdiClient.cs: Repaint the titlebars when the active window is
11951         changed.
11952
11953 2006-09-29  Chris Toshok  <toshok@ximian.com>
11954
11955         * Application.cs: when entering a runloop with a modal, make sure
11956         the hwnd is enabled.  Fixes #79480.
11957
11958 2006-09-29  Chris Toshok  <toshok@ximian.com>
11959
11960         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
11961         when ListManager.CanAddRows == false, bump us back one.
11962
11963         * DataGridColumnStyle.cs (ParentReadOnly): remove the
11964         listmanager.CanAddRows check.  This makes ArrayLists uneditable
11965         using a datagrid, which is not right.
11966         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
11967         is an IEditable, but call property_descriptor.SetValue regardless.
11968         fixes #79435.
11969
11970 2006-09-29  Chris Toshok  <toshok@ximian.com>
11971
11972         * DataGridBoolColumn.cs: we need to test equality in the face of
11973         possible null values (as is the case with the default NullValue).
11974         This patch keeps us from crashing in that case.
11975
11976 2006-09-29  Jackson Harper  <jackson@ximian.com>
11977
11978         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
11979         here, since it will get called for every node collection in the
11980         tree. This is now done in the treeview once the sorting is
11981         finished.
11982         * TreeView.cs: Recalculate the visible order, and update the
11983         scrollbars after sorting, set the top nope to the root so that the
11984         recalc actually works.
11985
11986 2006-09-29  Chris Toshok  <toshok@ximian.com>
11987
11988         * LinkLabel.cs: more handling of the default link collection in
11989         the face of LinkArea manipulation.  The default link collection
11990         contains 1 element (start=0,length=-1).  If the user sets LinkArea
11991         to anything and the links collection is the default, clear it.
11992         Then only add the link if its nonempty.  Fixes #79518.
11993
11994 2006-09-29  Chris Toshok  <toshok@ximian.com>
11995
11996         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
11997         piece correctly when we hit a '\n'.  Fixes #79517.
11998
11999 2006-09-29  Chris Toshok  <toshok@ximian.com>
12000
12001         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
12002         change the binding of gdk_init_check to take two IntPtr's, and
12003         pass IntPtr.Zero for both of them.  Fixes #79520.
12004
12005 2006-09-29  Mike Kestner  <mkestner@novell.com>
12006
12007         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
12008         [Fixes #78779]
12009
12010 2006-09-28  Jackson Harper  <jackson@ximian.com>
12011
12012         * XplatUIX11.cs: When translating NC messages make sure we go from
12013         whole window to screen, not client window to screen.
12014         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
12015         method doesn't exist
12016         - Skip over controls that aren't forms when arranging.
12017
12018 2006-09-28  Jackson Harper  <jackson@ximian.com>
12019
12020         * XplatUIWin32.cs: Clip the rect to the parent window.
12021         * XplatUIStructs.cs: Add clipping modes struct.
12022         * InternalWindowManager.cs: New private method that factors title
12023         bar heights in when calculating the pos of an NC mouse message.
12024         - Use SendMessage to force a paint when the form's size is changed
12025         instead of painting the decorations immediately.
12026         - Don't let the NC button click messages get to DefWndProc,
12027         because they will attempt to handle windowing themself, and this
12028         messes up z-order (it will put them in front of the scrollbars).
12029         * XplatUIX11.cs: Make sure that we don't reset window managers if
12030         we already have one (ie the window is an MDI window).
12031
12032 2006-09-28  Chris Toshok  <toshok@ximian.com>
12033
12034         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
12035         menu code really needs going over.
12036
12037 2006-09-27  Chris Toshok  <toshok@ximian.com>
12038
12039         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
12040         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
12041         window is maximizable.  So, we need to make sure that even if we
12042         clear the border/wm frame of those functions, they're still
12043         available (basically, we remove the decoration without removing
12044         the function).  Half the fix for #79338.
12045
12046 2006-09-27  Chris Toshok  <toshok@ximian.com>
12047
12048         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
12049         Fixes bug #79515.
12050
12051 2006-09-27  Chris Toshok  <toshok@ximian.com>
12052
12053         * Splitter.cs: reorder things a bit so that we don't actually
12054         draw/move the splitter until after calling OnSplitterMoving.  This
12055         lets users cancel/disallow the movement by explicitly setting
12056         event.SplitX/SplitY.  Fixes #79372.
12057
12058 2006-09-27  Jackson Harper  <jackson@ximian.com>
12059
12060         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
12061         because it is most likely on a window being destroyed, and that
12062         will give us an X11 error.
12063
12064 2006-09-27  Chris Toshok  <toshok@ximian.com>
12065
12066         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
12067         the dropdown button now toggles between showing and hiding the
12068         dropdown.  Also, get rid of dropdown_form_showing and just use
12069         dropdown_form.Visible.  We still don't do a grab, but I'll leave
12070         that part to someone who has handled Capture-fu before.
12071
12072 2006-09-27  Chris Toshok  <toshok@ximian.com>
12073
12074         * DataGrid.cs: return false if alt isn't pressed when '0' is
12075         pressed.  this keeps the '0' key from being swallowed, and fixes
12076         bug #79350.
12077
12078 2006-09-27  Chris Toshok  <toshok@ximian.com>
12079
12080         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
12081         Calling Refresh (in response to a scrollbar event) screws up the
12082         scrollbar painting.  Fixes bug #78923.
12083
12084 2006-09-27  Chris Toshok  <toshok@ximian.com>
12085
12086         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
12087         then insert into hashtable" blocks threadsafe.
12088
12089 2006-09-27  Chris Toshok  <toshok@ximian.com>
12090
12091         * MessageBox.cs (CreateParams): the styles should be |'ed with our
12092         baseclass's, since otherwise the
12093         ControlBox/MinimizeBox/MaximizeBox assignments above have no
12094         effect.  This gets the close button back in messageboxes.
12095
12096 2006-09-27  Chris Toshok  <toshok@ximian.com>
12097
12098         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
12099         flag, not just != 0.  this makes flags that are actually multiple
12100         bits (like WS_CAPTION) work.  fixes bug #79508.
12101
12102 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
12103
12104         * PageSetupDialog.cs: add support for getting and settings the 
12105         paper size, source and orientation.
12106
12107 2006-09-26  Chris Toshok  <toshok@ximian.com>
12108
12109         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
12110         and caption == "", we need to remove the resize handles as well as
12111         the title bar.
12112
12113         * Control.cs (set_Text): turns out that setting Text on a form
12114         should change the WM styles on the window, since if ControlBox ==
12115         false, the only way to get a window border is to have a non-""
12116         Text property.  check winforms/forms/text.cs for an example.  so,
12117         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
12118         update both window styles and title.  This fixes a lot of dialogs
12119         (including the preferences dialog in MonoCalendar.)
12120
12121 2006-09-26  Chris Toshok  <toshok@ximian.com>
12122
12123         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
12124         control isn't a Form), call Win32ShowWindow to hide the window,
12125         but don't update the control Visible property.  When we reparent
12126         back to a parent control, call SetVisible in order for the
12127         window's visibility to be reinstated.
12128
12129         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
12130         the FosterParent.
12131
12132         * Control.cs (ControlCollection.Remove): remove that value.Hide()
12133         call for good, since it breaks MonoCalendar (and other things I'm
12134         sure.) Also, set all_controls to null *after* the owner calls,
12135         which end up regenerating it.
12136         (ChangeParent): allow new_parent to be == null, passing
12137         IntPtr.Zero down to XplatUI.
12138
12139         this fixes #79294 the right way.
12140
12141 2006-09-26  Mike Kestner  <mkestner@novell.com>
12142
12143         * GridEntry.cs : internal SetParent method.
12144         * PropertyGrid.cs : attach to property changed on the proper
12145         target if we have a hierarchical grid with subobjects. Setup
12146         GridItem.Parent for hierarchical items.
12147         * PropertyGridView.cs : Set value on the correct target for
12148         hierarchical grids. [Fixes #78903]
12149
12150 2006-09-26  Chris Toshok  <toshok@ximian.com>
12151
12152         * Control.cs (ChildNeedsRecreating): this should return true if
12153         either we're being recreated and the child is in our list, or our
12154         parent is waiting for our recreation.
12155
12156 2006-09-26  Chris Toshok  <toshok@ximian.com>
12157
12158         * Control.cs (ControlCollection.Remove): reinstate the
12159         value.Hide() call as suggested in bug #79294.
12160
12161 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
12162
12163         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
12164         coordinates (versus a relative move).
12165
12166 2006-09-26  Chris Toshok  <toshok@ximian.com>
12167
12168         * Control.cs: rework child recreation a little bit.  It turns out
12169         that we race between the DestroyNotify the WM_DESTROY message.  If
12170         the parent gets its DestroyNotify before the child gets the
12171         WM_DESTROY message, the child ends up not recreating (since the
12172         parent finishes its recreation on DestroyNotify, and the child
12173         checks ParentIsRecreating.)
12174
12175         So, instead we store off a list of all the child controls which
12176         need to be recreated when the parent control starts to recreate
12177         itself.  Then, when child controls get their WM_DESTROY message we
12178         check to see if they're in the parent's pending recreation list,
12179         and if so, we recreate.  This removes all dependency on ordering
12180         from the code and fixes the initial MonoCalendar upgrade dialog.
12181         
12182 2006-09-26  Jackson Harper  <jackson@ximian.com>
12183
12184         * TextControl.cs: Use the Line to get the length of the line,
12185         since soft line breaks can change the end line.
12186
12187 2006-09-26  Chris Toshok  <toshok@ximian.com>
12188
12189         * Control.cs (ControlCollection.AddImplicit): don't add the
12190         control again if it's already in one of our lists.  This keeps us
12191         from adding controls over and over again for comboboxes when their
12192         handle gets recreated (as the combobox adds implicit controls in
12193         OnHandleCreated).  Fixes the X11 errors in bug #79480.
12194
12195 2006-09-26  Jackson Harper  <jackson@ximian.com>
12196
12197         * TextControl.cs: When deleting characters make sure that any
12198         orphaned zero lengthed tags get deleted.
12199         - Fix ToString for zero lengthed tags.
12200
12201 2006-09-25  Jackson Harper  <jackson@ximian.com>
12202
12203         * TextControl.cs: When getting a tag at the location there can be
12204         multiple tags at the same spot, these are 0-lengthed tags that
12205         appear when extra formatting has been stuck in a location.  We
12206         need to pull out the last of these 0 lengthed tags.
12207
12208 2006-09-25  Jackson Harper  <jackson@ximian.com>
12209
12210         * TextControl.cs: Fix print out in debug method.
12211         * TextBoxBase.cs: When text is set bail if we are setting to the
12212         previous value.
12213         
12214 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
12215
12216         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
12217           It is now possible to change the selected index in a FontXXXListBox
12218           with the up and down arrow keys from the FontXXXTextBoxes.
12219           Also, send the FontXXXTextBox mouse wheel event to the corresponding
12220           FontXXXListBoxes to match ms.
12221
12222 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
12223
12224         * SystemInformation.cs: Return a clone of the theme's MenuFont because
12225         anyone can dispose it, anytime. All other properties returns enums, 
12226         structs or basic types so they don't need such tricks.
12227
12228 2006-09-22  Jackson Harper  <jackson@ximian.com>
12229
12230         * XplatUI.cs:
12231         * XplatUIWin32.cs:
12232         * Clipboard.cs:
12233         * DataFormats.cs:
12234         * XplatUIOSX.cs:
12235         * XplatUIDriver.cs: Update interface to add a primary selection
12236         flag, so the driver can use the primary selection buffer if
12237         needed.
12238         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
12239
12240         * RichTextBox.cs: We need to supply the data object to paste now
12241         (so we can choose to supply CLIPBOARD or PRIMARY).
12242         * TextBoxBase.cs: Supply data object to paste (see above).
12243         - Middle click uses the primary selection data object.
12244         
12245 2006-09-21  Chris Toshok  <toshok@ximian.com>
12246
12247         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
12248         of SetWMStyles.  It's still a rat's nest and is largely
12249         order-dependent which I dislike immensely.  This also fixes the X
12250         button disappearing from toplevel forms.
12251
12252 2006-09-21  Mike Kestner <mkestner@novell.com>
12253
12254         * ListBox.cs: move Jordi's click/dblclick raising code to the
12255         mouse up handler.
12256
12257 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12258
12259         * ListBox.cs: Fixes 79450
12260
12261 2006-09-21  Mike Kestner <mkestner@novell.com>
12262
12263         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
12264         to deal with people updating the TreeNodeCollection after the tree
12265         is disposed.  "Fixes" 79330.
12266
12267 2006-09-20  Jackson Harper <jackson@ximian.com>
12268
12269         * TextControl.cs: Push the cursor record onto the undo stack
12270         before the delete action. This fixes 78651.
12271
12272 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
12273
12274         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
12275         CreateParams. Fixes 79329.
12276
12277 2006-09-19  Chris Toshok  <toshok@ximian.com>
12278
12279         * XplatUIX11.cs: a couple of blanket code massage passes to clean
12280         things up a bit.  First, get rid of the NetAtoms array (and the NA
12281         enum), and just embed the atoms as static fields.  Also, add a
12282         couple of functions (StyleSet and ExStyleSet) to clean up all the
12283         bitmask testing of styles.
12284
12285         * X11Structs.cs: remove the NA enum, not needed anymore.
12286         
12287 2006-09-19  Chris Toshok  <toshok@ximian.com>
12288
12289         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
12290         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
12291         added cleanup to get MessageBox titles appearing again, which were
12292         broken by my earlier fix for caption-less/ControlBox-less windows.
12293
12294 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
12295
12296         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
12297           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
12298           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
12299           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
12300           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
12301           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
12302           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
12303           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
12304           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
12305           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
12306           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
12307             Inital import.
12308         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
12309           ToolStripButton.cs: Stubs needed for above.
12310         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
12311
12312 2006-09-15  Chris Toshok  <toshok@ximian.com>
12313
12314         * XplatUIX11.cs:
12315         - make the MessageQueues hashtable Synchronized.
12316         
12317         - SendMessage: if the Hwnd is owned by a different thread, use the
12318         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
12319         thread.  Fixes bug #79201.
12320
12321 2006-09-15  Chris Toshok  <toshok@ximian.com>
12322
12323         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
12324         ControlBox == false, we disallow maximize/minimize/close.  If the
12325         form Caption is "" we also disallow move (and get rid of the Title
12326         decoration).  Unfortunately, regardless of how things are set,
12327         we're stuck with the Title and WM menu.
12328
12329 2006-09-15  Chris Toshok  <toshok@ximian.com>
12330
12331         * Application.cs: add locking around the static message_filters
12332         ArrayList, part of #79196.
12333
12334 2006-09-15  Chris Toshok  <toshok@ximian.com>
12335
12336         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
12337         Form.ControlBox == false, the window has no titlebar nor resize
12338         handles.  fixes bug #79368.
12339
12340 2006-09-15  Chris Toshok  <toshok@ximian.com>
12341
12342         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
12343         >= 0.  Fixes bug #79370.
12344
12345 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
12346         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
12347         * Control.cs:
12348             Add properties: LayoutEngine, Margin, DefaultMargin.
12349             Add method: GetPreferredSize.
12350             Move layout logic from PerformLayout to layout engines. 
12351
12352 2006-09-13  Chris Toshok  <toshok@ximian.com>
12353
12354         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
12355         fix for #79326 broke #78718, so this change addresses that.
12356
12357         - in SendWMDestroyMessages remove the call to
12358         CleanupCachedWindows, since we might be recreating the control and
12359         need to maintain the references to right Hwnd handles.  Also, set
12360         the zombie flag to true for each of the children in the hierarchy
12361         instead of calling hwnd.Dispose.  This will cause GetMessage to
12362         ignore all events for the window except for DestroyNotify.
12363
12364         - In GetMessage, ignore messages except for DestroyNotify for
12365         zombie hwnds.
12366         
12367         * Control.cs: revert the is_recreating fix from the last
12368         ChangeLog.  It's definitely "right", but it breaks switching from
12369         an MDI form to a non-MDI form.  Will need to revisit that.
12370
12371         * Hwnd.cs: add a zombie flag, which means "the
12372         client_window/whole_window handles are invalid, but we're waiting
12373         for the DestroyNotify event to come in for them".  Set the flag to
12374         false explicitly if setting WholeWindow/ClientWindow, and also
12375         when Disposing.
12376         
12377 2006-09-13  Chris Toshok  <toshok@ximian.com>
12378
12379         * XplatUIX11.cs: rework window destruction slightly.
12380
12381         - when destroying the windows associated with a control, we don't
12382         need 2 separate XDestroyWindow calls.  Just the one for the
12383         whole_window (or for client_window if whole_window is somehow
12384         IntPtr.Zero -- can this happen?) is enough.
12385
12386         - reworked SendWMDestroyMessages slightly, so we always dispose
12387         the child control hwnd's after sending the messages.
12388         
12389         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
12390         the two places it was used (one was even using hwnd.Handle and the
12391         other hwnd.client_window.  ugh), adding another call in
12392         SendWMDestroyMessages.  We need this new call because now the
12393         DestroyNotify events in the queue will be ignored for the child
12394         controls (as their hwnd's were disposed, and the window id's
12395         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
12396
12397         - this fixes bug #79326.
12398
12399 2006-09-13  Chris Toshok  <toshok@ximian.com>
12400
12401         * Control.cs: don't always set is_recreating to false at the end
12402         of RecreateHandle, since sometimes we're not done (and won't be
12403         until WndProc handles the WM_DESTROY message).  Also, set
12404         is_recreating to false in the WM_DESTROY handling code.  Part of
12405         the fix for bug #79326.
12406
12407 2006-09-13  Miguel de Icaza  <miguel@novell.com>
12408
12409         * X11DesktopColors.cs: Start the droppage of debugging messages.
12410
12411         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
12412
12413 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
12414
12415         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
12416
12417 2006-09-12  Chris Toshok  <toshok@ximian.com>
12418
12419         * DataGrid.cs (get_ListManager): if the list_manager is null, try
12420         to create it using SetDataSource.  Fixes bug #79151.
12421
12422 2006-09-11  Chris Toshok  <toshok@ximian.com>
12423
12424         * XEventQueue.cs: add a DispatchIdle property.
12425
12426         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
12427         either the queue is null, or the queue has DispatchIdle set to
12428         true.
12429         (DoEvents): set queue.DispatchIdle to false around the
12430         peek/translate/dispatch message loop in this method.  This keeps
12431         Application.Doevents from emitting idle events.  Part of the fix
12432         for #78823.
12433
12434 2006-09-11  Chris Toshok  <toshok@ximian.com>
12435
12436         * DataGrid.cs (set_DataSource): make this work for both the
12437         winforms/datagrid test and ReportBuilder.  It seems as though when
12438         we've created a ListManager (or maybe it's if we have a
12439         BindingContext?), when we set the DataSource it clears the
12440         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
12441         #79333.
12442
12443 2006-09-11  Chris Toshok  <toshok@ximian.com>
12444
12445         * XplatUIX11.cs: deal with queue being null, which happens in all
12446         the Clipboard functions.  Fixes one of the two problems mentioned
12447         in #78612.
12448
12449 2006-09-11  Chris Toshok  <toshok@ximian.com>
12450
12451         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
12452         button on various spots (including outside the menu) works closer
12453         to MS, and doesn't crash.  Fixes #79343.
12454
12455 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
12456
12457         * ListView.cs: Do not initialize item_sorter in init. To match MS,
12458         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
12459         and the internal comparer is set. When a new ListViewItemSorter is set,
12460         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
12461         was specified. No further processing is necessary if SortOrder is set
12462         to it's current value. If Sorting is modified to None, and View is
12463         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
12464         (either custom or our internal ItemComparer) to null, on 1.0 profile
12465         only set item_sorter to null if its our internal IComparer. If Sorting
12466         is modified to Ascending or Descending, then use our internal IComparer
12467         if none is set, and if the current IComparer is our internal one then:
12468         on 2.0 profile always replace it with one for new Sorting, and on 1.0
12469         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
12470         Enum.IsDefined to verify whether a valid View value is specified in
12471         its setter. Automatically sort listview items when listview is
12472         created. In Sort, do nothing if ListView is not yet created, or if
12473         no item_sorter is set (no Sorting was set, Sorting was explicitly set
12474         to None or ListViewItemSorter was set to null). Added Sort overload
12475         taking a bool to indicate whether the ListView should be redrawn when
12476         items are sorted (we use this in ListViewItemCollection to avoid double
12477         redraws). Modified our internal IComparer to take the sort order into
12478         account. In Add and AddRange methods of ListViewItemCollection, also
12479         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
12480         view), but use overload with noredraw option to avoid double redraw.
12481         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
12482         true when View is Tile, and do the same when attempting to set View to
12483         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
12484         for selected/checked indices, as it involves overhead when sorting is
12485         done while these collections are not used all that often. Instead
12486         we'll build the indices on demand. Modified IList implementation of
12487         CheckedIndexCollection to use public methods if object is int.
12488         Modified CheckedListViewItemCollection to hide checked items if
12489         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
12490         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
12491         IList implementation in SelectedIndexCollection to use public methods
12492         if object is int. Modified SelectedListViewItemCollection to hide
12493         selected items if listview is not yet created.
12494         * ListViewItem.cs: CheckedIndices list no longer needs to be
12495         maintained separately (see ListView changes). Also clone font, fixes
12496         test failure.
12497
12498 2006-09-11  Mike Kestner  <mkestner@novell.com>
12499
12500         * ComboBox.cs: if we are updating the contents of the currently
12501         selected index, refresh the control or the textbox selection.
12502         [Fixes #79066]
12503
12504 2006-09-11  Mike Kestner  <mkestner@novell.com>
12505
12506         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
12507         the 'specified' logic has been moved there.  This seems like a bug 
12508         in Control.cs, since our current SetBoundsCore completely ignores 
12509         the specified parameter.  Peter's commit seems to indicate that is 
12510         the way the MS control implementation works.  [Fixes #79325]
12511
12512 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
12513
12514         * XplatUI.cs: Set default_class_name to be composed
12515         of current domain id. This allows MWF to be loaded in multiple
12516         domains on Win32.
12517
12518 2006-09-09  Miguel de Icaza  <miguel@novell.com>
12519
12520         * X11Keyboard.cs: If we are unable to obtain the input method, do
12521         not call CreateXic to create the input context.   Should fix
12522         #78944/79276.
12523
12524 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
12525
12526         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
12527           Simplified gnome support by adding more pinvokes to get the
12528           icon for a file or mime type.
12529
12530 2006-09-08  Jackson Harper  <jackson@ximian.com>
12531
12532         * MenuAPI.cs: Deslect popup context menu items before closing the
12533         window, so that you don't see the previously selected item
12534         selected when you reopen the menu.
12535         * TextControl.cs: Update the cursor position even if we don't have
12536         focus.  This fixes typing in things like the ComboBox.  I'm not
12537         totally sure we should always set the visibility if we don't have
12538         focus, but couldn't find any corner cases where the cursor showed
12539         up when it shouldn't.
12540
12541 2006-09-08  Chris Toshok  <toshok@ximian.com>
12542
12543         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
12544         our arrays are length 256.  & 0xff before indexing.  Fixes the
12545         crash in bug #78077.
12546         
12547 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12548
12549         * ThemeWin32Classic.cs: 
12550         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
12551         is true. Handle that check box too.
12552
12553 2006-09-07  Chris Toshok  <toshok@ximian.com>
12554
12555         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
12556         79244.
12557
12558 2006-09-07  Chris Toshok  <toshok@ximian.com>
12559
12560         * Control.cs: in set_BackColor only do the work if
12561         background_color != value.
12562
12563         * XplatUIX11.cs: move the clearing of invalid areas (both client
12564         and nc) to the same block of code where we set (nc_)expose_pending
12565         to false.  That is, move it from PaintEventEnd to PaintEventStart,
12566         so things that cause invalidates from within OnPaint will trigger
12567         another call to OnPaint.  Fixes bug #79262.
12568
12569 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
12570
12571         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
12572         * FileDialog.cs: Fix typo
12573
12574 2006-09-07  Jackson Harper  <jackson@ximian.com>
12575
12576         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
12577         for tab pages if they have any.
12578
12579 2006-09-06  Mike Kestner  <mkestner@novell.com>
12580
12581         * Splitter.cs: use the "current" rect when finishing drag handle
12582         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
12583
12584 2006-09-06  Mike Kestner  <mkestner@novell.com>
12585
12586         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
12587         support offset splitters. [Fixes #79298]
12588
12589 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
12590
12591         * Mime.cs: Fixed a bug that could override the global mime type
12592           result.
12593
12594 2006-09-05  Jackson Harper  <jackson@ximian.com>
12595
12596         * TabControl.cs: Better calculation method for setting the slider
12597         pos. Prevents crashes on really wide tabs.
12598         - Draw Image on tab pages if an image list is used.
12599
12600 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12601
12602         * MonthCalendar.cs: When Font changes, the Size should be
12603         updated to fit the new font's space requirements.
12604
12605 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
12606
12607         * ListBox.cs: If the items are cleared with Items.Clear set
12608           top_index to 0.
12609
12610 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12611
12612         * MonthCalendar.cs: Handle arrow keys as input keys. Also
12613         fire DateChanged event instead of DateSelected event when
12614         the date was changed by keyboard interaction.
12615
12616 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12617
12618         * DateTimePicker.cs: Handle DateChanged for the associated
12619         month_calendar control, and set month_calendar.Font from 
12620         OnFontChanged method, as well as resize the height of the
12621         control when needed. Make PreferredHeight proportional.
12622
12623 2006-09-01  Chris Toshok  <toshok@ximian.com>
12624
12625         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
12626         properties.
12627
12628         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
12629
12630 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
12631
12632         * FileDialog.cs: Set ClientSize instead of window size, to allow space
12633           for decorations (Fixes #79219)
12634
12635 2006-09-01  Mike Kestner  <mkestner@novell.com>
12636
12637         * ComboBox.cs: first stab at sorting plus some selection handling
12638         fixes to bring us more in line with MS behavior.  Also switches back
12639         to index based selection.  Alternative patches for index-based 
12640         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
12641         and latency@gmx.de on bug 78848.  I assume they were similar to this
12642         code I've had simmering in my tree forever.
12643         [Fixes #78848]
12644
12645 2006-09-01  Chris Toshok  <toshok@ximian.com>
12646
12647         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
12648         when setting list position guard against ending up with a -1 index
12649         (the other part of the fix for #78812).  Should probably make sure
12650         we don't need the analogous fix in the ItemDeleted case.
12651
12652         * DataGrid.cs:
12653         - in SetDataSource, work around the fact that the way
12654         OnBindingContextChanged is invoked will cause us to re-enter this
12655         method.  I'll remove the hack once I investigate
12656         OnBindingContextChanged.
12657
12658         - fix the logic in set_DataSource and set_DataMember (basically
12659         what to do if the other of the two is null.)
12660         
12661         - in OnListManagerItemChanged, we need to take into account the
12662         edit row when deciding whether or not to call RecreateDataGridRows
12663         (part of the fix for #78812).
12664
12665 2006-09-01  Jackson Harper  <jackson@ximian.com>
12666
12667         * Splitter.cs: Don't do anything if there is no control to affect
12668         (prevents us from crashing in weird tet cases).
12669         * TreeView.cs: Bounding box for the mouse movement reverting
12670         focus/selection back to previously selected node.  This matches
12671         MS, and makes the tree a lot more useable.
12672         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
12673         use clipping so they are not drawn.  This fixes when the control
12674         is set to have a transparent background, or if it was over an
12675         image.
12676
12677 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
12678
12679         * MimeIcon.cs: Improved handling for reading default icons when
12680           using gnome (2.16 made it necessary). Check and read svg icons
12681           first, then 48x48 and then 32x32 icons.
12682
12683 2006-08-31  Chris Toshok  <toshok@ximian.com>
12684
12685         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
12686         visible.
12687
12688         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
12689         ProcessKeyPreview.  Fixes part of #77806.
12690
12691         * DataGrid.cs: big patch.
12692
12693         - revert the queueing up of DataSource/DataMember if inside
12694         BeginInit/EndInit calls.  That's not the way the datagrid achieves
12695         its delayed databinding.  Instead, call SetDataSource in
12696         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
12697         #78811.
12698
12699         - Also, it wasn't mentioned in #78811, but the test case exhibits
12700         behavior that was lacking in our datagrid implementation - Columns
12701         that have mapping names that don't exist in the datasource's
12702         properties aren't shown.  Yuck.  To fix this I added the bound
12703         field to the column style, and basically any calculation to figure
12704         out anything about columns uses a loop to find the bound columns.
12705         still need to investigate if I can cache an array of the bound
12706         columns or if the indices must be the same.
12707
12708         - When setting CurrentCell, we no longer abort if the cell being
12709         edited was in the add row.  This fixes the other part of #77806.
12710
12711         - The new code also fixes #78807.
12712         
12713         * ThemeWin32Classic.cs: perpetrate the same disgusting
12714         column.bound field hack, and only render bound fields.
12715
12716 2006-08-31  Chris Toshok  <toshok@ximian.com>
12717
12718         * DataGridColumnStyle.cs: add bound field.  this field is true if
12719         the datasource has a property corresponding to the mapping name.
12720
12721         * DataGridTableStyle.cs: set the bound field on the column styles
12722         depending on whether or not we have a column for that property.
12723
12724 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
12725
12726         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
12727           splitter control (fixes #79228)
12728
12729 2006-08-31  Chris Toshok  <toshok@ximian.com>
12730
12731         * DataGridColumnStyle.cs: we need to delay the assignment of
12732         property descriptor until the last possible moment due to the lazy
12733         databinding stuff in the datagrid.  Also, fix the exceptions
12734         thrown by CheckValidDataSource to match MS.
12735
12736 2006-08-31  Jackson Harper  <jackson@ximian.com>
12737
12738         * Form.cs: When activated select the active control, if there is
12739         no active control, we select the first control.
12740         * XplatUIX11.cs: If there is no focus control when we get a
12741         FocusIn event, find the toplevel form and activate it.  This
12742         occurs when you popup a window, it becomes the focus window, then
12743         you close that window, giving focus back to the main window.
12744
12745 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12746
12747         * MonthCalendar.cs: 
12748         * ThemeWin32Classic.cs: Cache Font in bold style, as well
12749         as StringFormat with Center alignments in MonthCalendar,
12750         instead of creating new ones when drawing the control. 
12751         Also, draw the month name in bold style.
12752
12753 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12754
12755         * Control.cs:
12756           - PerformLayout(): It would seem MS performs the fill even if the 
12757             control is not visible (part of #79218 fix)
12758           - ResetBackColor(): Use the setter to reset the color, to allow
12759             overriders to catch the change.
12760         * Form.cs:
12761           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
12762           - CreateHandle(): dito (part of $79218 fix)
12763           - Don't set an icon if we have a dialog
12764         * ScrollableControl.cs:
12765           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
12766           - ScrollIntoView(): No need to scroll if control is already visible
12767             (resolves fixme and fixes #79218)
12768
12769 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12770
12771         * MonthCalendar.cs: Change proportions in SingleMonthSize
12772         to match the aspect of the original control.
12773
12774 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
12775
12776         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
12777           get updated when they get maximized.
12778
12779 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
12780
12781         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
12782
12783 2006-08-29  Chris Toshok  <toshok@ximian.com>
12784
12785         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
12786
12787 2006-08-29  Jackson Harper  <jackson@ximian.com>
12788
12789         * TreeView.cs: Need to track selected node and highlighted node,
12790         they aren't always the same thing, when the mouse is down on a
12791         node it is hilighted, but not selected yet.
12792         - Do the HideSelection stuff right
12793         - Need to focus on rbutton mouse down. And redraw selection when
12794         right click is mouse upped.
12795
12796 2006-08-29  Mike Kestner  <mkestner@novell.com>
12797
12798         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
12799         when SubItems.Count < Columns.Count.  [Fixes #79167]
12800
12801 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
12802
12803         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
12804
12805 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
12806
12807         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
12808           from X. Only send based on ConfigureNotify if we don't have the
12809           correct location in hwnd (if the window manager moved us)
12810
12811 2006-08-28  Mike Kestner  <mkestner@novell.com>
12812
12813         * ListView.cs: remove a TODO. 
12814         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
12815         [Fixes ListView part of #79166]
12816
12817 2006-08-28  Mike Kestner  <mkestner@novell.com>
12818
12819         * ListView.cs: move wheel handler to parent since it is focused
12820         instead of the item_control now.  [Fixes #79177]
12821
12822 2006-08-28  Mike Kestner  <mkestner@novell.com>
12823
12824         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
12825         when the control is focused. [Fixes #79171]
12826
12827 2006-08-28  Mike Kestner  <mkestner@novell.com>
12828
12829         * ListView.cs: size the item and header controls for empty and
12830         unscrollable views.
12831         * ThemeWin32Classic.cs: draw disabled backgrounds.
12832         [Fixes #79187]
12833
12834 2006-08-28  Chris Toshok  <toshok@ximian.com>
12835
12836         * Form.cs: remove unused "active_form" static field.
12837
12838         * Hwnd.cs: lock around accesses to static windows collection.
12839
12840         * Application.cs: lock threads in Exit ().
12841
12842 2006-08-28  Chris Toshok  <toshok@ximian.com>
12843
12844         * NativeWindow.cs: lock around accesses to window_collection.
12845         
12846 2006-08-28  Chris Toshok  <toshok@ximian.com>
12847
12848         * Control.cs: err, fix this the right way, by locking on controls
12849         when using it.  not by making it synchronized.
12850
12851 2006-08-28  Chris Toshok  <toshok@ximian.com>
12852
12853         * Control.cs: make the static "controls" field synchronized, as it
12854         gets updated from multiple threads.
12855
12856 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12857
12858         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
12859           Prevent other threads from exiting when calling thread sets quit state.
12860         * XEventQueue.cs: Added PostQuitState property
12861
12862 2006-08-27  Chris Toshok  <toshok@ximian.com>
12863
12864         * AsyncMethodData.cs: add a slot for the window handle.
12865
12866         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
12867         window (the destination control's window, not the foster window).
12868
12869         * Control.cs (BeginInvokeInternal): store the window's handle in
12870         the AsyncMethodData.
12871         
12872
12873 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12874
12875         * XplatUIX11.cs:
12876           - PostQuitMessage: Removed resetting S.D display handle, we might have
12877             another loop started after calling PostQuitMessage (Fixes #79119)
12878           - Created destructor to reset S.D handle
12879
12880 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
12881
12882         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
12883
12884 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12885
12886         * TextControl.cs (Insert): Update the caret position even if we don't
12887           have a handle yet, just don't call the driver in that case.
12888         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
12889           to the end of the new selection text (Fixes #79184)
12890
12891 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12892
12893         * Form.cs (Activate): Only activate if the handle is created)
12894         * Control.c:
12895           - Mark window as invisible when it's disposed
12896           - Check if window handle is created when setting window visible, 
12897             instead of relying just on the is_created variable
12898           - Check if object is disposed when creating the control (Fixes #79155)
12899
12900 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12901
12902         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
12903           when allowing layout again. Otherwise we re-generate the anchoring 
12904           distance to the border again and actually alter what the user wanted
12905           This is ugly, it'd be better if we used DisplayRectangle instead of
12906           ClientRectangle for Control.UpdateDistances, but that causes us to
12907           have other problems (initial anchoring positons would be wrong)
12908           (Fixes #78835)
12909
12910 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12911
12912         * Control.cs:
12913           - The size and location setters shouldn't go directly to 
12914             SetBoundsCore, but to SetBounds, which triggers layout on the
12915             parent, then calls SetBoundsCore. (Related to fix for #78835)
12916           - SetBounds: Moved actual location update code into this function
12917             from SetBoundsCore, to match MS. Added call to PerformLayout if
12918             we have a parent (to trigger resizing of anchored parents if the 
12919             child size has changed (see testcase for #78835) 
12920         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
12921           new control code
12922         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
12923
12924 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12925
12926         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
12927           System.Drawing when a toplevel window gets closed; there might
12928           be other toplevel windows belonging to the same app (Fixes #78052)
12929
12930 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
12931
12932         * FileDialog.cs: After reading FileDialog settings from mwf_config
12933           use Desktop prefix only if a real folder doesn't exist anymore.
12934         * FontDialog.cs: Added char sets.
12935           It is now possible to select the font, size or style with the
12936           textboxes.
12937
12938 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
12939
12940         * PrintPreviewDialog.cs: Use assembly name constants.
12941
12942 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12943
12944         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
12945           scrollbar from whacking it's buttons)
12946
12947 2006-08-24  Chris Toshok  <toshok@ximian.com>
12948
12949         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
12950         in this patch (aggregating setting Left/Top/Width/Height to
12951         setting Bounds on the scrollbars), but the crux of the fix is in
12952         Recalculate, where we scroll by the remaining scroll_position if
12953         we're hiding a scrollbar.  The 2*$5 reward in the comment is
12954         serious.
12955
12956 2006-08-24  Jackson Harper  <jackson@ximian.com>
12957
12958         * MdiClient.cs:
12959         * MdiWindowManager.cs: If the form is made a non-mdi window we
12960         need to remove the form closed event so that closing forms works
12961         correctly.
12962
12963 2006-08-24  Jackson Harper  <jackson@ximian.com>
12964
12965         * Control.cs: Make IsRecreating internal so that the driver can
12966         check it
12967         - Temporarily remove the Hide when controls are removed, its
12968         making a whole bunch of things not work because visibility isn't
12969         getting reset elsewhere correctly
12970         * Form.cs: Need to do a full handle recreation when the mdi parent
12971         is set.
12972         * XplatUIX11.cs: If we are recreating handles don't dispose the
12973         HWNDs.  What was happening is the handles were being recreated in
12974         SendWMDestroyMessages, but then flow continued on in that method
12975         and destroyed the new handles.
12976
12977 2006-08-23  Jackson Harper  <jackson@ximian.com>
12978
12979         * Form.cs: MdiClient is always at the back of the bus
12980         * Control.cs: When the order of items in the collection is changed
12981         we need to reset the all_controls array
12982         - do the same sorta setup thats done when adding a control when a
12983         control is set on the collection.
12984
12985 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12986
12987         * TextBoxBase.cs (get_Text): Return an empty array if our document
12988           is empty (fixes #79052)
12989
12990 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12991
12992         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
12993           on WM_SYSCHAR messages (fixes #79053)
12994
12995 2006-08-23  Chris Toshok  <toshok@ximian.com>
12996
12997         * DataGrid.cs: fix flickering when scrolling vertically.
12998
12999 2006-08-23  Chris Toshok  <toshok@ximian.com>
13000
13001         * DataGrid.cs (EndEdit): only invalidate the row header when we
13002         need to.
13003
13004 2006-08-23  Chris Toshok  <toshok@ximian.com>
13005
13006         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
13007         methods.  fixes the flicker when scrolling around.
13008
13009 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13010
13011         * FileDialog.cs: Making sure the control is created before we get a 
13012           chance to use it with BeginInvoke (Fixes #79096)
13013
13014 2006-08-23  Chris Toshok  <toshok@ximian.com>
13015
13016         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
13017         width to use when painting the rows.
13018
13019 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13020
13021         * TextBoxBase.cs:
13022           - Throw ArgumentException if a negative value is passed to SelectionLength
13023           - Update the selection end if start is moved. end needs to be always
13024             after start. (Fixes #79095)
13025           - Track selection length; MS keeps the selection length even if start
13026             is changed; reset on all other operations affection selection
13027
13028 2006-08-22  Jackson Harper  <jackson@ximian.com>
13029
13030         * TreeView.cs: Make sure both scrollbars get displayed and sized
13031         correctly when the other bar is visible.
13032         - Use the original clip rectangle for checking if the area between
13033         the two scrollbars is visible, not the viewport adjusted clipping
13034         rectangle.
13035
13036 2006-08-22  Jackson Harper  <jackson@ximian.com>
13037
13038         * Binding.cs: We don't use IsBinding because it requires the
13039         control to be created, which really shouldn't be necessary just to
13040         set a property on the control.
13041
13042 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13043
13044         * ComboBox.cs: Some CB.ObjectCollection methods must throw
13045         ArgumentNullReferenceException when the argument is null.
13046
13047 2006-08-21  Jackson Harper  <jackson@ximian.com>
13048
13049         * Timer.cs: Track the thread that the timer is started in (NOT
13050         CREATED), this way messages for it will only be triggered on its
13051         queue.
13052         * XEventQueue.cs: Track the timers here, this makes timers per
13053         thread, like MS.
13054         * XplatUIX11.cs: The timers are moved to the XEventQueue.
13055
13056 2006-08-19  Chris Toshok  <toshok@ximian.com>
13057
13058         * XplatUIX11.cs: after further communication with pdb, we get the
13059         best of both worlds.  SetZOrder working for un-Mapped windows, and
13060         no X errors for un-mapped windows.
13061
13062 2006-08-19  Chris Toshok  <toshok@ximian.com>
13063
13064         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
13065         as it was causing pdn toolbars to not have the correct stacking.
13066
13067 2006-08-18  Mike Kestner  <mkestner@novell.com> 
13068
13069         * ListView.cs : guard against negative ClientArea.Width in scrollbar
13070         calculation.  Not sure why control should ever be setting a negative
13071         width though.  Fixes #78931.
13072
13073 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13074
13075         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
13076         null items in ObjectCollection class.
13077         * ListBox.cs.: Likewise.
13078
13079 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
13080
13081         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
13082           as the base method in ThemeWin32Classic should work fine.
13083           Fixed bug #78607.
13084
13085 2006-08-18  Jackson Harper  <jackson@ximian.com>
13086
13087         * Binding.cs: When validating if the value entered doesn't convert
13088         properly reset to the old value.
13089         * RadioButton.cs: Don't fire click when we get focus.
13090
13091 2006-08-18  Jackson Harper  <jackson@ximian.com>
13092
13093         * FileDialog.cs: Paint the selection on the directory combobox the
13094         same way as on MS. 
13095
13096 2006-08-17  Jackson Harper  <jackson@ximian.com>
13097
13098         * ErrorProvider.cs: Don't allow the error control to be selected.
13099         * Control.cs: Don't send the SetFocus messages, the control
13100         activation will do this, and if we do it blindly here validation
13101         does not work.
13102
13103 2006-08-17  Jackson Harper  <jackson@ximian.com>
13104
13105         * Control.cs:
13106         * ContainerControl.cs: Make validation events fire in the correct
13107         order.  TODO: For some reason the first validation event is not
13108         getting fired.
13109
13110 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13111
13112         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
13113
13114 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13115
13116         * ComboBox.cs : implement scroll wheel support for popped-down
13117         state. Fixes #78945. 
13118
13119 2006-08-17  Jackson Harper  <jackson@ximian.com>
13120
13121         * TreeView.cs: Specify treeview actions (old patch that didn't get
13122         committed for some reason).
13123         - Don't let the mouse wheel scroll us too far.  Just want to make
13124         the bottom node visible, not scroll it all the ways to the top.
13125
13126 2006-08-17  Jackson Harper  <jackson@ximian.com>
13127
13128         * XplatUIX11.cs: Mouse wheel events go to the focused window.
13129
13130 2006-08-17  Mike Kestner  <mkestner@novell.com> 
13131
13132         * ComboBox.cs : don't do mouseover selection in simple mode.
13133
13134 2006-08-16  Jackson Harper  <jackson@ximian.com>
13135
13136         * Form.cs: Fire the closing events for all the mdi child windows
13137         when a window is closed.  If the cancel args are set to true, the
13138         main window still gets the event fired, but it doesn't not close.
13139         * MdiWindowManager.cs: Do this closing cleanup in a Closed
13140         handler, instead of when the button is clicked, so cancelling the
13141         close works correctly.
13142         * ComboBox.cs: Send the mouse down to the scrollbar.
13143
13144 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13145
13146         * ListBox.cs: When passing 'null' to SelectedItem,
13147         set SelectedIndex to -1, to unselect items. This is the
13148         observed behaviour in .Net.
13149
13150 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
13151
13152         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
13153           MS flags saying there won't be any. (fixes #78800)
13154         * Control.cs (HandleClick): Made virtual
13155
13156 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
13157
13158         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
13159           cultures. Fixed bug #78399.
13160
13161 2006-08-16  Jackson Harper  <jackson@ximian.com>
13162
13163         * Form.cs: Use the MdiClients MdiChildren property to access
13164         MdiChildren instead of creating the array from the child controls.
13165         * MdiClient.cs: Maintain a separate array of the mdi children, so
13166         that insertion order is maintained when the Z-order is changed.
13167
13168 2006-08-16  Mike Kestner  <mkestner@novell.com> 
13169
13170         * ListView.cs : add an ItemComparer and default to it for sorting.
13171         Fixes #79076, but sorting needs a complete overhaul to be compat with
13172         MS.
13173
13174 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13175
13176         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
13177
13178 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13179
13180         * Hwnd.cs (Mapped): Properly traverse the tree
13181
13182 2006-08-15  Chris Toshok  <toshok@ximian.com>
13183
13184         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
13185         pass manager.Current.GetType() to ParseData.  It has to be the
13186         property type.  So, hold off doing the ParseData until we're in
13187         SetPropertyValue where we know the type.  This fixes the crash in
13188         #78821 but the textbox is still empty.
13189
13190 2006-08-15  Chris Toshok  <toshok@ximian.com>
13191
13192         * DataGrid.cs:
13193         - when we're scrolling, only call Edit() again if the
13194         current cell is still unobscured. Fixes bug #78927.
13195         - when handling mousedown on a cell, ensure the cell is visible
13196         before calling Edit.
13197         - remove the properties from DataGridRow, and remove the
13198         DataGridParentRow class altogether.
13199         
13200
13201 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13202
13203         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
13204           fire OnTextChanged by ourselves. There's no point calling base,
13205           we don't set the base value anywhere else. Fixes #78773.
13206
13207 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13208
13209         * ListBox.cs: Call CollectionChanged when modifying
13210         an item from Items indexer, to update the actual items
13211         in the list box.
13212
13213 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13214
13215         * PrintDialog.cs: Small fixes for focus and a pair of checks,
13216         to match .Net behaviour.
13217
13218 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13219
13220         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
13221
13222 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
13223
13224         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
13225
13226 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
13227
13228         * MessageBox.cs: Prevent potential NRE exception.
13229         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
13230
13231 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13232
13233         * MessageBox.cs: Calculate the owner of a messagebox, also make
13234           it topmost. Fixes #78753
13235
13236 2006-08-14  Chris Toshok  <toshok@ximian.com>
13237
13238         * XplatUIX11.cs: A couple of fixes so that metacity will let us
13239         programmatically move windows.  first, set the PPosition hint as
13240         well as the USPosition hint.  Second include some code from pdb
13241         that sets the window type to NORMAL when we set the transient for
13242         hint.  This is because, in the absence of a window type, metacity
13243         thinks any window with TransientFor set is a dialog, and refuses
13244         to let us move it programmatically.  fascists.
13245
13246 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
13247
13248         * XplatUIX11.cs: When setting normal hints, take into consideration
13249           an different hints previously set so we don't delete them (fixes #78866)
13250
13251 2006-08-12  Chris Toshok  <toshok@ximian.com>
13252
13253         * ToolBarButton.cs: make Layout return a boolean, if something to
13254         do with the button's layout changed.
13255
13256         * ToolBar.cs:
13257         - add another parameter to Redraw, @force, which all existing
13258           calls set to true.
13259         - make the Layout function return a boolean which is true if the
13260           layout has actually changed.  Redraw now uses this (and @force)
13261           to determine when to invalidate.  At present the only place
13262           where @force can be false is the call from OnResize, when
13263           background_image == null.  So, resizing a toolbar when the
13264           layout doesn't change results in no drawing.
13265
13266 2006-08-12  Chris Toshok  <toshok@ximian.com>
13267
13268         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
13269         the VScrollBar and HScrollbar reversed.  oops.
13270
13271         * DataGrid.cs: fix the logic that assigns sizes to the implicit
13272         scrollbars.  we were assigning them twice (once in
13273         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
13274         therefore causing two scrollbar resizes (and redraws?) to happen
13275         per grid resize.
13276
13277 2006-08-12  Chris Toshok  <toshok@ximian.com>
13278
13279         * ToolBarButton.cs: redraw the entire button if the theme tells us
13280         to.
13281
13282         * Theme.cs: add ToolBarInvalidateEntireButton.
13283
13284         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
13285         buttons, just the border.
13286
13287         * ThemeNice.cs: redraw the entire toolbar button since we need to
13288         draw the highlight image.
13289
13290         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
13291         we need to redraw the entire button (not just the border).
13292
13293 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13294
13295         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
13296           for vertical bars. Fixes the mismatches shown by #78513
13297
13298 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
13299
13300         * FileDialog.cs: If a saved/remembered path doesn't exist
13301           anymore, fall back to "Desktop".
13302
13303 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
13304
13305         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
13306           parent. It's apparently legal to not have one
13307         * XplatUIX11.cs:
13308           - SetZOrder: Don't try to set Z-Order on an unmapped window
13309           - CreateWindow: 0,0 are legal coordinates for a window. don't move
13310             it unless the coordinates are negative
13311
13312 2006-08-10  Mike Kestner  <mkestner@novell.com>
13313
13314         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
13315         when setting to null per msdn docs.  Fixes #78854.
13316
13317 2006-08-10  Chris Toshok  <toshok@ximian.com>
13318
13319         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
13320         flickering by setting a clip rectangle on the Graphics when we
13321         need to redraw just a particular menuitem.  Also, rename "OnClick"
13322         to "OnMouseDown" to reflect what it actually is.
13323         
13324         * Form.cs: track the OnMouseDown change.
13325
13326 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
13327
13328         * CommonDialog.cs: Properly inherit the CreateParams from the form
13329           and only change what we need. Fixes #78865
13330
13331 2006-08-10  Chris Toshok  <toshok@ximian.com>
13332
13333         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
13334         flickering in flat mode (and most of the flickering in general) by
13335         only invalidating the button border (and not the entire rectangle)
13336         when the state changes.  A couple of cases still flicker:
13337         ToggleButtons, and the dropdown arrow case when the user mouse
13338         ups.
13339
13340 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
13341
13342         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
13343           for german keyboards. Numlock state shouldn't affect the behaviour
13344           of the Del key. Fixes bug #78291.
13345
13346 2006-08-10  Chris Toshok  <toshok@ximian.com>
13347
13348         * ListControl.cs: remove the items.Clear line from BindDataItems,
13349         as this is the first thing done by both subclasses in their
13350         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
13351         passed -1, refresh the list.  This gets databinding working when
13352         the datasource is set on the list before the datasource is
13353         populated (as in wf-apps/ReportBuilder.)
13354
13355         * ComboBox.cs: remove the argument to BindDataItems.  This call
13356         should really go away, and be initiated by the ListControl code.
13357
13358         * ListBox.cs: same.
13359
13360 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
13361
13362         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
13363           if no data is in the document when the control is displayed
13364
13365 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
13366
13367         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
13368           yes (fixes #78806)
13369         * TextControl.cs: 
13370           - PositionCaret: Allow positioning of caret but don't call methods 
13371             requiring a handle if the window isn't created yet
13372           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
13373           - owner_HandleCreated: Don't position the caret, just update it's 
13374             location. User might have already set a different position
13375
13376 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
13377
13378         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
13379           windows. Screws up the returned coordinates for child windows. 
13380           Fixes #78825. I'm hoping this doesn't break something, since the
13381           code was explicitly put in 8 months ago, but no bug was attached.
13382           Menus still seem to work properly.
13383
13384 2006-08-08  Chris Toshok  <toshok@ximian.com>
13385
13386         * DataGrid.cs: make BeginInit/EndInit actually do what they're
13387         supposed to do - delay data binding until the EndInit call.  Also,
13388         make the table style collection's CollectionChangeAction.Refresh
13389         work properly.
13390
13391         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
13392         (with action = Refresh) when a consituent table's MappingName is
13393         changed.
13394
13395 2006-08-08  Chris Toshok  <toshok@ximian.com>
13396
13397         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
13398         Invalidate, since changing the text can change the size of the all
13399         toolbar buttons.
13400
13401 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13402
13403         * Form.cs (AddOwnedForm): Still need to add the form to our listif
13404           we don't have it yet
13405
13406 2006-08-08  Chris Toshok  <toshok@ximian.com>
13407
13408         * PrintControllerWithStatusDialog.cs: don't .Close() the status
13409         dialog, as this causes X errors later on, since we actually
13410         destroy the window.  Instead, .Hide() it.
13411
13412 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13413
13414         * ComboBox.cs: Added focus reflection for popup window
13415         * XplatUIX11.cs: 
13416           - Removed transient setting for non-app windows for now, not sure it
13417             was needed
13418           - Fixed logic checking if we have captions when deciding 
13419             override_redirect, WS_CAPTION is two bits and a 0 check was not
13420             sufficient
13421           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
13422             complicated
13423         * Form.cs: 
13424           - AddOwnedForm: Don't just add the form to the list, call the property
13425             to ensure the driver is informed about the ownership as well
13426           - CreateHandle: Set the TopMost status in the driver if we have an owner
13427         * XplatUI.cs: Fixed debug statement
13428
13429 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
13430         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13431           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
13432           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
13433           TrackBarRenderer.cs: Make constructor private.
13434         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
13435         * ProfessionalColorTable.cs: Make properties virtual.
13436
13437 2006-08-06  Duncan Mak  <duncan@novell.com>
13438
13439         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
13440         is not changing.
13441
13442 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13443         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13444           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
13445           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
13446           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
13447           Initial import of new 2.0 classes.
13448
13449 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13450         * Application.cs: Add 2.0 VisualStyles properties.
13451
13452 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13453         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
13454           XplatUIX11.cs: Create property to allow access to existing private
13455           variable "themes_enabled"
13456
13457 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13458
13459         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
13460         file size, as otherwise our class libraries fail using windows. Fixes
13461         bug #78759.
13462
13463 2006-08-04  Jackson Harper  <jackson@ximian.com>
13464
13465         * Form.cs:
13466         * XplatUIX11.cs: Move the toolwindow window manager creation into
13467         the X11 driver, this way on win32 we can let windows create/handle
13468         the toolwindows.
13469
13470 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13471
13472         * PrintDialog.cs: Remove some redundant checks, add some others,
13473         clean some code, and move the focus to the text boxes when the
13474         values are incorrect.
13475
13476 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
13477
13478         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
13479
13480 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13481
13482         * NumericUpDown.cs: Setting the Minimum and Maximum is now
13483           handled correctly. Fixes bug #79001.
13484
13485 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13486
13487         * PrintDialog.cs: The "Copies" numeric up down must have
13488         set the Minimum property to 1; only if the value is bigger
13489         than 1, activate "Collate" check box. This is the behaviour of .Net.
13490         Also modify the Document elements only if it is not null.
13491
13492 2006-08-03  Jackson Harper  <jackson@ximian.com>
13493
13494         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
13495         length. (We have a larger array then actual node count).
13496                 
13497 2006-08-03  Jackson Harper  <jackson@ximian.com>
13498
13499         * ComboBox.cs: Don't show selection by default.
13500         - The SelectAll isn't needed here, since the focus code should do
13501         that
13502         - DDL style lists to manual selection drawing, so when they
13503         get/lose focus they have to invalidate.
13504
13505 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
13506
13507         * TextBoxBase.cs: Don't always show all selections by default.
13508
13509 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
13510         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
13511           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
13512           Fixed various typos.
13513
13514 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13515
13516         * Control.cs: Removing the controls in a ControlCollection with
13517           Clear now hides the controls as expected. Fixes bug #78804. 
13518
13519 2006-08-03  Jackson Harper  <jackson@ximian.com>
13520
13521         * Control.cs: Revert previous focus patch, it breaks reflector.
13522
13523 2006-08-03  Jackson Harper  <jackson@ximian.com>
13524
13525         * ComboBox.cs: Cleanup selection and focus with the combobox.
13526         This also eliminates some duplicated keyboard code, since now
13527         everything is handled by the main class.
13528         - Make list selection work on mouse up instead of down, to match
13529         MS.
13530
13531 2006-08-02  Jackson Harper  <jackson@ximian.com>
13532
13533         * Control.cs: Setting focus needs to go through the whole
13534         selection mechanism.
13535
13536 2006-08-02  Chris Toshok  <toshok@ximian.com>
13537
13538         * PrintPreviewDialog.cs: change MinimumSize to use
13539         base.MinimumSize so it works.
13540
13541 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
13542
13543         * TextControl.cs:
13544           - UpdateCaret: Added sanity check in case caret isn't defined yet
13545           - Line.Delete: Now updating selection and caret markers if we're
13546             transfering a node (Properly fixes #78323)
13547           - SetSelectionEnd: Added sanity check
13548         * TextBoxBase.cs: Removed broken attempt to fix #78323
13549
13550 2006-08-01  Chris Toshok  <toshok@ximian.com>
13551
13552         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
13553         Close() call is handled in Form, not here.
13554
13555 2006-08-01  Chris Toshok  <toshok@ximian.com>
13556
13557         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
13558         layout/rendering.
13559
13560         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
13561         for sizes < 100% zoom.  The code now aggressively attempts to keep
13562         from calling document.Print (), and tries not to use the scaling
13563         g.DrawImage whenever possible (it still does if you scale to >
13564         100%, since usually that involves huge images).
13565
13566         * PrintPreviewControl.cs: hook up the close button.
13567
13568 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
13569         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
13570           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
13571           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
13572           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
13573           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
13574           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
13575           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
13576           Removed [Serializable] for 2.0 Event Handlers.
13577
13578 2006-07-31  Jackson Harper  <jackson@ximian.com>
13579
13580         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
13581         * TextControl.cs: Uncomment out the body of this method.
13582
13583 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
13584
13585         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
13586           standard cursors.
13587
13588 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13589
13590         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
13591           that embed TextBox and need selections visible even if textbox is not
13592           focused to enforce that behaviour.
13593         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
13594           selection drawing
13595
13596 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13597
13598         * TextControl.cs:
13599           - Added new SetSelectionStart/SetSelectionEnd overloads
13600           - Fixed viewport width assignment to be accurate
13601           - Adjusted alignment line shift calculations to allow cursor on right
13602             aligned lines to be always visible at the right border (like MS)
13603         * TextBoxBase.cs:
13604           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
13605           - TextBoxBase_SizeChanged: recalculating canvas on size changes
13606           - CalculateScrollBars: Use ViewPort size instead of window size, to
13607             properly consider space occupied by the border and scrollbars 
13608             (Fixes #78661)
13609           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
13610             calculations; no longer leaves artifacts
13611           - CaretMoved: Adjusted window scrolling to match MS and fixed several
13612             calculation bugs (Still missing right/center align calculations)
13613
13614 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
13615
13616         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
13617           use of both scroll rect and clip rect, as they do the same.
13618
13619 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13620
13621         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
13622           in the event handler (fixes #78912)
13623
13624 2006-07-31  Chris Toshok  <toshok@ximian.com>
13625
13626         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
13627         grid.ListManager.Count, since grid.ListManager might be null.
13628         This of course begs the question "why are we drawing rows for a
13629         grid with no list manager (and therefor no rows)?"  Fixes the
13630         crash in bug #78929.
13631
13632 2006-07-31  Chris Toshok  <toshok@ximian.com>
13633
13634         * RelatedPropertyManager.cs: Don't always chain up to the parent
13635         ctor.  instead, call SetDataSource if the parent's position is !=
13636         -1.  Fixes the crash in #78822.
13637
13638 2006-07-31  Chris Toshok  <toshok@ximian.com>
13639
13640         * DataGrid.cs (get_ListManager): use field instead of property
13641         accessors for datasource and datamember.
13642         (RowsCount): make internal again.
13643         (OnMouseDown): end edits before resizing columns/rows.
13644         (OnMouseUp): restart edits after resizing columns/rows.
13645
13646 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
13647
13648         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
13649           This fixes the situation where the last set cursor is displayed
13650           whenever the mouse is over scrollbars.
13651
13652 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13653
13654         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
13655         Document properties, as well as initial values.
13656
13657 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
13658
13659         * XplatUIWin32.cs (SetBorderStyle): Setting both border
13660           and ClientEdge results in a 3-pixel border, which is
13661           wrong.
13662
13663 2006-07-28  Jackson Harper  <jackson@ximian.com>
13664
13665         * TreeNodeCollection.cs: Fix the clear method.
13666         - Fix the Shrink also
13667
13668 2006-07-27  Jackson Harper  <jackson@ximian.com>
13669
13670         * TreeView.cs: Make sure the visible order is computed when we
13671         attempt to size the scrollbars (for trees that mess with the
13672         scrolling when they shouldn't.
13673         - Make sure to give the scrollbars valid values.
13674
13675 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13676
13677         * XplatUIX11.cs: Move motion compression code to where it
13678           has less performance impact
13679
13680 2006-07-26  Jackson Harper  <jackson@ximian.com>
13681
13682         * UpDownBase.cs: When the control is selected make the child
13683         controls non selectable, so that a click on them won't do a
13684         focus/unfocus cycle.
13685         - Don't give focus to the text box when the spinner is selected.
13686         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
13687
13688 2006-07-26  Chris Toshok  <toshok@ximian.com>
13689
13690         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
13691         satisfied with this solution.  If the bitmaps are small, we should
13692         just cache them in the PrintPreviewDialog and draw them here.
13693         Also, the layout is broken for the 2-up and 3-up cases.
13694
13695         * Theme.cs: add PrintPReviewControlPaint.
13696
13697         * PrintPreviewDialog.cs: first pass implementation.
13698
13699         * PrintPreviewControl.cs: first pass implementation.  No
13700         scrollbars yet.
13701
13702         * PrintDialog.cs: only validate fields if that particular portion
13703         of the UI is enabled.  Also, set the document's controller to a
13704         PrintControllerWithStatusDialog wrapping the document's print
13705         controller.
13706
13707         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
13708         bring up a SaveFileDialog (i hope we don't want to match the
13709         behavior of the crappy windows file entry) and set the
13710         PrinterSettings.PrintFileName accordingly.
13711
13712 2006-07-26  Jackson Harper  <jackson@ximian.com>
13713
13714         * ContainerControl.cs: Add a field that disables auto selecting
13715         the next control in a container when the container is activated.
13716         * UpDownBase.cs: Don't select the text box when the up down is
13717         selected.
13718
13719 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13720
13721         * XEventQueue.cs: Added methods for peeking (used for compression
13722           of successive events)
13723         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
13724           mouse move events (fixes #78732)
13725
13726 2006-07-25  Jackson Harper  <jackson@ximian.com>
13727
13728         * UpDownBase.cs: Use an internal class for the textbox so that we
13729         can control focus.  the updown control should always have focus,
13730         if either the text area or the buttons are clicked.
13731         - Send the key messages to the textbox, since it never actually
13732         has focus
13733         - Activate and decativate the textbox caret.
13734
13735 2006-07-24  Jackson Harper  <jackson@ximian.com>
13736
13737         * Control.cs: Use the directed select when selecting a control,
13738         this way the container controls override will get called and the
13739         whole ActiveControl chain will get triggered.  TODO: probably need
13740         to make sure this gets done everywhere instead of the old
13741         Select(Control).
13742         * ContainerControl.cs: Implement the directed Select method to
13743         find and activate the correct child control.    
13744         
13745 2006-07-22  Mike Kestner  <mkestner@novell.com>
13746
13747         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
13748         menu handling code so that clicks without a grab work too.
13749         [Fixes #78914]
13750
13751 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
13752
13753         * FileDialog.cs: Enable the BackButton when dirstack has one element.
13754           Added some small optimizations.
13755
13756 2006-07-21  Matt Hargett  <matt@use.net>
13757
13758         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
13759
13760 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
13761
13762         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
13763           tests pass and match MS in some strange border cases.
13764
13765 2006-07-21  Chris Toshok  <toshok@ximian.com>
13766
13767         * ThemeWin32Classic.cs: handle drawing of the relation links and
13768         parent row buttons.
13769
13770         * Theme.cs: change args to DataGridPaintParentRow.
13771
13772         * DataGrid.cs: Don't use controls for the relation links and
13773         parent buttons, so we have to handle all their interactions in
13774         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
13775         when we're navigating through child tables, so we can reinstate
13776         selection, expanded state, current cell, etc.
13777
13778 2006-07-20  Chris Toshok  <toshok@ximian.com>
13779
13780         * ToolBar.cs: When we redraw a button, for whatever reason,
13781         there's no reason to redraw the entire toolbar.  Also, don't call
13782         Control.Refresh from within Redraw, as it's much heavier than
13783         Invalidate (which is really what we want).
13784
13785 2006-07-20  Chris Toshok  <toshok@ximian.com>
13786
13787         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
13788         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
13789         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
13790         traces from within a debug IBindingList datasource
13791         (in mono/winforms/datagrid) for *days*, I've finally gotten things
13792         to work in a similar fashion.
13793
13794 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13795
13796         * ListBox.cs: Don't call Sort () when setting 
13797         the Sorted property to false (avoid an unnecessary sort).
13798
13799 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13800
13801         * ListControl.cs: DataSource should throw an ArgumentException
13802         instead of a normal exception when the argument is not of the 
13803         correct type.
13804
13805 2006-07-20  Mike Kestner  <mkestner@novell.com>
13806
13807         * Control.cs: add InternalPreProcessMessage to allow us to steal
13808         key events before MWF gets its paws on them.  Adapted from a
13809         suggestion by eno.
13810         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
13811         up/down/left/right navigation. Override the new internal control
13812         method to steal the events since they never make it to WndProc.
13813         * ToolBarButton.cs: don't worry about pushed when setting hilight
13814         since the drawing code prefers pushed to hilight. Invalidate on 
13815         Hilight changes. Fixes #78547 and #78525.
13816
13817 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13818
13819         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
13820           the canvas size. Fixes #78868
13821
13822 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
13823
13824         * Splitter.cs: Track requested split position until first layout
13825           is performed. Fixes #78871
13826
13827 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13828
13829         * Application.cs: Removed code that forces 1.x for the version
13830           number if the version started with 0. Not sure why that code was
13831           there and I couldn't find any bugs that indicated we needed it.
13832           Fixes #78869
13833
13834 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
13835
13836         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
13837           ResetDefaults(), just write some output to the console until it's
13838           implemented. Fixes bug #78907 for now. Eliminated two warnings.
13839
13840 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
13841
13842         * PropertyGridView.cs: set StartPosition of drop down forms
13843         so they appear in correct initial spot.  Fixes #78190.
13844
13845 2006-07-19  Mike Kestner  <mkestner@novell.com>
13846
13847         * ThemeWin32Classic.cs: use parent background color when drawing
13848         flat toolbars.  Restructure the conditionals to make sure non-flat
13849         non-Divider toolbars are filled too.  Fixes #78837.
13850
13851 2006-07-19  Mike Kestner  <mkestner@novell.com>
13852
13853         * ListBox.cs: Sort on collection changes even if the handle
13854         isn't created yet.  Fixes #78813.
13855
13856 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13857
13858         * ListControl.cs: DisplayMember should never be null,
13859         and now we assign String.Empty when null is passed to it (this
13860         is the .Net way).
13861
13862 2006-07-17  Mike Kestner  <mkestner@novell.com>
13863
13864         * ListViewItem.cs: restructure Font and subitem Font handling 
13865         to hold a specific font and refer back to owner on null.
13866         Fixes #78761.
13867
13868 2006-07-17  Mike Kestner  <mkestner@novell.com>
13869
13870         * ToolBar.cs: bandaid for side-effect of previous patch which was
13871         discarding explicit heights for non-AutoSize toolbars.  Need to
13872         extend my format tester to deal with AutoSize=false. Fixes #78864.
13873
13874 2006-07-15  Jackson Harper  <jackson@ximian.com>
13875
13876         * LabelEditTextBox.cs:
13877         * TreeView.cs: Use a new LabelEdit class for node editing, this
13878         class automatically 'closes' itself when it gets the enter key or
13879         loses focus.
13880         - Use the client rectangle when setting the trees scrollbars, so
13881         border style is taken into account.
13882         
13883 2006-07-14  Jackson Harper  <jackson@ximian.com>
13884
13885         * TreeNode.cs:
13886         * TreeView.cs: Make the editing work similar to MSs, firing the
13887         events correctly and ending edits correctly.
13888
13889 2006-07-14  Mike Kestner  <mkestner@novell.com>
13890
13891         * ToolBarButton.cs:
13892         * ToolBar.cs: layout restructuring and redraw enhancements to support
13893         formatting changes gracefully, like setting TextAlign, ImageList, 
13894         ButtonSize, and Appearance.  Handles explicit button sizing quirks
13895         of the MS controls.  Things like flat toolbars ignoring button size
13896         but becoming constant sized at the largest button's size.  Normal
13897         toolbars with an image set cannot be shrunk smaller than the image,
13898         but text can be clipped/ignored.
13899         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
13900         is zero.  Seems like DrawString should be smart enough to not put
13901         anything on screen though. Also trim labels and ellipsize at the char
13902         boundary, not word.
13903         Fixes #78711 and #78483.
13904
13905 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13906
13907         * FolderBrowserDialog.cs: Disable "New Folder" button and
13908           "New Folder" contextmenu menuitem if a folder like "My Computer"
13909           is selected.
13910
13911 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13912
13913         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
13914         * FolderBrowserDialog.cs:
13915           - Use MWFConfig to store and read size and position settings
13916           - Added code to create a new folder (button or context menu).
13917             Use TreeView labeledit to change the name of the new folder.
13918
13919 2006-07-14  Jackson Harper  <jackson@ximian.com>
13920
13921         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
13922         when the tree is scrolled we end editing.
13923
13924 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13925
13926         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
13927           Down arrows
13928
13929 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
13930
13931         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
13932         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
13933         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
13934         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
13935         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
13936         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
13937         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
13938         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
13939         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
13940         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
13941         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
13942         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
13943         ListViewItemSelectionChangedEventHandler.cs,
13944         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
13945         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
13946         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
13947         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
13948         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
13949         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
13950         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
13951         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
13952         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
13953         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
13954         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
13955         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
13956         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
13957         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
13958         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
13959         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
13960         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
13961         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
13962         WebBrowserNavigatingEventHandler.cs, 
13963         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
13964
13965 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
13966
13967         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
13968         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
13969         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
13970         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
13971         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
13972         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
13973         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
13974         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
13975         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
13976         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
13977         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
13978         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
13979         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
13980         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
13981         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
13982         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
13983         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
13984         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
13985         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
13986         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
13987         ListViewItemStates.cs, MaskFormat.cs: Added
13988
13989 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
13990
13991         * PropertyGridView.cs: Fix keyboard navigation of drop down.
13992         Patch from eno for bug 78558.
13993         
13994 2006-07-13  Jackson Harper  <jackson@ximian.com>
13995
13996         * TreeView.cs: When an edit is finished make sure that the
13997         selected node is visible.
13998         - When setting the top/bottom use the scrollbars is_visible, so
13999         everything will be set correctly even if the tree isn't visible
14000         yet.
14001
14002 2006-07-13  Jackson Harper  <jackson@ximian.com>
14003
14004         * ComboBox.cs: Revert the item->index part of my previous patch.
14005         * TreeView.cs: Use LostFocus instead of Leave for detecting when
14006         the edit box has lost focus (duh).
14007         - Just make the edit box not visible when we get return, that will
14008         take the focus, which will call EndEdit
14009         * TreeNode.cs When we start editing, notify the treeview.
14010
14011 2006-07-12  Jackson Harper  <jackson@ximian.com>
14012
14013         * ComboBox.cs: Clear out old items before setting the item list.
14014         This prevents databound controls from having their items added
14015         twice.
14016         - Switch the combobox to use indices whereever possible instead of
14017         using Item's.  This allows usto navigate through lists that have
14018         more then one item with the same string value (ie a, b, b, a).
14019         - Scroll the listboxes scrollbar when a non visible item is
14020         highlighted
14021         - Allow keypress to cycle through all the possible values. For
14022         example if you have b1, b2, b3 and hold down the B key all the
14023         values will be cycled through.
14024         
14025 2006-07-12  Jackson Harper  <jackson@ximian.com>
14026
14027         * TextBoxBase.cs:
14028         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
14029         this using the internal methods.
14030         * Control.cs: Add OnGotFocusInternal.  A new method that allows
14031         controls to "override" OnGotFocus and change focus behavior if
14032         needed.
14033         - Same thing for LostFocus
14034         * ComboBox.cs: Pass off focus to the text control properly.
14035
14036 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
14037
14038         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
14039         * FolderBrowserDialog.cs: Almost a complete rewrite.
14040           - Better support for Environment.Specialfolders
14041           - Added support for MWFVFS
14042           - Made setting SelectedPath work
14043
14044 2006-07-12  Jackson Harper  <jackson@ximian.com>
14045
14046         * Control.cs: Optimze getting all the controls.
14047
14048 2006-07-11  Jackson Harper  <jackson@ximian.com>
14049
14050         * ContainerControl.cs: Override SETFOCUS in the container control,
14051         so that it is not selected on mouse click.
14052
14053 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
14054
14055         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
14056           Hopefully we will have a better way once all of focus is complete.
14057
14058 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
14059
14060         * ThemeWin32Classic.cs: Commented out some debug code and fixed
14061           a compile error with csc.
14062
14063 2006-07-11  Jackson Harper  <jackson@ximian.com>
14064
14065         * Control.cs: When hiding a control only select the next control
14066         if the current control was focused.
14067         - Don't handle enter/leave when setting/killing focus, this is
14068         done by the container control.
14069         - Remove is_selected, it's not needed anymore.
14070         - Add utility methods for selecting a child control, and for
14071         firing the Enter/Leave events.
14072         * ContainerControl.cs: When a control is activated fire the
14073         enter/leave events.
14074         - Don't wrap when processing the tab key, so that focus can be
14075         moved outside of the container.
14076         - Use the correct active control
14077
14078 2006-07-11  Jackson Harper  <jackson@ximian.com>
14079
14080         * ComboBox.cs: Remove some debug code that was blinding me.
14081         * UpDownBase.cs: These controls actually aren't implicit, they are
14082         visible to the user.
14083
14084 2006-07-10  Chris Toshok  <toshok@ximian.com>
14085
14086         * DataGrid.cs: move back to the is_adding boolean field.  god i
14087         hate this is_editing/is_adding/is_changing stuff.
14088
14089 2006-07-10  Chris Toshok  <toshok@ximian.com>
14090
14091         * DataGridTableStyle.cs: just check if the property type is bool.
14092         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
14093         Don't use CanRenderType.
14094
14095         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
14096         if our text == NullText.  Remove CanRenderType.
14097
14098         * DataGridBoolColumn.cs: nuke CanRenderType.
14099
14100         * DataGrid.cs: reenable some code to end the current edit inside
14101         of set_CurrentCell.  This fixes the other 1.1.16 regression.
14102         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
14103         Also, remove the visible_row_count arg from CalcRowHeaders, since
14104         we don't need to worry about the actual height of the area.
14105
14106 2006-07-10  Chris Toshok  <toshok@ximian.com>
14107
14108         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
14109         mode, just return.
14110
14111         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
14112         the real sense of the IsInEditOrNavigateMode property (true =
14113         navigate, false = edit).  Also, update OnKeyPress to reflect this.
14114
14115         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
14116         column style exists, we still need to set its property descriptor
14117         to match up with our list manager.
14118
14119 2006-07-10  Chris Toshok  <toshok@ximian.com>
14120
14121         * ThemeWin32Classic.cs: implement the new row/header painting
14122         approach.  The parent row painting will likely go away and
14123         replaced with label controls, but the rest seems to work ok (and
14124         efficiently).
14125
14126         * Theme.cs: change the way we draw datagrid rows.  we don't draw
14127         the row headers as a block now.  Instead we draw them in the
14128         normal draw-row loop.  Add some calls for drawing parent rows and
14129         relation rows.
14130
14131         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
14132         a default table style.  Set the defaults from ThemeEngine.Current,
14133         not SystemColors.  Fix lots of misc issues with property setters.
14134
14135         * DataGrid.cs: move loads of style information out of this class
14136         as it's being duplicated with DataGridTableStyle.  keep track of a
14137         special DataGridTableStyle for the properties we used to mirror
14138         here.  Switch all the style properties to access this table style
14139         instead of instance fields of this class.  Also add a internal
14140         class to represent parent rows (more needs to be stored here, like
14141         the selection state from the parent table, as well as the
14142         expansion state.)  Also, for datasources with relations, do the
14143         right thing for collapse/expand, and add support for the
14144         navigation/parent row buttons.
14145
14146         Lastly, fix the crash in the 1.1.16 build.
14147
14148         * GridTableStylesCollection.cs: make the explicit interface
14149         implementations call the class's methods as opposed to duplicating
14150         them.
14151
14152         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
14153         0 so the text doesn't jump around when we move the cursor.
14154
14155 2006-07-10  Jackson Harper  <jackson@ximian.com>
14156
14157         * TextBoxBase.cs:
14158         * ListBox.cs: Match MS's ToString (this makes debugging focus
14159         stuff infinitely easier).
14160
14161 2006-07-10  Jackson Harper  <jackson@ximian.com>
14162
14163         * Control.cs (SelectNextControl): When checking the control's
14164         parent use this instead of ctrl.parent so that null can be passed
14165         to SelectNextControl. (I have unit tests for this).
14166         - Remove unused var.
14167
14168 2006-07-10  Chris Toshok  <toshok@ximian.com>
14169
14170         * CurrencyManager.cs: correct one regression, the removal of the
14171         finalType field.  Also, add a MonoTODO on CanAddRows, implement
14172         Refresh() correctly, and fix some event emission in
14173         ListChangedHandler.
14174
14175 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14176
14177         * FileDialog.cs: Don't use brackets for new folders if they exist
14178           under *nix. Instead use -(number of existing folders +1).
14179
14180 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
14181
14182         * FileDialog.cs:
14183           - Fixed really nasty bug #78771
14184           - Don't block the whole GUI when reading directories with a lot of
14185             entries. Use an other thread instead and call BeginInvoke to
14186             update the ListView in MWFFileView
14187
14188 2006-07-07  Chris Toshok  <toshok@ximian.com>
14189
14190         * Control.cs (Dispose): release any Capture when disposing.
14191
14192 2006-07-07  Chris Toshok  <toshok@ximian.com>
14193
14194         * LinkLabel.cs (Select): if we chain up to the parent, set
14195         focused_index to -1 so we'll search for the first available link
14196         the next time the user tabs into us.  Also, if the direction is
14197         backward and focused_index == -1, start the search from the last
14198         element.
14199
14200 2006-07-07  Chris Toshok  <toshok@ximian.com>
14201
14202         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
14203         is beyond the end of the text, don't do anything.
14204         (CreateLinkPieces): set our ControlStyles.Selectable based on
14205         whether or not we have any links.
14206         (Link.Invalidate): use a loop instead of foreach.
14207         (Link.set_Start): null out owner.sorted_links so it'll be
14208         recreated by CreateLinkPieces.
14209
14210 2006-07-06  Chris Toshok  <toshok@ximian.com>
14211
14212         * LinkLabel.cs: revert the SetStyle change.
14213
14214 2006-07-06  Chris Toshok  <toshok@ximian.com>
14215
14216         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
14217         (OnEnableChanged): s/Refresh/Invalidate
14218         (OnGotFocus): if we have a focused index already, refocus it (so
14219         if we mouse out/in to the window it'll focus the right link).
14220         (OnKeyDown): move the tab handling out of here.
14221         (OnLostFocus): don't set focused_index to -1, so we can refocus it
14222         when we lose focus.
14223         (OnMouseDown): don't Capture here - Control handles it.  Also,
14224         focus the active link.
14225         (OnMouseUp): don't deal with Capture.
14226         (OnPaintBackgroundInternal): remove.
14227         (OnTextAlignChanged): CreateLinkPieces before calling the
14228         superclass's method.
14229         (OnTextChanged): call CreateLinkPieces before calling superclass's
14230         method.
14231         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
14232         move around.
14233         (Select): implement this, moving the selection between different
14234         links, and call parent.SelectNextControl if we don't have another
14235         link to focus in the given direction.
14236         (CreateLinkPieces): call Invalidate instead of Refresh.
14237         
14238 2006-07-06  Chris Toshok  <toshok@ximian.com>
14239
14240         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
14241         new LinkLabel internals.
14242
14243         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
14244         over pieces looking for active/focused/etc links.  also, deal with
14245         runs of text (and links) with embedded \n's in them, and use
14246         MeasureCharacterRanges instead of MeasureString to figure out the
14247         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
14248         two-step.
14249
14250 2006-07-04  Jackson Harper  <jackson@ximian.com>
14251
14252         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
14253         XKB or key auto repeat, do it manually.  Without key auto repeat,
14254         when a key is held down we get key press, key release, key press,
14255         key release, ... with auto repeat we get key press, key press, key
14256         press ..., and then a release when the key is actually released.
14257
14258 2006-07-03  Jackson Harper  <jackson@ximian.com>
14259
14260         * TabControl.cs:
14261         * ThemeWin32Classic.cs: Tabs do not obey normal background color
14262         rules, they are always control color regardless of the background
14263         color.
14264
14265 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
14266
14267         * FileDialog.cs: Added internal class MWFConfig.
14268           Removed Registry support and replaced it with support for the new
14269           MWFConfig class. See MWFConfig comments for more information.
14270
14271 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
14272
14273         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
14274           rectangle. Added some patches from eno from bug #78490 and fixed
14275           the arrow position for small up and down CPDrawScrollButtons.
14276
14277 2006-06-30  Jackson Harper  <jackson@ximian.com>
14278
14279         * InternalWindowManager.cs: Remove some debug code.
14280         * Form.cs: When an MdiParent is set to null, the window is
14281         "detatched" and becomes a normal window.
14282         * MdiClient.cs: Don't bring the new child form to the front until
14283         it is activated (setting it as active does this), this makes the
14284         previously active forms titlebar get redrawn as inactive.
14285
14286 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
14287
14288         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
14289           with later controls
14290
14291 2006-06-29  Mike Kestner  <mkestner@novell.com>
14292
14293         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
14294         arrow in keynav state.  Fixes #78682.
14295
14296 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14297
14298         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
14299           order (fixes #78393)
14300
14301 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
14302
14303         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
14304           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
14305           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
14306           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
14307           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
14308           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
14309           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
14310           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
14311           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
14312           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
14313           enumerations (FlagsAttribute, SerializableAttribute, added/removed
14314           values)
14315
14316 2006-06-28  Mike Kestner  <mkestner@novell.com>
14317
14318         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
14319
14320 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
14321
14322         * PropertyGrid.cs,
14323           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
14324           item lines from other area (It also makes BackColor consistent and
14325           compatible with .NET). Fixed bug #78564.
14326
14327 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
14328
14329         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
14330         Patch from Eno for #78555.
14331
14332 2006-06-27  Chris Toshok  <toshok@ximian.com>
14333
14334         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
14335
14336         * DataGridColumnStyle.cs: same.
14337
14338         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
14339         
14340         * DataGridDrawingLogic.cs: nuke.
14341
14342 2006-06-27  Chris Toshok  <toshok@ximian.com>
14343
14344         * DataGridTableStyle.cs: clean up the constructors, and build the
14345         list of child relations for this table.  I have no idea if this is
14346         where we should be doing it (it probably isn't), but since we're
14347         already iterating over the properties..
14348
14349         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
14350         struct and array for keeping track of row information, similar to
14351         what's shown in a hack on
14352         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
14353
14354         * Theme.cs: be consistent about the naming of DataGrid methods,
14355         prefering ColumnWidths and RowHeights over columnsWidths and
14356         RowsHeights.
14357
14358         * ThemeWin32Classic.cs: same, and also add support for variable
14359         sized rows (and the +/- expansion icons for related rows).
14360
14361 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
14362
14363         * TextBoxBase.cs: Applied Eno's patch from #78660
14364
14365 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
14366
14367         * Form.cs (ScaleCore): We don't want to scale our form if it's
14368           state is minimized or maximized, but we still need to scale our
14369           child windows. Also, added try/finally block to ensure layout
14370           gets reset (Fixes #78697)
14371
14372 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
14373
14374         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
14375
14376 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
14377
14378         * Form.cs: Fixed c+p error and added check to resize form if minimum
14379           size is bigger than current size (Fixes #78709)
14380
14381 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
14382
14383         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
14384
14385 2006-06-26  Mike Kestner  <mkestner@novell.com>
14386
14387         * ComboBox.cs: only do Keypress handling in the combo when there  
14388         are items in the collection. Fixes #78710.
14389
14390 2006-06-26  Chris Toshok  <toshok@ximian.com>
14391
14392         * Binding.cs: make this work bi-directionally.  also, clear up
14393         other mixups between Push/Pull Data (e.g. we're supposed to pull
14394         data when validating).
14395
14396         * BindingManagerBase.cs: trim some fully qualified collection
14397         types.
14398
14399         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
14400
14401 2006-06-23  Chris Toshok  <toshok@ximian.com>
14402
14403         * PropertyManager.cs: It appears (according to the unit tests)
14404         that PropertyManager doesn't use
14405         PropertyDescriptor.AddValueChanged to track propery value changes
14406         in its datasource, but uses the same scheme as Binding, where it
14407         looks for a <Property>Changed event and binds to it.
14408
14409         Also, according to the docs, IsSuspended always returns false for
14410         a property manager with a non-null datasource.
14411
14412 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
14413
14414         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
14415           need to update the actual DialogResult. (Fixes #78613)
14416
14417 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
14418
14419         * Form.cs (ShowDialog): Release any captures before running the
14420           new message pump (fixes #78680)
14421
14422 2006-06-22  Mike Kestner  <mkestner@novell.com>
14423
14424         * ListView.cs: Layout column widths properly in details mode even 
14425         if HeaderStyle.None is set.  Fixes #78691.
14426
14427 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
14428
14429         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
14430
14431 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
14432
14433         * Control.cs (ContainsFocus): Using new driver method to get focused
14434           window, instead of trying to use internal tracking var, which can
14435           recursion issues (Fixes #78685)
14436         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
14437           XplatUIWin32.cs: Added GetFocus method to return focused window
14438
14439 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14440
14441         * ColorDialog.cs: when the mouse button is pressed inside the color
14442         matrix, don't let the cursor move out of it until the button is
14443         released, which is the behavior on windows. Changed 'colours' by
14444         'colors' to use the same word consistently.
14445
14446 2006-06-21  Chris Toshok  <toshok@ximian.com>
14447
14448         * DataGrid.cs: add in some basic navigation stuff (navigating to a
14449         child relation and back, using a stack).  Also, remove
14450         GetDataSource and the code that calls it - it's not needed.  Also,
14451         track CurrencyManager.ListName's removal.
14452
14453 2006-06-21  Chris Toshok  <toshok@ximian.com>
14454
14455         * CurrencyManager.cs: push some of the original type checking from
14456         BindingContext.CreateBindingManager to here, and remove some of
14457         the finalType stuff.  Need more tests to make sure I've got the
14458         ListName part right, and we might need more in SetDataSource.
14459
14460         * PropertyManager.cs: add a ctor that takes just the datasource,
14461         and no property name.  Make SetDataSource work with a null
14462         property_name, and make Current return the data_source if the
14463         property descriptor is null.  this makes 'string foo = "hi";
14464         BindingContext[foo].Current' return "hi" as it should.
14465
14466         * RelatedCurrencyManager.cs: make this code more generic - there's
14467         no reason the parent manager has to be CurrencyManager, and
14468         there's no reason to pass the DataRelation.  It suffices to use a
14469         BindingManagerBase and PropetyDescriptor.
14470
14471         * RelatedPropertyManager.cs: make a similar change here.
14472         
14473         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
14474         flower I knew it could be.
14475
14476 2006-06-20  Chris Toshok  <toshok@ximian.com>
14477
14478         * PropertyManager.cs: the PropertyChangedHandler is invoked when
14479         data in the source has changed and we need to update the control,
14480         so s/PullData/PushData.
14481
14482         * CurrencyManager.cs: Refresh is meant to update the control from
14483         data in the datasource.  So, s/PullData/PushData.
14484
14485         * BindingContext.cs: add more ugliness (we weren't handling the
14486         case where data_source = DataTable and data_member = column_name).
14487
14488         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
14489         from the perspective of the datasource.  PullData pulls from the
14490         control, PushData pushes to the control.
14491
14492 2006-06-20  Chris Toshok  <toshok@ximian.com>
14493
14494         * BindingContext.cs: rewrite the CreateBindingManager code to
14495         handle navigation paths more or less properly.  This could
14496         definitely stand some more work, in particular to push the
14497         recursion up to the toplevel.  But that relies on fixes in other
14498         places (System.Data comes to mind).
14499
14500         Also, move to a flat hashtable (and encode the twolevel nature of
14501         the dictionary into the hash key).  This lets us implement the
14502         IEnumerable.GetEnumerator method.
14503
14504         * RelatedCurrencyManager.cs: new class.  Update our view based on
14505         our relation and our parent CurrencyManager's position.
14506
14507         * CurrencyManager.cs: split out some logic from the ctor into
14508         SetView, so it can be called from the new RelatedCurrencyManager
14509         subclass.
14510
14511         * RelatedPropertyManager.cs: new class.  Update our datasource
14512         based on the position of our parent CurrencyManager.
14513
14514         * PropertyManager.cs: split out some logic from the ctor into
14515         SetDataSource, so it can be called from the new RelatedDataSource
14516         subclass.  Also, make the Current getter return the value
14517         of the PropertyDescriptor, not the data_source.
14518
14519         * Binding.cs: no need to duplicate the string splitting code here.
14520
14521 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14522
14523         * Control.cs:
14524           - set_Enabled: OnEnabledChanged is not called if the inherited state 
14525             of the control is not altered, even though  we might be changing the
14526             internal state of the control (#78458)
14527           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
14528             OnEnabledChanged, to allow easy altering of any child window state
14529           - OnEnabledChanged: Added code to enable/disable driver window state
14530           - OnParentEnabledChanged: Instead of firing the event, call 
14531             OnEnabledChanged, which will fire the event and also a) set driver
14532             window state and pass the enabled state to any grandchildren (#78458)
14533
14534 2006-06-19  Jackson Harper  <jackson@ximian.com>
14535
14536         * InternalWindowManager.cs: We don't set the cursor explicitly
14537         thats done via the response to NCHITTESTs.
14538         - Don't need to adjust for titlebar heights anymore, the
14539         coordinates are coming in the correct coordinates now (see peters
14540         last patch).
14541
14542
14543 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14544
14545         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
14546           being translated relative to whole window, instead of client window.
14547           That caused broken offsets on mouseclick (and caused gas for our
14548           InternalWindowManager)
14549
14550 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14551
14552         * TextControl.cs:
14553           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
14554           - Undo(): Added replay of cursor move on DeleteChars action; added
14555             calling Undo() again if a recorded cursor move is invalid (to
14556             ensure that some action is performed on Undo)
14557         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
14558
14559 2006-06-16  Jackson Harper  <jackson@ximian.com>
14560
14561         * MdiClient.cs: Instead of just sizing maximized windows when
14562         there is a resize we also have to adjust the Y of minimized
14563         windows, so they stay pinned to the bottom of the mdi container.
14564         - Eliminate separate tracking of the active control, we can just
14565         get this from the controls collection.
14566         - Paint the decorations for the newly activated titlebar so we get
14567         a pretty blue bar.
14568         * InternalWindowManager.cs:
14569         * ThemeWin32Classic.cs: Minimized windows get all three buttons
14570         even if they are a tool window.
14571         
14572 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14573
14574         * TextControl.cs (Undo): Handle non-existent cursor locations in the
14575           undo buffer, these can happen when text was deleted and the cursor
14576           was recorded first. Since we will also have a recorded cursor
14577           after the delete this is not an issue. (Fixes #78651)
14578
14579 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
14580
14581         * AccessibleObject.cs: Remove dependence on Control.is_selected;
14582           instead properly track control states internally (allows us to
14583           remove is_selected from Control)
14584
14585 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14586
14587         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
14588         whose width is not a multiple of 8.
14589
14590 2006-06-13  Jackson Harper  <jackson@ximian.com>
14591
14592         * MdiClient.cs:  Only maximize the next child if the current one
14593         is maximized.
14594
14595 2006-06-13  Chris Toshok  <toshok@ximian.com>
14596
14597         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
14598         modified.  Also, guard against grid or grid_drawing being null in
14599         Invalidate.
14600
14601         * DataGrid.cs: Reformat tons of getters/setters.  In the
14602         DataMember setter, just call SetNewDataSource instead of
14603         duplicating some of its functionality.  In SetNewDataSource, don't
14604         check ListManager for null, since the property getter creates the
14605         object if needed.
14606
14607         * DataGridTableStyle.cs: don't set TableStyle or call
14608         SetDataGridInternal on the column here, it's done in
14609         GridColumnStylesCollection.Add.
14610
14611         * GridColumnStylesCollection.cs: fix all the explicit interface
14612         implementations to just call our methods.  Nuke AddInternal() and
14613         move the body of it to Add().  Also, add a call to
14614         column.SetDataGridInternal to Add().
14615
14616         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
14617         base()+duplicate code.  Also, use the Format property instead of
14618         format to generate an Invalidate ala MS.  Lastly, create the
14619         textbox here, unconditionally.
14620         (set_Format): call Invalidate.
14621         (get_TextBox): no need to call EnsureTextBox.
14622         (Commit): remove the message box.
14623         (Edit) remove the call to EnsureTextBox.
14624         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
14625         (EnterNullValue): no need to check textbox for null.
14626         (HideEditBox): no need to check textbox for null.
14627         (SetDataGridInColumn): add the textbox to the grid's controls.
14628         (EnsureTextBox): nuke.
14629         
14630 2006-06-13  Jackson Harper  <jackson@ximian.com>
14631
14632         * MdiWindowManager.cs: Hook up to the maximized menus paint event
14633         and redraw the buttons when needed. Unhook when the window is
14634         unmaximized.
14635         * MainMenu.cs: Add an internal Paint event, the mdi window manager
14636         needs this so that it can redraw its buttons when the menu is
14637         repainted.
14638         * InternalWindowManager.cs:
14639         * Form.cs: The method order has changed for DrawMaximizedButtons,
14640         so that it can be a PaintEventHandler.
14641         
14642 2006-06-13  Jackson Harper  <jackson@ximian.com>
14643
14644         * MdiClient.cs: When we close a maximized mdi window, the next mdi
14645         window is activated and maximized, even if it wasn't before.
14646         - When  a new window is activated repaint the decorations of the
14647         old one, so that it no longer has the Active "look" (the blue
14648         titlebar).
14649         * InternalWindowManager.cs: Open up CreateButtons to base classes
14650         so they can recreate the buttons on state changes.
14651         - If a window is maximized give it all three buttons
14652         * MdiWindowManager.cs: Create the titlebar buttons when the state
14653         is changed, this is needed because a toolwindow will not have all
14654         three buttons until it is maximized.
14655
14656 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
14657
14658         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
14659           Fixed bug #78609.
14660
14661 2006-06-12  Jackson Harper  <jackson@ximian.com>
14662
14663         * KeysConverter.cs: Make sure we handle the Ctrl special case
14664         if its the only key.
14665         
14666 2006-06-12  Jackson Harper  <jackson@ximian.com>
14667
14668         * Theme.cs: Add a method to get the size of a managed window
14669         toolbar button.
14670         * InternalWindowManager.cs: Remove the ButtonSize property, this
14671         should be retrieved from the theme.
14672         * MdiWindowManager.cs: Get the button size from the theme
14673         * ThemeWin32Classic.cs: Make the method to get the managed window
14674         titlebar button size public.
14675         - Handle the different button sizes of maximized toolwindows
14676         (should match any maximized window).
14677         - Get the titlebar height from the theme, not the WM (which gets
14678         it from the theme).
14679
14680 2006-06-12  Jackson Harper  <jackson@ximian.com>
14681
14682         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
14683         event down to the mdi window manager.
14684         - Expose some extra stuff to base classes
14685         - Make sure to end the Capture on an NC Mouse up, so that we can
14686         get double clicks properly, and the sizing doens't stick.
14687         - When doing PointToClient contain it in the workable desktop
14688         area, this prevents windows from changing size when the cursor is
14689         pulled outside of the working area while sizing.
14690         * MdiWindowManager.cs: When we get a double click maximize the
14691         window.
14692         - Reset the cursor after handling mode changes.
14693
14694 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
14695
14696         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
14697           current desktop, instead of just assuming a 0, 0 origin. This
14698           is needed for our internal window manager, to know the top
14699           margin of the desktop
14700
14701 2006-06-12  Chris Toshok  <toshok@ximian.com>
14702
14703         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
14704         we need this to get rid of the selected background in the bool
14705         column.
14706         (CancelEditing): move the ConcedeFocus call to above the Abort
14707         call.  Also, set is_changing to false and invalidate the row
14708         header if we were changing before.
14709         (ProcessKeyPreviewInternal): remove, since noone outside this
14710         class calls it anymore.  Roll the code into ProcessKeyPreview.
14711         (EndEdit): remove the internal version.
14712         (InvalidateCurrentRowHeader): make private.
14713
14714         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
14715         Keys.Escape handling (and with it the last call to
14716         DataGrid.EndEdit from outside the class.)
14717
14718
14719 2006-06-12  Chris Toshok  <toshok@ximian.com>
14720
14721         * DataGridTextBox.cs (.ctor): isedit defaults to false.
14722         (OnKeyPress): set isedit to true.
14723         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
14724         already handled by the grid.
14725
14726         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
14727         right.  ugh.
14728         (set_DataSource): SetDataSource always returns true, so stop
14729         putting it in an if statement.
14730         (EndEdit): get rid of some {}'s
14731         (ProcessGridKey): return true in case Keys.Escape.
14732         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
14733         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
14734         PositionChanged, stopped connecting to CurrentChanged.
14735         (GetDataSource): simplify this a bunch.
14736         (SetDataSource): change return type from bool to void.
14737         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
14738         to this, and make sure we don't set ListManager.Position inside
14739         set_CurrentCell.
14740         (OnListManagerItemChanged): if we're passed an actual index,
14741         redraw that row.
14742
14743         * CurrencyManager.cs (set_Position): don't call PullData here.
14744
14745 2006-06-09  Jackson Harper  <jackson@ximian.com>
14746
14747         * TreeNode.cs:  Recalculate the visible order before doing the
14748         Expand/Collapse Below calls, because those calls generate an
14749         expose.
14750         - Reduce calls to the TreeView property, which is mildly expensive
14751         by using a local var.
14752         * Form.cs: Layout the MDI child windows when creating the parent
14753         form.
14754         - Don't use the internal constructor anymore
14755         * MdiClient.cs: use the parent form width/height (if available)
14756         when laying out the child windows, we do this because the
14757         mdiclient isn't docked yet when the initial layout is done.
14758         - Don't need an internal constructor anymore.
14759
14760 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14761
14762         * FileDialog.cs: handle access errors when trying to create a folder
14763         or changing to a directory. No need to initialize out parameters.
14764
14765 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14766
14767         * FileDialog.cs: Append a number when creating a new folder if the
14768           folder already exists (use parenthesis instead of square brackets)
14769
14770 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14771
14772         * FileDialog.cs:
14773           - Disabled registry support for windows and added better registry
14774             error checking for other systems (need to investigate why it
14775             works perfectly on my system)
14776           - If a folder already exist show an error MessageBox instead of
14777             trying to create an indexed name.
14778           - Fixed a non intentional typo.
14779
14780 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14781
14782         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
14783
14784 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14785
14786         * FileDialog.cs: When creating a new folder don't crash if the
14787           folder already exists.
14788
14789 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14790
14791         * FileDialog.cs: Allmost a complete rewrite.
14792           - added a "virtual" file system that handles the differences
14793             between unix and windows file systems (especially the directory
14794             structure). Moved most of the directory and file handling code
14795             into the vfs.
14796             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
14797             UnixFileSystem and FSEntry.
14798           - Recently used folder/directory, size, location and used file names
14799             (file name ComboBox) are now stored in the registry and get read
14800             before the dialog shows up (fixes part 6 of bug #78446).
14801           - Creation of new folders/directories is now possible (context menu
14802             or ToolBar). Added TextEntryDialog for this that fills in the gap
14803             until ListView.LabelEdit works.
14804           - Fixed cursor handling (bug #78527) and focus handling for
14805             PopupButtonPanel
14806           - Various "Search in" ComboBox enhancements. The content of the
14807             dropdown listbox now almost matches ms.
14808           - Changed the behaviour when the user switches to SpecialFolder
14809             Recent to show the ListView in View.Details.
14810           - Beside using the ToolBar to change the View property of the
14811             file ListView it is now possible to use the context menu too.
14812
14813 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14814
14815         * ComboBox.cs: Don't create a new ObjectCollection when an item
14816           gets inserted. Just insert the item in the existing object_items
14817           ArrayList.
14818
14819 2006-06-08  Jackson Harper  <jackson@ximian.com>
14820
14821         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
14822         that the treeview and root node checks are done also, this fixes a
14823         regression i caused in the unit tests.
14824
14825 2006-06-07  Wade Berrier <wberrier@novell.com> 
14826
14827         * RichTextBox.cs: More ISO8859-1 -> unicode
14828
14829 2006-06-07  Mike Kestner  <mkestner@novell.com>
14830
14831         * ComboBox.cs : use items to hold highlight/selection so that
14832         collection insertions don't require synchronization.
14833
14834 2006-06-07  Jackson Harper  <jackson@ximian.com>
14835
14836         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
14837         routine.  We now always keep the sized edge at the cursor instead
14838         of computing movement and adjusting rects.  There is one buglet
14839         with this method though when the cursor is moved over area that
14840         the window can not expand too (such as the toolbars on the desktop).
14841
14842 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14843
14844         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
14845         here. Fixes crash on startup in AlbumSurfer.
14846
14847 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
14848
14849         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
14850           values
14851
14852 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14853
14854         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
14855         statement to avoid calling XNextEvent which will block if another thread
14856         took the event that we were expecting. Fixes bug #78605.
14857
14858 2006-06-07  Mike Kestner  <mkestner@novell.com>
14859
14860         * ListView.cs : isolated checkbox clicking from the selection logic.
14861         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
14862
14863 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14864
14865         * Form.cs: Check that the value passed to Form.DialogResult
14866         is a valid enum value.
14867
14868 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14869
14870         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
14871         Computer'. Clicking it in the network view goes to 'My Computer'.
14872         Added CIFS filesystem type. Display the mount point of filesystems.
14873         Avoid duplicate mount points (happens for me with CIFS);
14874
14875 2006-06-06  Jackson Harper  <jackson@ximian.com>
14876
14877         * InternalWindowManager.cs: Draw the maximized windows buttons
14878         when resizing.
14879
14880 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14881
14882         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
14883         all other dialogs. Fixes bug #78585.
14884
14885 2006-06-06  Mike Kestner  <mkestner@novell.com>
14886
14887         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
14888         Only invalidate checkbox on checkstate changes to avoid flicker.
14889         * ListBox.cs : avoid unselect/select when clicking selected item.
14890         avoid reselection flicker for already multiselected items.
14891         Fixes #78382.
14892
14893 2006-06-06  Jackson Harper  <jackson@ximian.com>
14894
14895         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
14896         the parent form so that the menu is removed if needed.
14897
14898 2006-06-06  Mike Kestner  <mkestner@novell.com>
14899
14900         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
14901         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
14902
14903 2006-06-06  Mike Kestner  <mkestner@novell.com>
14904
14905         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
14906
14907
14908 2006-06-06  Jackson Harper  <jackson@ximian.com>
14909
14910         * Control.cs: Use the property (instead of the field) to get the
14911         default cursor so it is instantiated correctly.
14912         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
14913         resizes so we need to manually repaint the window decorations here.
14914         - Set the titlebar button locations as soon as they are created,
14915         otherwise they are not set correctly on win32.
14916         
14917 2006-06-06  Chris Toshok  <toshok@ximian.com>
14918
14919         * CurrencyManager.cs (set_Position): call PullData before
14920         OnCurrentChanged.
14921         (AddNew): after calling IBindingList.AddNew, update our
14922         listposition, and call OnCurrentChanged/OnPositionChanged (without
14923         calling PullData).
14924         (OnCurrentChanged): remove the call to PullData from here.
14925         (OnItemChanged): remove the call to PushData from here.
14926         (OnPositionChanged): change the test from == null to != null to
14927         match the other methods.
14928         (ListChangedHandler): the grossest part of the patch.  Implement
14929         this such that it passes the unit tests in CurrencyManagerTest and
14930         the output more or less matches that of MS's implementation.
14931  
14932 2006-06-06  Mike Kestner  <mkestner@novell.com>
14933
14934         * ListView.cs : only update check state on single click.
14935         * ThemeWin32Classic.cs : fix focus drawing for details view without
14936         fullrowselect.  Fixes #78454.
14937         * XplatUIX11.cs : fix for double click emission.
14938
14939 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
14940
14941         * PropertyGridView.cs : Applied Atsushi's patch to fix
14942         font dialog bug  (#78197).
14943
14944 2006-06-05  Jackson Harper  <jackson@ximian.com>
14945
14946         * TreeNode.cs: Compute the next node for expanding/collapsing
14947         correctly. We now factor in nodes without a NextNode
14948         correctly. (Fixes somes cases in nunit-gui).
14949         * InternalWindowManager.cs: Set the bounds when updating the
14950         virtual position of a tool window.
14951         
14952 2006-06-05  Chris Toshok  <toshok@ximian.com>
14953
14954         * DataGrid.cs: rename cached_currencymgr to list_manager.
14955         (set_CurrentCell): move SetCurrentCell code here, and clean it up
14956         some.
14957         (CurrentRow, CurrentColumn): single accessors so we can make the
14958         cursor movement code a lot easier to understand.
14959         (CurrentRowIndex): implement this in terms of CurrentRow.
14960         (BeginEdit): clean this up a bit.
14961         (CancelEditing): sort out the is_editing/is_changing/is_adding
14962         stuff a little.
14963         (EndEdit): minor changes.
14964         (OnKeyDown): add a comment about a (most likely) unnecessary
14965         check.
14966         (OnMouseDown): cancel editing when we click on a row header.  And
14967         use the CurrentRow setter, not CurrentCell.
14968         (ProcessDialogKey): directly call ProcessGridKey.
14969         (UpdateSelectionAfterCursorMove): factor out this common block of
14970         code (it's used everywhere that we move the cursor by updating row
14971         or column).
14972         (ProcessGridKey): pretty substantial overhaul.  Use the
14973         CurrentRow/CurrentColumn properties to make the code a lot more
14974         readable.  Only use the CurrentCell property when we have to
14975         modify both row and column at once.  Tab behavior is still broken,
14976         and Delete is untested.
14977         (Select): if we have no selected rows, set selection_start to
14978         @row.
14979         (EditCurrentCell): rename EditCell this.  It was only ever invoked
14980         with CurrentCell as the arg, so drop the arg and rename it.
14981
14982         * DataGridColumnStyle.cs: clean up the constructors a little, and
14983         drop CommonConstructor().
14984
14985         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
14986         actually get notified when the user hits it.
14987         (ProcessKeyMessage): *substantially* simplify this method.
14988         There's no reason (that I can see) for the textbox to be making
14989         calls into the datagrid at all.  Remove all of them but the ones
14990         for Enter handling.  those will take some more work.
14991
14992         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
14993         calling HideEditBox.
14994         (HideEditBox): if we have an active textbox, render it invisible
14995         without causing a re-layout of the datagrid.
14996
14997 2006-06-05  Mike Kestner  <mkestner@novell.com>
14998
14999         * ListView.cs : fix NRE crasher when focuseditem is cleared by
15000         collection changes by resetting it to Items[0].  Fixes #78587.
15001
15002 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15003
15004         * MessageBox.cs: if the height of the text is larger than the icon_size,
15005         use that. Fixes bug #78575.
15006
15007 2006-06-05  Jackson Harper  <jackson@ximian.com>
15008
15009         * TreeView.cs: Fix line drawing when scrolling.  To do this each
15010         node is basically responsible for drawing its entire horizontal
15011         area.  When drawing a node it draws its parent node lines if
15012         needed.
15013         - Adjust the clip area to the viewport rectangle
15014         - Fix Left/Right key handling to match MS. (It expand/collapses
15015         and moves to parents/first child but does not move selection to
15016         sibling nodes).
15017         - Fix SetTop to work with new bound calculation code
15018         - When scrollbars are no longer needed we need to reset scrolling
15019         vars and recalculate the visible order so the redraw is correct
15020         * TreeNode.cs: We can't expand/collapse nodes with no children.
15021
15022 2006-06-03  John Luke  <john.luke@gmail.com> 
15023
15024         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
15025         so the colors work without dev packages
15026         
15027 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
15028
15029         * Control.cs 
15030           - Select: Implemented to just use activate. Seems to match MS 
15031             behaviour closest. Documented to only do actual control walking 
15032             based on it's parameters if in a container control so I moved 
15033             the code there.
15034           - Removed selection check logic from our internal Select() method
15035         * ContainerControl.cs:
15036           - Select: Moved selection logic from Control here, since MS documents
15037             that containers obey the bool arguments. No longer calling base
15038
15039 2006-06-02  Jackson Harper  <jackson@ximian.com>
15040
15041         * TreeView.cs: If the selected node isn't changed when we get
15042         focus update the previously selected node so that we see the
15043         selection box.
15044
15045 2006-06-02  Mike Kestner  <mkestner@novell.com>
15046
15047         * ComboBox.cs: restructure grab and general mouse event handling.
15048         Make the composite control raise mouse events like it was a single
15049         control for leaves/enters/motion/up/down events.  fix dropdown list
15050         coordinate mangling and refactor it into the scrollbar subclass to
15051         reduce code duplication.  Fixes #78282 #78361 and #78457.
15052
15053 2006-06-02  Mike Kestner  <mkestner@novell.com>
15054
15055         * ScrollBar.cs: remove Capture setting/clearing, as it happens
15056         automatically in the Control.WndProc.
15057
15058 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15059
15060         * FileDialog.cs: fix crash when running SharpChess, which sets the
15061         FilterIndex to 2 with only one Filter.
15062
15063 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15064
15065         * ToolBar.cs: add SizeSpecified property.
15066         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
15067         try to figure out our real size, otherwise fallback to what the
15068         container says.
15069
15070 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15071
15072         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
15073         * Control.cs (WndProc): MS always calls the DefWndProc to pass
15074           up the event
15075
15076 2006-06-01  Mike Kestner  <mkestner@novell.com>
15077
15078         * ListView.cs: revamp the focus management in ListView.  It still
15079         causes churn of LostFocus/GotFocus emissions on clicks, but it's
15080         better than not handling focus at all.  Will revisit when pdb feels
15081         the general focus handling is solid.  Fixes #78526.
15082
15083 2006-06-01  Jackson Harper  <jackson@ximian.com>
15084
15085         * TreeView.cs: Set the default border style in the constructor.
15086         - Move painting to use OnPaintInternal instead of capturing
15087         WM_PAINT, this is the correct way of doing things
15088         - UpdateBelow shouldn't invalidate the scrollbar area
15089         - Cap the top on update below in case the node was above the top
15090         of the viewport rectangle.
15091         - ExpandBelow and Collapse below need to obey Begin/End Update.
15092         * TreeNode.cs: Make is_expanded internal so the treenode
15093         collection can change it without firing the whole event chain.
15094         * TreeNodeCollection.cs: When clearing all the child nodes make
15095         sure to recalc the visible order.
15096         - Improve algo for remove the top node
15097
15098 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
15099
15100         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
15101           SendMessage directly calling window procedures, which in turn might
15102           call SetFocus()
15103
15104 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
15105
15106         * Control.cs: Don't handle WM_SETFOCUS if the same window already
15107           has focus (works around X11 sending a FocusIn after our SetFocus)
15108         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
15109
15110 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
15111
15112         * Mime.cs: Fix for the NET_2_0 build.
15113           NameValueCollection needs StringComparer now.
15114
15115 2006-05-31  Chris Toshok  <toshok@ximian.com>
15116
15117         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
15118         return (via an out parameter) the starting X of the column.
15119         (UpdateVisibleColumn): track change to FromPixelToColumn.
15120         (HitTest): add a ColumnResize case here.
15121         (DrawResizeLine): new function, probably poorly named.
15122
15123         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
15124         only need to keep one reference.
15125         (set_ListManager): same.
15126         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
15127         Also, add support for HitTestType.ColumnResize.
15128         (OnMouseMove): add column resize behavior here, and change the
15129         cursor to the correct one as we move around the datagrid.
15130         (OnMouseUp): terminate the column resize if we're resizing.
15131         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
15132         for the current cell.
15133         (ConnectListManagerEvents): use cached_currencymgr.
15134         (DisconnectListManagerEvents): fill this in, using
15135         cached_currencymgr.
15136         (SetCurrentCell): remove cached_currencymgr_events handling.
15137         (SetDataMember): only call DisconnectListManagerEvents if
15138         cached_currencymgr is != null.
15139         (SetDataSource): same.
15140         (OnListManagerCurrentChanged): cached_currencymgr_events ->
15141         cached_currencymgr.
15142
15143 2006-05-31  Jackson Harper  <jackson@ximian.com>
15144
15145         * BindingManagerBase.cs: Remove somedebug code that creeped into
15146         SVN.
15147         * TreeNode.cs: We get the indent level dynamically right now, so
15148         don't track it as a member.
15149         * TreeNodeCollection.cs: Make sure all nodes added to the list
15150         have parents, treeviews/topnodes setup properly.
15151         - Don't attempt to track indent level.
15152
15153 2006-05-30  Jackson Harper  <jackson@ximian.com>
15154
15155         * BindingContext.cs: Create the currency manager tables here.
15156         This allows us to more easily create null tables (when bad data
15157         members are used), and more easily create related currency
15158         managers.
15159         * CurrencyManager.cs: All the table creation stuff is done by the
15160         binding context now.
15161         - Current should throw an exception if listposition is -1.
15162         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
15163         been bound yet.
15164
15165 2006-05-30  Mike Kestner  <mkestner@novell.com>
15166
15167         * ListView.cs: allow reexpansion of zero-width column headers.
15168         Fixes #78528.
15169
15170 2006-05-28  Chris Toshok  <toshok@ximian.com>
15171
15172         * CurrencyManager.cs (get_Current): after the late binding
15173         listposition = -1 fix, we need to guard against it here and return
15174         null, otherwise we raise an exception (which is swallowed
15175         elsewhere, and breaks datagrid databinding.)
15176
15177 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
15178
15179         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
15180           than WM_SYSKEY, don't throw if get something unexpected (#78507)
15181
15182 2006-05-26  Jackson Harper  <jackson@ximian.com>
15183
15184         * ControlPaint.cs:
15185         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
15186         values, it's faster and it's all we care about (we don't care if
15187         the names aren't equal).
15188         * KeyboardLayouts.cs: Eliminate some dead code.
15189         - Lazy init things
15190         * X11Keyboard.cs: Lazy init keyboard detection.
15191         - Cleanup access modifiers a little.
15192
15193 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
15194
15195         * XplatUIX11.cs: Once again, attempting to get layout just right.
15196
15197 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
15198
15199         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
15200           the sizes of each link section, that will result in sizes that
15201           match DrawString's layout (Fixes #78391)
15202
15203 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
15204
15205         * FileDialog.cs: If AddExtension property is true autocomplete the
15206           extensions in SaveFileDialog correctly. Fixes bug #78453.
15207           Set MyNetwork and MyComputer to "C:\" for windows. This should
15208           fix part 8 of bug #78446 for now.
15209
15210 2006-05-26  Chris Toshok  <toshok@ximian.com>
15211
15212         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
15213         invalidate the current row header if we need to, but presumably
15214         we'll invalidate the row corrsponding to the bounds or
15215         editingControl.
15216         (GridHScrolled): switch back to this method, as it's part of the
15217         public api.  *sigh*.
15218         (GridVScrolled): same.
15219         (OnMouseWheel): hack up something that more or less works.  Call
15220         GridHScrolled/GridVScrolled directly, instead of duplicating much
15221         of their code here.
15222         (EnsureCellVisibility): reinstate a bunch of this code, since we
15223         can't just set the scrollbar Value and expect to do all the work
15224         in the ValueChanged handler.  Also, Call Update() after scrolling
15225         in one direction so the other XplatX11.ScrollWindow call has the
15226         proper stuff in the proper places.
15227         (EditCell): set is_editing to true before calling .Edit.
15228
15229         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
15230         don't bother comparing first.
15231         (OnKeyPress): call grid.ColumnStartedEditing before calling
15232         base.OnKeyPress.  this will set is_changing and invalidate the row
15233         header if necessary.
15234         (ProcessKeyMessage): for WM_CHAR messages, call
15235         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
15236         and WM_KEYDOWN.
15237         
15238         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
15239         it's done in the DataGrid.
15240         (NextState): call grid.ColumnStartedEditing, which takes care of
15241         invalidating the row header (and setting is_changing).
15242
15243         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
15244         here.  it's done in the DataGrid.
15245
15246 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15247
15248         * Control.cs: allow changing the cursor when the mouse position is
15249         out of bounds but Capture is set.
15250         * LinkLabel.cs: handle the case when the mouse button is pressed on the
15251         linklabel but released somewhere else.
15252
15253 2006-05-25  Jackson Harper  <jackson@ximian.com>
15254
15255         * TreeView.cs: When we get focus if there is no selected node make
15256         it the top node
15257         - Remove some uneeded setup code from Draw.
15258         * TreeNodeCollection.cs: If the tree doesn't have a top node when
15259         a new node is inserted make the new node the top.
15260         * XplatUIX11.cs:
15261         * Timer.cs: Use Utc time so that no local time zone stuff needs to
15262         be used (should be faster).
15263         
15264 2006-05-25  Chris Toshok  <toshok@ximian.com>
15265
15266         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
15267         problem with the last commit.
15268
15269 2006-05-25  Chris Toshok  <toshok@ximian.com>
15270
15271         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
15272         need the invalidate call here, while scrolling right-to-left via
15273         the left arrow key (i.e. moving the editing cell while scrolling).
15274
15275         * DataGrid.cs (.ctor): remove the initialization of
15276         ctrl_pressed/shift_pressed.  We no longer track them using key
15277         up/down handlers, but by using Control.ModifierKeys.  Also, switch
15278         to using ValueChanged handlers on the scrollbars instead of
15279         Scrolled event handlers.  This simplifies a bunch of the scrolling
15280         code.
15281         (GridHValueChanged): rename from GridHScrolled, and change it to
15282         work with the new event args.
15283         (GridVValueChanged): same.
15284         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
15285         (OnMouseWheel): actually scroll the datagrid.  Don't change the
15286         selected cell.
15287         (ProcessGridKey): correct all the keyboard navigation stuff I
15288         could find.  Ctrl up/down/left/right/home/end work now.
15289         (EnsureCellVisibility): correct method name spelling.  Also,
15290         simplify this a touch by not explicitly calling the
15291         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
15292         scrollbar value.
15293         (OnKeyUpDG): no need for this method now.
15294         
15295 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15296
15297         * LinkLabel.cs: display the OverrideCursor when hovering the label.
15298         Fixes bug #78392.
15299
15300 2006-05-25  Chris Toshok  <toshok@ximian.com>
15301
15302         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
15303         r61019.
15304
15305 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
15306
15307         * Application.cs: Moved setting of is_modal and closing to before
15308           we create the control, to allow the event handlers called as a
15309           result of creation affect closing. Also removed Gonzalo's previous
15310           change to setting DialogResult, the behaviour has been moved to 
15311           Form.ShowDialog()
15312         * Form.cs: 
15313           - ShowDialog(): Removed explicit creation of the form, let RunLoop
15314             handle it instead
15315           - ShowDialog(): If no dialog result is set, we need to return Cancel
15316           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
15317             the close is cancelled
15318
15319 2006-05-25  Jackson Harper  <jackson@ximian.com>
15320
15321         * StatusBar.cs: We only need to update the sizes of the other
15322         panels when we have auto size contents.  Also we are only updating
15323         the contents of the panel, not the borders, so compensate for the
15324         border width (TODO: get this width from the theme somehow).
15325         * TreeView.cs: Scrollable is true by default
15326         - Use invalidate instead of refresh where needed
15327         - Factor the scrollable value into scrollbar updating
15328         - Update the scrollbars if the Scrollable property is altered
15329         - Update the selected node if its ImageIndex is changed
15330         - Handle null nodes in UpdateNode (mainly so we don't have to
15331         check if selected is null when updating it
15332         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
15333         are factored into the visible count
15334         - Use VisibleCount for clarity in the code
15335         - When the font is changed we need to recurse through all the
15336         nodes and invalidate their sizes
15337         
15338 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15339
15340         * Application.cs: set the DialogResult to fixed when the main form is
15341         hidden or destroyed while being modal.
15342
15343 2006-05-25  Miguel de Icaza  <miguel@novell.com>
15344
15345         * Theme.cs: Use Tangoified messagebox icons. 
15346
15347         (GetSizedResourceImage): Also cope with width = 0 and do not
15348         trigger a warning in that case (0 means "give me your icon from
15349         the resouce, no special size needed).
15350
15351 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
15352
15353         * Application.cs: Leave runloop if the the main modal form is 
15354           hidden (fixes #78484)
15355
15356 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
15357
15358         * BindingContext.cs : reject null datasource in Contains() and
15359           Item[].
15360         * CurrencyManager.cs : check data_member validity when data_source
15361           is dataset. When it is late binding, the initial position is -1.
15362
15363 2006-05-24  Jackson Harper  <jackson@ximian.com>
15364
15365         * TreeNodeCollection.cs: Dont't recalculate the visible order on
15366         inserted nodes that aren't visible.  This changes the
15367         max_visible_order which confuses scrollbar settings.
15368         - Use the enumerator to get the prev node instead of duplicating
15369         code.
15370         * TreeView.cs: Use new method for setting scrollbar values
15371         - Don't set the bounds every time the scrollbar is updated
15372         - When updating below the root node use an invalidate instead of a
15373         refresh to prevent the child controls (scrollbars) from being
15374         refreshed. (UpdateBelow still needs to be reworked anyways).
15375         - Reenable SetBottom now that visible orders are set correctly,
15376         added some debug code incase we ever get bad values there again.
15377         - Set the scrollbar max to 2 less then the max value, this
15378         compensates for the max value being one above the node count, and
15379         for scrollbars adding one extra "notch".
15380         - When drawing image nodes if there is an imagelist we draw the
15381         first image in the list if the supplied image index is out of the
15382         image list's bounds.
15383         
15384 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
15385
15386         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
15387           we receive a size change from the WM (Fixes #78503)
15388
15389 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
15390
15391         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
15392           rectangle (Fixes #78501)
15393
15394 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
15395
15396         * ButtonBase.cs: 
15397           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
15398             as a bitfield.
15399           - Fixed MouseMove to no longer switch pressed state unless the left
15400             mouse button is pressed. Atsushi provided the original patch (#78485)
15401           
15402 2006-05-24  Jackson Harper  <jackson@ximian.com>
15403
15404         * ScrollBar.cs: New internal methods that allow us to change a
15405         couple values on the scrollbar (the most common case is maximum
15406         and large change) without getting multiple invalidates.
15407
15408 2006-05-24  Chris Toshok  <toshok@ximian.com>
15409
15410         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
15411         (Edit): save off the original state in oldState, and set
15412         grid.is_editing to true.
15413         (OnKeyDown): abort editing if escape is pressed.  also, call
15414         NextState if space is pressed.
15415         (OnMouseDown): call NextState.
15416         (NextState): factor out shared code from OnKeyDown and OnMouseDown
15417         here.  Also, only invalidate the row header once (on the initial
15418         is_changing switch) to save on redraws.
15419
15420 2006-05-24  Chris Toshok  <toshok@ximian.com>
15421
15422         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
15423         if the value in the cell is different than it was before.  This
15424         keeps us from triggering a layout when we move around a datarid
15425         with a highlighted cell.
15426         (Edit): suspend layout when creating/positining the text box, and
15427         resume passing false so we don't ever actually re-layout.
15428         (ReleaseHostedControl): same.
15429         (EnsureTextBox): reformat slightly, and set WordWrap to false.
15430
15431         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
15432         control-key sequences should go to the datagrid - remove that
15433         lock.  Also, modify the conditions under which we move between
15434         cells when moving the cursor within a cell, and remove the "this"
15435         and "base" from field accesses.  We weren't even consistent, given
15436         they all were in the base class.
15437
15438 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
15439
15440         * Binding.cs : (.ctor)
15441           An obvious NRE fix for BindingTest.CtorNullTest().
15442
15443 2006-05-23  Chris Toshok  <toshok@ximian.com>
15444
15445         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
15446         them between lines.  This fixes some quirks editing cells in the
15447         datagrid.
15448
15449 2006-05-23  Jackson Harper  <jackson@ximian.com>
15450
15451         * TreeView.cs: Use begin/end update when doing expand/collapse all
15452         so that we don't get flicker on the scrollbar.
15453
15454 2006-05-23  Jackson Harper  <jackson@ximian.com>
15455
15456         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
15457         treenode calculations to be independant of the painting code. To
15458         do this nodes track a visible order which is calculated by the
15459         treeview.
15460         - Call new methods for expanding/collapsing nodes.  These methods
15461         use scrollwindow so we don't have to update everything below the
15462         node.
15463         * TreeView.cs: Refactored drawing and scrolling code.  We don't
15464         need to update nodes when drawing anymore or calculate scrollbar
15465         stuff.
15466         - Added new methods for expanding/collapsing nodes. These methods
15467         use ScrollWindow so as to not have to redraw all the nodes below.
15468         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
15469         we add/remove nodes or sort.
15470         - Handle removing the selected and the top node properly.
15471
15472 2006-05-23  Chris Toshok  <toshok@ximian.com>
15473
15474         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
15475         maybe this should actually happen in the datagrid code?
15476         (EndEdit): no need to invalidate anything, given that
15477         ReleaseHostedControl causes the datagrid to relayout, which
15478         invalidates everything anyway.
15479
15480         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
15481         in SetCurrentCell).
15482         (set_SelectionBackColor): call InvalidateSelection instead of
15483         Refresh.
15484         (set_SelectionForeColor): same.
15485         (BeginEdit): Flesh this out a bit.
15486         (CancelEditing): only do any of this if we're editing/adding.
15487         (EndEdit): same.
15488         (OnMouseDown): there's no need to cancel editing here, it's done
15489         in SetCurrentCell.
15490         (SetCurrentCell): only invalidate the current row header if it's a
15491         different row than the new one.
15492         (ShiftSelection): fix this to work like MS does.
15493         (ResetSelection): factor out the invalidation of selected_rows to
15494         InvalidateSelection.
15495         (SetDataSource): cancel any editing that's going on.
15496
15497         * DataGridColumnStyle.cs
15498         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
15499         call the non-interface version.
15500
15501         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
15502         header rectangle with the clip rectangle so we don't redraw the
15503         entire header for just a small area.  Gets rid of the last flicker
15504         when horizontally scrolling.
15505         (DataGridPaintRow): same.
15506
15507 2006-05-23  Mike Kestner  <mkestner@novell.com>
15508
15509         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
15510         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
15511         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
15512         Critical bug report.
15513
15514 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15515
15516         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
15517           and this fixes #78493
15518
15519 2006-05-23  Miguel de Icaza  <miguel@novell.com>
15520
15521         * Theme.cs (GetSizedResourceImage): Scale images if the proper
15522         size is not found.  
15523         
15524         * FileDialog.cs: Do not change the background for the side bar as
15525         it wont work nicely with the theme, and also reduces the artifacts
15526         in rendering the icons (which I want to fix too).
15527
15528         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
15529         resources, not resgen resources. 
15530
15531         (PlatformDefaultHandler): Pull images using the new API.
15532
15533 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15534
15535         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
15536           a reference to the hwnd and will not remove it unless there are
15537           no pending exposures (fixes #78341)
15538         * XplatUI.cs: Improved debug
15539
15540 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
15541
15542         * MenuAPI.cs : don't handle OnClick event when it was not the left
15543           button. Fixed bug #78487.
15544
15545 2006-05-23  Mike Kestner  <mkestner@novell.com>
15546
15547         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
15548         prefer submenus to the top menu for item lookup, to avoid popping down
15549         top-row items.
15550
15551 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
15552
15553         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
15554           Graphics.FillRectangle as the visual results are really bad (even
15555           on win). We now draw perfect arrows (and perfect shadows when the
15556           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
15557           Pen.DashPattern to draw the dots of each line.
15558
15559 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
15560
15561         * FileDialog.cs: Update the filename combobox when navigating through
15562           the ListView with the cursor keys. Fixes part 7 of bug #78446.
15563
15564 2006-05-22  Mike Kestner  <mkestner@novell.com>
15565
15566         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
15567         Fixes #78463.
15568
15569 2006-05-22  Mike Kestner  <mkestner@novell.com>
15570
15571         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
15572         requests. Fix a misspelled parameter and a copy paste exception error
15573         in Select.
15574
15575 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
15576
15577         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
15578           to get the same width/height (5/13) on X11 as the default font has on
15579           win32. This means that our DefaultFont emSize is smaller than the 
15580           the MS SWF equivalent (even thought the width/height stays the same)
15581
15582 2006-05-20  Jackson Harper  <jackson@ximian.com>
15583
15584         * MdiClient.cs:
15585         * MdiWindowManager.cs:
15586         * InternalWindowManager.cs: Make sure to use the border width from
15587         the theme.
15588
15589 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
15590
15591         * PrintDialog.cs: Implements printer details
15592
15593 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
15594
15595         * FileDialog.cs: Added focus handling for PopupButtonPanel.
15596           Fixes part 1 and 2 of bug #78446
15597
15598 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
15599
15600         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
15601           instead of sticking to the first ever calculated value
15602
15603 2006-05-19  Mike Kestner  <mkestner@novell.com>
15604
15605         * ComboBox.cs: fix mouse motion selection to use MousePosition and
15606         PointToClient, since Capture is set. Fixes #78344.
15607
15608 2006-05-19  Mike Kestner  <mkestner@novell.com>
15609
15610         * ListView.cs: match MS behavior in Details view where items are not
15611         drawn if Columns.Count == 0. 
15612         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
15613         Use a separate pen to draw the check, since changing the width affects
15614         the box as well.  Fixes #78454.
15615
15616 2006-05-18  Miguel de Icaza  <miguel@novell.com>
15617
15618         * ListView.cs: ArgumentOutOfRangeException, single versions of the
15619         exception should throw the name of the invalid argument.
15620
15621         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
15622         there are no files listed. 
15623
15624 2006-05-18  Jackson Harper  <jackson@ximian.com>
15625
15626         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
15627         up.
15628
15629 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15630
15631         * Control.cs: Brought back our old UpdateZOrder method as a private
15632           function and switched our calls from UpdateZOrder to the new one.
15633           This fixes the Paint.Net canvas disappearing bug.
15634
15635 2006-05-18  Jackson Harper  <jackson@ximian.com>
15636
15637         * Theme.cs:
15638         * ThemeWin32Classic.cs:
15639         * InternalWindowManager.cs: Move the drawing into the theme,
15640         expose everything the theme should need from the window manager.
15641
15642 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15643
15644         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
15645           from the call to NativeWindow to avoid walking up the parent chain
15646           further than needed (speeds up setting cursors and avoids setting
15647           the wrong cursor if a parent has another cursor defined)
15648         * Cursor.cs: When loading an icon as cursor, MS uses the center of
15649           the icon as hotspot, not what's contained as hotspot in the icon
15650           file. This fixes the perceived drawing offset seen with Paint.Net
15651         
15652 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15653
15654         * XplatUIX11.cs: 
15655           - Store the calculated rectangle in Hwnd object and use it when 
15656             setting the client size
15657           - Force Toolwindows to always be type Dock, to ensure they're on top
15658
15659 2006-05-18  Mike Kestner  <mkestner@novell.com>
15660
15661         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
15662         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
15663         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
15664         Substantial refactoring to remove confusing nested classes. Coding
15665         standard and Get+Set->property refactorings.  Shift to index based
15666         highlighting in ComboListBox instead of constantly using IndexOf and
15667         Items[]. Add invalidations on resize for DropDownList to fix ugliness
15668         in FileDialog growth.  Draw borders manually since Simple mode needs
15669         to look like two independent controls.  Make listbox border
15670         conditional to DropDownStyle.  Improved OwnerDraw support.
15671
15672 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
15673
15674         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
15675         Don't set the disposed graphics to null, so we can throw the "right"
15676         exception if the graphics is reused later (added a flag to avoid 
15677         double disposing). Some behaviours are different under 2.0 and are
15678         filled under bug #78448.
15679
15680 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15681
15682         * Control.cs: When double-buffering is enabled, we need to reset
15683           our graphics context between paint calls. Otherwise, any 
15684           transformations and other alterations on the context will 
15685           become cumulative (#77734)
15686
15687 2006-05-18  Mike Kestner  <mkestner@novell.com>
15688
15689         * ListView.cs: do focused item selection like MS on clicks. 
15690         Rework focus handling for ItemControl so LostFocus invalidates as
15691         well.
15692         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
15693         the ListView ItemControl has focus.
15694
15695 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
15696
15697         * XplatUIX11.cs: If client_window ends up being width or height zero
15698           due to border settings, move it off window inside whole_window (#78433)
15699
15700 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15701
15702         * Mime.cs: Shrink the mime file cache correctly.
15703
15704 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15705
15706         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
15707
15708 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15709
15710         * XplatUIX11.cs (AddExpose): More sanity checks
15711
15712 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15713
15714         * XplatUIX11.cs:
15715           - AddExpose: Don't add expose ranges outside the size of our
15716             window
15717           - Cast opacity values to Int32 to avoid crashes with certain
15718             values
15719           - Added disabled code paths that protect against illegal cross-
15720             thread painting (Developers.exe)
15721
15722 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15723
15724         * ProgressBar.cs: Invalidate the control when it's resized
15725           since block size is based on control size. (#78388)
15726
15727 2006-05-16  Miguel de Icaza  <miguel@novell.com>
15728
15729         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
15730         of setting the incoming argument to the "reset" value, we set the
15731         this.datamember to string.empty (before we were invalidating the
15732         incoming data).   
15733
15734         Fixes 78420
15735
15736 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15737
15738         * Form.cs: Only apply transparency settings after the form
15739           is created. (Fixes #77800)
15740
15741 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15742
15743         * ApplicationContext.cs: Grab the HandleDestroyed event so
15744           we know when to fire OnMainFormClosed 
15745
15746 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15747
15748         * Application.cs: Introduced sub-class to allow tracking of
15749           threads and centralized triggering of the event mess for
15750           ThreadExit, AppExit, etc..  (#76156)
15751
15752 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
15753
15754         * MimeIcon.cs:
15755           - Do not return a null icon index value for a mime subclass.
15756             Instead try the main mime type class too.
15757           - Seems that some newer distributions don't have a link to some
15758             gnome default icons anymore. So check the default gnome dir too.
15759           
15760
15761 2006-05-16  Jackson Harper  <jackson@ximian.com>
15762
15763         * MdiClient.cs: Don't paint the parent background image if we have
15764         our own background image.
15765
15766 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15767
15768         * Control.cs:
15769           - PerformLayout: Do not shrink space filled by DockStyle.Fill
15770             controls, all filled controls are supposed to overlap (#78080)
15771           - UpdateZOrder is supposed to update the control's z-order in the
15772             parent's z-order chain. Fixed to behave like that
15773           - BringToFront: Removed obsolete code
15774           - SendToBack: Simplyfied
15775           - SetChildIndex: Trigger layout calculations when Z-order changes
15776             since layout is done by z-order
15777
15778 2006-05-16  Chris Toshok  <toshok@ximian.com>
15779
15780         [ fixes bug #78410 ]
15781         * DataGrid.cs (set_AlternatingBackColor): use
15782         grid_drawing.InvalidateCells instead of Refresh().
15783         (set_BackColor): call grid_drawing.InvalidateCells.
15784         (set_BackgroundColor): use Invalidate instead of Refresh.
15785
15786         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
15787         invalidate the cell area.
15788
15789 2006-05-15  Chris Toshok  <toshok@ximian.com>
15790
15791         [ fixes bug #78011 ]
15792         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
15793         on to DataGridPaintRow.
15794         (DataGridPaintRow): take a clip argument, and only draw the cells
15795         which intersect it.  same with the not_usedarea.
15796
15797         * Theme.cs (DataGridPaintRow) add @clip parameter.
15798
15799         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
15800         XplatUI.ScrollWindow.
15801         (ScrollToRow): same.
15802
15803         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
15804         with last column which was causing a gray swath to appear with the
15805         XplatUI.ScrollWindow code.
15806
15807 2006-05-15  Chris Toshok  <toshok@ximian.com>
15808
15809         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
15810         use XplatUI.ScrollWindow.
15811         (VerticalScrollEvent): use XplatUI.ScrollWindow.
15812
15813 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
15814
15815         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
15816
15817 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15818
15819         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
15820           file since there are no equivalent X11 cursors
15821
15822 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15823
15824         * MonthCalendar.cs : DateTimePicker should reflect selected date
15825           on mouse*up*, not mouse*down*. Fixed originally reported part of
15826           bug #76474.
15827
15828 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15829
15830         * TabControl.cs : When argument index is equal or more than tab
15831           count, just ignore. Fixed bug #78395.
15832
15833 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15834
15835         * Control.cs: Dispose all child controls when control is diposed (#78394)
15836
15837 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15838
15839         * ColorDialog.cs: Finally it is possible to select the color with
15840           the text boxes
15841
15842 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15843
15844         * PrintDialog.cs: Fix typo
15845
15846 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15847
15848         * PrintDialog.cs: PrintDialog is not resizable
15849         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
15850           color. Made some ToolBar drawing methods protected virtual.
15851
15852 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
15853
15854         * PrintDialog.cs: Implementation of the PrintDialog
15855
15856 2006-05-12  Chris Toshok  <toshok@ximian.com>
15857
15858         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
15859         thumb, instead use MoveThumb.  This has the side effect of making
15860         most of the other thumb moving machinery use MoveThumb as well.
15861         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
15862         need to actually invalidate the rectangle where the new thumb will
15863         go.
15864         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
15865         We force an Update() after, so it's not as fast as it could be,
15866         but at least there's zero flicker and no droppings.
15867         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
15868         (UpdateThumbPos): add another argument (dirty), which says whether
15869         or not to calculate/add dirty regions which we later invalidate.
15870         For cases where we know we're going to use MoveThumb, we pass
15871         false for this.  Otherwise, pass true.
15872
15873 2006-05-12  Jackson Harper  <jackson@ximian.com>
15874
15875         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
15876         the status bar.
15877         
15878 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
15879
15880         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
15881           and GetClipRegion methods and UserClipWontExposeParent property.
15882         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
15883           overriding UserClipWontExposeParent property, setting to false, since
15884           Win32 handles the required expose messages to draw our clipped parent
15885           areas internally
15886         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
15887           PaintEventStart to set the user clip region if set.
15888         * Control.cs: 
15889           - Now internally tracking the Region for the control since we need to
15890             store it if the handle is not yet created and only set it when it
15891             becomes created. Before setting the region forced handle creation
15892           - Added code to draw the parents underneath a user-clipped region
15893         * Hwnd.cs: Added UserClip property
15894
15895 2006-05-12  Chris Toshok  <toshok@ximian.com>
15896
15897         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
15898         (set_Maximum): same.
15899         (set_Minimum): same.
15900         (set_SmallChange): same.
15901         (OnMouseUpSB): remove the call to refresh when releasing the
15902         thumb.  We shouldn't need it.
15903         
15904 2006-05-12  Miguel de Icaza  <miguel@novell.com>
15905
15906         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
15907         AutoSize set to None, we do not need to relayout everything, we
15908         just need to invalidate the current region.
15909
15910         (Draw): Do not draw the entire ClientArea, just redraw the
15911         clip area being passed.
15912
15913         * MdiClient.cs: Make MdiClient constructor with the Form argument
15914         internal. 
15915
15916 2006-05-12  Jackson Harper  <jackson@ximian.com>
15917
15918         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
15919         parents background image,  but strangely not their own.
15920         - (DrawStatusBarPanel): Take into account horizontal alignment
15921         when drawing the strings and icons.
15922
15923 2006-05-12  Mike Kestner  <mkestner@novell.com>
15924
15925         * ListBox.cs: avoid invalidations for focus when the collection is
15926         empty. 
15927
15928 2006-05-12  Chris Toshok  <toshok@ximian.com>
15929
15930         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
15931         invalidate the entire thumb area.  Call InvalidateDirty which
15932         limits the redraw to the thumb itself and surrounding pixels.
15933
15934         * XplatUIX11.cs (ScrollWindow): optimize copying.
15935         
15936 2006-05-12  Chris Toshok  <toshok@ximian.com>
15937
15938         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
15939         Figure out the positioning/layout in a single pass instead of
15940         multiple recursive invocations.  Speeds up the initial display of
15941         the data grid.  Also, make many things private that were
15942         originally public but unused outside this class.
15943
15944 2006-05-11  Jackson Harper  <jackson@ximian.com>
15945
15946         * MdiClient.cs: Improved layout code.
15947
15948 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
15949
15950         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
15951           not SelectedObject.
15952
15953 2006-05-11  Chris Toshok  <toshok@ximian.com>
15954
15955         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
15956         union of that will always be {0,0,width,height}.
15957
15958 2006-05-11  Jackson Harper  <jackson@ximian.com>
15959
15960         * Form.cs: Match MS's DefaultSize for forms (they must have
15961         changed the size in sp2).
15962
15963 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15964
15965         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
15966
15967 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15968
15969         * TextControl.cs : Fixed bug #78109. This incorrect position
15970           comparison caused crash on automatic line split.
15971         * TextBoxBase.cs : reduce duplicate code.
15972
15973 2006-05-10  Jackson Harper  <jackson@ximian.com>
15974
15975         * MdiClient.cs: Active form is only sent to the back when using
15976         the Next form functionality, when a form is clicked the current
15977         active shouldn't be sent to the back.
15978         - Layout the mdi windows when the container is first made visible.
15979         * Form.cs: Give the MdiClient a ref to the containing form when we
15980         create it.
15981         
15982 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15983
15984         * LinkLabel.cs : link_font could be uninitialized, so populate one
15985           before actual use. Fixed bug #78340.
15986
15987 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15988
15989         * XplatUIX11.cs : clipboard format native value is IntPtr.
15990           Fixed bug #78283.
15991
15992 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15993
15994         * Control.cs: 
15995           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
15996             which is passed up the parent chain by DefWndProc
15997           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
15998             to DefWndProc (#77956)
15999         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
16000
16001 2006-05-10  Jackson Harper  <jackson@ximian.com>
16002
16003         * MdiClient.cs: We need to remove the controls from the mdi
16004         collection, when we close the window.
16005         * MdiWindowManager.cs: Special handling of closing mdi windows.
16006         * InternalWindowManager.cs: Make the close method virtual so the
16007         mdi window manager can handle it specially.
16008
16009 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
16010
16011         * DataGrid.cs:
16012           - Recalculate grid when the data source has changed
16013           - Matches styles provided by user from all data sources types
16014         * DataGridTableStyle.cs: For columns that provided by the user set the
16015         with the preferred value is there was unassigned.
16016         * CurrencyManager.cs: throw OnItemChanged event
16017
16018 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
16019
16020         * PictureBox.cs: Don't animate until handle is created. Start animation
16021           when handle is created.
16022
16023 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16024
16025         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
16026           current codebase.
16027         * XEventQueue.cs: We don't need to provide the extra info
16028
16029 2006-05-10  Jackson Harper  <jackson@ximian.com>
16030
16031         * MdiClient.cs: If the mdi clients parent form has a background
16032         image set, we draw that background image for the mdi area's
16033         background.
16034
16035 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
16036
16037         * TextBoxBase.cs: Set IBeam cursor (#78347)
16038
16039 2006-05-10  Mike Kestner  <mkestner@novell.com>
16040
16041         * ToolBar.cs: fix some text padding issues with ButtonSize
16042         calculation. Update the default size to match MS documentation.
16043         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
16044         button size. Fixes #78296.
16045
16046 2006-05-10  Mike Kestner  <mkestner@novell.com>
16047
16048         * ListBox.cs: use is_visible for scrollbar positioning in case the
16049         control isn't on screen yet.  Fix off by one with Right vs Width
16050         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
16051         
16052 2006-05-10  Jackson Harper  <jackson@ximian.com>
16053
16054         * X11Dnd.cs: Drop to a control with another control on top of it.
16055         * ToolBar.cs: Work on a copy of the buttons list, so that it can
16056         be modified in click handlers. TODO: Look for similar problems in
16057         other controls.
16058
16059 2006-05-09  Jackson Harper  <jackson@ximian.com>
16060
16061         * Form.cs: Window managers need the old window state when setting
16062         window state now.
16063         * InternalWindowManager.cs: Allow the base mdi window manager to
16064         handle more of the MDI only stuff (like maximize buttons).
16065         * MdiWindowManager.cs: Fix some snafus in changing the window
16066         state.  Add all the menu functionality, for both popup and
16067         maximized menus.
16068         * MdiClient.cs: When a new form is selected the currently
16069         activated form is sent to the back, this matches MS.
16070         - Implement a new method to activate the next mdi child window.
16071
16072 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
16073
16074         * Control.cs: 
16075           - Added new InternalCapture method to allow controls to prevent
16076             the capture behaviour on the click handlers
16077           - Switched to use InternalCapture
16078         * ComboBox.cs:
16079           - Using InternalCapture to prevent mouse captures from being released
16080             on mouse button release (Fixes #78100)
16081         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
16082           returns Form borders if a caption is present. (Fixes #78310)
16083
16084 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
16085
16086         * TreeNode.cs: Changed serialization .ctor to not require every field
16087           to be present. (#78265)
16088         * OwnerDrawPropertyBag.cs: Added serialization .ctor
16089
16090 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
16091
16092         * MimeIcon.cs: for is faster than foreach for strings.
16093
16094 2006-05-05  Mike Kestner  <mkestner@novell.com>
16095
16096         * CheckedListBox.cs: update check handling code to not use selected.
16097         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
16098         behavior for visual feedback, motion response, shift/ctrl handling,
16099         and properly deal with all 4 selection modes. Updates to bounds
16100         handling logic.  Add scroll wheel support. [Fixes #77842]
16101
16102 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16103
16104         * ListView.cs:
16105           - Moved adding of Implicit controls into .ctor. That way, subsequent
16106             creation of the controls will not cause them to think they are 
16107             toplevel windows (fixes #78200 header problem)
16108           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
16109           - Switched visibility setting of header control to use internal field
16110             to avoid triggering handle creation
16111           - Now checking if handle is created before causing a refresh when items
16112             are added (This makes us now match handle creation time with MS)
16113         * Splitter.cs: Removed loading of private splitter cursor, switched to
16114           Cursors version now that that is loading the right ones
16115         * Cursors.cs: Load proper splitter cursors from resources
16116         * Cursor.cs: Added second method of loading resource cursors for the 
16117           VS.Net users amongst us
16118
16119 2006-05-05  Mike Kestner  <mkestner@novell.com>
16120
16121         * ListView.cs: give header_control a minimum size based on the
16122         ListView size.
16123
16124 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
16125
16126         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
16127           window seems to do that with metacity, so set that type. (#78120)
16128
16129 2006-05-05  Mike Kestner  <mkestner@novell.com>
16130
16131         * ListViewItem.cs: fix Details mode checkbox layout bug.
16132         * ThemeWin32Classic.cs: draw a ListView column header for unused space
16133         at the end of the header, if it exists. [Fixes for #78200]
16134
16135 2006-05-04  Jackson Harper  <jackson@ximian.com>
16136
16137         * MdiClient.cs: Add a helper property to get the container form.
16138         * MdiWindowManager.cs: We have to make sure to use the menu origin
16139         when drawing the icons and buttons, this fixes maximized window
16140         icons/buttons on win32.
16141         * InternalWindowManager.cs: Reset the restore captions when a
16142         window goes from Maximized to Minimized and vice versa. Move the
16143         DrawMaximizedButtons into the MdiWindowManager source, tool
16144         windows can't be maximized. NOTE: This could use a little
16145         refactoring if time ever permits.
16146         
16147 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16148
16149         * TextBox.cs: Add MWFCategoryAttributes
16150         * TextBoxBase.cs: Add MWFCategoryAttributes
16151         * Form.cs: Add MWFCategoryAttributes
16152
16153 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16154
16155         * Control.cs: Add MWFCategoryAttributes
16156         * ScrollableControl.cs: Add MWFCategoryAttributes
16157
16158 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
16159
16160         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
16161           Divider is true. Fix a little glitch in PropertyToolBar
16162           drawing code
16163
16164 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
16165
16166         * Control.cs:
16167           - Dispose: Call base.Dispose, this causes the disposed event
16168             to be fired (and probably other, more important stuff)
16169           - SetVisibleCore: Set is_visible to true after creating the
16170             window so that the window still gets created invisible (if
16171             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
16172             to generate a WM_ACTIVE message
16173         * Form.cs: Call Dispose when we want to destroy the window, instead of
16174           just destroying the handle (Dispose will do that for us)
16175         * XplatUIX11.cs:
16176           - RootWindow also needs a queue, so we can properly process the
16177             property change events from RootWindow (like Activate)
16178           - Generatic synthetic WM_ACTIVE message when the active window is
16179             being destroyed
16180
16181 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
16182
16183         * LinkLabel.cs: Trigger a recalc of our label dimensions when
16184           bounds are changed
16185
16186 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
16187
16188         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
16189           for determining width and height (image might not be assigned if
16190           we're drawing an imagelist)
16191
16192 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
16193
16194         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
16195         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
16196           height from system
16197         * Theme.cs: No longer returns hardcoded menu height, instead calls
16198           new driver method
16199         * Form.cs (OnLoad): Scaling happens before triggering Load events 
16200           on MS (# 78257)
16201
16202 2006-05-01  Mike Kestner  <mkestner@novell.com>
16203
16204         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
16205
16206 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
16207
16208         * TextBoxBase.cs: Removed Fixme
16209         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
16210
16211 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
16212
16213         * XplatUIX11.cs:
16214           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
16215             the rectangle relative to the parent, considering borders. We
16216             don't really want that.
16217           - ScrollWindow: Fixed warning to be more understandable
16218         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
16219           scrollbars and scroll only the visible area
16220         * RichTextBox.cs: Removed debug output
16221
16222 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16223
16224         * NumericUpDown.cs (Text): Just use base
16225         * UpDownBase.cs: Ensure txtView is created before using it
16226
16227 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16228
16229         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
16230           casting to IntPtr to avoid 64bit overflow errors
16231
16232 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16233
16234         * Control.cs:
16235           - AllowDrop: Don't force handle creation.
16236           - CreateHandle: Added call to tell driver if we're allowed to drop
16237
16238 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16239
16240         * FileDialog.cs: Remember the last directory not only for the
16241           current instance but also for new FileDialog instances.
16242
16243 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
16244         
16245         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
16246           broke sending async messages
16247
16248 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
16249
16250         * XplatUIX11.cs:
16251           - ScrollWindow: Fixed method. We finally generate expose events again
16252             for scrolled areas. This was causing 'garbage' when scrolling
16253             textbox and other controls that used ScrollWindow
16254           - Switched from using the regular queue for paint events to the MS 
16255             model of 'generating' paint events when the queue is empty.
16256             We use the new XQueueEvent.Paint subclass to store which windows
16257             need painting.
16258           - AddExpose now takes the x/y/width/height of the exposed area
16259             and inserts the window into the paint queue if not already there
16260           - InvalidateWholeWindow: Switched to use new AddExpose method
16261           - UpdateMessageQueue: Added which queue to monitor for paint events
16262           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
16263             the unlikely case nothing above handles it. We reset the expose
16264             pending states to get them off the queue.
16265           - GetMessage: Now pulls a paint event if no other events are in the
16266             queue
16267           - Invalidate: Switched to new AddExpose method
16268           - PeekMessage: Updated to understand pending paint events
16269           - UpdateWindow: Fixed logic bug. We were only updating if the window
16270             didn't need updating. Also switched to sending WM_PAINT directly,
16271             like MS does.
16272         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
16273           and random access Remove(). The random access is needed to handle
16274           UpdateWindow() where a WM_PAINT is sent directly without accessing
16275           the queue.
16276         * ScrollBar.cs: Added Update() calls to cause immediate updates to
16277           allow for better feedback when scrolling. Scrollbars are small and
16278           the immediate update should make it 'feel' more responsive without
16279           slowing things down. ScrollBar still needs it's invaliate logic
16280           updated to not always invalidate the whole bar on certain changes.
16281
16282 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16283
16284         * Control.cs:
16285         (BackColor): if the control does not support a transparent background,
16286         return the default backcolor when the parent backcolor is transparent.
16287
16288 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
16289
16290         * Application.cs: Updated to new StartLoop/GetMessage API
16291         * RichTextBox.cs: Provide some output on RTF parsing errors
16292         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
16293           new queue_id argument to GetMessage and PeekMessage to allow faster
16294           handling of per-thread queues in drivers.
16295         * Hwnd.cs: Added Queue tracking and property
16296         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
16297         * XEventQueue.cs: Added thread trackingA
16298         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
16299         * XplatUIX11.cs:
16300           - Implemented new per-thread queue
16301           - GetMessage: Fixed return/break behaviour on several cases. We were
16302             returning stale messages in some cases, instead of just processing
16303             the next message
16304
16305 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16306
16307         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
16308
16309 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
16310
16311         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
16312           fixed off-by-one comparisons between Width/Height and Right/Bottom.
16313
16314 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
16315
16316         * PropertyGridView.cs: Fix drop down width.
16317
16318 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16319
16320         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
16321           a mess in DrawToolBar, so I removed one of them.
16322
16323 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
16324
16325         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
16326           needed (clip). Otherwise we get artifacts.
16327
16328 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
16329
16330         * FixedSizeTextBox.cs: Added constructor to allow specifying which
16331           dimension is fixed
16332         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
16333           and switched FixedSizeTextBox to only be fixed vertical (#78116)
16334         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
16335           if it matches the scale base font (avoids unneeded scaling)
16336
16337 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
16338
16339         * X11DesktopColors.cs: One gtk_init_check should be enough
16340
16341 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
16342
16343         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
16344           match MS behaviour
16345
16346 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
16347
16348         * TextBoxBase.cs: 
16349           - Generate OnTextChanged for Backspace even if we're only deleting
16350             the current selection
16351           - When setting the Text property, only select all text if the
16352             control does not have focus when it is being set. Otherwise
16353             just place the cursor at the beginning of the control
16354
16355 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
16356
16357         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
16358           Added a little helper to draw PropertyGrid ToolBar with a different
16359           border and a different BackColor.
16360         * PropertyGrid.cs: Some background parts didn't get painted with the
16361           correct background color. Added a class that helps us to draw the
16362           correct border for PropertyGridView and a class that helps us to
16363           draw ToolBars with a different backcolor
16364         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
16365
16366 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
16367
16368         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
16369         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
16370
16371 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
16372
16373         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
16374           into the palette entries. Also, since we're working on a copy
16375           we needed to copy the palette back onto the bitmap.
16376         * Cursor.cs: Same fix as XplatUIWin32.cs.
16377
16378 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
16379
16380         * ImageListStreamer.cs: Need to read the var (or we're off)
16381
16382 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
16383
16384         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
16385           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
16386           TextBoxBase.cs: Unused var fixes
16387         * AxHost.cs: Small 2.0 fix
16388         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
16389           as it seems that is what at least Metacity expects. This will make
16390           icons show up on 64bit platforms. We still have some 64bit size
16391           issues, though, since the startup app window size still won't match.
16392
16393 2006-04-25  Mike Kestner  <mkestner@novell.com>
16394
16395         * *.cs: cleanup newly reported exception var unused warnings.
16396
16397 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16398
16399         * ThemeWin32Classic.cs: Button image alignment now matches exactly
16400           ms
16401
16402 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16403
16404         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
16405           image. The image position is always the same, no matter if the
16406           button is pressed or not.
16407
16408 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16409
16410         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
16411           selection and set the correct filename for SaveFileDialog.
16412           Patch by Emery Conrad.
16413
16414 2006-04-24  Mike Kestner  <mkestner@novell.com>
16415
16416         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
16417         check for item.X outside the ClientRect instead of item.Y. Fixes
16418         #78151.
16419
16420 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16421
16422         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
16423         trust that value blindly and do some sanity check. Fixes bug #77814.
16424
16425 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16426
16427         * ImageListStreamer.cs: save the mask as a 1bpp image.
16428
16429 2006-04-21  Mike Kestner  <mkestner@novell.com>
16430
16431         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
16432         pass Checked and Indeterminate to the Theme Engine. Improve
16433         encapsulation with ListBox.
16434         * ListBox.cs: Keep a StringFormat instead of calculating it every item
16435         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
16436         nested types.  Move all CheckState functionality to CheckedListBox.
16437         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
16438         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
16439         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
16440         single base list. Fix scrollbar sizing and placement to mirror MS.
16441         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
16442         used.
16443         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
16444         for CheckedListBox by using new DrawItemState info.  Center the
16445         checkboxes on the items. Use new StringFormat property.
16446
16447 2006-04-18  Jackson Harper  <jackson@ximian.com>
16448
16449         * Form.cs: MdiChildren don't do default locations the same way as
16450         regular forms.  This prevents a crash when trying to position the
16451         mdi windows.
16452
16453 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
16454
16455         * PropertyGridTextBox.cs: Formatting, copyright
16456         * PropertiesTab.cs: Formatting
16457         * PropertyGrid.cs: Formatting
16458         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
16459           click toggling of values
16460           
16461 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
16462
16463         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
16464         * Control.cs (.ctor): verify_thread_handle is static, don't reset
16465           every time a control is created
16466         * Application.cs: Removed obsolete EnableRTLMirroring method
16467
16468 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
16469
16470         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
16471         SelectedIndex to -1. Fixes bug #78121.
16472
16473 2006-04-17  Jackson Harper  <jackson@ximian.com>
16474
16475         * Binding.cs: Handle null values for Current and BindingContext.
16476         This occurs when binding is a little delayed.
16477         * CurrencyManager.cs: return null for Current when there are no
16478         items in the list.
16479         - Hookup to the listchanged event on the DataView and update
16480         bindings when the list is changed.  This fixes late binding of
16481         controls.
16482
16483 2006-04-17  Jackson Harper  <jackson@ximian.com>
16484
16485         * X11Dnd.cs:
16486         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
16487         Ringenbach.
16488
16489 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
16490
16491         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
16492           place
16493         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
16494           with the correct ButtonState
16495
16496 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
16497
16498         * XplatUIX11.cs: Improved distinguishing between window types to
16499           tell the WM a type closer to what the app wants (Fixes #78107)
16500
16501 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16502
16503         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
16504           GrabHandle
16505
16506 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16507
16508         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
16509           drawing code to reflect the size grip changes
16510
16511 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16512
16513         * ImageListStreamer.cs: fix handling of the mask that follows the main
16514         bitmap when deserializing and serialize it properly. The generated mask
16515         should better be a 1bpp image, but I'll do that later.
16516
16517 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16518
16519         * FileDialog.cs: Show something in the DirComboBox on *nix if the
16520           path doesn't fit into some of our Current.Places
16521
16522 2006-04-13  Jackson Harper  <jackson@ximian.com>
16523
16524         * ComboBox.cs: Use borders instead of drawing our own decorations,
16525         try to obey correct rules for heights.
16526         * Theme.cs:
16527         * ThemeNice.cs:
16528         * ThemeClearLooks.cs:
16529         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
16530         this is now handled by borders.
16531         - Remove unused DrawListBoxDecorationSize method.
16532         
16533 2006-04-13  Mike Kestner  <mkestner@novell.com>
16534
16535         * MenuAPI.cs: null guarding for the disbled click check fixes crash
16536         reported by Alex.
16537
16538 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16539
16540         * ThemeWin32Classic.cs: 
16541           - Fixed CPDrawStringDisabled
16542           - Corrected drawing of disabled menu items
16543           - Fixed drawing of disabled radio buttons (bug #78095)
16544           - Draw check in a disabled CheckBox with color ControlDark 
16545
16546 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16547
16548         * Form.cs: Use the provided width when calculating the menu size;
16549           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
16550           and ClientSize.Width won't be updated yet
16551         * Application.cs: Use Visible instead of Show() to make form visible,
16552           this way we create the handle later and menusize is considered
16553
16554 2006-04-12  Mike Kestner  <mkestner@novell.com>
16555
16556         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
16557         reporting.
16558
16559 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16560
16561         * TextBox.cs: Implemented context menu
16562
16563 2006-04-12  Mike Kestner  <mkestner@novell.com>
16564
16565         * ListView.cs: implement box selection. fixes #77838.
16566         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
16567
16568 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16569
16570         * XplatUIX11.cs: Added setting of window type when transient window
16571           is created (metacity would move it otherwise)
16572         * X11Structs.cs: Added WINDOW_TYPE atoms
16573         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
16574           background (the control is Opaque but still wants transparent
16575           backgrounds)
16576
16577 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16578
16579         * Control.cs: Added OnPaintBackgroundInternal to allow controls
16580           that set Opaque but don't mean it (like all ButtonBase-derived
16581           controls) to still draw their background
16582         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
16583           the background
16584
16585 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16586
16587         * Control.cs (PaintControlBackground): Set the graphics object
16588           on our PaintEvent to null to prevent it from being disposed
16589           when the PaintEvent gets disposed
16590
16591 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
16592
16593         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
16594         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
16595
16596 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16597
16598         * Control.cs: 
16599           - Added transparency check to BackColor property. Transparent
16600             backgrounds are only allowed if the control styles permit it
16601           - Added recursive painting of parent control background and
16602             foreground if a control with a transparent backcolor is drawn
16603             (Thanks to Tim Ringenback for providing his 'hack' as a base
16604              for this patch) Fixes #77985 and #78026.
16605           - Added Opaque style check before calling OnPaintBackground, no
16606             need to draw the background if the control is opaque
16607           - Removed ControlAccessibleObject owner variable (inherited from
16608             base, no need to define again)
16609           - Added some documentation links explaining the drawing events
16610             and styles
16611
16612 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16613
16614         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
16615           that the affected control is the located at the left border of our
16616           parent (Fixes #77936)
16617
16618 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16619
16620         * TextBoxBase.cs: When rendering disabled or readonly controls,
16621           draw the background with 'Control' instead of 'Window' color as
16622           long as the user hasn't specifically set a color
16623
16624 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16625
16626         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
16627           since that won't be updated if the user types text (only if it's
16628           programatically set)
16629
16630 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16631
16632         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
16633           layout changes do to app-triggered resizes will have the proper
16634           display rectangle for layout
16635
16636 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
16637
16638         * ThemeWin32Classic.cs:
16639           - Make use of the SystemBrushes and SystemPens wherever possible
16640           - Corrected some highlight colors
16641           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
16642             drawing
16643         * Theme.cs: Added Empty field to CPColor struct
16644
16645 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16646
16647         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
16648           is displayed when calculating the display rectangle. Thanks to Mike
16649           for teaching me the err of my ways.
16650
16651 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
16652
16653         * ScrollableControl.cs:
16654           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
16655             (instead of 0,0) and we now return the real width/height instead of
16656             just the clientrectangle, adjusted for padding. The rectangle is
16657             now cached and created by the new CalculateDisplayRectangle method.
16658           - Created new CalculateDisplayRectange method, which basically does
16659             what get_DisplayRectangle() did originally, but now using the 
16660             right edge instead of DisplayRectangle to determine the size of
16661             our scrollbars
16662           - get_Canvas(): Fixed it to properly calculate canvas for 
16663             right/bottom controls which seem to be placed to the right/bottom
16664             of any controls that have a fixed location
16665           - Removed TODO that's taken care of
16666           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
16667             and SetDisplayRectLocation according to new MSDN2 docs
16668           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
16669             event when that is called, this is added for compatibility
16670           - ScrollControlIntoView(): Implemented.
16671           - Switched scrollbars to be implicit, they shouldn't be selectable
16672         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
16673           call it when the active control is set/changed
16674         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
16675         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
16676           implicit_control variable (used for native Win32 message generation)
16677         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
16678           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
16679         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
16680         * XplatUIStructs.cs: Added ScrollBarCommands enum
16681
16682 2006-04-10  Jackson Harper  <jackson@ximian.com>
16683
16684         * ButtonBase.cs:
16685         * CheckedListBox.cs:
16686         * ComboBox.cs:
16687         * DataGrid.cs:
16688         * DataGridView.cs:
16689         * Form.cs:
16690         * GroupBox.cs:
16691         * ListBox.cs:
16692         * PrintPreviewControl.cs:
16693         * ProgressBar.cs:
16694         * PropertyGrid.cs:
16695         * Splitter.cs:
16696         * StatusBar.cs:
16697         * TrackBar.cs:
16698         * UpDownBase.cs: Fixup base event overrides.
16699         
16700 2006-04-06  Mike Kestner  <mkestner@novell.com>
16701
16702         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
16703         all user-initiated value changes to min <= value <= max-thumbsz+1.
16704         (set_Value): check for vert/horiz when calculating new thumb position.
16705         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
16706         like MS does.
16707         (OnMouseMoveSB): refactor the thumb dragging code and refine
16708         invalidation logic to reduce flicker.
16709         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
16710         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
16711         (UpdateThumbPosition): small code readability cleanup
16712
16713 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
16714
16715         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
16716           different
16717
16718 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16719
16720         * ThemeNice.cs: Use a better graphics effect when a button is pressed
16721
16722 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16723
16724         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
16725         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
16726           This dramatically reduces the number of Pen.Dispose calls. 
16727           Where possible call ResPool methods only once instead of calling it
16728           over and over again (for example for the same color).
16729
16730 2006-04-06  Mike Kestner  <mkestner@novell.com>
16731
16732         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
16733         Also remove an unused private field on the collection. Fixes #77972.
16734
16735 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16736
16737         * ThemeNice.cs: Added ToolBar drawing code
16738
16739 2006-04-06  Mike Kestner  <mkestner@novell.com>
16740
16741         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
16742         I'm assuming that means we need to look up the toplevel for the
16743         provided control. Fixes the crash trace in #77911 but exposes another
16744         crash in some strange reflection usage in NDocGui.
16745
16746 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16747
16748         * ThemeNice.cs: Gave it a little silver touch and added Images
16749           method
16750         * FontDialog.cs: FontDialog is not resizable
16751         * FileDialg.cs: Added SizeGripStyle.Show
16752
16753 2006-04-05  Jackson Harper  <jackson@ximian.com>
16754
16755         * KeyboardLayouts.cs: Remove warning.
16756
16757 2006-04-05  Jackson Harper  <jackson@ximian.com>
16758
16759         * Control.cs: Enable OnPaintInternal so we can use it for drawing
16760         all of our controls instead of Paint +=.
16761         * ListBox.cs:
16762         * ListView.cs:
16763         * MenuAPI.cs:
16764         * MessageBox.cs:
16765         * NotifyIcon.cs:
16766         * ProgressBar.cs:
16767         * ScrollBar.cs:
16768         * Splitter.cs:
16769         * StatusBar.cs:
16770         * TabControl.cs:
16771         * TextBoxBase.cs:
16772         * ToolBar.cs:
16773         * TrackBar.cs:
16774         * UpDownBase.cs:
16775         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
16776         use OnPaintInternal. Remove Width/Height and Visible checks in
16777         paint handler, this is done at a higher level now.
16778         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
16779         * PaintEventArgs.cs: Add a handled flag so controls that don't
16780         want anymore painting after OnPaintInternal can make sure OnPaint
16781         isn't called.
16782
16783 2006-04-05  Mike Kestner  <mkestner@novell.com>
16784
16785         * Form.cs: fix the menu WndProc hacks to respect the native enabled
16786         state of the form, so that we don't process events when Modal dialogs
16787         are up. Fixes #77922.
16788
16789 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
16790
16791         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
16792           checking is done.
16793
16794 2006-04-05  Mike Kestner  <mkestner@novell.com>
16795
16796         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
16797
16798 2006-04-05  Mike Kestner  <mkestner@novell.com>
16799
16800         * ListView.cs (HeaderMouseMove): null guarding for the over column
16801         when setting up the drag_to_index.  Fixes #78015.
16802
16803 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
16804
16805         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
16806           in the taskbar. Transient windows seem to accomplish that.
16807
16808 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
16809
16810         * Form.cs:
16811           - Re-enabled CreateParams.X/Y code for FormStartPosition
16812           - Added code for manual placement when creating the Control
16813           - Incomplete patch to treat MDI forms differently when
16814             setting the ClientSizeCore. (Still need to figure out handling
16815             x/y coords there)
16816         * XplatUIX11.cs:
16817           - When we're explicitly setting the X/Y position of a non-Child
16818             window, let the WM know. Metacity really wants this.
16819
16820 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16821
16822         * ThemeNice.cs: Added CPDrawButton
16823
16824 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16825
16826         * ThemeNice.cs: Changed the color for focused buttons and activated
16827           the arrows for small scroll buttons.
16828
16829 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16830
16831         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
16832           anymore. Changed some method modifiers to protected (virtual)
16833         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
16834           changes
16835         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
16836           Updated drawing of menus, buttons and progressbars; added
16837           CPDrawBorder3D 
16838
16839 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16840
16841         * ImageListStreamer.cs: implemented serialization/deserialization
16842         of the images.
16843
16844 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
16845
16846         * ThemeWin32Classic.cs:
16847           - Removed all the DrawFrameControl stuff; CPDrawButton,
16848             CPDrawCheckBox and CPDrawRadioButton are now handled directly
16849             inside the methods
16850           - Updated and corrected the drawing code of CPDrawButton,
16851             CPDrawCheckBox and CPDrawRadioButton to better match ms
16852           - Updated theme checkbox and radiobutton code to use the CP*
16853             methods
16854
16855 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16856
16857         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
16858           bug is fixed
16859
16860 2006-03-31  Jackson Harper  <jackson@ximian.com>
16861
16862         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
16863         sometimes.
16864         * UpDownBase.cs: Don't CreateGraphics manually, use a
16865         Refresh. Ideally we would invalidate the correct areas here.
16866
16867 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16868
16869         * XplatUIX11.cs: 
16870           - We now track the mapping state of windows. If a window (or 
16871             one of it's parents) is not mapped we no longer permit
16872             WM_PAINT messages to be generated since we'd otherwise get 
16873             lots of BadMatch X errors. Jackson did all the work figuring
16874             out the problem.
16875           - Destroying the caret if the window it's contained in is 
16876             destroyed. Can't use regular DestroyCaret method since it
16877             might fall into a drawing function (trying to remove the
16878             caret) and with that generate new BadMatch errors. Again,
16879             Jackson tracked this down.
16880           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
16881             make sure we send the messages to all windows. (The old code
16882             would send the WM_DESTROY to the window, and then all child
16883             windows would be 'gone' because the WM_DESTROY handle lookup
16884             would no longer find the destroyed window)
16885         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
16886         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
16887
16888 2006-03-31  Jackson Harper  <jackson@ximian.com>
16889
16890         * ScrollableControl.cs: Dont recalc if we are not visible.
16891
16892 2006-03-31  Mike Kestner  <mkestner@novell.com>
16893
16894         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
16895         the visibility branch.
16896
16897 2006-03-31  Jackson Harper  <jackson@ximian.com>
16898
16899         * ScrollBar.cs: Cap values when incrementing/decrementing.
16900
16901 2006-03-31  Mike Kestner  <mkestner@novell.com>
16902
16903         * MenuAPI.cs: setup menu.tracker for popup/context menus.
16904         * ToolTip.cs: guard against timer expirations with no active control.
16905         Not sure why it happened.
16906
16907 2006-03-31  Mike Kestner  <mkestner@novell.com>
16908
16909         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
16910         text.
16911         * ToolTip.cs: Position the tooltip based on where the cursor is at
16912         popup time, not at MouseEnter time.  Add a Down state so that we don't
16913         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
16914         positioning offset. Lookup DisplaySize at positioning time, since it
16915         can theoretically change during invocation.
16916         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
16917         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
16918
16919 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16920
16921         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
16922           Fixes behaviour when the Text property of the box is String.Empty
16923
16924 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
16925
16926         * XplatUIX11.cs: Only send mouseleave for our client windows, not
16927           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
16928           a window)
16929
16930 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16931
16932         * FileDialog.cs: Visual enhancement for the popup buttons in 
16933           PopupButtonPanel
16934
16935 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16936
16937         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
16938           code
16939
16940 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
16941
16942         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
16943           highlighted menu items to match ms
16944
16945 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
16946
16947         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
16948
16949 2006-03-30  Mike Kestner  <mkestner@novell.com>
16950
16951         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
16952         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
16953         go active to account for HotLight to Selected transition.
16954         * MenuItem.cs: add internal Selected prop. Fill out the Status
16955         property by calculating it from item info. Add HotLight,
16956         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
16957
16958 2006-03-30  Mike Kestner  <mkestner@novell.com>
16959
16960         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
16961
16962 2006-03-29  Jackson Harper  <jackson@ximian.com>
16963
16964         * Form.cs: Implement TODO.
16965
16966 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
16967
16968         * PrintPreviewDialog.cs: Implemented missing methods and events; still
16969           missing proper dialog setup in the constructor
16970
16971 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
16972
16973         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
16974         * Control.cs:
16975           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
16976           - Fixed ResetBindings and removed TODO
16977           - Added check for cross-thread calls to get_Handle()
16978           - Added Marshaller attribute for set_Font to satisfy class status
16979         * FontDialog.cs: Removed TODOs that seemed implemented
16980         * UpDownBase.cs: Removed unneeded TODO and Fixme
16981         * MessageBox.cs: Implemented support for Default button and removed TODO
16982         * FileDialog.cs: Removed obsolete TODO
16983         * DomainUpDown.cs: Removed obsolete TODO
16984         * ButtonBase.cs: Removed obsolete TODO
16985         * XplatUIWin32.cs: Removed obsolete TODO
16986         * Form.cs:
16987           - Removed obsolete TODO
16988           - Calling CheckAcceptButton when the acceptbutton is changed to allow
16989             internal status updates
16990           - Making sure the active control is selected when the control is created
16991         * CurrencyManager.cs: Removed obsolete TODO
16992
16993 2006-03-29  Mike Kestner  <mkestner@novell.com>
16994
16995         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
16996         of PrintPreviewDialog and RichTextBox.
16997
16998 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
16999
17000         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
17001           DarkDark, Light and LightLight colors for a specific color
17002         * ThemeWin32Classic.cs:
17003           - Use Button drawing code to draw RadioButtons and CheckBoxes with
17004             Appearance = Button 
17005           - Make use of the new ResPool helper CPColor
17006           - Draw ProgressBar and StatusBar with correct 3D borders
17007
17008 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
17009
17010         * ColorDialog.cs: Return selected color. Fixes bug #77940.
17011
17012 2006-03-28  Mike Kestner  <mkestner@novell.com>
17013
17014         * ListView.cs: fix Icon layout to plan for scrollbar widths when
17015         calculating col/row counts.
17016
17017 2006-03-28  Mike Kestner  <mkestner@novell.com>
17018
17019         * ColumnHeader.cs:
17020         * ListView.cs:
17021         * ListViewItem.cs:
17022         * Menu.cs: 
17023         switch to explicit interface method implementation for some methods
17024         corcompare identifies as inconsistent with MS.
17025
17026 2006-03-28  Mike Kestner  <mkestner@novell.com>
17027
17028         * MainMenu.cs: 
17029         * Menu.cs:
17030         add a few missing methods from the class status output.
17031
17032 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
17033
17034         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
17035           correct.
17036
17037 2006-03-28  Mike Kestner  <mkestner@novell.com>
17038
17039         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
17040
17041 2006-03-27  Mike Kestner  <mkestner@novell.com>
17042
17043         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
17044         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
17045
17046 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
17047
17048         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
17049
17050 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17051
17052         * ThemeWin32Classic.cs:
17053           - GroupBox: Inserted a little gap between the text and the lines
17054             on the right side
17055           - Made the code in CPDrawBorder3D more readable
17056           - Corrected the drawing location of the up and down arrows in 
17057             CPDrawScrollButton
17058
17059 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17060
17061         * ControlPaint.cs: Corrected line widths in DrawBorder for
17062           ButtonBorderStyle Inset and Outset
17063
17064 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17065
17066         * ThemeWin32Classic.cs:
17067           - Rewrote the totally broken CPDrawBorder3D method. That was
17068             one of the main problems for the terrific ThemeWin32Classic
17069             look
17070           - Updated and corrected Button drawing
17071           - Correct the dimensions of the SizeGrip to match ms ones
17072           - Removed a small drawing glitch in DrawComboBoxEditDecorations
17073         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
17074           Border3DStyle.Sunken to match ms.
17075
17076 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
17077
17078         * ThemeWin32Classic.cs: First small part of the "de-uglify
17079           ThemeWin32Classic" effort, SizeGrip
17080
17081 2006-03-24  Jackson Harper  <jackson@ximian.com>
17082
17083         * XplatUIX11.cs: Give a max idle time of one second, this matches
17084         MS and forces an Idle event every second when there are no other
17085         events in the queue.
17086
17087 2006-03-24  Mike Kestner  <mkestner@novell.com>
17088
17089         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
17090         * ListView.Item.cs: fix layout issues with null image lists and images
17091         smaller than checkbox size.
17092         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
17093         mode like MS does.  It's weird, but consistent.  ;-)
17094         Fixes #77890.
17095
17096 2006-03-24  Mike Kestner  <mkestner@novell.com>
17097
17098         * ListView.cs: Scroll wheel support for the item control.  Fixes
17099         #77839.
17100
17101 2006-03-23  Jackson Harper  <jackson@ximian.com>
17102
17103         * ScrollableControl.cs: Special case negative sized areas, not
17104         zero.
17105         * MonthCalendar.cs: Save the rect of the clicked date so we can
17106         use it for invalidation.
17107         - Try to cut down on the number of invalidates
17108         - Invalidate the rect the mouse is over and was over when moving
17109         the mouse, so we get the focus box following the cursor.
17110
17111 2006-03-23  Mike Kestner  <mkestner@novell.com>
17112
17113         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
17114         focus rectangle drawing. Fixes #77835.
17115
17116 2006-03-23  Mike Kestner  <mkestner@novell.com>
17117
17118         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
17119         the if and else if and reverting back to the original == check on the
17120         None conditional.
17121
17122 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17123
17124         * FontDialog.cs: Update the example panel if the selected index of
17125           the fontListBox changes.
17126
17127 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
17128
17129         * FileDialog.cs: Make FileDialog remember which directory it was in
17130           last in the same execution.
17131
17132 2006-03-22  Mike Kestner  <mkestner@novell.com>
17133
17134         * FileDialog.cs: make the DropDownMenu on the toolbar display
17135         RadioChecks since they are mutually exclusive and that's what MS does.
17136
17137 2006-03-22  Mike Kestner  <mkestner@novell.com>
17138
17139         * Theme.cs: add Color param to CPDrawMenuGlyph.
17140         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
17141         checks and radio marks and arrows are visible on highlighted items.
17142         * ControlPaint.cs: update to use new Theme signature.
17143
17144 2006-03-22  Mike Kestner  <mkestner@novell.com>
17145
17146         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
17147         is active. Fixes #77870.
17148
17149 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17150
17151         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
17152           to be focused/selected after startup
17153
17154 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
17155
17156         * ColorDialog.cs: 
17157           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
17158             CustomColors and ShowHelp properties
17159           - Some internal rewrites to get better results when using the
17160             ColorMatrix
17161
17162 2006-03-22  Mike Kestner  <mkestner@novell.com>
17163
17164         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
17165         HoverSelection.  Fixes #77836.
17166
17167 2006-03-22  Mike Kestner  <mkestner@novell.com>
17168
17169         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
17170         ToggleButtons.  (De)Sensitize the Back button around a stack count of
17171         1, not 0.  Update ButtonSize based on a pixel count of the win32
17172         control.  Adjust the toolbar size/location for new button size.
17173
17174 2006-03-22  Jackson Harper  <jackson@ximian.com>
17175
17176         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
17177         true.
17178         * ScrollBar.cs: When doing increments and decrements we need to
17179         set the Value property so that ValueChanged gets raised. A
17180         possible optimization here would be to make an internal SetValue
17181         that doesn't invalidate immediately.
17182         * ToolTip.cs: Tooltips get added to their container (when
17183         supplied) so they get disposed when the container is disposed.
17184         - Don't create tooltips for String.Empty. This prevents all these
17185         little 2-3 pixel windows from showing up when running nunit-gui
17186         and driving me mad.
17187         * Form.cs: Don't set topmost when setting the owner if the handles
17188         haven't been created yet.  The topmost set will happen when the
17189         handles are created.
17190
17191 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
17192
17193         * XplatUIX11.cs:
17194           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
17195           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
17196             visible (to allow them to recalculate their sizes)
17197
17198 2006-03-21  Mike Kestner  <mkestner@novell.com>
17199
17200         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
17201         methods. Removed a ton of redundant code.  Still not really happy with
17202         the border rendering, but I think that's mainly because of the
17203         ControlDarkDark being black instead of a dark grey. Depending on how 
17204         close we want to be, we might want to revisit those color choices.
17205         Among the new features added during the refactor were DropDownArrow
17206         pressed rendering, Disabled image rendering.  Proper flat appearance
17207         boundary rendering.  Removed the Divider and Wrapping dividers since I
17208         can't figure out any combination of themes and conditions to make the
17209         MS control draw a horizontal line on a toolbar despite what the
17210         Divider property docs indicate.
17211         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
17212         conditions and incorrect layout.  Updated to coding standard.
17213         * ToolBarButton.cs: refactored layout and positioning code from
17214         ToolBar to here.  Invalidate wherever possible instead of forcing
17215         redraws of the whole toolbar. 
17216         (Known remaining issues: explicit ButtonSize smaller than provided
17217         images.)
17218
17219 2006-03-21  Mike Kestner  <mkestner@novell.com>
17220
17221         * ContextMenu.cs (Show): use the position parameter instead of just
17222         showing at the MousePosition.
17223
17224 2006-03-21  Jackson Harper  <jackson@ximian.com>
17225
17226         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
17227         control handle this.
17228         * TreeNodeCollection.cs: If we are clearing the root node we need
17229         to reset top_node so calcs can still happen.
17230         * ThemeWin32Classic.cs: This is a Flags so we need to check
17231         properly.
17232         
17233 2006-03-21  Jackson Harper  <jackson@ximian.com>
17234
17235         * DataGrid.cs: Create columns when the binding context has been
17236         changed.
17237         * X11Structs.cs: Keysyms are uints.
17238         - Add size to fix build.
17239
17240 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
17241
17242         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17243           XplatUIOSX.cs: 
17244           - Added ResetMouseHover method to allow controls to retrigger
17245             hovering if they need it more than once
17246           - Implemented MouseHoverTime and MouseHoverSize properties
17247         * Timer.cs: Start() must reset the interval
17248         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
17249           properties
17250
17251 2006-03-21  Jackson Harper  <jackson@ximian.com>
17252
17253         * X11Keyboard.cs: improved layout detection. Move the nonchar
17254         tables into this file.
17255         * KeyboardLayouts.cs: Move the tables into resource files.
17256
17257 2006-03-21  Mike Kestner  <mkestner@novell.com>
17258
17259         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
17260
17261 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
17262
17263         * Mime.cs: Various speed optimizations. Looking up mime types
17264           is now 2 times faster than before
17265
17266 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
17267
17268         * CreateParams.cs: Added internal menu field
17269         * Control.cs: 
17270           - Switched call order for UpdateBounds; now we always call
17271             the one that also takes ClientSize, and we're calculating the 
17272             client size via driver method in the others. The previous
17273             method of tracking client size by difference wasn't working
17274             for forms where even the starting client size wouldn't match
17275             the overall form size (due to borders) (Part of fix for #77729)
17276           - CreateParams(): Do not use parent.Handle unless the handle is
17277             already created. Causes havoc with Nexxia and throws off our
17278             creation of controls
17279         * XplatUIX11.cs:
17280           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
17281           - Switched handling of ConfigureNotify over to new PerformNCCalc 
17282             method (consolidates code)
17283           - Changed RequestNCRecalc to use new PerformNCCalc method
17284           - Added calls to RequestNCRecalc when menus and borders are changed
17285             to allow app to set NC size. (Part of fix for #77729) This matches
17286             when MS send a WM_NCRECALC on Win32 windows.
17287           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
17288             (Part of fix for #77729). This matches what MS does, they also
17289             send that message when the form is made visible.
17290           - XException.GetMessage: Improved usability of X errors by including
17291             a translation of the window into Hwnd and Control class
17292           - Improved debug info for window creation, reparenting and destruction
17293           - Created helper method WindowIsMapped() [Currently not used]
17294         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
17295         * Form.cs:
17296           - CreateParams: Now setting our menu on the new internal menu field
17297           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
17298             avoid calculating the same property twice
17299         * Hwnd.cs:
17300           - Improved usability of ToString() for debugging purposes
17301           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
17302             determine the height of the menu, instead of just the font. This
17303             required to also create a graphics context and to keep a bmp 
17304             around (for performance reasons)
17305
17306 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
17307
17308         * MenuAPI.cs: Added OnMouseUp method
17309         * Form.cs:
17310           - Now remembering the requested client size, avoids size errors
17311           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
17312             instead of base if the menu is active. This is required due to
17313             control now capturing and releasing on down/up and it would
17314             prematurely release our menu capture
17315
17316 2006-03-17  Jackson Harper  <jackson@ximian.com>
17317
17318         * KeyboardLayouts.cs: Add the czech layouts.
17319
17320 2006-03-16  Jackson Harper  <jackson@ximian.com>
17321
17322         * Control.cs: Use the viewport space when sizing not the controls
17323         client size, so things like ScrollableControl that effect the
17324         viewport size (when scrollbars are added) are computed correctly.
17325         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
17326         of ManagerEntrys.
17327         - Handle creating BindingManagers for null data sources.
17328         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
17329         source, otherwise when rows are added they are added to the 'fake'
17330         datasource and we will crash when trying to set the position in
17331         those rows.
17332         - Use Implicit scrollbars on the datagrid so they arent
17333         selectable.
17334         
17335 2006-03-16  Jackson Harper  <jackson@ximian.com>
17336
17337         * Binding.cs:
17338         * InternalWindowManager.cs:
17339         * MdiWindowManager.cs:
17340         * X11Keyboard.cs: I really want Mike to love me again (fix
17341         compiler warnings).
17342
17343 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
17344
17345         * DataGrid.cs:
17346           - OnMouseDown: Switch to editing mode when clicking on the cell
17347                          even if we're clicking on the cell that's currently 
17348                          selected
17349           - ProcessGridKey: Left/Right now wrap like MS.Net does
17350           - ProcessGridKey: Tab now knows to add a new row when tab is
17351                             pressed in the cell of the last column of the 
17352                             last row
17353           - ProcessGridKey: Enter now adds another row  if pressed in the last
17354                             row and selectes the new row, same column cell
17355           - ProcessGridKey: Home/End navigate columns, not rows, like 
17356                             originally implemented
17357           - Broke ProcessKeyPreview code out into an extra Internal method
17358             so it can be called from the edit code
17359         * DataGridTextBox.cs (ProcessKeyMessage):
17360           - Switched to accept Tab keypresses
17361           - Added F2 handling to allow jumping to the end of the edited cell
17362           - Added logic to allow moving caret left/right inside edited cell
17363             and making the edited cell jump when the caret hits cell borders
17364           - Tab and Enter are now passed to the datagrid after being handled
17365         * TextBoxBase.cs:
17366           - Removed capture code now that Control handles it
17367           - set_SelectionStart now ensures caret is visible
17368
17369 2006-03-16  Jackson Harper  <jackson@ximian.com>
17370
17371         * TrackBar.cs: Debackwards the increment/decrement for handling
17372         mouse clicks on the bar with vertical trackbars.
17373         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
17374         bottom to match MS.
17375
17376 2006-03-16  Mike Kestner  <mkestner@novell.com>
17377
17378         * ListView.cs: make shift/ctrl keyboard and mouse selection 
17379         consistent with the MS control. Fix a bug in
17380         SelectedListViewItemCollection.Clear that was pissing me off for the
17381         better part of a day because the collection was being altered
17382         underneath us as we walked the list.
17383
17384 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
17385
17386         * Control.cs: Not sure how we could miss this so long, but it seems
17387           that MS.Net has Capture set all the way from before calling 
17388           OnMouseDown through sending the mouse events until after
17389           OnMouseUp. This will fix DataGrid's selection being set to end
17390           at the location of the MouseUp.
17391
17392 2006-03-15  Jackson Harper  <jackson@ximian.com>
17393
17394         * BindingContext.cs: Check the binding after its added so that it
17395           can initialize the binding managers and hookup to events.
17396         * Binding.cs: Data members seem to sometimes include rows/cols in
17397           the format Row.Column we now take this into account.
17398           - Hookup to the position changed event so we can update the
17399           control when the position has changed in the data set.
17400         * CurrencyManager.cs: Take into account the row/col naming
17401           convention when creating dataset tables.
17402         * BindingContext.cs: Using a newer better way of storing
17403           datasource/datamember pairs.  Hopefully this better matches MS for
17404           looking up binding managers.
17405
17406
17407 2006-03-15  Jackson Harper  <jackson@ximian.com>
17408
17409         * BindingContext.cs: The currency manager needs the data member
17410         name, if the member is a data set we use the name to find the
17411         correct table.
17412         * CurrencyManager.cs: When creating the list prefer an IList over
17413         an IListSource.
17414         - Attempt to create a DataTable from a DataSet (TODO: might need
17415         some better error checking here, although MS doesn't seem to have much)
17416         - If we have a DataTable create a view and use it as our list.
17417
17418 2006-03-15  Mike Kestner  <mkestner@novell.com>
17419
17420         * ListView.cs: keep a matrix of the icon mode layout to facilitate
17421         keyboard navigation. Support Up/Down/Left/Right selection correctly
17422         for all 4 View modes.
17423         * ListViewItem.cs: add internal row/col fields for icon layouts.
17424
17425 2006-03-15  Jackson Harper  <jackson@ximian.com>
17426
17427         * TabControl.cs: Redraw the tabs when we resize so their newly
17428         calculated sizes are drawn on screen.
17429         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
17430         composite characters.
17431         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
17432         - filter events so that composite characters can be created
17433         patches by peter
17434         * X11Structs.cs: Add XIMProperties enum.
17435
17436 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17437
17438         * Control.cs (BringToFront, SendToBack): Don't use window or handle
17439           unless it's created
17440
17441 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17442
17443         * Control.cs (PerformLayout): We don't need to consider visiblity
17444           for anchoring, only for docking. This fixes 'whacky' alignment
17445           in listbox and other controls that use implicit scrollbars after
17446           the previous PerformLayout patch
17447         * ListBox.cs: Switched to use implicit scrollbars
17448           
17449 2006-03-14  Mike Kestner  <mkestner@novell.com>
17450
17451         * ToolBar.cs: 
17452         * VScrollBar.cs:
17453         - chain up the "new event" overrides to base and use
17454         OnEvent to raise them.  Part of fix for bug #76509.
17455
17456 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
17457
17458         * FileDialog.cs: Do not select an item in the parent directory
17459           on backspace
17460
17461 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17462
17463         * Control.cs (PerformLayout): It would seem that we considered
17464           invisible windows for our layout. Not quite the right thing
17465           to do. Now we don't any longer, thereby fixing bug #76889.
17466
17467 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17468
17469         * Control.cs (CanFocus): I goofed. A control can have focus 
17470           even though it's not selectable. Made it match MS docs.
17471
17472 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17473
17474         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
17475           center by default (fixes #76895)
17476         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
17477           all uses of Border3DSides.All with the explicit ORd together
17478           Left|Right|Top|Bottom because I assume that nobody was aware 
17479           that All also implies a center fill. Most places I checked had
17480           a fill right above.
17481         * ProgressBarStyle.cs: Added
17482
17483 2006-03-13  Mike Kestner  <mkestner@novell.com>
17484
17485         * ListView.cs: fix breakage in drag shadow header positioning 
17486         from Peter's csc compilation fix.
17487
17488 2006-03-13  Mike Kestner  <mkestner@novell.com>
17489
17490         * ListView.cs: fix NRE produced by backspacing twice in a focused
17491         FileDialog.
17492
17493 2006-03-13  Mike Kestner  <mkestner@novell.com>
17494
17495         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
17496
17497 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17498
17499         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
17500           be changed
17501         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
17502           the allowed size before making programmatic size changes
17503
17504 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
17505
17506         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
17507           set, metacity is broken and will still use the emty sizes in 
17508           the struct. (Fix for #77089)
17509
17510 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17511
17512         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
17513           WindowExStyles and marked both enums as Flags
17514         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
17515           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
17516           to match WindowStyles split
17517         * XplatUIX11.cs:
17518           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
17519           - Updated to match WindowStyles split
17520         * XplatUIWin32.cs:
17521           - Fixed FosterParent creation, was using ExStyle on the Style field
17522             (This should help with Popup focus issues)
17523           - Updated to match WindowStyles split
17524
17525 2006-03-13  Jackson Harper  <jackson@ximian.com>
17526
17527         * MdiWindowManager.cs: Use the system menu height. Fixes some
17528         strange sizing issues.
17529
17530 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17531
17532         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
17533         * TextBoxBase.cs:
17534           - Scroll to caret after inserting text (#77672)
17535           - Make scroll range one pixel higher, fixes off-by-one error (and
17536             makes underlines visible on the last line)
17537
17538 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
17539
17540         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
17541           the keyboard state from being stuck with keys in 'pressed' state when
17542           focus is switched away via keyboard
17543         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
17544           reset the keyboard if no X11 KeyUp events are expected to come
17545         * X11Structs.cs: Switched type of Visible to bool to match driver
17546
17547 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17548
17549         * TextControl.cs:
17550           - Switched caret to be just 1 pixel wide, matches MS and looks less
17551             clunky
17552           - Moved caret display 1 pixel down from the top of the control
17553             to improve view
17554           - InsertCharAtCharet: Update the selection start if moving the caret
17555             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
17556           - No longer always creating the caret when the caret methods are
17557             called. Only the actual ShowCaret/HideCaret will do that now
17558           - Only setting caret visible if the owner control has focus
17559           - UpdateView: Added invalidation-shortcut logic for center and right 
17560             aligned text. Previously we'd update all according to the left
17561             logic which caused drawing errors. Also fixed height of invalidated
17562             areas, now properly invalidating the whole area (was off-by-one)
17563           - owner_HandleCreated: Always generate the document when the
17564             handle is created; this ensures that 
17565         * TextBoxBase.cs:
17566           - Fixed situation where caret would disappear under the right
17567             window border, also improved scrolling behaviour on left-
17568             aligned textboxes
17569           - Fixed right-aligned textboxes to have a border to the
17570             right instead of the caret being under the right border
17571         * XplatUIX11.cs:
17572           - Switched from 'nested' to simple visible/not visible tracking 
17573             for caret (part of fix for #77671)
17574           - No longer passing through translated FocusIn/FocusOut messages
17575             since we were notifying too often and the wrong windows. Instead
17576             we just notify our focussed window of receiving or loosing focus
17577         * XplatUIWin32.cs: Switched from 'nested' show/hide 
17578           counting for caret to simple visible yes/no behaviour (part of 
17579           fix for #77671)
17580
17581 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17582
17583         * Mime.cs: Remove debug code...
17584
17585 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17586
17587         * MimeGenerated.cs: Removed
17588         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
17589           and subclasses) from /usr/(local/)share/mime and
17590           $HOME/.local/share/mime.
17591
17592 2006-03-10  Jackson Harper  <jackson@ximian.com>
17593
17594         * MdiWindowManager.cs: Recalc the NC area when a window is
17595         maximized/restored so that the menu area is drawn on forms that
17596         don't have a menu.
17597
17598 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17599
17600         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17601           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
17602           us to force a WM_NCCALCRESIZE message being sent. This is needed
17603           for MDI maximizing.
17604
17605 2006-03-10  Jackson Harper  <jackson@ximian.com>
17606
17607         * Form.cs: We need to use the ActiveMenu when calculating menu
17608         height.
17609         - Fix nullref when the window manager hasn't been created yet.
17610         * Control.cs: Fix nullref when we try to bring a control to the
17611         front that has no parent.
17612         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
17613         height.
17614         - Add a dummy item to the maximized menu so it always has the
17615         correct height. Otherwise when there are no menus we don't get our
17616         icon and buttons.
17617         
17618
17619 2006-03-10  Jackson Harper  <jackson@ximian.com>
17620
17621         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
17622         stuff.
17623         * Form.cs: Make the window_state internal so the window managers
17624         can track it.
17625         - When an MDI child is maximized let its window manager create the
17626         main menu (so it can add its icon).
17627         - Notify the window managers of state changes
17628         - Let the window manager paint its buttons and handle button
17629         clicks on the menu when it is maximized.
17630         * InternalWindowManager.cs: Move the prev_bounds into the mdi
17631         window manager, since tool windows don't use it, only mdi windows.
17632         - Tell the main form that we don't want it to handle NCPAINT
17633         itself to avoid extra painting.
17634         - Handle clicks on a maximized windows menu.
17635         - Handle window state changes
17636         - Handle minimize/maximize clicks correctly by setting the window state.
17637         * MdiWindowManager.cs: Add an icon menu that (the menu you get
17638         when clicking on the forms icon).
17639         - New method to create a forms maximized menu. This is its normal
17640         menu + an icon.
17641         - Handle window state changes.
17642         - Handle sizing of maximized windows.  Maximized windows are just
17643         drawn bigger then the parent visible area. All controls are still
17644         there, they are just outside the visible area (this matches windows).
17645         * MdiClient.cs: No scrollbars when a child window is maximized.
17646         - Let the children windows figure out how big they should be when
17647         sizing maximized windows.
17648         - Implement a version of ArrangeIconicWindows somewhat similar to
17649         Windows version.  There are some little differences, but I don't
17650         think any app will rely on the layout of minimized mdi windows.
17651
17652 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17653
17654         * Padding.cs: Several fixes to allow compiling with csc 2.0
17655
17656 2006-03-09  Jackson Harper  <jackson@ximian.com>
17657
17658         * Menu.cs:
17659         * MenuItem.cs: Cheap hack so we can add items to the list without
17660         the events being raised.  This allows adding mdi items during
17661         drawing. TODO: Should probably find a better time to add the items.
17662
17663 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17664
17665         * ThemeWin32Classic.cs:
17666           - CheckBox_DrawText: Added logic to not wrap if not enough space
17667             is available (Fix for bug #77727)
17668           - RadioButton_DrawText: Added logic not to wrap if not enough
17669             space is available (Fix for bug #77727). Also removed some
17670             duplicate code, DrawString always drawing the regular text
17671             before hitting the if statement.
17672
17673 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
17674
17675         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
17676
17677 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17678
17679         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
17680         * ContainerControl.cs: Partial implementation of some 2.0 scaling
17681           methods. Moved the new 2.0 properties into alphabetical order with
17682           other properties and added MonoTODO tags
17683
17684 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17685
17686         * AutoScaleMode.cs: Added. Fix build.
17687
17688 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17689
17690         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17691           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
17692           and was requiring premature handle creation for calls from above
17693         * Form.cs, Control.cs: Removed handle arguments from calls to
17694           CalculateClientRect()
17695
17696 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17697
17698         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
17699           drag_column.column_rect is MarshalByRef and can't be used that way
17700
17701 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17702
17703         * AxHost.cs: Added deserialization constructor for 
17704           AxHost+State (fixes 77743)
17705
17706 2006-03-09  Mike Kestner  <mkestner@novell.com>
17707
17708         * ListView.cs: 
17709         - Added column drag reordering for details view.
17710         - fixed behavior when mouse is dragged off column and
17711         AllowColumnReorder is false.
17712         * ColumnHeader.cs: clone the format too in Clone.
17713         * Theme.cs: add DrawListViewHeaderDragDetails method.
17714         * ThemeWin32Classic.cs:
17715         - impl new method for drawing drag column shadows and targets.
17716         - support column offset for details mode in DrawListViewItem.
17717
17718 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17719
17720         * TextControl.cs: Reset the char_count when the document is cleared
17721           (Fixes bug reported on mono-winforms mailing list)
17722
17723 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17724
17725         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
17726           of calling base we simply process the key ourselves, since both
17727           DefWindowProc and the handled method would set m.Result. 
17728           (Fixes #77732)
17729
17730 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17731
17732         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
17733           method also moves the window; instead implemented a copy of
17734           Control.ScaleCore (Part of fix for #77456)
17735         * TextBoxBase.cs: 
17736           - Created new CreateGraphicsInternal method to allow providing
17737             a graphics context when no handle is created without triggering
17738             handle creation. (Part of fix for #77456)
17739           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17740         * TextControl.cs: 
17741           - Switched Constructor to require TextBoxBase instead of Control (to
17742             allow uncast access to CreateGraphicsInternal)
17743           - Safeguarded use of owner.Handle property. No longer accessing it
17744             unless the handle is already created.
17745           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17746           - Now triggering a recalc when owning control becomes visible
17747         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
17748           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
17749           premature handle creation (Part of fix for #77456)
17750         * Control.cs:
17751           - We now only destroy our double-buffering buffers when the
17752             control is resized or disposed, but not when visibility
17753             changes. (The code even re-created them twice every time)
17754           - Now requiring a redraw of the buffer on visibility changes
17755             (fixes bug 77654 part 2)
17756           - Not passing OnParentVisibleChanged up unless the control
17757             is visible
17758           - CanFocus: Fixed to match MS documentation
17759           - Focus: Fixed to return actual focus state and to check if
17760             setting focus is legal before setting it
17761
17762 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
17763
17764         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
17765           when to draw focus rectangle by looking at parent focus and
17766           selected state instead. This fixes TabPages on Linux sometimes
17767           having none or multiple focus rectangles.
17768         * XplatUIX11.cs (SetFocus): 
17769           - Don't set the focus if the same window already has focus
17770           - Use SendMessage instead of PostMessage (like it's Win32
17771             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
17772             to match MS behaviour
17773         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
17774           are not selectable.
17775
17776 2006-03-07  Jackson Harper  <jackson@ximian.com>
17777
17778         * PictureBox.cs: Revert line I accidently committed last week.
17779
17780 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17781
17782         * Control.cs: 
17783           - Added new IsRecreating and ParentIsRecreating properties to
17784             allow testing if RecreateHandle has been called on ourselves
17785             or one of our parents
17786           - WndProc(WM_DESTROY): If our control handle is being recreated
17787             we immediately need to create the handle when receiving the
17788             destroy, that way our child windows find a valid parent handle
17789             when they themselves are being recreated upon WM_DESTROY receipt
17790             (fix for bug #77654 part 1)
17791         * XplatUIX11.cs:
17792           - DestroyWindow: WM_DESTROY must be sent to our own window before
17793             notifying any child windows. MS documents that child windows
17794             are still valid when WM_DESTROY is received. (Control now relies on
17795             this behaviour)
17796           - Added some fine-grain debug options
17797
17798 2006-03-06  Jackson Harper  <jackson@ximian.com>
17799
17800         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
17801         box and base calculations off this.
17802         * MdiChildContext.cs:
17803         * MdiWindowManager.cs: Don't need to ensure scrollbars here
17804         anymore.
17805         
17806 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
17807
17808         * Splitter.cs: In situations where the affected control is added
17809           to the parent's control list after the splitter, we would not
17810           populate affected. Now we try populating it on mousedown, if
17811           it's not already set, and force it to be re-set whenever our
17812           parent changes.
17813
17814 2006-03-03  Matt Hargett  <matt@use.net>
17815
17816         * Control.cs: implement Control.Padding
17817         * Padding.cs: -Padding.All returns -1 when constructing with the
17818         implicit default ctor
17819         -Padding.ToString() matches MS.NET
17820         * ContainerControl.cs: implement
17821         ContainerControl.AutoScaleDimensions
17822         * ListControl.cs: implement ListControl.FormattingEnabled
17823         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
17824         * ButtonBase.cs:
17825         * TabPage.cs: Implement UseVisualStyleBackColor.
17826         * PictureBox.cs: Implement PictureBox.InitialImage.
17827
17828 2006-03-03  Mike Kestner  <mkestner@novell.com>
17829
17830         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
17831         event declarations to proxy to base event.
17832         * ListViewItem.cs: update to use ItemControl.
17833         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
17834         * ThemeWin32Classic.cs: update to new ListView theme API and fix
17835         column header label rendering for 0 width columns.
17836
17837 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
17838
17839         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
17840           that causes the control to be created. Fixes #77476.
17841
17842 2006-03-02  Jackson Harper  <jackson@ximian.com>
17843
17844         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
17845         expose_pending.
17846
17847 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
17848
17849         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
17850           passed in for the EventArgs (fixes #77690)
17851
17852 2006-03-01  Jackson Harper  <jackson@ximian.com>
17853
17854         * ScrollBar.cs: Refresh afterbeing resized.
17855
17856 2006-02-28  Mike Kestner  <mkestner@novell.com>
17857
17858         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
17859         Clean up a tracker compile warning.
17860         * MenuItem.cs: add internal PerformPopup method.
17861         [Fixes #77457]
17862
17863 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17864
17865         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
17866           implicit expose) when the text is set to null
17867
17868 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
17869
17870         * RichTextBox.cs (FlushText): When newline is true, we always
17871           need to split the line, even if no text is on it and we may
17872           never eat newlines. (Fixes #77669)
17873
17874 2006-02-28  Mike Kestner  <mkestner@novell.com>
17875
17876         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
17877         and set Selected instead.
17878         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
17879         collections.
17880
17881 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17882
17883         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
17884
17885 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
17886
17887         * FontDialog.cs:
17888           - Got rid of the panel. All controls are now directly added to
17889             the dialog form
17890           - It is now possible to set a font with the Font property
17891           - MinSize and MaxSize property do now what they should
17892           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
17893           - Searching and selecting a font with the font textbox works now,
17894             the same applies to the style and size textbox
17895           - Draw the correct 3D border in the example panel
17896           - Fixed a little mem leak (unused fonts didn't get disposed)
17897           - Many other internal updates/rewrites...
17898           - Fix typo
17899
17900 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17901
17902         * TextControl.cs: 
17903           - InsertRTFFromStream: Added 'number of characters inserted' argument
17904           - set_SelectedRTF: Now using the number of characters to calculate
17905             the new location for the selection and cursor (x/y cannot be used
17906             due to potentially already wrapped text)
17907
17908 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
17909
17910         * TextControl.cs: Added property and implemented means to allow 
17911           disabling recalculation of a document (can be used to speed up
17912           multiple inserts and is needed to make RTF inserts predictable, see
17913           bug #77659)
17914         * RichTextBox.cs: Using the new NoRecalc property of Document to
17915           keep x/y insert locations predictable. Also makes it faster inserting
17916           large chunks of RTF
17917
17918 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17919
17920         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
17921           it's easier for a child control to handle the other messages without
17922           having to duplicate the special functionality
17923         * TextBoxBase.cs
17924           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
17925             code to handle processing the key ourselves, in order to get 
17926             access to the result of KeyEventArgs.Handled. We now only call 
17927             ProcessKey if they key hasn't been handled already. Fixes #77526.
17928           - set_Text: If null or empty string is given, just clear the 
17929             document. Fixes part of #77526
17930
17931 2006-02-27  Jackson Harper  <jackson@ximian.com>
17932
17933         * SizeGrip.cs: Paint the background color before painting the grip
17934         so things look right.
17935         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
17936
17937 2006-02-27  Mike Kestner  <mkestner@novell.com>
17938
17939         * ListView.cs:
17940           - Restructure layout and invalidation model to remove a ton of
17941           flicker from the control and speed up performance in general.
17942           - Add manual column resize, flickers like crazy, but I already have
17943           some ideas on how I'll fix that. (#76822)
17944           - Merge the three Icon-based views into a single layout method.
17945           - Move item selection interaction logic from the item since 
17946           interaction with the collections is more appropriate to the view.
17947           - Deselection on non-item clicks.
17948         * ListViewItem.cs:
17949           - Encapsulate most of the layout. Add some internal props to trigger
17950           layout.  Move to a model where Items invalidate themselves instead
17951           of just invalidating the whole control every time something changes.
17952           - Invalidate on Text/Caption changes.
17953           - switch to an offset based layout model to avoid having to absolute
17954           position every element on item moves.
17955           - correct checkbox layout to conform to MS layout.
17956         * ThemeWin32Classic.cs:
17957           - refactor some column header drawing code.
17958           - fix string justification for column headers (#76821)
17959           - make SmallIcon labels top justified for compat with MS impl.
17960         * ThemeClearlooks.cs:
17961           - adjust to new ListViewItem internal checkbox bounds api.
17962
17963 2006-02-27  Jackson Harper  <jackson@ximian.com>
17964
17965         * Control.cs:  Change where implicit controls fall in the zorder.
17966         They are now on top of all children.
17967         - Synced AddImplicit code with Add
17968         - Removed unused enumerator.
17969         * SizeGrip.cs: Remove the TODO as its been TODONE.
17970
17971 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
17972
17973         * TextControl.cs(Insert): Combine the last lines unless the insertion
17974           string ends with \n\n, otherwise we leave one line too many (Fixes
17975           something I noticed with the testapp for #77526; the bug itself was
17976           already fixed in the previous checkin)
17977
17978 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
17979
17980         * RichTextBox.cs:
17981           - SelectionColor and SelectionFont methods no longer set absolute
17982             styles. Instead, the keep font or color respectively (This 
17983             resolves a long-standing FIXME in the code)
17984           - When flushing RTF text, the insert code now considers text trailing
17985             behind the insertion point (Fixes the bug where when replacing
17986             the selected text via SelectedRTF the remainder of the line behind 
17987             the selection would stay on the first insertion line)
17988         * TextBoxBase.cs:
17989           - AppendText now updates the selection points after inserting text
17990           - AppendText now ensures that the last tag (sometimes 0-length) of
17991             the document is used for the style information (Fixes part of 
17992             bug #77220)
17993         * TextControl.cs:
17994           - Created new FontDefiniton class to allow describing partial style
17995             changes
17996           - StreamLine() now takes a lines argument, to allow it to decide
17997             whether an encountered zero-length tag is the last in the document
17998             (which must be kept to not loose the font/color contained in it,
17999             for later appends)
18000           - Created Combine() and Split() methods for Marker structs, to 
18001             support marker updates due to reformatted documents (soft line
18002             wraps)
18003           - Implemented Document.CaretTag setter
18004           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
18005             of the last line (Not the cause, but also exposed by bug #77220)
18006           - Added LineTag argument to InsertString method, to allow callers
18007             to force a certain tag to be used (required to force use of the
18008             trailing zero-length tag of a document)
18009           - Now updating markers in Combine(), to avoid stale tag markers
18010           - Added some method descriptions to aid maintenance
18011           - Implemented new FormatText concept, allowing additive/subtractive
18012             formatting by only specifying the components that are to be 
18013             changed. This was needed for resolving the RTB.SelectedColor/
18014             RTB.SelectedFont fixmes
18015           - Added Break() support method to allow breaking up linetags (used
18016             for partial formatting)
18017           - Added GenerateTextFormat() method. It is used for partial 
18018             formatting and allows to generate a full font/color from given
18019             attributes and an existing tag.
18020
18021 2006-02-26  Jackson Harper  <jackson@ximian.com>
18022
18023         * XplatUIX11.cs:  Use the correct caption height.
18024         - Translate hittest coordinates to screen coords to match MS.
18025         * XplatUIWin32.cs: When we create MDI windows we need to reset
18026         some of the style flags, so we get a nice blank window, and can
18027         draw all the decorations ourselves.
18028         - Set a clipping rectangle on the non client paint event, the
18029         window manager drawing code needs one.
18030         * Form.cs: The window manager needs to know when the window state
18031         has been updated.
18032         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
18033         don't need to factor in border and title sizes in these
18034         methods. TODO: Remove the args and fix the call points.
18035         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
18036         properly.
18037         - Let the driver set the cursors.
18038         - Improve active window handling
18039         - Correct sizes for title bars and buttons.
18040         - Match MS drawing better
18041         * MdiWindowManager.cs: We don't need to handle border style
18042         updates specially anymore.
18043         - Check for scrollbars when windows are done moving
18044         - Handle Active properly.
18045         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
18046         correctly. I am spewing the exception though, so we don't hide the
18047         bugs.
18048         
18049 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
18050
18051         * DataGridViewRowPostPaintEventArgs.cs,
18052           DataGridViewCellPaintingEventArgs.cs,
18053           DataGridViewRowCollection.cs,
18054           DataGridViewRowPrePaintEventArgs.cs,
18055           DataGridViewCell.cs: Clear a few warnings and implement a few
18056           exceptions that should be thrown.
18057
18058 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18059
18060         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
18061           'inheriting' our parent's (non-default) cursor. (Part of
18062            the fix for #77479)
18063
18064 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
18065
18066         * XplatUIX11.cs: Fixed cast to make csc happy
18067
18068 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
18069
18070         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
18071           it's for the client area (part of fix for #77479 and needed
18072           for MDI window cursor handling)
18073         * XplatUIX11.cs
18074           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
18075             the appropriate default cursors and also passing the message
18076             up the parent chain 
18077           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
18078             for non-client areas
18079
18080 2006-02-15  Jackson Harper  <jackson@ximian.com>
18081
18082         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
18083         is a real MDI window
18084
18085 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
18086
18087         * X11DesktopColors.cs: Instead of checking the desktop session
18088           string for "KDE" check if it starts with "KDE"
18089
18090 2006-02-10  Jackson Harper  <jackson@ximian.com>
18091
18092         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
18093         systems).
18094
18095 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18096
18097         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
18098           errors
18099         * ColorDialog.cs:
18100           - Got rid of the panel. All controls are now directly added to
18101             the dialog form
18102           - Changed to mono coding style
18103
18104 2006-02-10  Jackson Harper  <jackson@ximian.com>
18105
18106         * InternalWindowManager.cs: We don't need the set visibility to
18107         false hack anymore now that peter has written beautiful shutdown
18108         code.
18109
18110 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
18111
18112         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
18113           where already explicitly destroyed
18114
18115 2006-02-10  Jackson Harper  <jackson@ximian.com>
18116
18117         * MdiClient.cs: Handle the case where windows are too high or to
18118         the left and we need scrollbars.
18119
18120 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
18121
18122         * MimeIcon.cs: Added some icons
18123         * FileDialog.cs:
18124           - Fixed bug #77477
18125           - Got rid of the panel. All controls are now directly added to
18126             the dialog form
18127           - Changed to mono coding style
18128           - On Linux "My Computer" and "My Network" will now show some
18129             more usefull information. A new class, MasterMount, gathers
18130             this information from /proc/mount. Updated MWFFileView to make
18131             use of this information
18132           - Fixed a bug that caused FileDialog to crash when
18133             ".recently_used" file had a zero size
18134           - FilterIndex does now what it should
18135           - Some Refactoring
18136         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
18137             FileDialog changes
18138
18139 2006-02-09  Jackson Harper  <jackson@ximian.com>
18140
18141         * ComboBox.cs: Don't touch if null.
18142
18143 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
18144
18145         * Cursor.cs: 64bit safeness fix
18146         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
18147
18148 2006-02-09  Jackson Harper  <jackson@ximian.com>
18149
18150         * Form.cs: If a form is made into an MDI form update the styles so
18151         all the props can get set correctly.
18152         - Kill the mdi_container when we dont need it anymore.
18153         * InternalWindowManager.cs: Add missing NOT
18154
18155 2006-02-08  Jackson Harper  <jackson@ximian.com>
18156
18157         * InternalWindowManager.cs: Respek clipping when drawing MDi
18158         decorations.
18159
18160 2006-02-08  Jackson Harper  <jackson@ximian.com>
18161
18162         * Hwnd.cs: Add bits to track non client expose events.
18163         * XplatUIX11.cs: Track non client expose events on the hwnd. This
18164         gives us a proper invalid rect and will allow for some nice
18165         optimizations with NC client drawing
18166         - MDI windows are children windows, so move their style handling
18167         into the child window block.
18168         * InternalWindowManager.cs: Remove a state reset that was
18169         getting invoked at the wrong time. Fixes managed windows getting
18170         into a 'stuck' captured state.
18171
18172 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
18173
18174         * TextControl.cs (Document.ctor): Now initializing 
18175           selection_anchor. Fixes #77493
18176
18177 2006-02-07  Jackson Harper  <jackson@ximian.com>
18178
18179         * TrackBar.cs: The increment/decrements were backwards.
18180
18181 2006-02-07  Mike Kestner  <mkestner@novell.com>
18182
18183         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
18184         to the instance itself.
18185
18186 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
18187
18188         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
18189           on ulongs and pointers, the size differs between 32bit and 64bit
18190           systems. 
18191
18192 2006-02-07  Mike Kestner  <mkestner@novell.com>
18193
18194         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
18195         for 64 bit platforms to work around a metacity bug. 
18196
18197 2006-02-07  Jackson Harper  <jackson@ximian.com>
18198
18199         * TrackBar.cs: Process the input keys we need, and hookup to
18200         KeyDown instead of using WndProc, so we get key messages.
18201
18202 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
18203
18204         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
18205           machine we're on. 
18206         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
18207           we need to translate the XdndVersion atoms array before sending it
18208
18209 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
18210
18211         * XplatUIX11.cs: 
18212           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
18213             number of bits for the property, not the number of bytes. The
18214             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
18215             but would not crash since it specified 8 bits instead of 4 bits)
18216           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
18217             defined as XID -> long in the C headers)
18218           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
18219             references since those are now IntPtr to begin with
18220           - Switched all Atom.XXX 'int' casts to IntPtr casts
18221           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
18222           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
18223           - Added XChangeActivePointerGrab DllImport (for X11DnD)
18224         * X11Structs.cs:
18225           - Changed 'int' type for Atoms in XEvent structures to IntPtr
18226           - Changed atom in HoverStruct to be IntPtr
18227         * X11DnD.cs:
18228           - Removed local DllImports, switched code to use those from XplatUIX11
18229           - Removed/fixed casts related to the switch of Atom to be a IntPtr
18230
18231 2006-02-06  Mike Kestner  <mkestner@novell.com>
18232
18233         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
18234         method signatures in the import region.  There may still be some
18235         lingering struct marshaling issues, as I didn't drill down into those.
18236         Yet.
18237
18238 2006-02-06  Jackson Harper  <jackson@ximian.com>
18239
18240         * ComboBox.cs: Dont manually set the top_item, this is computed
18241         when the scrollbar position is set.
18242
18243 2006-02-06  Mike Kestner  <mkestner@novell.com>
18244
18245         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
18246         startup crashes on amd64.  There's other fixes needed.  All pinvoke
18247         usage of Atom needs to be mapped to IntPtr for example.  And there are
18248         likely other int/long issues to be addressed.
18249
18250 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
18251
18252         * FileDialog.cs: One more...
18253
18254 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18255
18256         * FileDialog.cs: Next try
18257
18258 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18259
18260         * FileDialog.cs: First part of fix for #77464
18261
18262 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
18263
18264         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
18265           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
18266           AcceptButton border drawing.
18267
18268 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
18269
18270         * Form.cs: Moved positioning of form after auto scaling is applied,
18271           otherwise it would possibly use wrong form size.
18272
18273 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
18274
18275         * Control.cs (RecreateHandle): No need to re-create any child
18276           controls, the child windows will get destroyed automatically by
18277           the windowing system or driver, and re-created when the handle
18278           is being accessed the first time. Fixes #77456
18279         * Form.cs: No longer setting the form to closing if the handle is 
18280           being recreated. This seems like the right thing to do, don't
18281           have a bug or testcase for this, though.
18282
18283 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18284
18285         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
18286           controls to avoid unwanted side effects
18287
18288 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
18289
18290         * Control.cs: 
18291           - ScaleCore needs to scale the bounds, not the ClientSize of the 
18292             control. Fixes #77416.
18293           - DefaultSize is 0,0 for control
18294         * TextBoxBase.cs: 
18295           - DefaultSize is 100, 20
18296           - SetBoundsCore: Now enforcing the height, no matter if the provided
18297             height is more or less than the preferred one, as long as AutoSize
18298             is on
18299         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
18300
18301 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
18302
18303         * Control.cs:
18304           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
18305             call unless both performLayout is true *and* we have a pending
18306             layout change
18307           - ResumeLayout: MS does not completely nest Suspend and Resume,
18308             they bottom out at 0, fixed our code to match that.
18309           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
18310             SetBoundsCore, we were updating even when we shouldn't. This fixes
18311             swf-anchors mis-anchoring when resizing the app fast and lots.
18312           - UpdateDistances: Now only setting the left and top distance if 
18313             we have a parent and are not suspended, this is based on
18314             a suggestion by Don Edvaldson in bug #77355.
18315           - OnVisibleChanged: Fixed logic when to create the control. We may
18316             not create the control if we have no parent or if it's not visible;
18317             switched to using Visible property instead of is_visible field 
18318             since the property also considers parent states. This fixes a bug
18319             when starting Paint.Net
18320
18321 2006-02-02  Jackson Harper  <jackson@ximian.com>
18322
18323         * Form.cs: If the forms handle hasn't been created yet don't call
18324         into xplatui to make it top most, just set the topmost flag on the
18325         form in CreateParams
18326         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
18327
18328 2006-02-01  Jackson Harper  <jackson@ximian.com>
18329
18330         * ScrollableControl.cs: Refactored the Recalculate method a
18331         little, this wasn't handling all the variants of bottom and right
18332         bars needed to be added and added/removed based on their
18333         counterparts being added/removed (which changes the drawable
18334         size). Also we special case client widths and heights of 0 and
18335         don't add the scrollbar for those.
18336
18337 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
18338
18339         * XplatUIX11.cs: 
18340           - Added method to get AbsoluteGeometry(); currently unused, but might
18341             be used in the future, if we try again to figure out toplevel
18342             coordinates with some more crappy window managers
18343           - Added FrameExtents() method to retrieve the WM set decoration size
18344           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
18345             to deal with at least KDE, FVWM and metacity (Fixes #77092)
18346         * Hwnd.cs: 
18347           - Added whacky_wm tracking var for metacity
18348           - Added logic to have default menu height if the actual menu height
18349             has not yet been calculated (part of fix for #77426)
18350         * Form.cs: Keep track whether client size has been set and re-set 
18351           it if a menu is added/removed afterwards (Fixes #77426)
18352
18353 2006-01-31  Jackson Harper  <jackson@ximian.com>
18354
18355         * Control.cs: When a new Site is set on the component attempt to
18356         pull the AmbientProperties from it.
18357
18358 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
18359
18360         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
18361           in the background of the owning form. Fixes #77332
18362
18363 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
18364
18365         * MimeIcon.cs: Fix for #77409
18366
18367 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
18368
18369         * XplatUIX11GTK.cs: Initial import
18370
18371 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
18372
18373         * FixedSizeTextBox: fixes class signature
18374
18375 2006-01-30  Jackson Harper  <jackson@ximian.com>
18376
18377         * FixedSizeTextBox.cs: New internal class that represents a
18378         textBox that will not be scaled.
18379         * TreeView.cs:
18380         * ComboBox.cs:
18381         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
18382         standard TextBox.
18383                 
18384 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
18385
18386         * XplatUIX11.cs: Retrieve default screen number instead of
18387           assuming 0. Attempted fix for #77318
18388
18389 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
18390
18391         * XplatUIWin32.cs: 
18392           - GetWindowPos: When a window is parented by FosterParent, use 
18393             the desktop instead of FosterParent as the base to get coordinates
18394           - CreateWindow: Don't make FosterParent the parent window for Popups
18395             if we don't want a taskbar entry, Popups automatically don't get one
18396         * Hwnd.cs: Need to call remove to actually remove the key from the
18397           hash table
18398
18399 2006-01-30  Mike Kestner  <mkestner@novell.com>
18400
18401         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
18402
18403 2006-01-30  Jackson Harper  <jackson@ximian.com>
18404
18405         * TreeView.cs:
18406         * TreeNode.cs: Raise events no matter how the treenode is
18407         checked. Patch by Don Edvalson.
18408
18409 2006-01-30  Jackson Harper  <jackson@ximian.com>
18410
18411         * TreeNode.cs: Signature fix.
18412
18413 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
18414
18415         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
18416
18417 2006-01-20  Mike Kestner  <mkestner@novell.com>
18418
18419         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
18420         event forwarding when menus are active.
18421         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
18422         Most of the patch is pdb's with a little rework.
18423
18424 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18425
18426         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
18427           Removed GetMenuDC and ReleaseMenuDC methods; replaced
18428           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
18429         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
18430         * InternalWindowManager.cs: Added use of PaintEventStart/End to
18431           handling of WM_NCPAINT message, now passing the PaintEventArgs to
18432           the PaintWindowDecorations method
18433         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
18434         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
18435         * MenuAPI.cs: Made tracker window invisible
18436         * XplatUIWin32.cs:
18437           - Removed GetMenuDC and ReleaseMenuDC methods
18438           - Implemented the client=false path for PaintEventStart and
18439             PaintEventEnd
18440
18441 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18442
18443         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
18444         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
18445           styles
18446         * Form.cs: 
18447           - MaximizeBox, MinimizeBox: Recreate the handle when setting
18448             the style
18449           - CreateParams: Reworked the styles to match MS look'n'feel,
18450             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
18451             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
18452
18453 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18454
18455         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
18456           window is not mapped, since otherwise every form that's being 
18457           created is considered minimized, which is wrong.
18458         * Form.cs: Catching the exception and returning our internal value
18459           instead
18460
18461 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18462
18463         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
18464           SetWindowMinMax() to have means to tell the driver about the minimum,
18465           maximum and maximized state window sizes. (Part of the fix for #76485)
18466         * Form.cs:
18467           - Implemented tracking of minimum and maximum window size, now calling
18468             new SetWindowMinMax() driver method to tell the driver (Part of the
18469             fix for #76485)
18470           - Finished handling of WM_GETMINMAXINFO method, now setting all values
18471             (Completes fix for #76485)
18472           - Calling new SetWindowMinMax driver method when the handle for a 
18473             form is created, to make sure the driver knows about it even if
18474             the values have been set before the window was created
18475           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
18476             to avoid messing up our anchoring calculations (partial fix
18477             for #77355)
18478         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
18479         * XplatUIX11.cs:
18480           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
18481           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
18482             (and presumably other freedesktop.org compliant WMs). Left the
18483             assumption unmapped=minimized, needed for SetVisible to work.
18484           - Now setting the window state when creating windows
18485           - Fixed SetVisible to consider/set the window state when mapping
18486             a Form. We cannot set the state before it's mapped, and we cannot
18487             use Form.WindowState once it's mapped (since it would ask the
18488             driver and get 'normal'. Therefore, we grab the state before
18489             mapping, map, and then set state.
18490           - Implmemented SetWindowMinMax method; Metacity does not seem to
18491             honor the ZoomHints, though.
18492         * XplatUIWin32.cs:
18493           - Removed MINMAXINFO (moved to XplatUIStructs)
18494           - Added SetWindowMinMax stub (on Win32 the only way to set that
18495             information is in response to the WM_GETMINMAXINFO message, which
18496             is handled in Form.cs)
18497           - Added logic to SetVisible to set the proper window state when a 
18498             form is made visible (fixes #75720)
18499
18500 2006-01-26  Jackson Harper  <jackson@ximian.com>
18501
18502         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
18503         same way we handle them with Invoke.
18504
18505 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
18506
18507         * Form.cs:
18508           - Added tracking of window state so CreateParams can return
18509             the appropriate style
18510           - Moved setting of WS_CAPTION style in CreateParams to allow
18511             styles without caption
18512         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
18513           control if the TextBox property is accessed. Fixes #77345
18514         * Control.cs:
18515           - get_Created: now uses is_disposed and is_created to determine
18516             return value (suggested by Jackson)
18517           - CreateHandle: No longer exits if the handle is being recreated
18518           - RecreateHandle: If the handle is not yet created call the 
18519             appropriate method to create either control or handle. If the
18520             control is already created CreateHandle will simply exit instead
18521             of just creating the handle
18522         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
18523           now SendMessage WM_DESTROY directly to the control when DestroyWindow
18524           is called.
18525         * XplatUIX11.cs: 
18526           - When DestroyWindow is called, instead of waiting for the 
18527             DestroyNotification from X11, we directly post it to the WndProc
18528             and immediately dispose the hwnd object.
18529             Same applies to DestroyChildWindows, and this obsoletes the
18530             expose_pending tracking. Contrary to Win32 behaviour we destroy our
18531             child windows before our own, to avoid X11 errors.
18532           - Removed the direct sending of WM_PAINT on UpdateWindow
18533         * XplatUIWin32.cs:
18534           - Reworked DoEvents and GetMessage to allow access to internal queue
18535             even when trying non-blocking access to the queue.  Fixes #77335. 
18536             Based on a patch suggestion by Don Edvalson. The new private
18537             GetMessage can now also be used as a backend for a PeekMessage
18538             frontend version.
18539         * XplatUI.cs: Improved debug output for CreateWindow
18540
18541 2006-01-25  Jackson Harper  <jackson@ximian.com>
18542
18543         * Help.cs: Allow param to be null. Patch by Don Edvalson.
18544
18545 2006-01-24  Jackson Harper  <jackson@ximian.com>
18546
18547         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
18548         when we have a MaxDropItems lower then the selected index.
18549
18550 2006-01-24  Jackson Harper  <jackson@ximian.com>
18551
18552         * Control.cs: Don't allow selection of non visible controls, allow
18553         selection of controls without parents.
18554
18555 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18556
18557         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
18558         * DataGridDrawingLogic.cs: Add editing row only when is necessary
18559
18560 2006-01-23  Jackson Harper  <jackson@ximian.com>
18561
18562         * UpDownBase.cs: Make the textbox handle all the selection and
18563         tabbing. This fixes tabing to updown controls.
18564
18565 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18566
18567         * TextBoxBase.cs: fixes exception thown the object was null
18568
18569 2006-01-23  Jackson Harper  <jackson@ximian.com>
18570
18571         * ButtonBase.cs: Just use the base CreateParams. They set
18572         visibility and enabled correctly.
18573         * ComboBox.cs:
18574         * TrackBar.cs:
18575         * MonthCalendar.cs: Lets let the base set as much of the
18576         createparams as possible so we don't have duplicate code all over
18577         the place.
18578
18579 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
18580
18581         * ThemeGtk.cs: Added TrackBar and some experimental code to
18582           get double buffering back
18583
18584 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
18585
18586         * DataGrid.cs: Allows row number set internally higher than the last
18587         when creating a new row. Restores the editing functionality.
18588
18589 2006-01-20  Mike Kestner  <mkestner@novell.com>
18590
18591         * MimeIcon.cs: delay Image creation until the icons are accessed
18592         instead of creating 190 scaled images on GnomeHandler startup.
18593
18594 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
18595
18596         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
18597           first call base before processing the event. Fixes #77279
18598
18599 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
18600
18601         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
18602           that the stride for the GDI bitmap would match the stride of
18603           a DIB or a Cursor.
18604
18605 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
18606
18607         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
18608
18609 2006-01-19  Jackson Harper  <jackson@ximian.com>
18610
18611         * ComboBox.cs: Hookup the text controls keydown event so we get
18612         those when the text control has the focus.
18613
18614 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18615
18616         * Label.cs: Now using the base events instead of defining new ones;
18617           this allows us to just call the base properties without having to
18618           duplicate all base property logic 
18619
18620 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18621
18622         * Label.cs: A label by default is not a tabstop (Fixes one of our
18623           failing nunit tests)
18624
18625 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18626
18627         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
18628         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
18629
18630 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18631
18632         * Cursor.cs: Reimplemented creating cursor bitmaps without using
18633           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
18634           This fixes #77218
18635         * XplatUIWin32.cs: 
18636           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
18637             constructor creates images that can't be saved. Part of the fix
18638             for #76103
18639           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
18640           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
18641             bug fix for handling window state in forms properly)
18642
18643 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18644
18645         * ThemeGtk.cs: Simplify ScrollBar drawing
18646
18647 2006-01-18  Jackson Harper  <jackson@ximian.com>
18648
18649         * Splitter.cs: Set the default dock style for the splitter control
18650         in the constructor.
18651
18652 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18653
18654         * ThemeGtk.cs: Corrected StateType and ShadowType for
18655           gtk_paint_box
18656
18657 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18658
18659         * Control.cs: Make use of Theme.DoubleBufferingSupported
18660         * ThemeGtk.cs:
18661           - Added drawing for flat style buttons
18662           - Added ScrollBar drawing
18663
18664 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18665
18666         * ThemeClearlooks.cs: Removed some unneeded code.
18667         * ThemeGtk.cs: First part of ThemeGtk enhancements.
18668
18669 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18670
18671         * LinkLabel.cs: We need to update the hover drawing when
18672           leaving the control as well.
18673
18674 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
18675
18676         * DataGrid.cs: Clicking on non empty areas in the columns
18677            area was giving an exception
18678
18679 2006-01-17  Jackson Harper  <jackson@ximian.com>
18680
18681         * ThemeWin32Classic.cs:
18682         * ListView.cs: Do not draw/clip the headers when the header style
18683         is None.
18684
18685 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18686
18687         * DataGrid.cs: Fixes 77260
18688         
18689 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18690
18691         * DataGrid.cs: Clicking on a column on a empty grid was giving
18692           an exception
18693
18694 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18695
18696         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
18697           or any keypress will crash the grid.
18698
18699 2006-01-17  Mike Kestner  <mkestner@novell.com>
18700
18701         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
18702         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
18703         invisible/previously-visible items.
18704         [Fixes #76909]
18705
18706 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
18707
18708         * ThemeClearlooks.cs:
18709         - Added CL_Draw_Button method; now other theme controls that are 
18710           not derived from button or do not have a button can draw buttons
18711           too
18712         - Updated ComboBox drawing
18713         - Beautified RadioButton drawing
18714         - Corrected drawing of bottom and left tabs
18715         - Beautified DateTimePicker and MonthCalendar
18716         - Added CPDrawButton and CPDrawRadioButton
18717
18718 2006-01-16  Jackson Harper  <jackson@ximian.com>
18719
18720         * ComboBox.cs: Set the initial value of the scrollbar to the
18721         current index. Reduce the numbers of refreshs and IndexOfs called.
18722
18723 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
18724
18725         * FileDialog.cs: When the file listview is focused hitting the
18726           backspace key moves the fileview to the parent directory
18727
18728 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18729
18730         * Form.cs: 
18731           - Added RecreateHandle call when changing taskbar visibility to 
18732             trigger reparenting in Win32 driver (Fixes #75719)
18733           - If a window has minimize or maximize buttons, it cannot have
18734             a help button
18735         * XplatUIWin32.cs:
18736           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
18737             the toplevel form with FosterParent (A toolwindow not on the
18738             taskbar) (Fixes #75719)
18739           - Made FosterParent a toolwindow
18740
18741 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18742
18743         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
18744
18745 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18746
18747         * ToolTip.cs: If SetToolTip is called from a control and the mouse
18748           is currently over that control, make sure that tooltip_window.Text
18749           gets updated
18750
18751 2006-01-13  Mike Kestner  <mkestner@novell.com>
18752
18753         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
18754
18755 2006-01-13  Jackson Harper  <jackson@ximian.com>
18756
18757         * TreeView.cs: On MS GetNodeAt never actually factors in the X
18758         value passed.  Also redraw the selected node when we recieve
18759         focus, so tabbing between trees works correctly.
18760
18761 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18762
18763         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
18764           ~/.gconf/%gconf-tree.xml, so use
18765           .gconf/desktop/gnome/interface/%gconf.xml
18766
18767 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18768
18769         * TextControl.cs: Draw text in gray if control is disabled
18770
18771 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18772
18773         * TreeView.cs: Draw the focus rectangle outside the highlight, to
18774           make sure it's always visible. Fixes #76680.
18775
18776 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18777
18778         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
18779
18780 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
18781
18782         * PageSetupDialog.cs: Added.
18783         * PrintDialog.cs: Attributes.
18784         * PrintPreviewControl.cs: Updates.
18785         * PrintPreviewDialog.cs: Updates.
18786         
18787 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18788
18789         * Control.cs: Undid my selection check fix, since it's not needed
18790         * TextBoxBase.cs:
18791           - Now considering the presence of hscroll/vscroll when sizing
18792             vscroll/hscroll respectively. Fixed bug #77077
18793           - Added Left/Up/Down/Right to IsInputKey list to prevent
18794             ContainerControl from stealing them. This fixes what I broke
18795             with my last checkin.
18796
18797 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
18798
18799         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
18800           I finally understand how the property can be set without a setter :-)
18801
18802 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18803
18804         * Application.cs:
18805           - Switched RunLoop to use static Message.Create to create a 
18806             Message object
18807           - Added PreProcessMessage call in runloop for keyboard events; this
18808             is part of the fix for #77219, I overlooked this originally in the
18809             MSDN doc for PreProcessMessage
18810         * Control.cs:
18811           - Removed call to PreProcessMessage from handling of keyboard 
18812             messages; it's supposed to be done in the message pump
18813           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
18814             per MSDN documentation.
18815           - IsInputChar: All chars are input chars by default; removed the 
18816             parent calling chain, MS does not document that
18817           - PreProcessMessage: If IsInputChar is true, we want to return false
18818             to allow dispatching of the message
18819           - When selecting the next control, now also check that we're not
18820             selecting ourselves again and therefore return a false positive.
18821         * TextBoxBase.cs:
18822           - Tried to match return values for IsInputKey and ProcessDialogKey
18823             to what MS returns; moved processing of our special keys outside
18824             ProcessDialogKey since MS does not seem to return true on those.
18825           - Moved code that previously was in ProcessDialogKey into new private
18826             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
18827           - Reworked handling of WM_CHAR to not have to duplicate code from
18828             Control.cs anymore, instead we simply call down to base.
18829            
18830 2006-01-12  Jackson Harper  <jackson@ximian.com>
18831
18832         * ComboBox.cs: We always need to refresh the text area when
18833         EndUpdate is called. Fixes the combobox in the file dialog.
18834         * Control.cs: Don't create the creator_thread until the controls
18835         handle is created.  Also in InvokeRequired we check if the
18836         creator_thread is null. This gives the effect of InvokeRequired
18837         returning true if the controls handle is not created yet, and
18838         matches MS.
18839
18840 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18841
18842         * XplatUI.cs:
18843           - Added StartLoop() driver method. This is used to allow drivers to
18844             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
18845             loop for a particular thread
18846           - Added EndLoop() driver method. This is called once the message
18847             pump for the thread is shut down
18848           - Added SupportsTransparency method to allow the driver to indicate
18849             opacity support for windows
18850         * Form.cs:
18851           - Removed TODO attribute, completed AllowTransparency property
18852           - Added documented logic to Opacity
18853         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
18854           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
18855           versions of CompatibleTextRendering
18856         * X11Structs.cs: Added opacity atom to our atom enumeration
18857         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
18858           of a form might be set before it's reparented by the WM, and we need
18859           the opacity value without calling up to Form)
18860         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
18861           SupportsTransparency() driver methods
18862         * Application.cs: Now calling StartLoop and EndLoop driver methods
18863         * XplatUIX11.cs:
18864           - Added opacity atom registration
18865           - Added StartLoop()/EndLoop() methods. They're empty right now but
18866             will need to get implemented when we switch to a per-thread queue
18867           - Implemented SupportsTransparency() method
18868           - Implemented SetWindowTransparency() method
18869           - Added support for setting the opacity value when a window is
18870             reparented (since the opacity needs to be set on the WM frame)
18871         * XplatUIOSX.cs, XplatUIWin32.cs:
18872           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
18873
18874 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18875
18876         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
18877
18878 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18879
18880         * FileDialog.cs: Added ToolTip for MWFFileView
18881         * MimeIcon.cs: Rewrote GnomeHandler.
18882           - Get currently used gnome icon theme from
18883             ($HOME)/.gconf/%gconf-tree.xml
18884           - Make use of inherited icon themes
18885           - Support SVG icon themes like Tango via librsvg
18886
18887 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18888
18889         Revert's Jackson's revert which broke 2.0 builds.   Fix both
18890         builds. 
18891         
18892         * Application.cs: Move the use_compatible_text_rendering outside
18893         the NET_2_0 define.  If we ever need to use the
18894         use_compatible_text_rendering on the individual controls they will
18895         access the variable from the common shared code paths.
18896
18897 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18898
18899         * XplatUI.cs:
18900           - Added more granular debug options
18901           - Added method to print both window text and id
18902           - Switched debug output to use new Window() debug method
18903           - Added IsEnabled() driver method
18904           - Added EnableWindow() driver method
18905         * Form.cs:
18906           - Removed end_modal; no longer needed, new loop handles termination
18907             via 'closing' variable
18908           - If form is modal, setting DialogResult will now initiate loop
18909             termination via 'closing' variable
18910           - Added support for is_enabled/WS_DISABLED to CreateParams
18911           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
18912             does all the work
18913           - Removed code that's now in RunLoop from ShowDialog()
18914           - Added various documented sanity checks to ShowDialog()
18915           - Added handling of WM_DESTROY message; we set 'closing' on getting
18916             the message to indicate the message pump to terminate
18917           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
18918             send by the Application.ExitThread method. (We send the message
18919             to destroy the window after all other events have been
18920             processed through the queue, instead of destroying the handle 
18921             directly)
18922           - Moved code from Close() method to WM_CLOSE handler; added logic
18923             to only send close-related events if the form is not displayed
18924             modal
18925         * Splitter.cs (..ctor): Fixed typo in resource name
18926         * Control.cs:
18927           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
18928             brush now
18929           - set_Cursor: Now only setting calling into XplatUI if the handle for
18930             the control is already created; this avoids implict handle creation
18931             or crashes if it's not created
18932           - set_Enabled: Now setting the enabled state via the new driver method
18933             instead of just tracking it
18934           - CreateParams: Added logic to set WS_DISABLED based on enabled state
18935           - CreateControl: Reordered event firing and method calls to more
18936             closely fire events in the order MS does. Now setting the
18937             enabled state in the driver when creating the control.
18938           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
18939             match MS order
18940         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
18941           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
18942         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
18943         * Hwnd.cs:
18944           - Added tracking of window enabled state (get_Enabled/set_Enabled)
18945           - Added EnabledHwnd property to easily allow a driver to find the
18946             handle of the first enabled window in the parent chain (this is
18947             used by drivers to pass up input events of disabled windows)
18948         * XplatUIDriver.cs: Added IsEnabled() method
18949         * Application.cs:
18950           - Removed crude and obsolete exiting tracking variable
18951           - Removed internal ModalRun(); replaced by RunLoop()
18952           - Implemented private CloseForms() method to allow closing all 
18953             windows owned by a particular (or all) threads
18954           - Exit() now properly closes all windows without forcing the message
18955             pump to quit
18956           - Removed obsolete InternalExit() method
18957           - Changed Run() methods to use new RunLoop() message pump
18958           - Implemented new RunLoop() method for both modal and non-modal forms
18959         * CommonDialog.cs:
18960           - get_CreateParams: Added setting of WS_DISABLED
18961           - Simplified ShowDialog(); now all the work is done in RunLoop(),
18962             invoked via Form.ShowDialog()
18963         * NativeWindow.cs: We don't remove the window from the collection when
18964           the handle is destroyed; there might still be messages for it in the
18965           queue (mainly the resulting WM_DESTROY); instead it will be removed
18966           when Control calls InvalidateHandle in the WM_DESTROY handler
18967         * XplatUIX11.cs:
18968           - CreateWindow: Added logic to handle the WS_DISABLED window style
18969           - EnableWindow: Implemented based on Hwnd.Enabled
18970           - GetMessage: Reset PostQuitState so the method can be called again
18971           - Implemented support for disabled windows (passing messages to the
18972             first enabled parent) in handling all input messages
18973           - Added optimizations for handling Expose events
18974           - Implemeted new driver method IsEnabled()
18975           - Now always resetting paint pending tracking vars when we start paint
18976           - Re-implemented UpdateWindow via just sending a WM_PAINT message
18977         * XplatUIOSX.cs: Added IsEnabled method stub
18978         * XplatUIWin32.cs: Implemented new IsEnabled() method
18979
18980 2006-01-11  Jackson Harper  <jackson@ximian.com>
18981
18982         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18983         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
18984         variables a little.
18985         * ColorDialog.cs: Clear out the old form before adding the new
18986         panel.  
18987
18988 2006-01-11  Jackson Harper  <jackson@ximian.com>
18989
18990         * X11Dnd.cs: Make sure to add all the text formats when adding
18991         strings to the data object.
18992         * TreeNodeCollection.cs: When adding to a sorted tree we need to
18993         do some redrawing too.  Also change the UpdateNode to an
18994         UpdateBelow so the newly added node gets painted.
18995         
18996 2006-01-11  Miguel de Icaza  <miguel@novell.com>
18997
18998         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18999         LinkLabel.cs, PropertyGrid.cs: Implement the
19000         UseCompatibleTextRendering property for 2.x
19001
19002         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
19003
19004 2006-01-11  Jackson Harper  <jackson@ximian.com>
19005
19006         * TreeView.cs: Use the property for setting the selected node so
19007         the correct events get raised.
19008         * TreeNode.cs: Update the tree when the fore/back colours of a
19009         node are set.
19010
19011 2006-01-10  Jackson Harper  <jackson@ximian.com>
19012
19013         * TreeView.cs: Allow setting SelectedNode to null.
19014
19015 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19016
19017         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
19018
19019 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19020
19021         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
19022
19023 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19024
19025         * PrintDialog.cs: Added attributes and set default property values.
19026
19027 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19028
19029         * PrintControllerWithStatusDialog.cs: 
19030         Added PrintControllerWithStatusDialog.
19031
19032 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19033
19034         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
19035         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
19036
19037 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
19038
19039         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
19040
19041 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
19042
19043         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
19044         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
19045
19046 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19047
19048         * MimeIcon.cs: Added internal class SVGUtil.
19049
19050 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
19051
19052         * FileDialog.cs: Don't crash if there are two files with the
19053           same name but different locations.
19054
19055 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
19056
19057         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
19058         dates across multiple month grids. Used to not highlight entire 
19059         month, but does now.
19060         
19061 2006-01-06  Jackson Harper  <jackson@ximian.com>
19062
19063         * MonthCalendar.cs: Removed DoEvents call to prevent a running
19064         message loop. Change timer intervals to numbers that seem more
19065         natural.
19066
19067 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
19068
19069         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
19070           object for location info since screen object is now implemented.
19071
19072 2006-01-05  Jackson Harper  <jackson@ximian.com>
19073
19074         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
19075         * AsyncMethodResult.cs: We no longer use a WeakReference for the
19076         AsyncMethodResult, this is because we ALWAYS want the
19077         ManualResetEvent to get set.
19078         * Control.cs: When disposing use an async invoke to call shutdown
19079         code, so that thigns don't block on the finalizer thread.  Also
19080         check if we even have a message loop before trying to send
19081         messages, if we don't then don't bother sending messages.
19082         - No more weak references for async methods
19083         * XplatUIDriver.cs: No more weak references for async methods.
19084
19085 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19086
19087         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
19088           returns two FontFamily with the same name
19089
19090 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19091
19092         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
19093           drawing disabled text. Instead using the ColorGrayText color
19094
19095 2006-01-04  Jackson Harper  <jackson@ximian.com>
19096
19097         * TreeNode.cs: redraw the node when its image index is changed.
19098
19099 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
19100
19101         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
19102           time I checked there are no others like it.
19103
19104 2006-01-04  Jackson Harper  <jackson@ximian.com>
19105
19106         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
19107         this gives the behavoir I was looking for.
19108         * Control.cs: Special case Invoking EventHandlers, this matches MS
19109         and fixes part of bug #76326.
19110
19111 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19112
19113         * ThemeClearlooks.cs, FileDialog.cs:
19114           - Reflect the latest Theme class changes
19115           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
19116             with DateTime
19117             
19118 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
19119
19120         * Theme.cs: Cache UI resource images and resize them if needed
19121
19122 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19123
19124         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
19125           is called. This fixes the crash in Nexxia when setting the font
19126           attributes in the chat. [However, RTF needs a look-over to make sure
19127           that all SelectionXXX methods handle the special case that selection
19128           is empty and therefore the change must be applied to all text starting
19129           at the cursor/selection start]
19130
19131 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
19132
19133         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19134           XplatUIOSX.cs: Added SendMessage and PostMessage methods
19135         * X11Keyboard.cs: Switched to new way of calling PostMessage
19136
19137 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
19138
19139         * Theme.cs: Added theme interface for images to allow the theme to
19140           control what images are used for things like FileDialog, MessageBox
19141           icons, etc.
19142         * MessageBox.cs: Now uses the new Theme icon/image interfaces
19143
19144 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
19145
19146         * FileDialog.cs:
19147           - Removed some dead code
19148           - Opening a recently used file does work now
19149           - Small UI enhancements
19150           - Refactoring
19151
19152 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19153
19154         * FileDialog.cs: Forgot too add __MonoCS__
19155
19156 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
19157
19158         * FileDialog.cs: We are able to read recently used files now let's
19159           go on and write them.
19160
19161 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
19162
19163         * FileDialog.cs: Breathe some life into "last open"/"recently used"
19164           button
19165         * MimeIcon.cs: Do a check for the top level media type also
19166
19167 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19168
19169         * ThemeClearlooks.cs:
19170           - Added CPDrawStringDisabled
19171           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
19172             some chars if the text doesn't fit into text_rect
19173           - DrawListViewItem: If View = View.LargeIcon center the image;
19174             rewrote the drawing of ListViewItem.Text if View = 
19175             View.LargeIcon
19176
19177 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
19178
19179         * MimeIcon.cs: Use default KDE icon theme if there is no
19180           "48x48" directory for the current icon theme, fixes #77114
19181         * Mime.cs: Disable not working and actually not used code. 
19182         * ThemeWin32Classic.cs:
19183           - Replace "new SolidBrush" in GetControlBackBrush and
19184             GetControlForeBrush with ResPool.GetSolidBrush
19185           - Changed DrawListViewItem from private to protected virtual
19186         * FileDialog.cs:
19187           - Added form.MaximizeBox = true
19188           - Don't throw an exception if there is a broken symbolic link
19189
19190 2005-12-23  Jackson Harper  <jackson@ximian.com>
19191
19192         * TabControl.cs: Give the panels focus, keyboard navigation is
19193         fixed so this works correctly now.
19194         - We need these key events also.
19195         * ToolBar.cs: Remove some of the poor mans double buffering.
19196         
19197 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
19198
19199         * ComboBox.cs: The internal TextBox now returns the focus.
19200
19201 2005-12-23  Jackson Harper  <jackson@ximian.com>
19202
19203         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
19204
19205 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19206
19207         * Control.cs: Removed debug code
19208         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
19209           implicit children
19210
19211 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
19212
19213         * Control.cs: When creating the control, update the Z-order after
19214           all it's children are created, too. (Fixes nexxia not showing
19215           picturebox bug)
19216
19217 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
19218
19219         * Control.cs: Do not update the anchoring distances if layout is
19220           suspended, instead do it once layout is resumed
19221
19222 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
19223
19224         * Control.cs: 
19225           - After many hours of debugging, for both Jackson and
19226             myself, it turns out that it helps to set the parent of a control
19227             if you want to actually see it onscreen. In the spirit of that
19228             discovery, we're now setting the parent of the control and
19229             it's children when the control's handle is created. This fix
19230             will make Lutz Roeder's Reflector run happily. 
19231           - now just creating the handle instead of the whole control when
19232             getting a graphics context for the control.
19233
19234 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19235
19236         * ScrollableControl.cs: When calculating the canvas, don't consider
19237           the scrollbar widths. Instead, predict if horizontal scrollbar
19238           will affect canvas when deciding on vertical display and vice versa.
19239
19240 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
19241
19242         * RichTextBox.cs: Set default RTF font for documents that don't
19243           have a font table (Fixes #77076)
19244
19245 2005-12-22  Jackson Harper  <jackson@ximian.com>
19246
19247         * TextBoxBase.cs: It's difficult to do, but you can have an empty
19248         clipboard. This prevents a NullRef in that case.
19249         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
19250         clipboard. PRIMARY is for the currently selected text only. (We
19251         should implement PRIMARY at some point.
19252
19253 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19254
19255         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
19256           a Unicode function with a structure that was defined in Ansi way.
19257           This fixes #76942.
19258
19259 2005-12-21  Jackson Harper  <jackson@ximian.com>
19260
19261         * StatusBar.cs: Statusbar handles its fore/back colours on it's
19262         on. Because thats how it rolls. (and this avoids it using ambient
19263         colours).
19264         * ThemeWin32Classic.cs: Use the proper back color for filling.
19265         * Menu.cs: Use the system menu bar color for drawing menu
19266         bars. Using the window back color will bring ambient colours into
19267         the picture.
19268
19269 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
19270
19271         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
19272           Bitmaps were created and not disposed.
19273
19274 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19275
19276         * Control.cs (CreateControl): Don't do anything if the control is
19277           already created, otherwise we'd fire the OnCreated event more than
19278           once
19279
19280 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19281
19282         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
19283           will always match. Instead return -1. Fixes #76464.
19284
19285 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
19286
19287         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
19288           neither the beginning nor the end of the line (Fixes bug #76479)
19289
19290 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
19291
19292         * Control.cs:
19293           - ControlNativeWindow.ControlFromHandle(): Now handling situation
19294             where handle is invalid
19295           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
19296             instead of slower linear search
19297         * NativeWindow.cs: Don't remove the window from the hashtable until
19298           after the driver has destroyed it (since the driver might use
19299           Control.FromHandle to lookup the control object
19300         * Hwnd.cs: Added DestroyPending property to track if a window is 
19301           already destroyed as far as the driver is concerned and only hasn't
19302           yet notified the control
19303         * XplatUIX11.cs:
19304           - Activate(): Check if the window is still valid before using the 
19305             handle
19306           - Implemented DestroyChildWindow() method to mark child windows as
19307             destroyed when a window is destroyed. This prevents situations 
19308             where we might call an X method based on queued events for a
19309             window that already has been destroyed but we haven't yet pulled
19310             the destroy method from the queue.
19311           - Added a call to the new DestroyChildWindow() method to the drivers
19312             DestroyWindow code. Also now marking the destroyed window itself
19313             as pending
19314
19315 2005-12-20  Jackson Harper  <jackson@ximian.com>
19316
19317         * StatusBar.cs:
19318         * StatusBarPanel.cs: Don't calculate panel sizes on draw
19319         anymore. Just do them when needed, also track the rects of panels
19320         so that we can optimize refreshing more in the future.
19321
19322 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
19323
19324         * ColorDialog.cs: Fixed focus drawing in small color controls
19325
19326 2005-12-19  Jackson Harper  <jackson@ximian.com>
19327
19328         * InternalWindowManager.cs:
19329         * MdiWindowManager.cs: Cleanup some coordinate system changes so
19330         moving windows works properly.
19331
19332 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
19333
19334         * Control.cs: 
19335           - Removed call to InitLayout() from SetBoundsCore(); doc says
19336             it's only called when a control is added to a container
19337           - Split InitLayout logic, moved to separate UpdateDistances() method
19338             since we need to perform those calculations more often than just
19339             when adding the control to a container. (Needed to fix #77022)
19340           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
19341           - Reduced the OnBindingContextChanged events count, don't send them
19342             unless the control is created, we still aren't totally matching
19343             MS, but I can't quite figure out some of their rules
19344
19345 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19346
19347         * ThemeClearlooks.cs: Corrected distance between ProgressBar
19348           stripes
19349
19350 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19351
19352         * ThemeClearlooks.cs:
19353           - Updated ProgressBar drawing
19354           - Corrected drawing of ScrollBars and scroll buttons
19355           - Some temporary fixes for minor pixel artefacts
19356
19357 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
19358
19359         * Control.cs:
19360           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
19361             cause events to be sent in the same order as MS does.
19362           - Added ChangeParent() method to trigger various OnXXXChanged events
19363             that need to be fired when a parent changes (This is a reworking
19364             of the patch from r54254, with the X11 errors fixed)
19365           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
19366             since on MS we get OnLayoutChanged events when calling Clear()
19367           - Changed Enabled property to consider parent state as well, if a
19368             parent is not enabled, the control will not be either
19369           - Changed Parent property to simply call Controls.Add() since that
19370             now does all the work required, this way we avoid code duplication
19371           - Threw in a few OnBindingsContextChanged calls to try and match
19372             when MS sends them. We seem to send a few too many, though.
19373           - Added call to CreateControl when adding the control to a parent.
19374             We were never calling CreateControl. Still needs some work, in
19375             some places we treat HandleCreated and ControlCreated as equal, 
19376             which is wrong
19377           - Removed obsolete commented out code from UpdateZOrder()
19378
19379 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
19380
19381         * ThemeClearlooks.cs: Updated TrackBar drawing.
19382
19383 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
19384
19385         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
19386
19387 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
19388
19389         * FileDialog.cs: Add the Help button and the open readonly
19390           checkbox only if needed
19391
19392 2005-12-16  Jackson Harper  <jackson@ximian.com>
19393
19394         * Control.cs: Make sure we have an active menu before trying to
19395         process commands on it. Prevents menu-less forms from crashing
19396         when Alt is pressed.
19397         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
19398         Dieter Bremes.
19399         * RichTextBox.cs: Expand statement to help out gmcs and fix the
19400         2.0 build.
19401
19402 2005-12-16  Jackson Harper  <jackson@ximian.com>
19403
19404         * InternalWindowManager.cs: Don't translate tool windows screen
19405         coordinates. This fixes windows 'bouncing' around when being moved.
19406
19407 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19408
19409         * TextBoxBase.cs:
19410           - MaxLength now treats 2^31-1 equal to unlimited length (this is
19411             not quite MS compatible, MS uses that number only for single line
19412             and 2^32-1 for multi-line, but I figure it won't hurt keeping
19413             the limit at 2GB)
19414           - Now enforcing the MaxLength limit when entering characters
19415           - Added argument to internal Paste() method to track if it's called
19416             from programatically or via keyboard, since keyboard driven pastes
19417             need to enforce max-length
19418           - Added logic to Paste to only paste as many chars as MaxLength 
19419             allows
19420         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
19421         * TextControl.cs:
19422           - Added Length property to return number of characters in document
19423           - Added private CharCount property which only tracks actual chars
19424             in the document (no linefeeds) and fires event when CharCount
19425             changes
19426           - Added tracking of character count to all methods that alter it
19427           - Added LengthChanged event to allow applications to subscribe
19428             to any changes to the document
19429
19430 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19431
19432         * TextBox.cs: 
19433           - Removed local password_char field (moved to TextBoxBase)
19434           - Now setting the document's password var when password is
19435             set
19436         * TextBoxBase.cs:
19437           - Added password_char field (needed here so MultiLine can
19438             access it)
19439           - Added logic to MultiLine property setter to set the document's
19440             variable when password display is allowed
19441           - Removed debug code and made some debug code conditional
19442         * TextControl.cs:
19443           - Added RecalculatePasswordLine() method to handle special password
19444             char only lines
19445           - Added PasswordChar property, also added related tracking vars
19446           - Draw() method now uses local text var for grabbing text to draw,
19447             this var is set to line.text unless we're doing password display,
19448             then it is set to the pre-generated all-password-chars line
19449           - Added calling RecalculatePasswordLine() method for password lines
19450
19451 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19452
19453         * Hwnd.cs: 
19454           - Added Reparented property to allow tracking of Window Manager
19455             reparenting actions (which affect X/Y calculations of toplevel 
19456             windows)
19457           - Made ToString() print window handles in hex
19458         * XplatUIX11.cs:
19459           - AddConfigureNotify(): Now uses reparented state off Hwnd to
19460             determine if X/Y needs offsetting
19461           - AddConfigureNotify(): Fixed offset calculations
19462           - Now adds ReparentNotify messages into the queue
19463           - Now processes ReparentNotify messages and causes a 
19464             WM_WINDOWPOSCHANGED message to be sent upstream if a window
19465             is reparented (as most likely it's X/Y coordinates are changed
19466             due to that)
19467
19468 2005-12-14  Jackson Harper  <jackson@ximian.com>
19469
19470         * XplatUIX11.cs: Tool windows still need to respek focus.
19471
19472 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19473
19474         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
19475           have a working release
19476
19477 2005-12-13  Jackson Harper  <jackson@ximian.com>
19478
19479         * Form.cs: Update styles after setting the border style regardless
19480         of whether or not the window is using a window manager.
19481
19482 2005-12-13  Jackson Harper  <jackson@ximian.com>
19483
19484         * Form.cs: We now hook into an internal window manager instead of just an
19485         MDI subsystem, this is so we can have properly behaving tool windows.
19486         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
19487         * InternalWindowManager.cs: New internal class that acts as a
19488         window manager for tool windows and as a base for mdi windows.
19489         * MdiWindowManager.cs: New class that acts as a window manager for
19490         mdi windows.
19491
19492 2005-12-12  Jackson Harper  <jackson@ximian.com>
19493
19494         * Control.cs: Updates so we match behavoir for for implicit
19495         controls. Fixes explosions in MDI.
19496
19497 2005-12-12  Jackson Harper  <jackson@ximian.com>
19498
19499         * Control.cs: Implement Invalidate (Region).
19500
19501 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
19502
19503         * Control.cs: 
19504           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
19505             the same events as MS does. MS fires events for each property 
19506             except, for unknown reasons, Cursor, when the control is reparented. 
19507             I can't seem to totally match add/remove since MS also fires some 
19508             VisibleChanged events, which makes no sense. Consolidated the
19509             parenting code into a separate method so it can be called from
19510             both Add and Remove. set_Parent no longer needs any special logic
19511             as it calls the parent's add method which implicitly fires
19512             all events
19513           - Removed some obsolete code and debug output
19514           - Enabled state is inherited from parents, if this is enabled
19515
19516 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
19517
19518         * Form.cs: Removed commented out code
19519
19520 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
19521
19522         * Control.cs:
19523           - Added internal version of Invoke, with additional argument 
19524             indicating if we're calling it from a Dispose() handler. That
19525             way we can avoid BeginInvoke throwing an exception if we're
19526             calling for an already destroyed window.
19527           - Added a dispose argument to BeginInvokeInternal, and made the
19528             check if a valid window handle chain exists conditional on
19529             it not being a dispose call
19530           - Removed code in DestroyHandle to destroy our children. Since we
19531             now handle the WM_DESTROY message we will catch all our children
19532             being destroyed.
19533           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
19534         * Form.cs:
19535           - Added a field to track the application context of the form.
19536           - No need to set closing variable as response to WM_CLOSE, instead
19537             we destroy the window. We also call PostQuitMessage if the form
19538             has an application context (which makes it the main app form,
19539             which, when closed terminates the app)
19540         * XplatUI.cs:
19541           - Dropped Exit() method, it's naming was confusing
19542           - Added PostQuitMessage() which causes GetMessage to return false
19543             once the message queue is empty
19544         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
19545           PostQuitMessage()
19546         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
19547           no longer a valid XplatUI method, but left it in since it's used
19548           internally. Added empty PostQuitMessage() method.
19549         * MenuAPI.cs: Replaced call to Exit() with call to
19550           PostQuitMessage, even though this is probably no longer needed.
19551         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
19552         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
19553         * Application.cs:
19554           - Replaced call to XplatUI.Exit() with PostQuitMessage()
19555           - Removed old debug code that would call XplatUI for exception
19556             display, enabled standard exception handling (Still not enabled
19557             though, until NativeWindow's ExternalExceptionHandler define
19558             is removed
19559         * NativeWindow.cs:
19560           - Added internal method to allow control to update NativeWindow
19561             after a window has been destroyed
19562           - Added handling of already destroyed windows when calling i
19563             DestroyWindow
19564           - Added removal of handle from list on ReleaseHandle
19565         * XplatUIX11.cs:
19566           - Dropped GetMessageResult var and related code
19567           - Added PostQuitState to field to track if PostQuitMessage has been
19568             called
19569           - Dropped Exit() method
19570           - Added PostQuitMessage() method
19571           - GetMessage now will return false if PostQuitState is set and no
19572             more messages are in the queue.
19573           - Expose handler will no longer generate WM_PAINT messages if we are
19574             in PostQuitState since it's very likely any windows have already
19575             been destroyed, and since Hwnd won't get updated until we have
19576             processed the DestroyNotify we'd be causing X errors.
19577         
19578 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19579
19580         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
19581           Thanks to Mike for pointing out the err of my ways.
19582
19583 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19584
19585         * Control.cs(PreProcessMessage): Moved menu handling back, but
19586           after all other key handling, to match MS (who handles Menu in
19587           DefWndProc)
19588         * Menu.cs (WndProc): Removed my brainfart
19589
19590 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19591
19592         * Control.cs(PreProcessMessage): Removed special menu handling 
19593         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
19594
19595 2005-12-07  Mike Kestner  <mkestner@novell.com>
19596
19597         * Control.cs : special case SYSKEYUP so that we can adjust keynav
19598         state according in tracker.
19599         * Menu.cs : promote tracker field to base class and provide a tracker
19600         lookup capability.  Add/Remove shortcuts dynamically if the top menu
19601         has a tracker. Unparent items that are removed from the collection.
19602         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
19603         * Theme*.cs: add always_show_hotkeys field to support configurability
19604         of mnemonic display.  win32 doesn't show mnemonics until Alt is
19605         pressed.
19606
19607 2005-12-07  Jackson Harper  <jackson@ximian.com>
19608
19609         * MdiChildContext.cs: Use Control.ResetCursor.
19610         * Control.cs: ResetCursor needs to set the property so that the
19611         correct XplatUI call gets made.
19612
19613 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19614
19615         * Control.cs: More fixes to make our key events match MS. We
19616           were not setting the modifier state on KeyData, and we were
19617           not generating any events when Alt was pressed with a key
19618           since handling of WM_SYSxxx was missing for the OnKey methods.
19619
19620 2005-12-07  Jackson Harper  <jackson@ximian.com>
19621
19622         * MdiChildContext.cs: reenable the sizing code.
19623         - When the mouse leaves a window reset its cursor.
19624
19625 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19626
19627         * ThemeClearlooks.cs: Reflect latest Hwnd changes
19628
19629 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19630
19631         * Hwnd.cs: Now using the theme 3d bordersize to calculate
19632           widths of Fixed3D borders
19633
19634 2005-12-07  Jackson Harper  <jackson@ximian.com>
19635
19636         * MdiClient.cs: Fix warnings. Earn Mike's love.
19637
19638 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19639
19640         * ThemeClearlooks.cs:
19641           - Adjusted mouse over button color
19642           - Added first parts of CheckBox drawing
19643           - Added correct color for selected text background
19644           - Fixed ComboBox drawing
19645           - Added CPDrawBorder3D and CPDrawBorder
19646
19647 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19648
19649         * XplatUIX11.cs: Added call to XBell for AudibleAlert
19650
19651 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
19652
19653         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19654           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
19655           alert users via sound. We could add an enum arg with different
19656           types of alerts in the future
19657
19658 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19659
19660         * Control.cs: Fix behaviour problems pointed out by Mike
19661
19662 2005-12-05  Mike Kestner  <mkestner@novell.com>
19663
19664         * StatusBarPanel.cs: add Invalidate method and hook it into all the
19665         prop setters.  Calls parent.Refresh for now, but could be maybe be
19666         optimized with an internal method on StatusBar at some point.
19667         [Fixes #76513]
19668
19669 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
19670
19671         * RichTextBox.cs: Implemented get_SelectionColor
19672
19673 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
19674
19675         * ThemeClearlooks.cs:
19676           - Removed dead code
19677           - Draw black button border only if button is Form.AcceptButton
19678           - Draw correct button color for pressed RadioButton if the mouse 
19679             has entered the button
19680           - Updated ProgressBar drawing!
19681           - Updated CPDrawSizeGrip drawing
19682           - Updated StatusBarPanel drawing
19683
19684 2005-12-05  Mike Kestner  <mkestner@novell.com>
19685
19686         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
19687         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
19688
19689 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
19690
19691         * ThemeClearlooks.cs: Initial check-in, activate with
19692           export MONO_THEME=clearlooks
19693         * ThemeEngine.cs: Added ThemeClearlooks
19694
19695 2005-12-03  Mike Kestner  <mkestner@novell.com>
19696
19697         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
19698         [Fixes #76897]
19699
19700 2005-12-02  Jackson Harper  <jackson@ximian.com>
19701
19702         * Form.cs: If the child form has no menu the default main menu is
19703         used as the active menu.
19704
19705 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
19706
19707         * ListBox.cs: Check if any items exist before trying to resolve 
19708           coordinates into items
19709
19710 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19711
19712         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
19713           as the second color for the background hatch
19714
19715 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19716
19717         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
19718         * RichTextBox.cs: FormatText position arguments are 1-based, now making
19719           sure that what we pass to FormatText is always 1-based. Fixes #76885
19720
19721 2005-11-29  Miguel de Icaza  <miguel@novell.com>
19722
19723         * NumericUpDown.cs (EndInit): When we are done initializing,
19724         reflect any updates on the UI.
19725
19726 2005-12-02  Jackson Harper  <jackson@ximian.com>
19727
19728         * ImplicitHScrollBar.cs:
19729         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
19730         their container controls.
19731         * TreeView.cs: Use the new implicit scrollbars.
19732
19733 2005-12-02  Jackson Harper  <jackson@ximian.com>
19734
19735         * TreeView.cs: Make top_node internal so the TreeNodeCollections
19736         can play with it.
19737         * TreeNodeCollection.cs: If we remove the topnode we need to
19738         update topnode to the next node in line.
19739         - When clearing nodes go through the same process as removing
19740         them, so they get depareneted and checked if they are top node.
19741
19742 2005-12-01  Jackson Harper  <jackson@ximian.com>
19743
19744         * TreeView.cs: When imagelists are used the image area is
19745         selectable as well as the text.
19746         - If there are no selected nodes select the first one.
19747         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
19748         so don't do it more then we need to.
19749
19750 2005-12-01  Jackson Harper  <jackson@ximian.com>
19751
19752         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
19753         that arrows can be scaled.
19754
19755 2005-12-01  Jackson Harper  <jackson@ximian.com>
19756
19757         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
19758         fail. Patch by Dieter Bremes
19759
19760 2005-11-30  Jackson Harper  <jackson@ximian.com>
19761
19762         * Form.cs: Property is 2.0 only
19763         * PrintDialog.cs: Signature fix.
19764
19765 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19766
19767         * TextControl.cs: 
19768           - No longer artificially moves text 2 pixels down (now that we have
19769             borders this is no longer needed)
19770           - Added calcs for left, hanging and right indent
19771
19772 2005-11-23  Mike Kestner  <mkestner@novell.com>
19773
19774         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
19775
19776 2005-11-30  Jackson Harper  <jackson@ximian.com>
19777
19778         * MdiChildContext.cs: Set the cloned menus forms, as these don't
19779         get cloned as part of CloneMenu ().
19780         * Menu.cs: Make sure the parent of the items get set correctly
19781         when they are added.  And the owners are notified of the changes.
19782         * Form.cs: Create an ActiveMenu property, so that when MDI is used
19783         we can change the menu being displayed/handled by the form without
19784         changing the menu assosciated with the form.
19785         - Don't let Mdi children draw/handle menus.
19786         
19787 2005-11-30  Jackson Harper  <jackson@ximian.com>
19788
19789         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
19790         a MenuChanged event. Just to make the API a little more
19791         consistent.
19792         * MainMenu.cs:
19793         * MenuItem.cs: Use the new OnMenuChanged
19794         * MdiChildContext.cs: Handle menu merging.
19795         * Form.cs: Implement MergedMenu.
19796         
19797 2005-11-30  Jackson Harper  <jackson@ximian.com>
19798
19799         * Menu.cs: We were misusing Add. Add goes behind the specified
19800         index according to the docs, and does not replace the specified
19801         index. So I added an Insert method.
19802
19803 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19804
19805         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
19806           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
19807           is for Jackson
19808         * RichTextBox.cs: Added calls to base for DnD events
19809
19810 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
19811
19812         * TextControl.cs:
19813           - Fixed drag-selection related crash; style fixes
19814           - Implemented undo class
19815             o Implemented method to capture document state for specified
19816               range in document tree
19817             o Implemented method to restore captured document state
19818             o Implemented cursor tracking
19819             o Implemented basic undo stack
19820           - Added undo cursor tracking to methods altering cursor location
19821           - Added undo tracking to selection deletion (still missing
19822             other text-altering hookups)
19823         * RichTextBox.cs:
19824           - Added SelectionLength property
19825           - Implemented CanPaste()
19826           - Implemented Paste()
19827           - Added missing protected methods
19828           - Fixed RTF->Document conversion; now uses font index 0 and color 
19829             index 0 as the default font for the parsed text
19830           - Fixed RTF<->Document font size translation
19831           - Fixed RTF generation, now properly handles cross-tag boundaries
19832             for single line selection
19833           - No longer always appends blank line to generated RTF
19834           - Removed TODOs
19835           - Added missing attributes
19836           - Hooked up undo-related methods
19837         * TextBoxBase.cs:
19838           - Implemented Copy()
19839           - Implemented Paste()
19840           - Implemented Cut()
19841           - Fixed caret mis-behaviour on backspace across line-boundaries
19842
19843 2005-11-29  Jackson Harper  <jackson@ximian.com>
19844
19845         * MdiClient.cs: Add a method for activating mdi children. Very
19846         basic right now. I imagine someday it might need more girth.
19847         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
19848         children windows names are added to the menu item.
19849         * ThemeWin32Classic.cs: Draw the arrow if the item is an
19850         mdilist. This happens regardless of whether or not there are any
19851         mdi windows to see in the list, and according to my tests happens
19852         before the items are even added. Also happens if there isn't even
19853         an mdi client to get windows from.
19854
19855 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
19856
19857         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
19858         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
19859
19860 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
19861
19862         * DataGridTableStyle.cs:
19863           - Create always the styles for the missing columns even if they are
19864             provided by the user (not default table style)
19865         * DataGrid.cs:
19866           - Fixes bug 76770
19867           - Fixes SetDataBinding (always re-attach source)
19868           - Fixes SetNewDataSource (only clear styles if they are not for 
19869             this source)
19870          -  Expands OnTableStylesCollectionChanged to handle style refresh 
19871             and remove properly
19872
19873 2005-11-29  Jackson Harper  <jackson@ximian.com>
19874
19875         * FileDialog.cs: Implement missing bits, remove some dead
19876         code.
19877         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
19878         creation of the panel so that the options set on the dialog are
19879         seen when the panel is created.
19880         * TreeView.cs: raise a click when items are clicked.
19881         
19882 2005-11-29  Jackson Harper  <jackson@ximian.com>
19883
19884         * MdiClient.cs: Pass some signature methods through to base.
19885
19886 2005-11-28  Jackson Harper  <jackson@ximian.com>
19887
19888         * ListView.cs: Raise the click event when items are clicked.
19889
19890 2005-11-28  Jackson Harper  <jackson@ximian.com>
19891
19892         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
19893         a nullref.
19894
19895 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
19896
19897         * ThemeNice.cs: - Removed 1 pixel bitmaps
19898           - Use SmoothingMode.AntiAlias where it makes sense
19899             (ScrollButton arrow for example)
19900           - Enhanced Button focus drawing
19901           - Fixed ComboBox drawing (no artefacts anymore, focus
19902             rectangle is back again, reduced size of ComboButton, etc.)
19903           - Fixed RadioButton focus drawing for Appearence.Button
19904           - Slight ScrollButton redesign
19905           - Some LinearGradientBrush size fixes
19906           - GroupBoxes have now rounded edges
19907           - Fixed StatusBar drawing
19908
19909 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
19910
19911         * ThemeNice.cs: - Remove dead code
19912           - use correct background colors for menus, etc.
19913           - Fake pixel drawing with 1 pixel bitmaps
19914
19915 2005-11-24  Jackson Harper  <jackson@ximian.com>
19916
19917         * MdiClient.cs: Size the scrollbars when resizing the window.
19918         - Resize the maximized windows when the client is resized
19919         * Form.cs: Make the child context available
19920         
19921 2005-11-23  Jackson Harper  <jackson@ximian.com>
19922
19923         * MdiChildContext.cs: Don't size windows if they are maximized.
19924
19925 2005-11-23  Mike Kestner  <mkestner@novell.com>
19926
19927         * ContextMenu.cs: use MenuTracker.
19928         * Control.cs: remove menu handle usage.
19929         * Form.cs: remove menu handle usage.
19930         * Hwnd.cs: remove menu handle usage.
19931         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
19932         motion and clicks to the new Tracker handlers.
19933         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
19934         and handle usage.
19935         * MenuAPI.cs: refactored to combine popup and menubar event handling.
19936         Killed the MENU and MENUITEM data types and associated collections
19937         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
19938         MenuTracker class that exposes the leftovers from the old MenuAPI
19939         static methods. Restructured Capture handling so that only one grab is
19940         done for the entire menu hierarchy instead of handing off grabs to
19941         submenus. Tracker now has an invisible control to Capture when active.
19942         * MenuItem.cs: add sizing accessors, kill Create
19943         and handle usage.
19944         * Theme.cs: remove menu handle and MENU(ITEM) usage.
19945         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
19946         MENU(ITEM). remove menu handle usage, use Menu directly.
19947         * XplatUIDriver.cs: remove menu handle usage.
19948         * XplatUIOSX.cs: remove menu handle usage.
19949         * XplatUIWin32.cs: remove menu handle usage.
19950         * XplatUIX11.cs: remove menu handle usage.
19951
19952 2005-11-22  Jackson Harper  <jackson@ximian.com>
19953
19954         * Hwnd.cs: Don't compute the menu size for
19955         DefaultClientRectangle.
19956         - Reenable menu sizes being computed for GetClienRectangle.
19957         * Form.cs: Remove comment of trechery
19958         
19959 2005-11-22  Jackson Harper  <jackson@ximian.com>
19960
19961         * Hwnd.cs: The adjustments for the menu bar are made when it is
19962         attached to the form.
19963
19964 2005-11-19  Jackson Harper  <jackson@ximian.com>
19965
19966         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
19967         (just like on windows).
19968
19969 2005-11-19  Jackson Harper  <jackson@ximian.com>
19970
19971         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
19972         use real buttons anymore because they are in non client area. The
19973         one TODO here is that I need to somehow invalidate a section of
19974         the non client area.
19975
19976 2005-11-18  Jackson Harper  <jackson@ximian.com>
19977
19978         * Control.cs: Put the enum check back in now that MDI doesnt have
19979         to use this to set border styles.
19980         * Form.cs: Only set mdi child windows borders if the handle has
19981         been created.
19982         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
19983         this directly on to the driver.
19984         - Get the move start position before adjusting for the titlebar
19985         height, this fixes the windows "skipping" when they are first
19986         moved.
19987
19988 2005-11-18  Jackson Harper  <jackson@ximian.com>
19989
19990         * XplatUIX11.cs: Just compute the mdi borders separately as they
19991         don't totally match up with normal form borders.
19992
19993 2005-11-18  Jackson Harper  <jackson@ximian.com>
19994
19995         * Control.cs: Set WS_ styles for borders, so that the driver does
19996         not have to retrieve the control instance to figure out what kind
19997         of borders it should have.
19998         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
19999         driver can know its an mdi child easily.
20000         * XplatUIX11.cs: Get the border styles and whether the window is
20001         MDI from the Styles and ExStyles params instead of having to get a
20002         control. This prevents a chicken and egg problem.       
20003
20004 2005-11-18  Jackson Harper  <jackson@ximian.com>
20005
20006         * MdiClient.cs: Fix typo so scrollbars show up correctly.
20007
20008 2005-11-18  Jackson Harper  <jackson@ximian.com>
20009
20010         * MdiClient.cs: Calculate when to add and remove scrollbars
20011         correctly.
20012         * MdiChildContext.cs: Adjust the y position to take the titlebar
20013         into account.
20014         - No height for FormBorderStyle.None
20015
20016 2005-11-18  Jackson Harper  <jackson@ximian.com>
20017
20018         * Control.cs: Allow non enum values to be used for
20019         InternalBorderStyle.  MDI does this to set a special border style.
20020         - New utility methods for converting points to/from client coords
20021         - Add the newly created control to the Controls collection before
20022         updating its style. This way UpdateStyle can walk the control
20023         heirarchy to find the control if needed.
20024         so I don't need to create a new Point object all the time.
20025         * Form.cs: Let MDI windows handle their border styles.
20026         - Set styles on MDI windows so the correct title style is derived.
20027         * MdiChildContext.cs: Move all the painting and window handling
20028         into the non client area.
20029         - Use correct sizing and put correct buttons on frames based on
20030         the FormBorderStyle.
20031         - Notify the mdi client about scrolling
20032         - Need to handle the buttons ourselves now, because they are all
20033         in non client areas and we can't add controls there.
20034         * MdiClient.cs: Halfway to scrolling, this implementation is
20035         somewhat broken though, we need to check to make sure other
20036         windows aren't causing scrolling before removing the bars. Also
20037         the bars need to be drawn on top, maybe I can switch implicit
20038         controls to be on top.
20039         * Hwnd.cs: caption_height and tool_caption_height are now
20040         properties of an hwnd, this way they can be set by the driver
20041         based on the type of window they are.  In X11 the window manager
20042         handles the decorations so caption_height is zero unless its an
20043         MDI window.
20044         - Add 3 pixel borders for MDI windows (0xFFFF).
20045         - Get rid of some code duplication, have DefaultClientRectanle
20046         just call GetClientRectangle.
20047         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
20048         Hwnd now.
20049         - Set border styles differently for mdi windows.
20050         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
20051         Hwnd now.
20052         
20053 2005-11-15  Mike Kestner  <mkestner@novell.com>
20054
20055         * Menu.cs: when adding an item to the collection, if item is already 
20056         parented, remove it from the parent.
20057
20058 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
20059
20060         * X11DesktopColors.cs: Added KDE support
20061
20062 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
20063
20064         * XplatUIWin32.cs: 
20065           - Clipboard methods now can translate Rtf format
20066           - No longer removes clipboard contents whenever a new format is added
20067             to allow placing multiple formats on the clipboard
20068         * Clipboard.cs: Clipboard now supports getting a IDataObject and
20069           will place all formats contained in it onto the clipboard. Also
20070           now cleans the clipboard before placing a new object onto it
20071         * RichTextBox.cs:
20072           - Implemented set_Rtf
20073           - Implemented set_SelectedRtf
20074           - Created InsertRTFFromStream() method to allow single code base
20075             for all properties and methods that insert RTF into document
20076           - Removed debug output
20077         * TextControl.cs:
20078           - Fixed Delete(int) to fix up line numbers
20079           - Fixed ReplaceSelection to combine start and end line
20080           - Fixed serious DeleteChars bug that would leave the document tree
20081             broken
20082           - Improved DumpTree with several logic checks to detect broken
20083             document trees
20084           - Removed debug lines
20085           - Fixed Caret.WordForward/WordBack moving code, now always also 
20086             updates caret.tag (fixes crash when word-selecting across tag
20087             boundaries via keyboard)
20088           - Added Insert() method for inserting multiline text into documents
20089           - Fixed DeleteChars() calculation errors that would cause a broken
20090             tag chain with multiple tag lines
20091           - DeleteChars() no longer crashes on multi-tag lines if not all tags
20092           - Split() no longer moves caret if split is at caret location
20093           - ReplaceSelection() now updates the cursor and re-displays it
20094           - ReplaceSelection() now uses new Insert() method to avoid code
20095             duplication
20096           - FormatText() can now handle formatting partial lines
20097         * TextBoxBase.cs:
20098           - Append now uses new TextControl.Insert() method (this avoids 
20099             duplicate code)
20100           - Implemented Ctrl-X (Cut) (
20101           - Implemented Ctrl-C (Copy)
20102           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
20103             regeneration when pasting text; roundtripping Copy&Paste within
20104             edit control still fails due to some calculation bugs in GenerateRTF)
20105           - The Delete key will now remove the current selection if it is visible
20106         * TextBox.cs: Removed debug lines
20107         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
20108           driver to be initialized and can't therefore be done via a static ctor)
20109
20110 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
20111
20112         * TextControl.cs: Added backend code for finding char arrays and strings
20113         * TextBoxBase.cs:
20114           - Added mouse wheel scroll support
20115           - Added support for VScroll and HScroll events
20116         * RichTextBox.cs:
20117           - Implemented all seven Find() variants
20118           - Implemented GetCharFromPosition()
20119           - Implemented GetCharIndexFromPosition()
20120           - Implemented GetLineFromIndex()
20121           - Implemented GetPositionFromCharIndex();
20122           - Implemented SaveFile for PlainText and UnicodeText
20123           - Fixed set_Font, now setting a new font applies that font to
20124             the whole document
20125           - Implemented generic Document to RTF converter
20126           - Implemented SaveFile for RichText format (still missing unicode
20127             conversion for non-ansi chars)
20128           - Implemented get_Rtf
20129           - Implemented get_SelectedRtf
20130
20131 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
20132
20133         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
20134           to allow any captures to be released before triggering OnClick. This
20135           way a click handler may capture the mouse without interference.
20136         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
20137           This way we send them even though X may not allow a grab (if the window
20138           isn't visible, for example)
20139
20140 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
20141
20142         * DataGridViewRowEventArgs.cs: DataGridView implementation
20143         * DataGridViewElement.cs: DataGridView implementation
20144         * DataGridViewComboBoxCell.cs: DataGridView implementation
20145         * DataGridViewDataErrorContexts.cs: DataGridView implementation
20146         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
20147         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
20148         * ImageLayout.cs: DataGridView implementation
20149         * DataGridViewComboBoxColumn.cs: DataGridView implementation
20150         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
20151         * DataGridViewSelectionMode.cs: DataGridView implementation
20152         * IDataGridViewEditingControl.cs: DataGridView implementation
20153         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
20154         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
20155         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
20156         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
20157         * DataGridViewColumnSortMode.cs: DataGridView implementation
20158         * DataGridView.cs: DataGridView implementation
20159         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
20160         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
20161         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
20162         * Padding.cs: DataGridView implementation
20163         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
20164         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
20165         * DataGridViewRowEventHandler.cs: DataGridView implementation
20166         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
20167         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
20168         * DataGridViewButtonCell.cs: DataGridView implementation
20169         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
20170         * DataGridViewEditMode.cs: DataGridView implementation
20171         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
20172         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
20173         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
20174         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
20175         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
20176         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
20177         * DataGridViewCellEventHandler.cs: DataGridView implementation
20178         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
20179         * DataGridViewCellStyleConverter.cs: DataGridView implementation
20180         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
20181         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
20182         * DataGridViewColumnEventArgs.cs: DataGridView implementation
20183         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
20184         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
20185         * QuestionEventArgs.cs: DataGridView implementation
20186         * IDataGridViewEditingCell.cs: DataGridView implementation
20187         * DataGridViewTriState.cs: DataGridView implementation
20188         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
20189         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
20190         * DataGridViewColumnCollection.cs: DataGridView implementation
20191         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
20192         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
20193         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
20194         * DataGridViewColumn.cs: DataGridView implementation
20195         * DataGridViewCellBorderStyle.cs: DataGridView implementation
20196         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
20197         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
20198         * DataGridViewRow.cs: DataGridView implementation
20199         * DataGridViewImageCellLayout.cs: DataGridView implementation
20200         * DataGridViewImageCell.cs: DataGridView implementation
20201         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
20202         * DataGridViewCheckBoxCell.cs: DataGridView implementation
20203         * DataGridViewHeaderCell.cs: DataGridView implementation
20204         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
20205         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
20206         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
20207         * DataGridViewTextBoxColumn.cs: DataGridView implementation
20208         * QuestionEventHandler.cs: DataGridView implementation
20209         * DataGridViewCellStyleScopes.cs: DataGridView implementation
20210         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
20211         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
20212         * DataGridViewCell.cs: DataGridView implementation
20213         * DataGridViewCellEventArgs.cs: DataGridView implementation
20214         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
20215         * DataGridViewCellStyle.cs: DataGridView implementation
20216         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
20217         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
20218         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
20219         * TextFormatFlags.cs: DataGridView implementation
20220         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
20221         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
20222         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
20223         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
20224         * DataGridViewButtonColumn.cs: DataGridView implementation
20225         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
20226         * HandledMouseEventArgs.cs: DataGridView implementation
20227         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
20228         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
20229         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
20230         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
20231         * DataGridViewRowCollection.cs: DataGridView implementation
20232         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
20233         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
20234         * DataGridViewHitTestType.cs: DataGridView implementation
20235         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
20236         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
20237         * DataGridViewColumnEventHandler.cs: DataGridView implementation
20238         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
20239         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
20240         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
20241         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
20242         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
20243         * DataGridViewContentAlignment.cs: DataGridView implementation
20244         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
20245         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
20246         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
20247         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
20248         * DataGridViewPaintParts.cs: DataGridView implementation
20249         * DataGridViewCellCollection.cs: DataGridView implementation
20250         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
20251         * DataGridViewImageColumn.cs: DataGridView implementation
20252         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
20253         * DataGridViewElementStates.cs: DataGridView implementation
20254         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
20255         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
20256         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
20257         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
20258         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
20259         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
20260         * DataGridViewRowHeaderCell.cs: DataGridView implementation
20261         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
20262         * DataGridViewTextBoxCell.cs: DataGridView implementation
20263         * DataGridViewBand.cs: DataGridView implementation
20264         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
20265         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
20266         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
20267         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
20268         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
20269         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
20270         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
20271         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
20272         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
20273         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
20274         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
20275
20276 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
20277
20278         * ThemeWin32Classic.cs: 
20279           - Draw the outside focus rectangle around buttons
20280           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
20281             doesn't use end caps for every dash of a line anymore. This
20282             workaround ignores the forecolor.
20283
20284 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
20285
20286         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
20287           endian safe.
20288
20289 2005-11-07  Jackson Harper  <jackson@ximian.com>
20290
20291         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
20292
20293 2005-11-07  Jackson Harper  <jackson@ximian.com>
20294
20295         * ScrollableControl.cs: Calculate the maximum and change vars
20296         (more) correctly so that scrollbars appear as a sensible size.
20297
20298 2005-11-04  Jackson Harper  <jackson@ximian.com>
20299
20300         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
20301         collection.
20302         * TreeView.cs: When the tree is sorted null out the top_node so
20303         that it is recalculated.
20304         - Use dotted lines instead of dashed lines to match MS better.
20305
20306 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
20307
20308         * ListView.cs: 
20309           - Implements key search for items. Useful when browsing files with FileDialog
20310           - When changing view mode or when clear the items reset scrollbar positions
20311
20312 2005-11-04  Jackson Harper  <jackson@ximian.com>
20313
20314         * CurrencyManager.cs: Implement the MetaDataChanged event, the
20315         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
20316         as to what the method may do as there is no real way of creating a
20317         derived CurrencyManager and calling the method. 
20318
20319 2005-11-03  Jackson Harper  <jackson@ximian.com>
20320
20321         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
20322         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
20323         method which seems to just be used internally to refresh the tabs.
20324
20325 2005-11-03  Jackson Harper  <jackson@ximian.com>
20326
20327         * TabControl.cs: Implement the remove method. Fix some broken
20328         comments.
20329
20330 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20331
20332         * DateTimePicker.cs:
20333           - Added missing DateTimePickerAccessibleObject class
20334           - Added missing events
20335           - Added OnFontChanged method
20336         * Form.cs: Added missing attributes
20337         * TreeView.cs: Added missing attributes
20338
20339 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
20340
20341         * GridItemCollection.cs: Fix signatures
20342
20343 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20344
20345         * XplatUI.cs: Updated build rev/date
20346         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
20347           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
20348         * Application.cs: Trigger context-specific ExitThread events
20349
20350 2005-11-03  Jackson Harper  <jackson@ximian.com>
20351
20352         * Menu.cs:
20353         * MainMenu.cs:
20354         * GridTableStylesCollection.cs:
20355         * Timer.cs:
20356         * TabPage.cs:
20357         * HelpProvider.cs:
20358         * StatusBar.cs:
20359         * MonthCalendar.cs: Signature fixes
20360
20361 2005-11-03  Jackson Harper  <jackson@ximian.com>
20362
20363         * TreeNodeCollection.cs: Remove should not be virtual.
20364         * TreeView.cs: Implement the last of the missing methods.
20365
20366 2005-11-03  Jackson Harper  <jackson@ximian.com>
20367
20368         * TreeNodeConverter.cs: Implement to get off my class-status back.
20369
20370 2005-11-03  Jackson Harper  <jackson@ximian.com>
20371
20372         * TreeView.cs: Hookup the bits for drag and drop.
20373         * TreeNode.cs: Don't cache the tree_view or index anymore, now
20374         that nodes can be moved from tree to tree easily this just causes
20375         all sorts of problems.
20376         * TreeNodeCollection: Don't need to give treenodes an index and
20377         treeview anymore when they are added, these are computed on the
20378         fly. Also make sure to remove a node before its added.
20379
20380 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
20381
20382         * TextControl.cs:
20383           - Added CaretSelection enum
20384           - Added comparison methods to Marker struct, makes selection code
20385             more readable
20386           - Added SelectionStart and SelectionEnd as 'moveable' location for
20387             the CaretDirection enum and handler
20388           - Added selection_prev variable to track optimized invalidation for
20389             word and line selection
20390           - Added SelectionVisible property (returns true if there is a valid 
20391             selection)
20392           - Switched CaretHasFocus to only display the caret if there is no
20393             visible selection
20394           - Avoiding StringBuilder.ToString to retrieve a single char, instead
20395             using the direct character index; should be much faster
20396           - Added various conditional debug statements
20397           - Fixed invalidation calculation for selection ranges
20398           - Added ExpandSelection() method to support word and line selection
20399           - Switched SetSelectionToCaret to use new Marker compare overloads
20400           - Added central IsWordSeparator() method to determine word 
20401             separators/whitespace and FindWordSeparator() to streamline common
20402             usage of IsWordSeparator()
20403         * TextBoxBase.cs:
20404           - Removed unneeded grabbed variable, it was just mirroring
20405             Control.Capture
20406           - No longer firing OnTextChanged event when Text setter is called,
20407             since the base will fire the event for us
20408           - Added handling of Ctrl-Up/Down selection
20409           - Added handling of Shift-Cursorkey selection
20410           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
20411             words
20412           - Added handling of Shift and Ctrl-Shift-Home/End selection
20413           - Removed some debug output
20414           - Added handling for single/double/tripple-click to place caret/
20415             select word/select line respectively (Fixes bug #76031)
20416           - Added support for drag expansion of word/line selection
20417         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
20418           current selection
20419
20420 2005-11-02  Jackson Harper  <jackson@ximian.com>
20421
20422         * X11Dnd.cs: If the drag is going to and from a MWF window just
20423         copy the data instead of sending it out through the X Selection
20424         mechanism.
20425
20426 2005-11-02  Jackson Harper  <jackson@ximian.com>
20427
20428         * X11Dnd.cs:
20429         * XplatUIX11.cs: When in a drag we don't want motion notify
20430         messages to get passed on to the other controls. This prevents
20431         mouse move messages from showing up in the drag source.
20432
20433 2005-11-02  Jackson Harper  <jackson@ximian.com>
20434
20435         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
20436         the correct button is release to end a drag.
20437         * XplatUIX11.cs: Make the button state internal so the drag system
20438         can access it.  Dragging needs to know about all button releases,
20439         not just left button.
20440
20441 2005-11-02  Miguel de Icaza  <miguel@novell.com>
20442
20443         * Form.cs (Icon): If the icon is null, reset the icon to the
20444         default value. 
20445
20446         * Cursor.cs: When writing the AND-mask bitmap do not include the
20447         number of colors, but hardcode those to two (black and white),
20448         fixes the loading of color cursors (Paint Dot Net).
20449
20450         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
20451         turn off autoscaling.
20452
20453         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
20454
20455 2005-11-02  Jackson Harper  <jackson@ximian.com>
20456
20457         * X11Dnd.cs: Make sure to send a status message if the pointer
20458         enters a control that can not accept a drop, otherwise the cursor
20459         isn't updated correctly. Also tried to compress the lines of code
20460         a bit.
20461
20462 2005-11-02  Jackson Harper  <jackson@ximian.com>
20463
20464         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
20465         set actions correctly.  This isn't perfect as XDND and win32 have
20466         some differences on how you allow actions. I'll clear this up by
20467         adding a path for drag from MWF to MWF windows.
20468         * XplatUIX11.cs: Hook into the dnd system.
20469
20470 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
20471
20472         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
20473         previously shown but they are no longer need it. Very obvious when 
20474         browsing files with FileDialog.
20475
20476 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
20477
20478         * Control.cs: We always need to call OnPaintBackground. We pretty much
20479           ignore AllPaintingInWmPaint and always do the painting there, whether 
20480           it's set or not, since we always ignore the WM_ERASEBKGND message 
20481           (which we don't generate on X11). This fixes #76616.
20482         * Panel.cs: Removed unneeded background painting. This happens properly
20483           in Control.cs already
20484
20485 2005-10-31  Mike Kestner  <mkestner@novell.com>
20486
20487         * Menu.cs: Add items to collection before setting their index.
20488         * MenuItem.cs : add range checking with ArgumentException like MS.
20489         [Fixes #76510]
20490
20491 2005-10-31  Jackson Harper  <jackson@ximian.com>
20492
20493         * ListBox.cs: Invalidate if the area is visible at all not just
20494         contained in the visible rect. Fixes unselection of semi visible
20495         items.
20496
20497 2005-10-31  Jackson Harper  <jackson@ximian.com>
20498
20499         * Control.cs: Consistently name the dnd methods. Make them
20500         internal so we can override them to match some MS behavoir
20501         internally.
20502         * Win32DnD.cs: Use the new consistent names.
20503
20504 2005-10-31  Jackson Harper  <jackson@ximian.com>
20505
20506         * TreeView.cs: Don't draw the selected node when we lose focus.
20507
20508 2005-10-31  Jackson Harper  <jackson@ximian.com>
20509
20510         * X11Dnd.cs: We still need to reset the state even though a full
20511         reset isn't being done, otherwise status's still get sent all over
20512         the place.
20513
20514 2005-10-31  Jackson Harper  <jackson@ximian.com>
20515
20516         * Control.cs: Make the dnd_aware flag internal so the dnd
20517         subsystem can check it. Catch exceptions thrown in dnd handlers to
20518         match MS behavoir.
20519         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
20520         * X11Dnd.cs: Handle null data in the converters. Set the XDND
20521         version when sending a XdndEnter. Use the control/hwnd dnd_aware
20522         flags to reduce the number of dnd enters/status's sent.
20523
20524 2005-10-31  Jackson Harper  <jackson@ximian.com>
20525
20526         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
20527
20528 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
20529
20530         * PictureBox.cs: Fixes 76512
20531
20532 2005-10-28  Jackson Harper  <jackson@ximian.com>
20533
20534         * X11Dnd.cs: Early implementation to support winforms being a drag
20535         source for data on X11. Also restructured the converters so they
20536         can go both ways now.
20537         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
20538         
20539 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
20540
20541         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
20542           clipboard requests
20543
20544 2005-10-27  Jackson Harper  <jackson@ximian.com>
20545
20546         * TreeNode.cs: Implement serialization so my DnD examples will work.
20547
20548 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
20549
20550         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
20551           TreeView.cs: Don't dispose objects that are not owned.
20552           
20553 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
20554
20555         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
20556           should retrieve the current cursor and report that, but XplatUI
20557           doesn't (yet) have an interface for that (and I'm not sure I even
20558           can, on X11)
20559         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
20560           until any message loop processing is done (and the WM_SETCURSOR
20561           replaces the cursor to the proper one)
20562         * XplatUIX11.cs: 
20563           - Fixed override behaviour, we can't set the cursor globally on X11, 
20564             just for our windows.
20565           - Invalidating the System.Drawing X11 display handle when we are
20566             shutting down
20567         * Control.cs: Fix to make csc happy
20568
20569 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
20570
20571         * TextBoxBase.cs: 
20572           - get_Text: Add last line (without trailing newline) to returned
20573             value (Fixes 76212)
20574           - get_TextLength: Count last line in returned length
20575           - ToString: Call Text property instead of duplicating code
20576
20577 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
20578
20579         * ImageList.cs: Dispose ImageAttributes objects.
20580
20581 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20582
20583         * ImageList.cs: Use attribute constructors with less arguments where
20584           possible.
20585
20586 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20587
20588         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
20589           Use typeof instead of strings when assembly is referenced. Added
20590           some more comments.
20591
20592 2005-10-21  Jackson Harper  <jackson@ximian.com>
20593
20594         * ListView.cs: Raise a double click event. Also tried to somewhat
20595         fix when the selectedindexchanged event is raised. Its still
20596         broken though.
20597
20598 2005-10-21  Jackson Harper  <jackson@ximian.com>
20599
20600         * TreeView.cs: New method to invalidate the plus minus area of a
20601         node without invalidating the whole node (maybe this can be used
20602         in some more places).
20603         * TreeNodeCollection.cs: When adding to an empty node we need to
20604         invalidate its plus minus area so the little block shows up.
20605         
20606 2005-10-21  Jackson Harper  <jackson@ximian.com>
20607
20608         * TreeView.cs: Make sure that when we invalidate a node the bounds
20609         are big enough to cover the selected box and the focus
20610         rectangle. Use a different colour for the lines connecting nodes
20611         so they show up with all themes.
20612
20613 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20614
20615         * NativeWindow.cs: Don't call anything that could call into the driver,
20616           we might be on a different thread.
20617
20618 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
20619
20620         * Control.cs(Dispose): Since Dispose might run on a different thread,
20621           make sure that we call methods that could call into the driver via
20622           invoke, to avoid thread issues
20623
20624 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20625
20626         * XplatUI.cs: Removed finalizer
20627         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
20628           not allowing to be called on the finalizer thread.
20629
20630 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
20631
20632         * ImageList.cs:
20633           - Reverted r51889 and r51891.
20634           - Added ImageListItem class that stores unmodified image items and image
20635             properties required to create list images until handle is created.
20636           - Added AddItem and moved image creation logic to AddItemInternal.
20637           - Added CreateHandle method that creates images based on unmodified items.
20638           - Added DestroyHandle that changes state to store unmodified items.
20639           - Add and AddStrip methods no more create handle.
20640           - ReduceColorDepth has no return value.
20641           - Dispose destroys handle.
20642           - Modified other methods to reflect the above changes.
20643           - Implemented key support.
20644           - Added profile 2.0 members and attributes.
20645           - Added private Reset and ShouldSerialize methods that provide the same
20646             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
20647             them as they are private.
20648           - Added some more comments about implementation details.
20649
20650 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20651
20652         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
20653
20654 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20655
20656         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
20657
20658 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20659
20660         * DataGridDrawingLogic.cs: Fixes column hit calcultation
20661         * DataGridColumnStyle.cs: Remove debug message
20662
20663 2005-10-20  Jackson Harper  <jackson@ximian.com>
20664
20665         * TreeView.cs: We can always get input keys regardless of whether
20666         or not editing is enabled. They are used for navigation.
20667
20668 2005-10-20  Jackson Harper  <jackson@ximian.com>
20669
20670         * TreeNode.cs: Use the viewport rect for determining if a node
20671         needs to be moved for visibility. Don't use Begin/End edit. This
20672         calls a full refresh when its done.
20673         * TreeView.cs: New SetBottom works correctly.  Make the viewport
20674         rect property internal so the treenodes can see it. When clicking
20675         on a node we need to ensure that its visible because it might just
20676         be partly visible when clicked.
20677
20678 2005-10-20  Jackson Harper  <jackson@ximian.com>
20679
20680         * TreeNodeCollection.cs: Remove debug code.
20681
20682 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20683
20684         * Datagrid.cs: Implements column sorting in Datagrid
20685         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
20686
20687 2005-10-20  Jackson Harper  <jackson@ximian.com>
20688
20689         * TreeNodeCollection.cs: Remove items properly. Update the correct
20690         area after removing them.
20691
20692 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20693
20694         * Datagrid.cs: Should not call base.OnPaintBackground
20695
20696 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20697
20698         * XplatUIX11.cs (GetMessage):
20699           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
20700             window instead of client window
20701           - Now properly calculates NC_xBUTTONUP message coordinates
20702           - ScreenToMenu now properly calculates it's coordinates of whole 
20703             window, since menus are in the whole window, not in the client
20704             window
20705           - Added WholeToScreen coordinate translation method
20706
20707 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
20708
20709         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
20710           want to return a message, loop back to the beginning of the function
20711           and grab the next real message to process instead.
20712
20713 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20714
20715         * Splitter.cs: Properly set limits if no filler control is used
20716
20717 2005-10-19  Jackson Harper  <jackson@ximian.com>
20718
20719         * ColorDialog.cs: Don't show the help button if it is not enabled
20720         instead of disabling it (this is what MS does). Don't create the
20721         panel until the dialog is run, otherwise the vars (such as
20722         ShowHelp) are not set yet.
20723
20724 2005-10-19  Jackson Harper  <jackson@ximian.com>
20725
20726         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
20727         are reduced when adding nodes.
20728         * TreeNode.cs:
20729         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
20730         tree.
20731         
20732 2005-10-19  Jackson Harper  <jackson@ximian.com>
20733
20734         * FolderBrowserDialog.cs: End editing our treeview so the window
20735         actually gets refreshed.
20736
20737 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20738
20739         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
20740           Obsoleted handling of WM_ERASEBKGND, now always draws our background
20741           inside of WM_PAINT
20742
20743 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20744
20745         * MenuAPI.cs: Returns after Hidding window
20746         * XplatUIX11.cs: Added TODO found while debugging menu issues
20747
20748 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20749
20750         * XplatUIX11.cs: Do not re-map the whole window when it's size
20751           becomes non-zero unless it's supposed to be actually visible
20752
20753 2005-10-18  Jackson Harper  <jackson@ximian.com>
20754
20755         * TreeView.cs: We don't need to keep a count anymore.
20756         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
20757         use the Grow method.
20758
20759 2005-10-18  Jackson Harper  <jackson@ximian.com>
20760
20761         * TreeNodeCollection.cs: Insert is not supported on arrays, so
20762         implement it manually here.
20763
20764 2005-10-18  Jackson Harper  <jackson@ximian.com>
20765
20766         * ImageList.cs: Dont kill the list when the colour depth is
20767         changed, just change the colour depth of all the images.
20768         - Same goes for setting the image size. Just resize them all
20769         instead of killing the list softly.
20770
20771 2005-10-18  Jackson Harper  <jackson@ximian.com>
20772
20773         * Control.cs: Don't invalidate empty rectangles.
20774
20775 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20776
20777         * ListViewItem.cs:
20778           - Adds checked item to the Checked/Item lists (where empty before)
20779           - Do not add items to the Selected lists if they are already present
20780         * ListView.cs:
20781           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
20782           - When deleting items make sure that we delete them for the Selected
20783           and Checked list also.
20784
20785 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20786
20787         * Label.cs: Dispose objects no longer used
20788         * ThemeWin32Classic.cs: Dispose objects no longer used
20789
20790 2005-10-18  Jackson Harper  <jackson@ximian.com>
20791
20792         * TabControl.cs: Don't refresh the whole control when the tabs are
20793         scrolled, we just need to refresh the tab area.
20794
20795 2005-10-17  Jackson Harper  <jackson@ximian.com>
20796
20797         * XplatUIX11.cs: Compress code a little bit. Only calculate the
20798         after handle when we need it.
20799
20800 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20801
20802         * Control.cs: When the parent size changes, recalculate anchor 
20803           positions. Partial fix for #76462
20804
20805 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20806
20807         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
20808           drawn. Fixes #76462
20809
20810 2005-10-17  Jackson Harper  <jackson@ximian.com>
20811
20812         * MonthCalendar.cs: Don't create the numeric up down until our
20813         handle is created. Otherwise our handle is created in the
20814         constructor and we don't know if we are a WS_CHILD or WS_POPUP
20815         yet.
20816
20817 2005-10-17  Jackson Harper  <jackson@ximian.com>
20818
20819         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
20820         correctly.
20821
20822 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
20823         * TreeNode.cs : small logical fix (was using local var instead of field)
20824         
20825 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20826
20827         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
20828
20829 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20830
20831         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
20832
20833 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
20834
20835         * Control.cs: 
20836           - Re-implemented anchoring code. My first version was really broken.
20837             This fixes bug #76033. Unlike the previous implementation we will
20838             no longer have round errors since all numbers are calculated from
20839             scratch every time. Removed various anchor-related obsolete vars.
20840           - InitLayout no longer causes layout event firing and layout to be 
20841             performed
20842
20843 2005-10-16  Jackson Harper  <jackson@ximian.com>
20844
20845         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
20846         which was broken).
20847
20848 2005-10-16  Jackson Harper  <jackson@ximian.com>
20849
20850         * TabControl.cs: Remove debug code.
20851
20852 2005-10-16  Jackson Harper  <jackson@ximian.com>
20853
20854         * XEventQueue.cs: Increase the default queue size (very simple
20855         apps needed to grow the queue).
20856         * Hwnd.cs: No finalizer so we don't need to suppress
20857         finalization. Compute the invalid area manually so a new rectangle
20858         does not newto be created.
20859         * ScrollableControl.cs: Don't set any params (otherwise visibility
20860         isn't set correctly).
20861         * MdiChildContext.cs: New constructor takes the mdi parent so it
20862         doesn't have to be computed and avoids a crash on windows. Draw
20863         the window icon properly, and allow the text to be seen.
20864         * Form.cs: Use new MdiChildContext constructor. Make sure the
20865         child context isn't null in wndproc.
20866         * TabControl.cs: Don't set focus, this is muddling keyboard
20867         behavoir. Expand the tab rows when a window size increase will
20868         allow extra tabs to be seen. Don't allow tabs smaller than the
20869         width of a window to be scrolled out of view.
20870         * TreeNode.cs:
20871         * TreeView.cs: Use measure string to calculate a nodes width, the
20872         width is cached and only updated when the text or the font is
20873         changed. Don't check for expand/collapse clicks on the first level
20874         nodes if root lines are disabled.
20875         
20876 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
20877
20878         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
20879
20880 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20881
20882         * DataGridBoolColumn.cs: fixes warning
20883
20884 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20885
20886         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
20887         to match more to match more precisely the MS Net behavior
20888
20889 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20890
20891         * Hwnd.cs: Added field to track if window is mapped
20892         * XplatUIX11.cs: 
20893           - Unmap windows if they become 0-size, re-map when 
20894             they are >0 again; fixes #76035
20895           - Re-set our error handler after initializing X11Desktop
20896             to override any error handlers Gtk or whatever was called
20897             may have set.
20898
20899 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20900
20901         * CheckedListBox.cs: Removed unused vars
20902         * ListView.cs: Fixed signatures
20903         * RichTextBox.cs: Removed unused vars
20904         * TextBoxBase.cs: Removed unused vars
20905         * XplatUIWin32.cs: Removed unused vars
20906         * XplatUIX11.cs: Removed unused vars
20907         * XplatUI.cs: Updated version and date to latest published
20908
20909 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20910
20911         * Cursor.cs: Added private .ctor to work around a bug in
20912           resourceset (Thanks to Geoff Norton for the help on this)
20913         * SplitterEventArgs.cs: Made fields accessible so we don't
20914           waste boatloads of objects and can reuse the same one
20915           in Splitter
20916         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
20917           any captions and borders when generating screen coordinates
20918         * Splitter.cs: Reimplemented control, now fully complete, uses
20919           rubberband drawing, supports and obeys all properties, has
20920           proper cursors
20921
20922 2005-10-13  Miguel de Icaza  <miguel@novell.com>
20923
20924         * Form.cs (Form): Setup default values for autoscale and
20925         autoscale_base_size;  Make these instance variables, not static
20926         variables. 
20927
20928         (OnLoad): on the first load, adjust the size of the form.
20929
20930 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20931
20932         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
20933           width argument to DrawReversibleRectangle()
20934         * XplatUIWin32.cs, XplatUIX11.cs: 
20935           - Implemented width for DrawReversibleRectangle()
20936           - Added logic to DrawReversibleRectangle that recognizes a zero
20937             width or height and only draws a line in that situation
20938         
20939 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
20940
20941         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
20942         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
20943         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
20944           method (it uses our FosterParent window to get a graphics context)
20945
20946 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
20947
20948         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
20949           and SetWindowBackground methods
20950         * Control.cs:
20951           - Setting proper ControlStyles
20952           - We no longer call XplatUI.SetWindowBackground and XplatUI.
20953             EraseWindowBackground, instead we draw the window background
20954             ourselves in PaintControlBackground. This behaviour is
20955             required to match MS, where, when OnPaintBackground is not
20956             called, the background is not drawn.
20957           - Removed unneeded Refresh() in set_Text
20958         * Hwnd.cs: Dropped the ErasePending support. No longer needed
20959         * XplatUIX11.cs:
20960           - Created DeriveStyles method to translate from CreateParams to
20961             FormBorderStyle and TitleStyle, also handles BorderStyle (which
20962             matches FormBorderStyle enum values)
20963           - Consolidated SetHwndStyles and CalculateWindowRect border/title
20964             style calculations into single DeriveStyles method
20965           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
20966             from redrawing the whole window on any resize or expose.
20967           - Fixed CreateWindow usage of SetWindowValuemask. Before not
20968             all styles were applied to our whole/client window appropriately
20969           - Removed EraseWindowBackground() and SetWindowBackground() methods
20970           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
20971             no longer clear/redraw the background through X
20972           - Removed handling of erase_pending bit, we have no use for it (or
20973             so it seems)
20974         * XplatUIOSX.cs:
20975           - Removed generation and handling of WM_ERASEBKGND message
20976           - Removed EraseWindowBackground() and SetWindowBackground() methods
20977           - Removed handling of hwnd.ErasePending flag
20978         * XplatUIWin32.cs:
20979           - Removed EraseWindowBackground() and SetWindowBackground() methods
20980           - We no longer call EraseWindowBackground on PaintEventStart, we 
20981             ignore the fErase flag, erasing is handled in Control in the
20982             background handler
20983         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
20984           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
20985           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
20986           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
20987           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
20988           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
20989           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
20990
20991 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
20992
20993         * PropertyGrids.cs: Get sub properties
20994         * PropertyGridView.cs: Fix drawing code
20995
20996 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20997
20998         * ListBox.cs: Fixes 76383
20999
21000 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21001
21002         * DataGridTextBoxColumn.cs: Sets location and size before attachment
21003         * ThemeWin32Classic.cs: Fixes border drawing and calculations
21004         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
21005
21006
21007 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21008
21009         * ComboBox.cs: Fixes border drawing
21010
21011 2005-10-10  Miguel de Icaza  <miguel@novell.com>
21012
21013         * MimeIcon.cs: Ignore errors if the file can not be read.
21014
21015 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
21016
21017         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
21018          - Fixed border calculations
21019          - Fixed horizontal scrolling in single column listboxes
21020          - Fixed drawing issues
21021
21022 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
21023
21024         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
21025           FormBorderStyle enum
21026         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
21027           code to determine FormBorderStyles from CreateParams
21028         * Form.cs:
21029           - Fixed bug where we'd set the wrong window styles if we were
21030             not creating an MDI window
21031           - Added call to XplatUI.SetBorderStyle when form borders are set
21032         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
21033         * Hwnd.cs:
21034           - Removed obsolete edge style
21035           - Switched from BorderStyle to FormBorderStyle
21036         
21037 2005-10-10  Jackson Harper  <jackson@ximian.com>
21038
21039         * Form.cs: Use the property to get the window handle instead of
21040         accessing it directly. Prevents a null reference exception.
21041
21042 2005-10-10  Jackson Harper  <jackson@ximian.com>
21043
21044         * TreeView.cs: Don't adjust the rect given to DrawString now that
21045         our libgdiplus draws correctly.
21046
21047 2005-10-08  Jackson Harper  <jackson@ximian.com>
21048
21049         * TreeView.cs: Don't try to find the clicked on node if there are
21050         no nodes in the tree.
21051
21052 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21053
21054         * RichTextBox.cs:
21055
21056           restore
21057
21058 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
21059
21060         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
21061           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
21062           ErrorProvider.cs:
21063           Use ResPool for brushes and dispose System.Drawing objects that
21064           are not used anymore.
21065
21066 2005-10-07  Jackson Harper  <jackson@ximian.com>
21067
21068         * MdiChildContext.cs: Use the new borders instead of drawing them
21069         ourselves.
21070
21071 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21072
21073         * Calling UpdateBounds after changing the window's BorderStyle 
21074         since the style can change the ClientSize
21075
21076 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21077
21078         * Control.cs: Made PaintControlBackground virtual
21079         * Panel.cs: Overriding PaintControlBackground instead of using paint
21080           event; paint event method was interfering with 'real' users of the
21081           event.
21082
21083 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
21084
21085         * ThemeWin32Classic.cs: remove border drawing since it is handled
21086         by the base control class now and was causing double border drawing.
21087
21088 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21089
21090         * Panel.cs: Redraw our background on paint. Not a pretty solution,
21091           but it does seem to match MS behaviour. This fixes bug #75324
21092
21093 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21094
21095         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
21096           somewhat hackish looking
21097
21098 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21099
21100         * TextBoxBase.cs:
21101           - We now accept Enter even if AcceptEnter is false, if the containing
21102             form does not have an AcceptButton configured (fixes bug #76355)
21103           - Calculations are now fixed to no longer use Width/Height, but
21104             ClientSize.Width/Height, since we now support borders (this was
21105             a result of fixing borders and therefore bug #76166)
21106           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
21107             true (fixes bug #76354)
21108         
21109 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21110
21111         * Control.cs: 
21112           - Defaulting BorderStyle and setting it in XplatUI when our window 
21113             is created
21114           - Added enum check to InternalBorderStyle setter
21115         * XplatUIX11.cs: 
21116           - Added drawing of window borders
21117           - Now properly calculates WM decorations offset for toplevel 
21118             windows (fixes bug #74763)
21119         * XplatUIWin32.cs: 
21120           - Implemented BorderStyles for windows (we're letting win32 draw 
21121             the border for us)
21122           - Fixed the signature for SetWindowLong
21123         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
21124           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
21125           setting borders
21126         * UpDownBase.cs: Remove drawing of borders, this is handled by
21127           the driver, outside the client area
21128         * ListView.cs: Removed bogus border calculations. The control should
21129           be oblivious to borders, since those are not part of the client
21130           area. 
21131         * X11DesktopColors.cs: Commented out (currently) unneeded variables
21132         * ThemeWin32Classic.cs: Removed border calculations from ListView 
21133           drawing code
21134
21135 2005-10-06  Jackson Harper  <jackson@ximian.com>
21136
21137         * MdiChildContext.cs: Clear out the old virtual position remove
21138         all the unneeded calls to CreateGraphics.
21139
21140 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21141
21142         * TextControl.cs: Use proper color for highlighted text; fixes #76350
21143
21144 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
21145
21146         * Form.cs: 
21147           - Added loading and setting of our new default icon
21148           - Only set icon if window is already created
21149
21150 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
21151
21152         * Label.cs:
21153           - Do not explicitly set the foreground and background colors, to
21154             allow inheriting from parents (fixes #76302)
21155           - Use Control's InternalBorderStyle property to deal with borders
21156
21157 2005-10-06  Jackson Harper  <jackson@ximian.com>
21158
21159         * MdiChildContext.cs: Use the new xplatui function to draw a
21160         reversible rect.
21161
21162 2005-10-06  Jackson Harper  <jackson@ximian.com>
21163
21164         * Form.cs: Add the parent before creating the child context cause
21165         we need the parent when setting up the child.
21166
21167 2005-10-06  Jackson Harper  <jackson@ximian.com>
21168
21169         * FolderBrowserDialog.cs: redo the tree population code so a
21170         second thread isn't used. Should be a lot faster and more stable
21171         now.
21172
21173 2005-10-05  Jackson Harper  <jackson@ximian.com>
21174
21175         * TreeView.cs: There are no expand/collapse boxes if the node has
21176         no children.
21177
21178 2005-10-05  Jackson Harper  <jackson@ximian.com>
21179
21180         * X11DesktopColors.cs: Get menu colours for the gtk theme.
21181
21182 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
21183
21184         * FileDialog.cs: Fix InitialDirectory
21185
21186 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
21187
21188         * ComboBox.cs:
21189                 - Fixes changing between styles
21190                 - Fixes simple mode
21191                 - Fixes last item crashing when navigating with keyboard
21192
21193 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
21194
21195         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
21196
21197 2005-10-05  Jackson Harper  <jackson@ximian.com>
21198
21199         * TreeView.cs: If updating the root node do a full refresh.
21200         * TreeNode.cs: The root node should be expanded by default. Also
21201         added a utility prop to tell if we are the root node.
21202         * TreeNodeCollection.cs: Only refresh if the node we are being
21203         added to is expanded. Also added a comment on a potential
21204         optimization.
21205         
21206 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
21207
21208         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
21209           in dispose method. Fixes #76330
21210
21211 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
21212
21213         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
21214
21215                 - Implements vertical and horizontal scrolling using XplatUI
21216                 - Fixes keyboard navagation
21217                 - Fixes EnsureVisible
21218                 - Drawing fixes
21219                 - Handles and draws focus properly
21220
21221
21222 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
21223
21224         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
21225           Create handle. NET_2_0: Destroy handle when value is null.
21226
21227 2005-10-03  Jackson Harper  <jackson@ximian.com>
21228
21229         * ScrollBar.cs: My last scrollbar patch was broken. This is a
21230         revert and a new patch to prevent the thumb from refreshing so
21231         much.
21232
21233 2005-10-02  Jackson Harper  <jackson@ximian.com>
21234
21235         * ScrollBar.cs: Don't update position if it hasn't actually
21236         changed. This occurs when you hold down the increment/decrement
21237         buttons and the thumb gets to the max/min.
21238
21239 2005-10-01  Jackson Harper  <jackson@ximian.com>
21240
21241         * Form.cs:
21242         * MdiChildContext.cs:
21243         * MdiClient.cs: Implement ActiveMdiChild in Form.
21244
21245 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
21246
21247         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
21248
21249 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
21250
21251         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
21252           be found
21253
21254 2005-09-30  Jackson Harper  <jackson@ximian.com>
21255
21256         * ListBox.cs: Don't do a full refresh unless some data has
21257         actually changed.
21258
21259 2005-09-30  Jackson Harper  <jackson@ximian.com>
21260
21261         * TreeView.cs: Make sure that the checkboxes size is factored in
21262         even when not visible.
21263
21264 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21265
21266         * FileDialog.cs: Fix Jordi's build break
21267
21268 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21269
21270         * FileDialog.cs: 
21271                 - Use standard the Windows colours for the combobox as espected
21272                 - Dispose objects that use resouces when no longer need them
21273
21274 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
21275
21276         * X11DesktopColors.cs: Initial incomplete implementation
21277         * XplatUIX11.cs: Added call to initialize X11DesktopColors
21278
21279 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
21280
21281         * Theme.cs: 
21282           - Switched Theme color names to match the names defined in 
21283             System.Drawing.KnownColors. Life's hard enough, no need to make 
21284             it harder.
21285           - Added setters to all theme color properties so themes can set
21286             their color schemes. The setters also propagate the color changes
21287             to System.Drawing.KnownColors via reflection
21288         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
21289           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
21290           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
21291           use the new, more logical theme color names
21292         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
21293           post-NT colors
21294         * ThemeWin32Classic.cs:
21295           - Removed code to set the old classic Windows colors. Instead it
21296             now relies on the colors returned by System.Drawing.KnownColors
21297             which will be either modern static colors (Unix) or colors
21298             read from the user's configuration (Win32)
21299           - Updated to use the new, more logical theme color names
21300           - Switched DataGrid drawing code to use only Theme colors instead of
21301             a mix of System.Drawing.KnownColors and Theme colors
21302           - DrawFrameControl(): Removed code that fills the button area, the
21303             fill would overwrite any previous fill done by a control. This
21304             fixes bug #75338 
21305           - Added DrawReversibleRectangle() stub
21306         * ScrollableControl.cs: Set visible state to false when scrollbars
21307           are removed (pdn fix)
21308         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
21309           DrawReversibleRectangle() method to allow drawing primitive 
21310           'rubber bands'
21311         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
21312
21313 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21314
21315         * ImageList.cs: Add(Icon): Create handle.
21316
21317 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
21318
21319         * ListView.cs:
21320         * ThemeWin32Classic.cs:
21321                 - Fixes detail mode
21322                 - Sets clippings
21323                 - Issues with drawing
21324
21325 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21326
21327         * ImageList.cs: Moved RecreateHandle back to ImageList as event
21328           source has to be the ImageList.
21329
21330 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21331
21332         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
21333
21334 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21335
21336         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
21337
21338 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21339
21340         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
21341
21342 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
21343         * GridItem.cs: Fixed TODOs
21344         * GridItemCollection.cs: Added ICollection interface
21345
21346 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
21347
21348         * ImageList.cs: Resize icons when needed.
21349
21350 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
21351
21352         * ListViewItem.cs
21353                 - Fixes GetBounds and returns on screen rects
21354         * ListView.cs:
21355                 - Fixes vertical and horzintal scrolling of items
21356         * ThemeWin32Classic.cs:
21357                 - Fixes drawing
21358                 
21359 2005-09-29  Raja R Harinath  <harinath@gmail.com>
21360
21361         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
21362
21363 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
21364
21365         * ImageList.cs: Added comments about handle creation. Moved Handle,
21366           HandleCreated and OnRecreateHandle implementations to ImageCollection.
21367           Handle is created in Add methods.
21368
21369 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
21370          
21371         * DataGridDrawingLogic.cs: 
21372                 - Takes rows into account on Colum calculations
21373                 - Returns the column when clickig
21374         * DataGrid.cs:
21375                 - Fixes default HitTestInfo values
21376                 - Fixes HitTestInfo.ToString
21377                 - Fixes ResetBackColor          
21378         
21379 2005-09-28  Jackson Harper  <jackson@ximian.com>
21380
21381         * MdiChildContext.cs: Obey rules for fixed sized windows (no
21382         sizing or cursor changes). Also added some temp code to draw the
21383         titlebars text (Makes dev a little easier).
21384
21385 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
21386
21387         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
21388
21389 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
21390          
21391         * ListBox.cs: Fixes bug 76253
21392
21393 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
21394
21395         * ImageList.cs: Added comments about the current implementation. Added
21396           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
21397           Format32bppArgb to preserve transparency and can use Graphics.FromImage
21398           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
21399           with Bitmap.LockBits for better performance. Revised the whole file to
21400           match MS.NET behaviour and provide better performance. Non-public
21401           interface members are calling public members even when they throw
21402           NotSupportedException for better maintainability. Moved ColorDepth,
21403           ImageSize, ImageStream and TransparentColor implementations to
21404           ImageCollection for better performance as these properties are not used
21405           by ImageList.
21406         * ImageListStreamer.cs: Added a new internal constructor that takes an
21407           ImageList.ImageCollection and serializes Images based on
21408           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
21409           match ImageList property name.
21410
21411 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
21412
21413         * ListBox.cs: Fixes IndexFromPoint for last item
21414
21415 2005-09-27  Jackson Harper  <jackson@ximian.com>
21416
21417         * Form.cs: Set the position of new mdi children correctly.
21418
21419 2005-09-27  Jackson Harper  <jackson@ximian.com>
21420
21421         * MdiClient.cs: New mdi children need to be added to the back of
21422         the controls collection so the zorder is set correctly. Also add a
21423         count of all the child windows that have been created.
21424
21425 2005-09-27  Jackson Harper  <jackson@ximian.com>
21426
21427         * Form.cs (CreateParams): Setup MDI forms correctly.
21428
21429 2005-09-27  Jackson Harper  <jackson@ximian.com>
21430
21431         * MdiChildContext.cs:
21432         * MonthCalendar.cs:
21433         * UpDownBase.cs:
21434         * ListBox.cs:
21435         * ListView.cs:
21436         * TextBoxBase.cs:
21437         * TreeView.cs:
21438         * ScrollableControl.cs:
21439         * ComboBox.cs: Add implicit controls using the new implict control
21440         functionality in ControlCollection. Also try to block multiple
21441         control add in a suspend/resume layout to save some cycles.
21442         
21443 2005-09-27  Jackson Harper  <jackson@ximian.com>
21444
21445         * Control.cs: Add functionality to the controls collection to add
21446         'implicit controls' these are controls that are created by the
21447         containing control but should not be exposed to the user. Such as
21448         scrollbars in the treeview.
21449         * Form.cs: The list var of the ControlsCollection is no longer
21450         available because of the potential of implicit controls getting
21451         ignored by someone accessing the list directly.
21452
21453 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
21454
21455         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
21456           loose it's parent. (Fixed bug introduced in r49103 when we added
21457           setting the child parent to null on Remove)
21458
21459 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
21460
21461         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
21462         * Splitter.cs: Added missing attributes for BorderStyle property.
21463         * TextBoxBase.cs: Marked Calculate* methods internal.
21464         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
21465         MS.NET.
21466
21467 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
21468          
21469         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
21470
21471 2005-09-25  Jackson Harper  <jackson@ximian.com>
21472
21473         * TreeView.cs: Update the node bounds correctly regardless of
21474         whether the node is visible.
21475
21476 2005-09-25  Jackson Harper  <jackson@ximian.com>
21477
21478         * ImageList.cs: Don't dispose the image after it is added to the
21479         image list. Only reformat images that need to be resized.
21480
21481 2005-09-25  Jackson Harper  <jackson@ximian.com>
21482
21483         * ImageList.cs: Don't set the format when changing the image.
21484
21485 2005-09-25  Jackson Harper  <jackson@ximian.com>
21486
21487         * TreeView.cs: We can't just assume the node has a font. Use the
21488         treeviews font if no node font is available.
21489
21490 2005-09-25  Jackson Harper  <jackson@ximian.com>
21491
21492         * TreeView.cs: Allow the scrollbars to be reset with negative
21493         values.
21494         - Don't add scrollbars to negative sized windows.
21495
21496 2005-09-23  Jackson Harper  <jackson@ximian.com>
21497
21498         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
21499         old Mono.Posix. Also remove some stray code that shouldn't have
21500         been committed.
21501
21502 2005-09-23  Jackson Harper  <jackson@ximian.com>
21503
21504         * TreeView.cs: Attempt at proper sizing of the horizontal
21505         scrollbar. Also don't resize the scrollbars unless they are
21506         visible.
21507
21508 2005-09-23  Jackson Harper  <jackson@ximian.com>
21509
21510         * TreeView.cs: We don't need to expand the invalid area when the
21511         selection changes, as this is all drawn in the node's bounding
21512         box. The area needs to be expanded (previous typo was contracting
21513         it) when the focus rect moves.
21514
21515 2005-09-23  Jackson Harper  <jackson@ximian.com>
21516
21517         * TreeView.cs: Display the selection box under the correct
21518         circumstances. We were rendering white text with no selection box
21519         before.
21520
21521 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
21522
21523         * TextControl.cs(Split): Now updates selection start/end if it points 
21524           into a line that's being split. Fixes a FIXME and bug #75258
21525
21526 2005-09-23  Jackson Harper  <jackson@ximian.com>
21527
21528         * Binding.cs:
21529         * ListControl.cs: Don't use the path when retrieving binding
21530         managers from the binding context. My bat sense tells me that the
21531         path is only used on insertion.
21532
21533 2005-09-22  Jackson Harper  <jackson@ximian.com>
21534
21535         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
21536
21537 2005-09-22  Jackson Harper  <jackson@ximian.com>
21538
21539         * Splitter.cs: There are special cursors used for splitting.
21540         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
21541
21542 2005-09-22  Jackson Harper  <jackson@ximian.com>
21543
21544         * Splitter.cs: Change the cursor appropriately when the splitter
21545         is moused over, so the user actually knows there is a splitter
21546         there.
21547
21548 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21549
21550        * Label.cs : Fix ToString method to give same output as MS.NET
21551
21552 2005-09-22  Jackson Harper  <jackson@ximian.com>
21553
21554         * TreeView.cs: Create the scrollbars when the handle is created
21555         and add them right away, just make them invisble. Also account for
21556         the window being shrunk vertically to the point that the vert
21557         scrollbar needs to be added.
21558         - Remove some 0.5 adjustments to get around anti aliasing issues.
21559         
21560 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
21561          
21562         * MainMenu.cs: Fixes default value
21563         * MenuItem.cs: Fixes default value
21564
21565 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
21566
21567         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
21568
21569 2005-09-21  Jackson Harper  <jackson@ximian.com>
21570
21571         * Control.cs: Don't try to set the border style on the window if
21572         it hasn't been created. When the window is created the border
21573         style will be used.
21574
21575 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21576
21577         * Control.cs (Update): Don't call XplatUI if we don't have a
21578           window handle yet
21579
21580 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21581
21582         * ContainerControl.cs: Instead of throwing an exception, print
21583           a one-time warning about Validate not being implemented
21584         * XplatUIWin32.cs: Removed debug output
21585
21586 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21587
21588         * Control.cs: Only set XplatUI background if we expect the windowing
21589           system to handle the background. This stops controls that draw their
21590           own background from flickering
21591
21592         * XplatUIX11.cs: Support custom visuals and colormaps for window 
21593           creation. This allows, amongst other things, using MWF X11 windows 
21594           with OpenGL.
21595
21596 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21597
21598         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
21599           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
21600           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
21601           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
21602           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
21603           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
21604           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
21605           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
21606           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
21607           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
21608           GridColumnStylesCollection.cs, 
21609           IDataGridColumnStyleEditingNotificationService.cs,
21610           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
21611           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
21612           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
21613           TreeNodeCollection.cs, AmbientProperties.cs, 
21614           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
21615           DataObject.cs, ErrorProvider.cs, Splitter.cs,
21616           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
21617           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
21618           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
21619           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
21620           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
21621           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
21622           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
21623           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
21624           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
21625           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
21626           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
21627           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
21628           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
21629           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
21630           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
21631           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
21632           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
21633           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
21634           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
21635           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
21636           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
21637           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
21638           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
21639           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
21640           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
21641           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
21642           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
21643           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
21644           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
21645           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
21646           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
21647           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
21648           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
21649           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
21650           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
21651
21652 2005-09-21  Jackson Harper  <jackson@ximian.com>
21653
21654         * TreeNode.cs: Call Before/After Expand not Collapse when
21655         expanding.
21656
21657 2005-09-20  Jackson Harper  <jackson@ximian.com>
21658         
21659         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
21660
21661 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21662          
21663         * ListViewItem.cs:
21664                 - Fixes bug 76120
21665                 - Fixes proper storing of subitems
21666                 - Fixes not updated items
21667
21668 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
21669
21670         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
21671           things if our window handle isn't created yet. Also disabled 
21672           debug for TextBoxBase
21673
21674 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
21675
21676         * MenuAPI.cs: Remove filtering of events to allow menu usage
21677
21678 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21679
21680         * Cursor.cs: Allow null to be passed to Cursor.Current.
21681
21682 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
21683
21684         * ThemeWin32Classic.cs:
21685           - Change some private methods/fields to protected virtual so that 
21686             they can be accessed and overriden in derived classes
21687           - First refactoring of some methods. Derived themes now don't 
21688             need to duplicate the complete code from ThemeWin32Classic
21689         * ThemeNice.cs:
21690           - Added nice StatusBar
21691           - Derive from ThemeWin32Classic and not Theme
21692           - Removed duplicate ThemeWin32Classic code
21693
21694 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21695
21696         * Control.cs (ControlCollection.Add): If the value null is passed
21697         the control is ignored. 
21698
21699         Optimize this loop.
21700
21701 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
21702
21703         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
21704           PostQuitMessage state.
21705         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
21706
21707 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
21708
21709         * Application.cs: Our constructor will never get called, move 
21710           initialization to fields; fixes bug #75933
21711
21712 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21713
21714         * FileDialog.cs :
21715                 - Allow files to be selected properly using file name
21716                 combo box.
21717                 - Add ability to change diretory (absolute / relative)
21718                 using file name combo box.
21719
21720 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21721          
21722         * ListBox.cs: 
21723                 - Fixes Multicolumn listboxes item wrong calculations
21724                 - Allows to click when only one item is in the listbox
21725                 - Fixes crash when no items using keyboard navigation
21726
21727 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
21728
21729         * ComboBox.cs: Reverted almost everything from the latest patch which
21730           broke ComboBox
21731
21732 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
21733         
21734         * ToolTip.cs:
21735                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
21736         * ComboBox.cs:
21737                 - When DropDownStyle is Simple, it does not show scrollbar 
21738                 to the last item of the list.
21739                 - When DropDownStyle is Simple, it crashed when the list was 
21740                 scrolled down with the down cursor key.
21741                 - Fixed a bug that when DropDownStyle is DropDownList, the 
21742                 selected item was not shown.
21743                 - The position of the selected item was not preserved when 
21744                 the next dropdown happened.
21745         * ThemeWin32Classic.cs:
21746                 - Items were wrapped at the right end.
21747         * CheckedListBox.cs:
21748                 - Fixed Add method
21749         * ListBox.cs:
21750                 - Items should be fully shown.
21751                 - When resizing and vertical scrollbar disappeared, the item 
21752                 of index 0 should be on the top of the list.
21753                 - GetItemRectangle should consider the size of ver. scrollbar
21754         * StatusBar.cs:
21755                 - SizingGrip area should not be allocated when it is not 
21756                 displayed.
21757                 - Now it reflects MinWidth of the containing panel and 
21758                 fixed a crash that happens when its width becomes so small.
21759
21760 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21761
21762         * CheckedListBox.cs: Fixes bug 76028
21763         * ListBox.cs: Fixes bug 76028
21764
21765 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21766
21767         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
21768         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
21769
21770 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
21771
21772         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
21773
21774 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21775
21776         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
21777
21778 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21779
21780         * IRootGridEntry.cs: Added
21781         * PropertyGridCommands.cs: Added
21782         * PropertiesTab.cs: Added missing methods and property
21783         * PropertyGridView.cs: Made class internal
21784         * PropertyGridTextBox.cs: Made class internal
21785
21786 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21787
21788         * MimeIcon.cs: Try to check some other environment variables
21789           if "DESKTOP_SESSION" returns "default"
21790
21791 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21792
21793         * ThemeNice.cs: Corrected background colors (e.g. menus)
21794         * ColorDialog.cs: Use correct background colors for controls
21795
21796 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21797
21798         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
21799
21800 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
21801
21802         * RichTextBox.cs: Added initial implementation
21803         * lang.cs: Removed. Was accidentally checked in long time ago
21804         * TODO: Removed. Contents were obsolete
21805
21806 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21807                                                                                 
21808         * PropertiesTab.cs : Added
21809
21810 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21811                                                                                 
21812         * PropertyGrid.cs : Update
21813         * PropertyGridView.cs : Update
21814         * System.Windows.Forms.resx : Added images and strings
21815
21816 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
21817
21818         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
21819  
21820 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
21821
21822         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
21823           a busy loop right after the Ungrab the X11 display is otherwise 
21824           blocked
21825
21826 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
21827
21828         * ThemeWin32Classic.cs: Optimise the use of clipping
21829
21830 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
21831
21832         * DataGrid.cs: fixes recursion bug
21833
21834 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
21835
21836         * ThemeNice.cs: 
21837           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
21838           - Cleanup
21839
21840 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
21841
21842         * ThemeNice.cs: Draw nice ProgressBars
21843
21844 2005-09-01  Miguel de Icaza  <miguel@novell.com>
21845
21846         * VScrollBar.cs: Another buglet found by Aaron's tool. 
21847
21848         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
21849         bug finder.
21850
21851 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
21852
21853         * ThemeNice.cs:
21854           - Added nicer menu drawing
21855           - Updated DrawTab
21856           - some refactoring
21857
21858 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21859
21860         * CreateParams.cs (ToString): Made output match MS
21861         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
21862             handle is already created (to avoid forcing window creation)
21863         * XplatUIX11.cs: Set window text to caption after creating window,
21864           in case Text was set before window was created
21865         * Form.cs: Use this.Text instead of a static string as caption
21866
21867 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21868
21869         * NotifyIcon.cs: Don't set the window to visible; this screws
21870           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
21871           OnPaint without a bitmap)
21872         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
21873           happen very often anyway; we could add the check to the WM_PAINT 
21874           event generation code
21875
21876 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21877
21878         * NotifyIcon.cs: Fill the icon area with a background color, to 
21879           avoid 'residue' when transparent icons are drawn
21880         * XplatUIX11.cs:
21881           - Handle whole_window == client_window when destroying windows
21882           - SystrayAdd(): Set client_window to whole_window value to
21883             get mouse and other events passed to NotifyIcon
21884
21885 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21886
21887         * Form.cs: Set proper default for Opacity property
21888         * NotifyIcon.cs:
21889           - ShowSystray(): Don't bother creating telling the OS
21890             about the systray item if no icon is provided
21891           - Now handles WM_NCPAINT message to deal with whole/client window
21892             split
21893           - Create window as visible to not get caught by Expose optimization
21894         * Hwnd.cs: Removed debug message
21895         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
21896           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
21897             PaintEventStart/End to use new client argument
21898         * TextBoxBase.cs:
21899           - Commented out debug messages
21900           - Switched PaintEventStart/End to use new client argument
21901         * XplatUI.cs: Added client window bool to PaintEventStart()/
21902           PaintEventEnd() calls, to support drawing in non-client areas
21903         * XplatUIDriver.cs: 
21904           - Added client window bool to PaintEventStart()/PaintEventEnd() 
21905             calls, to support drawing in non-client areas
21906           - Added conditional compile to allow using MWF BeginInvoke 
21907             on MS runtime
21908         * XplatUIX11.cs:
21909           - Added some conditional debug output
21910           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
21911             whole/client window split
21912           - Implemented handling of client argument to PaintEventStart()/End()
21913         * Control.cs:
21914           - Throw exception if BeginInvoke() is called and the window handle
21915             or one of the window's parent handles is not created
21916           - Added conditional compile to allow using MWF BeginInvoke on
21917             MS runtime
21918           - get_Parent(): Only sets parent if handle is created. This avoids
21919             forcing window handle creation when parent is set.
21920           - Now fires Layout and Parent changed events in proper order
21921           - Switched to use Handle instead of window.Handle for Z-Order setting,
21922             the get_Parent() patch above causes us to possibly get null for 'window'
21923           - Implemented handling of client argument to PaintEventStart()/End()
21924           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
21925             default handling)
21926           - Now sends a Refresh() to all child windows when Refresh() is called
21927
21928 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
21929
21930         * Form.cs: Added (non-functional) Opacity property
21931         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
21932
21933 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
21934         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
21935           use export MONO_THEME=nice to activate it.
21936           Currently supported controls:
21937           - Button
21938           - ComboBox
21939           - ScrollBar
21940           - TabControl (TabAlignment.Top only, other will follow)
21941         * ThemeEngine.cs: Add theme nice
21942         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
21943           if enabled
21944
21945 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
21946
21947         * Splitter.cs: Resize docked control and its neighbor.
21948
21949 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21950         -- Making Windows with Menus layout correctly --
21951         * Form.cs : The first leg of the fix
21952                 Menu setter - adjust Client Size as needed to make space for the menu
21953                 SetClientSizeCore - doesn't call base version to be able to pass the 
21954                         menu handle to XplatUI.CalculateWindowRect
21955         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
21956         * XplatUIX11.cs: The critical second leg of the fix
21957                 GetWindowPos needs to use a recalculated client_rect
21958                 so that resizing the window doesn't break layout of child controls. 
21959                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
21960                 Lots of \t\n killed
21961
21962 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
21963
21964         * Label.cs: Now properly recalculates width and height on Font and Text
21965           changes if AutoSize is set
21966
21967 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21968         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
21969
21970 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
21971
21972         * ImageList.cs: Makes ToString method compatible with MS
21973
21974 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
21975
21976         * MenuAPI.cs: fixes bug 75716
21977
21978 2005-08-11 Umadevi S <sumadevi@novell.com>
21979         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
21980
21981 2005-08-11 Umadevi S <sumadevi@novell.com>
21982         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
21983
21984 2005-08-10  Umadevi S <sumadevi@novell.com>
21985         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
21986
21987 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
21988
21989         * Menu.cs: fixes bug 75700
21990         * MenuAPI.cs: fixes navigation issues
21991
21992 2005-08-09  Umadevi S <sumadevi@novell.com>
21993         * CheckedListBox.cs - simple fix for GetItemChecked.
21994
21995 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
21996
21997         * ComboBox.cs: Serveral fixes
21998         * ListBox.cs: Serveral fixes
21999
22000 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
22001
22002         * ComboBox.cs: Fixes FindString methods and GetItemHeight
22003         * ListBox.cs: Fixes FindString methods
22004
22005 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
22006
22007         * DataGrid.cs: fixes bugs exposed by new tests
22008
22009 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
22010
22011         * Mime.cs: Compile Mono assembly references only if compiling
22012           with Mono (Allows to build with VS.Net again)
22013
22014 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
22015
22016         * Control.cs (PaintControlBackground): Draw background image
22017         corrrectly.
22018         (CheckForIllegalCrossThreadCalls): Stubbed.
22019         
22020         * Form.cs (OnCreateControl): Center when should be centered.
22021         
22022         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
22023
22024 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
22025
22026         * Binding.cs: Binding to properties should be case unsensitive
22027
22028 2005-07-18 vlindos@nucleusys.com
22029
22030         * DataGrid.cs: fixes setmember order
22031
22032 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
22033
22034         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
22035         * FileDialog.cs: FileDialog is now resizable and uses the new
22036           MimeIconEngine
22037
22038 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
22039
22040         * DataGridTextBoxColumn.cs: default value
22041         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
22042         * GridTableStylesCollection.cs: fixes checking MappingName
22043         * DataGridDrawingLogic.cs: fixes drawing logic issues
22044         * DataSourceHelper.cs: rewritten to make compatible with more data sources
22045         * DataGrid.cs: fixes    
22046
22047 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
22048
22049         * MimeGenerated.cs: Use case sensitive comparer for
22050           NameValueCollections
22051
22052 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
22053
22054         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
22055         * ThemeWin32Classic.cs: bug fixes, code refactoring
22056         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
22057         * DataGrid.cs: bug fixes, code refactoring
22058         * DataGridTextBox.cs: bug fixes, code refactoring
22059         * DataGridColumnStyle.cs:  bug fixes, code refactoring
22060         * Theme.cs:  bug fixes, code refactoring
22061
22062 2005-07-01  Peter Bartok  <pbartok@novell.com> 
22063
22064         * TextControl.cs: Quick fix for the reported crash on ColorDialog
22065           and other text box usage
22066
22067 2005-07-01  Jackson Harper  <jackson@ximian.com>
22068
22069         * TabControl.cs: Make sure the bottom of the tab covers the pages
22070         border.
22071
22072 2005-06-30  Peter Bartok  <pbartok@novell.com> 
22073
22074         * Form.cs (ShowDialog): Assign owner of the dialog
22075         * TextBoxBase.cs: Always refresh caret size when deleting, caret
22076           might have been moved to a tag with different height
22077
22078 2005-06-30  Jackson Harper  <jackson@ximian.com>
22079
22080         * Form.cs: Don't create an infinite loop when setting focus
22081         * MenuItem.cs: Don't dirty the parents if we don't have any
22082
22083 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
22084
22085         * LibSupport.cs: Rename
22086
22087 2005-06-29  Peter Bartok  <pbartok@novell.com>
22088
22089         * TextBoxBase.cs: Re-align caret after deleting a character
22090         * TextControl.cs:
22091           - DeleteChars(): Ensure that tag covers the provided position
22092           - StreamLine(): Drop reference for dropped tag
22093
22094 2005-06-29  Peter Bartok  <pbartok@novell.com> 
22095
22096         * TextControl.cs: 
22097           - Selections now work properly, anchoring at the initial location
22098             and properly extending in either direction (SetSelectionToCaret(),
22099             SetSelectionStart() and SetSelectionEnd())
22100           - No longer redraws the whole control on selection change, now
22101             calculates delta between previous and new selection and only
22102             invalidates/redraws that area
22103           - Fixed FindPos() math off-by-one errors
22104           - Changed DeleteChars() to verify the provided tag covers the
22105             provided position, selections may have a tag that doesn't cover
22106             the position if the selection is at a tag border
22107           - Fixed off-by-one errors in DeleteChars()
22108           - Added missing streamlining check in DeleteChars() to remove
22109             zero-length tags
22110           - Implemented Invalidate() method, now properly calculates exposures
22111             between two given lines/positions
22112           - Implemented SetSelection()
22113           - Obsoleted and removed FixupSelection()
22114           - Improved RecalculateDocument() logic, removing code duplication
22115
22116 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22117
22118         * LibSupport.cs: changes to match different input/output arguments.
22119
22120 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22121
22122         * LibSupport.cs: added libsupport.so init routine.
22123
22124 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
22125         
22126         * ControlBindingsCollection.cs
22127                 - Throws an exception on null datasource when adding
22128                 - Checks for duplicated bindings when adding
22129
22130 2005-06-28  Jackson Harper  <jackson@ximian.com>
22131
22132         * TreeView.cs (OnKeyDown): Support left and right properly
22133         (navigates as well as expanding and collapsing.
22134         - Add support for Multiply, this expands all the selected nodes
22135         children.
22136         - Fix some tabbing.
22137
22138 2005-06-28  Jackson Harper  <jackson@ximian.com>
22139
22140         * TreeView.cs: Implement keyboard navigation, currently supports,
22141         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
22142         support for toggling checkboxes with the space bar.
22143
22144 2005-06-28  Jackson Harper  <jackson@ximian.com>
22145
22146         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
22147         tree.
22148
22149 2005-06-28  Jackson Harper  <jackson@ximian.com>
22150
22151         * TreeView.cs: Add missing event.
22152
22153 2005-06-27  Peter Bartok  <pbartok@novell.com> 
22154
22155         * TextControl.cs:
22156           - Made line ending size configurable (now allows for counting 
22157             lineendings as \n or \r\n)
22158           - Added margin to viewport to keep caret visible on right side
22159           - Fixed translation routines for line/pos to documentpos to consider
22160             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
22161           - Fixed some line-endings to be unix style
22162           - Fixed Document.FormatText to perform it's calculations 1-based
22163           - Added descriptions for a few methods that might otherwise get 
22164             used wrong
22165           - Added NOTE section with some basic conventions to remember at 
22166             the top of the file
22167           - Major fixup for RichTextBox selection drawing:
22168             * Fixed crashes when multiple tags on a single line were selected
22169             * fixed selection box drawing not overlaying text
22170             * fixed bogus offset calculation for tags not starting at index 1
22171             * Switched behaviour from using multiple Substrings of a 
22172               StringBuilder.ToString() to using multiple 
22173               StringBuilder.ToString(start, length) statements, hoping this is
22174               faster (kept original version commented out in the code, in case
22175               original version was faster)
22176         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
22177           alignment != Left
22178         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
22179           call it as well
22180
22181 2005-06-27  Jackson Harper  <jackson@ximian.com>
22182
22183         * TabControl.cs: Move to the left and right with the arrow
22184         keys. These keys don't cycle beyond first and last like
22185         tab. Refresh all the tabs when scrolling them to the left or
22186         right.
22187
22188 2005-06-27  Jackson Harper  <jackson@ximian.com>
22189
22190         * TabControl.cs:
22191           - ToString: Added method
22192           - CreateParams: Remove TODO and comment
22193           - OnKeyDown: Cycle through bounds properly.
22194           - SelectedIndex: Scroll to the right or left if we need to
22195           display the newly selected tab.
22196
22197 2005-06-23  Jackson Harper  <jackson@ximian.com>
22198
22199         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
22200         set.
22201
22202 2005-06-23  Jackson Harper  <jackson@ximian.com>
22203
22204         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
22205         CTRL-SHIFT-TAB, and HOME, END are there any others?
22206
22207 2005-06-23  Jackson Harper  <jackson@ximian.com>
22208
22209         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
22210
22211 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22212         
22213         * DataGridTextBoxColumn.cs: fixes and enhancements
22214         * ThemeWin32Classic.cs: fixes and enhancements
22215         * DataGridBoolColumn.cs:  fixes and enhancements
22216         * DataGridDrawingLogic.cs:  fixes and enhancements
22217         * CurrencyManager.cs: fixes and enhancements
22218         * DataGrid.cs: fixes and enhancements
22219         * DataGridColumnStyle.cs:  fixes and enhancements
22220
22221 2005-06-22  Jackson Harper  <jackson@ximian.com>
22222
22223         * TabControl.cs: Add some missing methods that just call into the
22224         base. Make the TabPageCollection's IList interface behave in the
22225         same manner as the MS implementation.
22226
22227 2005-06-22  Peter Bartok  <pbartok@novell.com> 
22228
22229         * TextControl.cs: Added sanity check
22230         * TextBoxBase.cs: 
22231           - Fixed wrapping behaviour, don't set wrap on single line controls
22232             (this fixes the breakage of colordialog introduced in an earlier
22233              checkin)
22234           - Added rudimentary support for autoscrolling right-aligned controls
22235             (still needs fixing, also, center alignment scroll is missing)
22236
22237 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
22238         
22239         * ScrollBar.cs: Fixes thumbpos on Maximum values
22240
22241 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
22242         
22243         * PropertyGridView.cs: Pass context information to UITypeEditors 
22244
22245 2005-06-21  Peter Bartok  <pbartok@novell.com> 
22246
22247         * TextBoxBase.cs:
22248           - Now calling PositionCaret with absolute space coordinates
22249           - Enabled vertical scrolling
22250           - Better tracking of scrollbar changes, tied into WidthChange
22251             event
22252           - Improved cursor tracking
22253           - Removed debug output
22254         * TextControl.cs:
22255           - PositionCaret coordinates are now works in absolute space, not 
22256             the canvas
22257           - Improved tracking of document size
22258           - Added events for width and height changes
22259
22260 2005-06-21  Peter Bartok  <pbartok@novell.com>
22261
22262         * Form.cs: Set focus to active control when form is activated
22263         * TextControl.cs: 
22264           - Added word-wrap functionality to RecalculateLine() 
22265           - Added some short function descriptions for VS.Net to aid in
22266             writing dependent controls
22267           - Added Caret property, returning the current coords of the caret
22268           - Added ViewPortWidth and ViewPortHeight properties
22269           - Added Wrap property
22270           - Added CaretMoved event
22271           - Removed some old debug code
22272           - Split() can now create soft splits
22273           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
22274           - Added method to format existing text
22275           - Fixed size/alignment calculations to use viewport
22276           - RecalculateDocument now can handle changing line-numbers while
22277             calculating lines
22278
22279         * TextBox.cs:
22280           - Added some wrap logic, we don't wrap if alignment is not left
22281           - Added casts for scrollbar var, base class switched types to
22282             also support RichTextBoxA
22283           - Implemented handling of scrollbar visibility flags
22284
22285         * TextBoxBase.cs:
22286           - Switched scrollbars type to RichTextBoxScrollBars to support
22287             RichTextBox
22288           - Added tracking of canvas width/height
22289           - Switched scrollbars to be not selectable (to keep focus on text)
22290           - Added central CalculateDocument() method to handle all redraw
22291             requirements
22292           - Added ReadOnly support
22293           - Added WordWrap support
22294           - Fixed handling of Enter key (we now treat it as a DialogKey)
22295           - Fixed caret positioning when h or v scroll is not zero
22296           - Fixed placing/generation of vertical scrollbar
22297           - Added CalculateScrollBars() method to allow updating scrollbar
22298             limits and visibility
22299           - Fixed handling of horizontal scroll
22300           - Added handling of vertical scroll
22301           - Implemented auto-'jump' when caret moves to close to a left or
22302             right border and there is text to be scrolled into view (currently
22303             there's the potential for a stack overflow, until a bug in
22304             scrollbar is fixed)
22305
22306 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
22307         
22308         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
22309
22310 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
22311
22312         * Mime.cs:
22313         - added inodes.
22314         - return application/x-zerosize for files with size zero
22315           (if no extension pattern matches).
22316         - check matches collection for strings too.
22317         - return only the first mime type if the name value
22318           collection has more than one mime type.
22319
22320 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
22321         
22322         * PropertyGrid.cs: Cleaned up some TODOs
22323         * PropertyGridView.cs: Added support for UITypeEditors
22324
22325 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22326         
22327         * DataGrid.cs: clears cached value
22328
22329 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
22330
22331         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
22332         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
22333         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
22334         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
22335         
22336 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
22337
22338         * ThemeWin32Classic.cs: fixes colour
22339
22340 2005-06-15  Peter Bartok  <pbartok@novell.com>
22341
22342         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
22343         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
22344         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
22345         * Control.cs: Added some MWFCategory and MWFDescription attributes
22346         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
22347
22348 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
22349
22350         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
22351         usage
22352
22353 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
22354
22355         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
22356         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
22357         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
22358         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
22359         * DataGrid.cs: default datagrid settings for Default Styles, fixes
22360         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
22361
22362 2005-06-13  Jackson Harper  <jackson@ximian.com>
22363
22364         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
22365         isn't printed when the user enables dropping. (X11 does accept
22366         drops).
22367         
22368 2005-06-13  Jackson Harper  <jackson@ximian.com>
22369
22370         * TreeView.cs: Remove some TODOS.
22371
22372 2005-06-13  Jackson Harper  <jackson@ximian.com>
22373
22374         * Form.cs: Hook into the mdi framework.
22375         * MdiClient.cs: Use the base control collections add method so
22376         parents get setup correctly. Set the default back colour and dock
22377         style.
22378         * MdiChildContext.cs: New class, this bad actor handles an
22379         instance of an MDI window. Right now there is only basic
22380         support. You can drag, close, and resize windows. Minimize and
22381         Maximize are partially implemented.
22382
22383 2005-06-13  Jackson Harper  <jackson@ximian.com>
22384
22385         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
22386         freaky when both vals are negative. NOTE: There are probably other
22387         places in XplatUIX11 that this needs to be done.
22388
22389 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
22390
22391         * DataGrid.cs: implement missing methods, move KeyboardNavigation
22392         * DataGridColumnStyle.cs: fixes signature
22393
22394 2005-06-12  Jackson Harper  <jackson@ximian.com>
22395
22396         * XplatUIX11.cs: Use sizing cursors similar to the ones on
22397         windows.
22398
22399 2005-06-11  Jackson Harper  <jackson@ximian.com>
22400
22401         * StatusBarPanel.cs: Signature cleanups. Implement
22402         BeginInit/EndInit.
22403
22404 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
22405
22406         * DataGridTextBoxColumn.cs: Honors aligment
22407         * GridColumnStylesCollection.cs: Contains is case unsensitive
22408         * GridTableStylesCollection.cs: several fixes
22409         * DataGridTableStyle.cs: default column creation
22410         * DataGridDrawingLogic.cs: fixes
22411         * CurrencyManager.cs: ListName property
22412         * DataGrid.cs: multiple styles support
22413         * DataGridColumnStyle.cs: fixes
22414         
22415
22416 2005-06-10  Peter Bartok  <pbartok@novell.com>
22417
22418         * Control.cs(Select): Moved SetFocus call to avoid potential
22419           loops if controls change the active control when getting focus
22420         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
22421           the up/down buttons
22422
22423 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
22424
22425         * ImageListConverter.cs: Implemented
22426
22427 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22428
22429         * MonthCalendar.cs: Wired in NumericUpDown control for year
22430
22431 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22432
22433         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
22434           DoubleClick events, since they are not meant to be fired.
22435
22436 2005-06-09  Peter Bartok  <pbartok@novell.com>
22437
22438         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
22439           Jonathan's standalone controls into MWF, implemented missing
22440           events, attributes and methods; added xxxAccessible classes
22441         * AccessibleObject.cs: Made fields internal so other classes
22442           can change them if needed
22443
22444 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
22445
22446         * UpDownBase.cs: Complete implementation
22447         * NumericUpDown.cs: Complete implementation
22448         * DomainUpDown.cs: Complete implementation
22449
22450 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
22451
22452         * DataGridTextBoxColumn.cs: drawing fixes
22453         * DataGridCell.cs: fixes ToString method to match MSNet
22454         * DataGridTableStyle.cs: fixes
22455         * DataGridBoolColumn.cs: fixes, drawing
22456         * DataGridDrawingLogic.cs: fixes, new methods
22457         * DataGridTextBox.cs: Keyboard and fixes
22458         * DataGrid.cs:
22459                 - Keyboard navigation
22460                 - Scrolling fixes
22461                 - Row selection (single, multiple, deletion, etc)
22462                 - Lots of fixes
22463         
22464 2005-06-07  Jackson Harper  <jackson@ximian.com>
22465
22466         * ThemeWin32Classic.cs: Clear the background area when drawing
22467         buttons.
22468
22469 2005-06-06  Peter Bartok  <pbartok@novell.com>
22470
22471         * ImageListStreamer.cs: Fixed signature for GetData
22472         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
22473         * ComboBox.cs:
22474           - Added missing ChildAccessibleObject class
22475           - Added missing OnXXXFocus overrides, switched to using those
22476             instead of the event handler
22477         * Control.cs:
22478           - Added Parent property for ControlAccessibleObject
22479           - Fixed signatures
22480           - Fixed attributes
22481           - Added ResetBindings()
22482         * ListBindingConverter.cs: Implemented some methods
22483         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
22484         * ImageList.cs: Implemented basic handle scheme, removed TODOs
22485         * ContainerControl.cs: Fixed signature, now subscribing to the
22486           ControlRemoved event instead of overriding the handler, LAMESPEC
22487         * CurrencyManager.cs: Added missing attribute
22488         * MonthCalendar.cs: Added missing properties
22489
22490 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22491
22492         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
22493         
22494 2005-06-06  Gaurav Vaish and Ankit Jain
22495
22496         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
22497         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
22498         
22499 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22500
22501         * Control.cs: fixes CreateParams Width / Height.
22502
22503 2005-06-05  Peter Bartok  <pbartok@novell.com>
22504
22505         * Win32DnD.cs: Removed compilation warnings
22506
22507 2005-06-05  Peter Bartok  <pbartok@novell.com>
22508
22509         * Control.cs (CreateParams): Since we don't know if one of the
22510           properties we use is overridden, lets make sure if we fail accessing
22511           we continue with a backup plan
22512
22513 2005-06-05  Peter Bartok  <pbartok@novell.com>
22514
22515         * Win32DnD.cs:
22516           - Removed debug output
22517           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
22518             struct
22519           - Plugged resource leak
22520         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
22521           MS size
22522
22523 2005-06-05  Peter Bartok  <pbartok@novell.com>
22524
22525         * XplatUIWin32.cs: Removed DnD code
22526         * Win32DnD.cs: Implemented drop source and drop target functionality
22527
22528 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22529
22530         * UpDownBase.cs: remove duplicate addition of event, enable some code
22531         that was commented out.
22532         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
22533         Validate input when a key is pressed. It works fine now for every
22534         combination of Hexadecimal. Only missing some drawing love when sharing
22535         space with other controls.
22536
22537 2005-06-04  Peter Bartok  <pbartok@novell.com>
22538
22539         * Control.cs:
22540           - We need to pass a window for DragDrop, so enable callback events
22541           - Added DnD callback events when being a DragSource
22542         * XplatUI.cs (StartDrag): Added window handle argument
22543         * XplatUIDriver.cs (StartDrag): Added window handle argument
22544         * QueryContinueDragEventArgs: Made fields internally accessible so
22545           drivers can set them
22546         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
22547           can set them
22548
22549 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
22550
22551         * DataGridTextBoxColumn.cs: column text editing
22552         * DataGridTableStyle.cs: Respect columns styles created by the user
22553         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
22554         * DataGridBoolColumn.cs: bool column editing
22555         * DataGrid.cs: fixes to scrolling, properties, etc
22556         * DataGridTextBox.cs: handle keyboard
22557         * DataGridColumnStyle.cs: fixes
22558
22559 2005-06-02  Jackson Harper  <jackson@ximian.com>
22560
22561         * ImageListStreamer.cs: Somewhat broken implementation of
22562         GetObjectData. The RLE needs some work to match MS properly.
22563
22564 2005-06-02  Jackson Harper  <jackson@ximian.com>
22565
22566         * X11Dnd.cs: Attempting to keep at least one file in MWF
22567         monostyled.
22568
22569 2005-06-02  Peter Bartok  <pbartok@novell.com>
22570
22571         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
22572           that way
22573
22574 2005-06-02  Peter Bartok  <pbartok@novell.com>
22575
22576         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
22577         * XplatUI.cs: Added DoDragDrop() method
22578         * XplatUIDriver.cs: Added DoDragDrop() method
22579
22580 2005-06-02  Jackson Harper  <jackson@ximian.com>
22581
22582         * Splitter.cs: Implement BorderStyle.
22583
22584 2005-06-02  Jackson Harper  <jackson@ximian.com>
22585
22586         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
22587         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
22588         X11 using XDND.
22589
22590 2005-06-02  Peter Bartok  <pbartok@novell.com>
22591
22592         * DataObject.cs:
22593           - Added Data setter
22594           - Fixed broken insertion code for SetData, now also
22595             overwrites any existing entry of the same format name
22596         * Hwnd.cs: Added list of pointers that automatically gets
22597           freed when the window is disposed
22598         * XplatUI.cs: Call driver initialization method when loading
22599           a driver
22600         * Control.cs:
22601           - OnDragLeave takes EventArgs, not DragEventArgs
22602           - Added setting of WS_EX_ACCEPTFILES style when dropping is
22603             supported
22604           - Forces style update when drop state changes
22605         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
22606           not perfect since we cannot (yet) call the IDataObject.GetData()
22607           method, we keep getting 0x80004005 error, dunno why)
22608
22609 2005-06-02  Peter Bartok  <pbartok@novell.com>
22610
22611         * DragEventArgs.cs: Make fields internal so we can cache the
22612           object and re-set the fields from XplatUI
22613
22614 2005-06-02  Jackson Harper  <jackson@ximian.com>
22615
22616         * Control.cs: Add some internal methods so the DnD subsystem can
22617         raise DnD events. Also call into the driver when AllowDrop is set.
22618         * XplatUI.cs:
22619         * XplatUIDriver.cs: New method for setting whether or not a window
22620         is allowed to accept drag and drop messages.
22621                 
22622 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
22623         
22624         * ScrollBar.cs: Make sure that values sent in Scroll events
22625         are always between Maximum and Minimum.
22626
22627 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
22628
22629         * Menu.cs: Call MenuChanged when menuitem visibility has been
22630         changed.
22631         * MenuItem.cs: Rebuild menu when item is (not) visible.
22632         * MainMenu.cs: MainMenu has special MenuChanged.
22633         * Theme.cs: Caption and FrameBorderSize are not fixed.
22634         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
22635         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
22636         * XplatUIX11.cs,
22637         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
22638         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
22639
22640 2005-05-30  Jackson Harper  <jackson@ximian.com>
22641
22642         * DataFormat.cs: We can't statically initialize this stuff because
22643         it calls into the xplatui and could create a loop. So we lazy init
22644         it.
22645
22646 2005-05-28  Jackson Harper  <jackson@ximian.com>
22647
22648         * Control.cs: Proper implementation of Product(Name/Version).
22649
22650 2005-05-27  Jackson Harper  <jackson@ximian.com>
22651
22652         * DataObject.cs: Dont crash if no data is found.
22653
22654 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
22655         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
22656                 as per status page, guessing it should be set to true
22657
22658 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
22659
22660         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
22661         * DataGridTableStyle.cs: set proper formatting text, def header text
22662         * ThemeWin32Classic.cs: new themable paramaters
22663         * DataGridBoolColumn.cs: paint check box, get data, fixes
22664         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
22665         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
22666         * DataGridColumnStyle.cs: fixes
22667         * Theme.cs: new themable paramaters
22668                 
22669 2005-05-26  Peter Bartok  <pbartok@novell.com>
22670
22671         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
22672
22673 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22674         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
22675
22676 2005-05-24  Peter Bartok  <pbartok@novell.com>
22677
22678         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
22679           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
22680           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
22681           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
22682           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
22683           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
22684           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
22685           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
22686           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
22687           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
22688           missing attributes, etc
22689         * DataGridPreferredColumnWidthTypeConverter.cs: Added
22690
22691 2005-05-24  Peter Bartok  <pbartok@novell.com>
22692
22693         * Help.cs: Added, implemented trivial functions, throws up MessageBox
22694           when user tries to get help
22695         * DataObject.cs, DataFormats.cs, LinkArea.cs,
22696           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
22697           to suppress warnings
22698         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
22699           avoid unreachable code warning
22700
22701 2005-05-20  Peter Bartok  <pbartok@novell.com>
22702
22703         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
22704
22705 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22706
22707         * DataGridTextBoxColumn.cs: Basic painting methods
22708         * DataGridTableStyle.cs: Set table style in the column
22709         * ThemeWin32Classic.cs: Use Theme for colors
22710         * DataGridDrawingLogic.cs: Implement more drawing
22711         * DataGrid.cs: drawing, theming, enhacements, fixes
22712         * DataGridColumnStyle.cs: fixes, drawing
22713         * Theme.cs: theming for Datagrid
22714
22715 2005-05-20  Peter Bartok  <pbartok@novell.com>
22716
22717         * Cursor.cs: Implemented GetObjectData() method
22718
22719 2005-05-20  Peter Bartok  <pbartok@novell.com>
22720
22721         * Cursors.cs: Added setting of cursor name
22722         * Cursor.cs:
22723           - Implemented constructors
22724           - Implemented Draw and DrawStretched
22725           - Implemented Current property
22726           - Implemented == and != operators
22727           - Implemented Dispose()
22728           - Implemented ToString
22729           - Added missing attributes
22730         * XplatUIX11.cs:
22731           - Added missing reset for OverrideCursor when DoEvents is called
22732           - Fixed creation of cursor, logic was wrong
22733         * XplatUIWin32.cs:
22734           - Added missing reset for OverrideCursor when DoEvents is called
22735           - Fixed creation of cursor, bit arrays were swapped
22736         * Clipboard.cs: Removed obsolete MonoTODO attribute
22737
22738 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22739
22740         * ComboBox.cs: fixes OnSelectedItemChanged
22741         * ControlBindingsCollection.cs: fixes item range check
22742
22743 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22744
22745         * UpDownBase.cs:
22746                 - Calc preferred height properly
22747                 - Implement missing properties
22748                 
22749         * NumericUpDown.cs: Implement missing events
22750
22751 2005-05-19  Jackson Harper  <jackson@ximian.com>
22752
22753         * TabControl.cs: New method that resizes the tab pages before
22754         redrawing them. This as needed as the control is double buffered
22755         and sizing will not be recalculated unless ResizeTabPages is
22756         called.
22757         * TabPage.cs: Set base.Text instead of Text in the constructor so
22758         that UpdateOwner does not get called. Use the new Redraw method of
22759         TabControl instead of Refresh so the sizing is recalculated.
22760         * ThemeWin32Classic.cs: Draw the text for button tabs.
22761
22762 2005-05-19  Jackson Harper  <jackson@ximian.com>
22763
22764         * Control.cs: Paint control background images. Fix typo where
22765         PaintControlBackground was not getting called correctly.
22766
22767 2005-05-19  Peter Bartok  <pbartok@novell.com>
22768
22769         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
22770           I can investigate, apparently I broke FileDialog
22771
22772 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
22773
22774         * AxHost.cs: Some simple properties.
22775         * Control.cs: window must be accessible after ctor.
22776         * Form.cs: Added TransparencyKey property.
22777         * TextBoxBase.cs: Implemented Clear. Text property can be null.
22778         * XplatUIWin32.cs: SetBorderStyle implemented.
22779
22780 2005-05-18  Peter Bartok  <pbartok@novell.com>
22781
22782         * DataObject.cs: Entries are not global but particular to the
22783           DataObject, now it behaves that way
22784         * XplatUIWin32.cs: Implemented Clipboard methods
22785         * Clipboard.cs: Implemented
22786         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
22787         * XplatUIOSX.cs: Updated to final clipboard prototypes
22788         * XplatUIX11.cs: Implemented Clipboard methods
22789         * XplatUIDriver.cs: Updated to final clipboard prototypes
22790         * XplatUIStructs.cs:
22791           - Added BITMAPINFOHEADER struct
22792           - Added ClipboardFormats enum
22793         * X11Structs.cs:
22794           - Added ClipboardStruct
22795           - Added Atom enum items for clipboard types
22796           - Fixed atom types for Selection event structures
22797         * DataFormats.cs:
22798           - Added internal properties and methods for drivers to enumerate
22799             all known formats
22800           - Switched initialization method to allow drivers to assign their
22801             own IDs even for the MS predefined clipboard IDs
22802         * XplatUI.cs: Updated to final clipboard interface
22803
22804 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22805         * PropertyGridView.cs: Fixed compiler warnings.
22806
22807 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22808         * PropertyGrid.cs: Added some event calls
22809         * PropertyGridView.cs: Change drawing code to use double buffering
22810         * PropertyGridTextBox.cs: Changed Text property name
22811         * GridItem.cs: Added Bounds property.
22812         * GridEntry.cs: Added Bounds property.
22813
22814 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
22815
22816         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
22817         since GetType() may not return the correct type if the object is
22818         a remoting proxy.
22819
22820 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
22821
22822         * TreeNodeCollection.cs: fixes get/set item ranges
22823         
22824 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22825
22826         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
22827                 
22828 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22829
22830         * ComboBox.cs: Fix item range comparation
22831         * ListView.cs: Fix item range comparation
22832
22833 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22834
22835         * FontDialog.cs:
22836           - Clear example panel when OnPaint is called
22837           - Better solution for displaying the example panel text
22838           - Select default indexes in the ListBoxes
22839
22840 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22841
22842         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
22843
22844 2005-05-11  Peter Bartok  <pbartok@novell.com>
22845
22846         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
22847         * SelectionRangeConverter.cs: Implemented
22848         * PropertyGrid.cs: Fixed attribute value
22849         * Control.cs:
22850           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
22851           - Added Sebastien Pouliot's CAS Stack Propagation fixes
22852         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
22853           that's common to all drivers. First methods to go there are
22854           Sebastien Pouliot's CAS Stack Propagation helper methods
22855         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
22856           Sebastien Pouliot for CAS Stack Propagation
22857
22858 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22859
22860         * OSXStructs.cs:
22861           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
22862
22863 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
22864
22865         * DataGridTextBoxColumn.cs: fixed some members
22866         * GridColumnStylesCollection.cs: indexed column is case insensitive
22867         * DataGridTableStyle.cs: fixes
22868         * ThemeWin32Classic.cs: add new theme parameter
22869         * Theme.cs: add new theme parameter
22870         * DataGridDrawingLogic.cs: Datagrid's drawing logic
22871         * DataGrid.cs: fixes, new internal properties, etc.
22872         * DataGridColumnStyle.cs: allows to set grid value
22873         *
22874
22875 2005-05-10  Peter Bartok  <pbartok@novell.com>
22876
22877         * AccessibleObject.cs:
22878           - Removed MonoTODO attribute on help, method is correct
22879           - Fixed Bounds property
22880         * AxHost.cs: Moved MonoTODO
22881         * ButtonBase.cs: Now setting AccessibleObject properties
22882         * RadioButton.cs: Setting proper AccessibleObject role
22883         * CheckBox.cs: Setting proper AccessibleObject role
22884         * ControlBindingsCollection.cs: Added properties, methods and attributes
22885         * DataFormats.cs: Fixed awkward internal API, and changed to enable
22886           userdefined DataFormats.Format items as well
22887         * ListControl.cs: Removed data_member from the public eye
22888         * OpenFileDialog.cs:
22889           - Made class sealed
22890           - Added missing attributes
22891         * SaveFileDialog.cs: Added missing attributes
22892         * ImageListStreamer.cs: Fixed code that caused warnings
22893         * LinkLabel.cs: Removed unreachable code
22894         * TreeView.cs: Fixed code that caused warnings
22895         * PropertyGridView.cs: Fixed code that caused warnings
22896         * GridColumnStylesCollection.cs: Added missing attributes
22897         * GridTableStylesCollection: Added missing attribute
22898         * PropertyManager: Added .ctor
22899         * SecurityIDType: Added
22900         * DataObject.cs: Implemented class
22901         * LinkArea.cs: Added missing attribute
22902
22903 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
22904
22905         * RadioButton.cs: call base method to allow to fire OnClick event
22906         * UpDownBase.cs: OnMouseUp call base method
22907         * CheckedListBox.cs: call base method before returning
22908         * TrackBar.cs: call base method before returning
22909         
22910
22911 2005-05-10  Peter Bartok  <pbartok@novell.com>
22912
22913         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
22914           for messages
22915
22916 2005-05-10  Peter Bartok  <pbartok@novell.com>
22917
22918         * DataFormats.cs: Implemented
22919         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
22920           XplatUIX11.cs: Added Clipboard APIs
22921         * XplatUIWin32.cs: Implemented Clipboard APIs
22922         * FolderBrowserDialog.cs: Added missing event, attributes
22923
22924 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
22925
22926         * CheckBox.cs: call base method to allow to fire OnClick event
22927
22928 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
22929
22930         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
22931
22932 2005-05-06  Peter Bartok  <pbartok@novell.com>
22933
22934         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
22935         * Screen.cs: Implemented
22936         * HelpNavigator.cs: Added
22937         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
22938           property
22939         * HelpProvider.cs: Implemented all we can do until we have a CHM
22940           help library (which means that "What's This" does work now)
22941
22942 2005-05-06  Jackson Harper  <jackson@ximian.com>
22943
22944         * XplatUIX11.cs: Fix waking up the main loop.
22945                 
22946 2005-05-05  Peter Bartok  <pbartok@novell.com>
22947
22948         * XplatUI.cs: Updated revision
22949         * Form.cs: Removed enless loop
22950         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
22951         * Label.cs (OnPaint): Added call to base.OnPaint()
22952         * ToolTip.cs: Made ToolTipWindow reusable for other controls
22953         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
22954         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
22955         * AxHost.cs: Added
22956         * ButtonBase.cs: Moved base.OnPaint() call to end of method
22957         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
22958           to ToolTip.ToolTipWindow for drawing and size methods; this allows
22959           reuse of ToolTipWindow by other controls
22960         * SizeGrip.cs: Moved base.OnPaint() call to end of method
22961         * XplatUIX11.cs: Now clipping drawing area (experimental)
22962         * PictureBox.cs: Moved base.OnPaint() call to end of method
22963         * Theme.cs: Fixed ToolTip abstracts to match new format
22964         * ErrorProvider.cs: Implemented
22965
22966 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
22967
22968         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
22969         * LinkLabel.cs:
22970                 - Adds cursors
22971                 - Handles focus
22972                 - Implements LinkBehavior
22973                 - Fixes many issues
22974
22975 2005-05-03  Jackson Harper  <jackson@ximian.com>
22976
22977         * ListView.cs: Calculate the scrollbar positioning on resize and
22978         paint, so they get put in the correct place.
22979
22980 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22981
22982         * ColorDialogs.cs: The small color panels are now handled by
22983           SmallColorControl. This fixes drawing of the focus rectangle
22984           and adds a 3D border.
22985
22986 2005-05-03  Peter Bartok  <pbartok@novell.com>
22987
22988         * Control.cs: Modified version of Jonathan Chamber's fix for
22989           double-buffering
22990
22991 2005-05-03  Jackson Harper  <jackson@ximian.com>
22992
22993         * ListView.cs: Remove redraw variable. Control now handles whether
22994         or not a redraw needs to be done, and will only raise the paint
22995         event if redrawing is needed.
22996
22997 2005-05-03  Jackson Harper  <jackson@ximian.com>
22998
22999         * Splitter.cs: No decorations for the splitter form. Cache the
23000         hatch brush.
23001
23002 2005-05-03  Jackson Harper  <jackson@ximian.com>
23003
23004         * TreeView.cs: Use dashed lines to connect nodes. Use the
23005         ControlPaint method for drawing the focus rect instead of doing
23006         that in treeview.
23007
23008 2005-05-02  Peter Bartok  <pbartok@novell.com>
23009
23010         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
23011
23012 2005-04-29  Jackson Harper  <jackson@ximian.com>
23013
23014         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
23015         entire image buffer. Just clear the clipping rectangle.
23016
23017 2005-04-29  Jackson Harper  <jackson@ximian.com>
23018
23019         * ThemeWin32Classic.cs: Don't draw list view items that are
23020         outside the clipping rectangle.
23021
23022 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
23023
23024         * ListBox.cs: added horizontal item scroll
23025
23026 2005-04-29  Jackson Harper  <jackson@ximian.com>
23027
23028         * ThemeWin32Classic.cs: Remove some old debug code that was
23029         causing flicker with the new double buffering code.
23030
23031 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
23032
23033         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
23034         behave like combobox and comboboxlist (still not sure if this is
23035         correct though).
23036
23037 2005-04-28  Jackson Harper  <jackson@ximian.com>
23038
23039         * ThemeWin32Classic.cs: Don't fill the middle of progress
23040         bars. This fills areas outside of the clip bounds that don't need
23041         to be filled.
23042
23043 2005-04-28  Jackson Harper  <jackson@ximian.com>
23044
23045         * Control.cs: Don't expose functionality to touch the image buffers.
23046         * ProgressBar.cs:
23047         * ListView.cs: We do not need to (and no longer can) manipulate
23048         the image buffers directly. All of this is handled by Control.
23049
23050 2005-04-28  Peter Bartok  <pbartok@novell.com>
23051
23052         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23053           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
23054           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
23055
23056 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23057
23058         * Combobox:
23059                 - Adjust control's height for non-simple comboboxes (bug fix)
23060                 - Remove dead code
23061         * MenuAPI.cs: remove unused var
23062         * ScrollBar.cs: remove unsed var
23063                  
23064         * ListBox.cs: unselect items when clearing
23065
23066 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
23067
23068         * ListControl.cs: honors OnPositionChanged and default Selected Item
23069         * ListBox.cs: unselect items when clearing
23070
23071 2005-04-27  Jackson Harper  <jackson@ximian.com>
23072
23073         * X11Keyboard.cs: Initialize a default keyboard and give a warning
23074         if a "correct" keyboard is not found. This will make us not crash,
23075         but might give some users bad keyboard layouts...seems to be the
23076         same thing rewind does.
23077
23078 2005-04-27  Jackson Harper  <jackson@ximian.com>
23079
23080         * BindingManagerBase.cs: Attach the current/position changed
23081         handlers to their respective events.
23082
23083 2005-04-27  Jackson Harper  <jackson@ximian.com>
23084
23085         * Control.cs: Make sure that the first WM_PAINT does a full draw,
23086         not just a blit.
23087         * ThemeWin32Classic.cs: Don't fill the background for picture
23088         boxes. This could overright user drawing.
23089         * ComboBox.cs: Just fill the clipping rect not the entire client
23090         rect when drawing the background. This prevents pieces of the
23091         image buffer from getting overwritten and is theoretically faster.
23092
23093 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
23094
23095         * ComboBox.cs: Databinding support fixes, fire missing events
23096         * ListControl.cs: implement missing methods and properties, fixes
23097         * ThemeWin32Classic.cs: Databiding support on Drawing
23098         * CheckedListBox.cs: Databinding support fixes, fire missing events
23099         * ListBox.cs: Databinding support fixes, fire missing events
23100         
23101 2005-04-25  Peter Bartok  <pbartok@novell.com>
23102
23103         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
23104
23105 2005-04-25  Jackson Harper  <jackson@ximian.com>
23106
23107         * TreeView.cs: Use the horizontal scrollbars height not width when
23108         determining how much of the client area is available.
23109
23110 2005-04-25  Jackson Harper  <jackson@ximian.com>
23111
23112         * Control.cs: Double buffering is handled differently now. As per
23113         the spec, the extra buffer is created in the WM_PAINT message and
23114         passed down to the control's drawing code.
23115         * GroupBox.cs:
23116         * Label.cs:
23117         * CheckBox.cs:
23118         * ProgressBar.cs:
23119         * RadioButton.cs:
23120         * ColorDialog.cs:
23121         * ComboBox.cs:
23122         * PropertyGridView.cs:
23123         * UpDownBase.cs:
23124         * MessageBox.cs:
23125         * MenuAPI.cs:
23126         * ListView.cs:
23127         * ButtonBase.cs:
23128         * SizeGrip.cs:
23129         * ScrollBar.cs:
23130         * ListBox.cs:
23131         * TrackBar.cs:
23132         * ToolBar.cs:
23133         * PictureBox.cs:
23134         * DateTimePicker.cs:
23135         * StatusBar.cs:
23136         * TreeView.cs: Update to new double buffering system.
23137         * MonthCalendar.cs: Uncomment block, as Capture is now
23138         working. Update to new double buffering
23139         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
23140         * PaintEventArgs.cs: New internal method allows us to set the
23141         graphics object. This is used for double buffering.
23142         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
23143         rectangle. The internal paint_area var has been removed from
23144         StatusBar. The clipping rect should be used instead.
23145         * Theme.cs: Give the PictureBox drawing method a clipping rect.
23146         * TabPage.cs: The RefreshTabs method was removed, so just call the
23147         tab controls Refresh method now.
23148         * TabControl.cs: Update to new double buffering. Make sure the
23149         handle is created before sizing the tab pages, otherwise we will
23150         get stuck in a loop.
23151
23152 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
23153
23154         * LinkLabel.cs: Fix typo, bug #74719; patch
23155           from Borja Sanchez Zamorano
23156
23157 2005-04-22  Jackson Harper  <jackson@ximian.com>
23158
23159         * TreeNode.cs: Implement Handle stuff.
23160         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
23161
23162 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
23163
23164         * DataGridTextBoxColumn.cs: call base constructors, fixes
23165         * GridColumnStylesCollection.cs: missing events, methods, and functionality
23166         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
23167         * DataGridTableStyle.cs: implements create default column styles
23168         * DataGridBoolColumn.cs: which types can handle
23169         * DataGrid.cs: missing methods, fixes, new functionality
23170         * DataGridColumnStyle.cs: fixes
23171
23172 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
23173         * FolderBrowserDialog.cs:
23174         - Use a thread to fill the TreeView
23175         - Adjusted some sizes
23176
23177 2005-04-19  Peter Bartok  <pbartok@novell.com>
23178
23179         * LinkLabel.cs: (Re-)create the pieces when setting the Text
23180           property. Fixes #74360.
23181
23182 2005-04-19  Jackson Harper  <jackson@ximian.com>
23183
23184         * XEventQueue.cs: Lock when getting the lockqueue size.
23185         * PictureBox.cs: Call base OnPaint
23186         
23187 2005-04-19  Peter Bartok  <pbartok@novell.com>
23188
23189         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
23190           messages were no longer being processed (this broke BeginInvoke)
23191
23192           
23193 2005-04-18  Jackson Harper  <jackson@ximian.com>
23194
23195         * TreeView.cs: buglet that caused node images to get drawn
23196         regardless of whether or not they were in the clipping rectangle.
23197
23198 2005-04-18  Jackson Harper  <jackson@ximian.com>
23199
23200         * CurrencyManager.cs: There are four rules for GetItemProperties:
23201         - If the type is an array use the element type of the array
23202         - If the type is a typed list, use the type
23203         - If the list contains an Item property that is not an object, use
23204         that property
23205         - use the first element of the list if there are any elements in
23206         the list.
23207         
23208 2005-04-17  Jackson Harper  <jackson@ximian.oom>
23209
23210         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
23211         click. This handles offsets for scrolling properly and reduces
23212         memory. Also fixed GetNode to not offset now that TopNode works
23213         properly.
23214         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
23215         
23216 2005-04-17  Jackson Harper  <jackson@ximian.com>
23217
23218         * CursorConverter.cs: Initial implementation.
23219
23220 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23221
23222         * ListControl.cs: work towards complex data binding support on ListControl
23223         * CurrencyManager.cs: work towards complex data binding support on ListControl
23224         * ListBox.cs: work towards complex data binding support on ListControl
23225
23226
23227 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
23228
23229         * GridTableStylesCollection.cs: fixes name and constructor
23230         * DataGridTableStyle.cs: fixes
23231         * DataGridBoolColumn.cs: fixes names and constructors
23232         * DataGrid.cs: define methods and properties. Some init implementations
23233         * DataGridCell.cs: define methods and properties. Some init implementations
23234         * GridTablesFactory.cs: Define methods and properties
23235
23236 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
23237
23238         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
23239         graphics port changes.  We still want the coordinates in global screen
23240         coordinates.
23241
23242 2005-04-14  Jackson Harper  <jackson@ximian.com>
23243
23244         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
23245         check plus minus or checkbox clicks unless those features are enabled.
23246
23247 2005-04-14  Jackson Harper  <jackson@ximian.com>
23248
23249         * TreeView.cs: Add methods for setting the top and bottom visible
23250         nodes. TreeNode::EnsureVisible uses these methods.
23251         * TreeNode.cs: Implement EnsureVisible
23252
23253 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
23254
23255         * Form.cs: Pospone menu assignation if the window has not been created yet
23256         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
23257         size and position
23258
23259 2005-04-12  Jackson Harper  <jackson@ximian.com>
23260
23261         * TreeView.cs: Set the TopNode properly when scrolling
23262         occurs. This has the added benifit of reducing the amount of
23263         walking that needs to be done when drawing. Also removed an old
23264         misleading TODO.
23265         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
23266         
23267 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
23268
23269         * Timer.cs: fixes interval setting when the timer is already enabled
23270         
23271 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
23272
23273         * FolderBrowserDialog.cs: First approach
23274
23275 2005-04-09  Peter Bartok  <pbartok@novell.com>
23276
23277         * FolderBrowserDialog: Added
23278
23279 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
23280
23281         * LinkLabel.cs: move drawing code into the theme
23282         * ThemeWin32Classic.cs: drawing code and painting background bugfix
23283         * Theme.cs: define DrawLinkLabel method
23284
23285 2005-04-05  Jackson Harper  <jackson@ximian.com>
23286
23287         * BindingContext.cs: Use weak references so these bad actors don't
23288         stay alive longer then they need to.
23289
23290 2005-04-05  Jackson Harper  <jackson@ximian.com>
23291
23292         * ListControl.cs: Basic implementation of complex databinding.
23293         * ComboBox.cs:
23294         * ListBox.cs: Add calls to ListControl databinding methods.
23295
23296 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
23297
23298         * FileDialog.cs:
23299           - Don't change PopupButtonState to Normal when the
23300             PopupButton gets pressed several times.
23301           - Renamed ButtonPanel to PopupButtonPanel
23302
23303 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
23304
23305         * ColorDialog.cs: Use cached objects instead of creating them
23306         * LinkLabel.cs: Use cached objects instead of creating them
23307         * Splitter.cs: Use cached objects instead of creating them
23308         * FontDialog.cs: Use cached objects instead of creating them
23309         * PropertyGridView.cs: Use cached objects instead of creating them
23310         * MessageBox.cs: Use cached objects instead of creating them
23311         * FileDialog.cs: Use cached objects instead of creating them
23312         * ThemeWin32Classic.cs: Use cached objects instead of creating them
23313         * TreeView.cs: Use cached objects instead of creating them
23314         
23315 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
23316
23317         * Control.cs: use Equals to compare the font since no == op
23318         * ScrollBar.cs: use Equals to compare the font since no == op
23319
23320 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
23321
23322         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
23323
23324 2005-04-01  Jackson Harper  <jackson@ximian.com>
23325
23326         * Binding.cs: Implement IsBinding.
23327         * BindingManagerBase.cs:
23328         * PropertyManager.cs:
23329         * CurrencyManager.cs: Add IsSuspended property.
23330
23331 2005-04-01  Jackson Harper  <jackson@ximian.com>
23332
23333         * Binding.cs: Had some IsAssignableFrom calls backwards.
23334
23335 2005-04-01  Jackson Harper  <jackson@ximian.com>
23336
23337         * Binding.cs: Handle null data members when pulling data.
23338         * PropertyManager.cs: Handle the data member being a property that
23339         does not exist.
23340
23341 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
23342
23343         * DataGridTextBoxColumn.cs: fixes signature
23344         * DataGrid.cs: calls right constructor
23345
23346 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
23347
23348         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
23349         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
23350         * GridTableStylesCollection.cs: implements GridTableStylesCollection
23351         * DataGridTableStyle.cs: implements DataGridTableStyle
23352         * DataGridBoolColumn.cs: implements DataGridBoolColumn
23353         * DataGridTextBox.cs: implements DataGridTextBox
23354         * DataGridColumnStyle.cs: implements DataGridColumnStyle
23355
23356 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
23357
23358         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
23359
23360 2005-03-29  Peter Bartok  <pbartok@novell.com>
23361
23362         * Application.cs:
23363           - Properly implemented CompanyName property
23364           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
23365             returns a path that includes CompanyName, ProductName and
23366             Version (fixes bug #70330)
23367
23368 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
23369
23370         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
23371           fixes bug #72588.
23372
23373 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
23374
23375         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
23376         
23377           - Added ReadOnly CheckBox
23378           - Further refactoring: moved some code from Open-/SaveFileDialog
23379             to FileDialog
23380
23381 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
23382
23383         * OpenFileDialog.cs: Fixed CheckFileExists
23384         * FileDialog.cs:
23385           Moved FileView and DirComboBox outside FileDialog class.
23386           They can now be used outside FileDialog
23387
23388 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
23389
23390         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
23391         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
23392
23393 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
23394
23395         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23396           - Added missing CreatePrompt property in SaveDialog
23397           - Overall SaveDialog handling should be better now
23398           - Added non standard ShowHiddenFiles property
23399           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
23400           - Added InitialDirectory and RestoreDirectory support
23401
23402 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
23403
23404         * FileDialog.cs: Made dirComboBox usable
23405
23406 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
23407
23408         * FileDialog.cs: Added Filter support (case sensitiv)
23409
23410 2005-03-24  Jackson Harper  <jackson@ximian.com>
23411
23412         * TabControl.cs: Need a couple more pixels for the lines.
23413
23414 2005-03-23  Jackson Harper  <jackson@ximian.com>
23415
23416         * TabControl.cs: Give the tab page focus when it is selected.
23417
23418 2005-03-23  Jackson Harper  <jackson@ximian.com>
23419
23420         * TabControl.cs: Account for the drawing of tabs borders when
23421         invalidating. If the slider was clicked dont do click detection on
23422         the tabs.
23423
23424 2005-03-23  Jackson Harper  <jackson@ximian.com>
23425
23426         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
23427
23428 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
23429
23430         * CategoryGridEntry.cs: Added
23431         * GridItem.cs: Added helper properties
23432         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
23433         * GridEntry.cs: Updated code for collection
23434         * PropertyGrid.cs: Cleaned up some formatting
23435         * PropertyGridView.cs: Added drop down functionality for enums.
23436         * GridItemCollection.cs: Added enumerator logic
23437         * PropertyGridEntry.cs: Added
23438
23439 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23440
23441         * FileDialog.cs:
23442           - Removed unnecessary commented code
23443           - Fixed handling for entering the filename manually in the combobox
23444
23445 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23446
23447         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
23448
23449 2005-03-18  Peter Bartok  <pbartok@novell.com>
23450
23451         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
23452           them being touching the border
23453
23454 2005-03-18  Peter Bartok  <pbartok@novell.com>
23455
23456         * TextControl.cs: Quick hack to center text better
23457
23458 2005-03-18  Peter Bartok  <pbartok@novell.com>
23459
23460         * ControlPaint.cs:
23461           - Don't throw NotImplemented exceptions, just print a notice once
23462             instead (requested by Miguel). This makes running existing SWF
23463             apps a bit easier
23464         * Control.cs:
23465           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
23466           - Added context menu trigger on right click
23467         * Panel.cs: Trigger invalidate on resize
23468         * StatusBar.cs:
23469           - Removed old double-buffer drawing
23470           - Added ResizeRedraw style to force proper update of statusbar
23471         * ListView.cs:
23472           - Removed debug output
23473         * ThemeWin32Classic.cs:
23474           - Fixed drawing of status bar, now draws Text property if there
23475             are no defined panels
23476
23477 2005-03-18  Jackson Harper  <jackson@ximian.com>
23478
23479         * ImageList.cs: When the image stream is set pull all the images
23480         from it.
23481         * ImageListStreamer.cs: Implement reading image list streams.
23482
23483 2005-03-18  Peter Bartok  <pbartok@novell.com>
23484
23485         * ThemeWin32Classic.cs (DrawPictureBox):
23486           - Fixed calculations for centered drawing
23487           - Fixed drawing for normal mode, not scaling the image on normal
23488
23489 2005-03-18  Peter Bartok  <pbartok@novell.com>
23490
23491         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
23492           textbox
23493         * FileDialog.cs:
23494           - Made Open/Save button the accept button for FileDialog
23495           - Tied the cancel button to the IButtonControl cancel button
23496           - Save/Open now properly builds the pathname
23497           - Now handles user-entered text
23498           - Preventing crash on right-click if no item is selected
23499           - Fixed Text property, now uses contents of textbox
23500           - Fixed SelectedText property, now just returns the text part that
23501             is selected in the text box
23502
23503 2005-03-18  Jackson Harper  <jackson@ximian.com>
23504
23505         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
23506         rect, make sure to de-adjust the interior rect after drawing the
23507         tab text.
23508
23509 2005-03-18  Peter Bartok  <pbartok@novell.com>
23510
23511         * MenuAPI.cs: Remove menu *before* executing selected action to
23512           prevent the menu from 'hanging around'
23513           
23514 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
23515
23516         * XplatUIOSX.cs: Implemented WorkingArea property
23517
23518 2005-03-17  Peter Bartok  <pbartok@novell.com>
23519
23520         * XplatUIX11.cs: Fixed menu coord calculations
23521         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
23522           for calculating offsets
23523
23524 2005-03-17  Peter Bartok  <pbartok@novell.com>
23525
23526         * Hwnd.cs: Do not consider menu presence for default client
23527           rectangle location/size
23528         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
23529           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
23530           translation functions
23531         * FileDialog.cs: Fixed (what I presume is a) typo
23532
23533 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
23534
23535         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
23536           X access (avoids X-Async errors)
23537
23538 2005-03-16  Jackson Harper  <jackson@ximian.com>
23539
23540         * TabControl.cs: Raise the SelectedIndexChanged event.
23541
23542 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
23543
23544         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23545           - Removed vertical ToolBar and replaced it with a custom panel
23546             (desktop and home button already work)
23547           - Added Help button (some controls get resized or relocated then)
23548           - Draw correct text depending on Open or Save.
23549           - Fixed some typos...
23550
23551 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
23552
23553         * ScrollBar.cs:
23554           - Only change Maximum and Minimum when need it (bug fix)
23555
23556 2005-03-15  Peter Bartok  <pbartok@novell.com>
23557
23558         * Form.cs: Use Handle for icon, to trigger creation if
23559           the window does not yet exist
23560         * Control.cs:
23561           - CanSelect: Slight performance improvement
23562           - Focus(): Preventing possible recursion
23563           - Invalidate(): Removed ControlStyle based clear flag setting
23564           - WM_PAINT: fixed logic for calling OnPaintBackground
23565           - WM_ERASEBKGND: Fixed logic, added call to new driver method
23566             EraseWindowBackground if the control doesn't paint background
23567         * XplatUIWin32.cs:
23568           - Moved EraseWindowBackground() method to internal methods
23569           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
23570             is sent via SendMessage on BeginPaint call on Win32
23571         * XplatUIX11.cs:
23572           - Added EraseWindowBackground() method
23573           - No longer sends WM_ERASEBKGND on .Expose, but on call to
23574             PaintEventStart, which more closely matches Win32 behaviour
23575           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
23576           - Fixed SetFocus() to properly deal with client and whole windows
23577         * Hwnd.cs: Added ErasePending property
23578         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
23579         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
23580
23581 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
23582
23583         * XplatUIOSX.cs:
23584           - Fix hard loop when timers exist.
23585           - Fix bugs with middle and right click for 3 button mice.
23586
23587 2005-03-11  Peter Bartok  <pbartok@novell.com>
23588
23589         * XplatUIX11.cs:
23590           - get_WorkingArea: Need to call X directly, GetWindowPos only
23591             returns cached data now
23592           - Added sanity check to GetWindowPos hwnd usage
23593
23594 2005-03-11  Jackson Harper  <jackson@ximian.com>
23595
23596         * BindingManagerBase.cs: This method isn't used anymore as
23597         PullData now updates the data in the control.
23598
23599 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
23600
23601         * Form.cs: fixes menu drawing on X11
23602         * MenuAPI.cs:  fixes menu drawing on X11
23603
23604 2005-03-11  Peter Bartok  <pbartok@novell.com>
23605
23606         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
23607           from Jonathan Gilbert; should fix bug #73606
23608         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
23609           in Screen coordinates. Thanks, Jordi.
23610         * Form.cs: Added missing attribute
23611
23612 2005-03-11  Peter Bartok  <pbartok@novell.com>
23613
23614         * Form.cs:
23615           - Rudimentary Mdi support
23616           - Removed outdated FormParent code
23617           - Implemented lots of missing properties and methods, still missing
23618             transparency support
23619           - Added missing attributes
23620           - Implemented support for MaximumBounds
23621           - Added firing of various events
23622         * XplatUI.cs: Added SetIcon() method
23623         * XplatUIDriver.cs: Added SetIcon() abstract
23624         * XplatUIOSX.cs: Stubbed out SetIcon() method
23625         * XplatUIX11.cs:
23626           - Implemented SetIcon() support
23627           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
23628           - Switched to unix line endings
23629         * XplatUIWin32.cs:
23630           - Made POINT internal so for can access it as part of MINMAX
23631           - Implemented SetIcon() support
23632           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
23633             native Mdi support again, might have to go managed)
23634         * Control.cs: Now fires the StyleChanged event
23635         * MdiClient.cs: Added; still mostly empty
23636
23637 2005-03-10  Peter Bartok  <pbartok@novell.com>
23638
23639         * SaveFileDialog.cs: Added emtpy file
23640
23641 2005-03-08  Peter Bartok  <pbartok@novell.com>
23642
23643         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
23644           in turn triggers OnCreateContro) when creating a handle for the
23645           first time.
23646         * TextControl.cs: Fixed endless loop in certain cases when
23647           replacing the current selection
23648
23649 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
23650
23651         * ScrollBar.cs:
23652           - Honors NewValue changes in Scroll events allowing apps to change it
23653           - Adds First and Last Scroll events
23654           - Fixes Thumb events
23655
23656 2005-03-07  Peter Bartok  <pbartok@novell.com>
23657
23658         * Hwnd.cs: Added DefaultClientRectangle property
23659         * XplatUI.cs: Now using the X11 driver Where() method, which provides
23660           more detailed debug information
23661         * XplatUIX11.cs:
23662           - Fixed size-change feedback loop, where we would pull an old size
23663             off the queue and mistakenly change our window's size to an
23664             earlier value
23665           - Now compressing ConfigureNotify events, to reduce looping and
23666             redraw issues
23667         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
23668           is called
23669
23670 2005-03-07  Jackson Harper  <jackson@ximian.com>
23671
23672         * Binding.cs: Push data pushes from data -> property. Check if the
23673         property is readonly when attempting to set it.
23674
23675 2005-03-07  Jackson Harper  <jackson@ximian.com>
23676
23677         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
23678         instead of IsSubclassOf. Pulling data now sets the value on the
23679         control.
23680         * PropertyManager.cs:
23681         * CurrencyManager.cs: Just need to pull data when updating now,
23682         because PullData will set the value on the control.
23683
23684 2005-03-04  Jackson Harper  <jackson@ximian.com>
23685
23686         * Binding.cs: Implement data type parsing and converting on pulled
23687         data. TODO: Are there more ways the data can be converted?
23688
23689 2005-03-04  Jackson Harper  <jackson@ximian.com>
23690
23691         * Binding.cs: Support <Property>IsNull checks. Also bind to the
23692         controls Validating method so we can repull the data when the
23693         control loses focus.
23694
23695 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
23696
23697         * ColumnHeader.cs:
23698           - Fixes null string format
23699           
23700         * ListView.cs:
23701           - Adds enum type checks
23702           - Fixes redrawing and recalc need after changing some properties
23703           - Fixes on focus_item set after the event
23704           - Fixes adding columns after the control has been created
23705           
23706         * ThemeWin32Classic.cs:
23707           - Fixes CheckBox focus rectangle
23708           - Fixes ColumnHeader drawing
23709
23710
23711 2005-03-03  Jackson Harper  <jackson@ximian.com>
23712
23713         * Binding.cs: Bind to <Property>Changed events so we can detect
23714         when properties are changed and update the data.
23715
23716 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
23717
23718         * ImageList.cs:
23719           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
23720           - Fixes ImageList constructor with ImageList container
23721           - Fixes image scaling (wrong parameters at DrawImage)
23722
23723 2005-02-02  Jackson Harper  <jackson@ximian.com>
23724
23725         * Binding.cs: Make property searches case-insensitive. Eliminate
23726         some duplicated code.
23727
23728 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
23729
23730         * ComboBox.cs:
23731                 - Handle focus event
23732                 - Fix scrollbar events
23733                 - Discard highlighted item if remove it
23734                 - Fixes SelectedItem with strings
23735
23736 2005-03-01  Peter Bartok  <pbartok@novell.com>
23737
23738         * Control.cs:
23739           - Fixed Visible property, now follows (once again) parent chain
23740             to return false if any control in the chain is visible=false
23741           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
23742           - Fixed several places where is_visible instead of Visible was used
23743           - Implemented FIXME related to focus selection when setting focused
23744             control to be invisible
23745
23746         * XplatUIWin32.cs: Now using proper method to find out if window is
23747           visible. Thanks to Jordi for pointing it out
23748
23749 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
23750
23751         * ComboBox.cs: show/hide scrollbar instead of creating it
23752
23753 2005-02-27  Jackson Harper  <jackson@ximian.com>
23754
23755         * CurrencyManager.cs: Add PositionChanged stuff.
23756
23757 2005-02-27  Peter Bartok  <pbartok@novell.com>
23758
23759         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
23760         * XplatUIOSX.cs: Added GetMenuOrigin() stub
23761         * XplatUIWin32.cs: Implemented GetMenuOrigin()
23762         * XplatUIX11.cs:
23763           - Implemented GetMenuDC()
23764           - Implemented GetMenuOrigin()
23765           - Implemented ReleaseMenuDC()
23766           - Implemented generation of WM_NCPAINT message
23767           - Implemented generation and handling of WM_NCCALCSIZE message
23768         * Form.cs: Added debug helper message for Jordi's menu work
23769         * Hwnd.cs:
23770           - Modified ClientRect property; added setter, fixed getter to handle
23771             setting of ClientRect
23772           - Added MenuOrigin property
23773
23774 2005-02-26  Peter Bartok  <pbartok@novell.com>
23775
23776         * XplatUIX11.cs:
23777           - Destroys the caret if a window that's being destroyed contains it
23778           - Ignores expose events coming from the X11 queue for windows that
23779             already are destroyed
23780           - Now uses the proper variable for handling DestroyNotify, before we
23781             marked the wrong window as destroyed
23782           - Improved/added some debug output
23783
23784 2005-02-26  Peter Bartok  <pbartok@novell.com>
23785
23786         * X11Keyboard.cs: Fixes to work on 64bit systems
23787
23788 2005-02-26  Peter Bartok  <pbartok@novell.com>
23789
23790         * Control.cs:
23791           - Now calling OnHandleDestroyed from DestroyHandle()
23792             instead of Dispose()
23793           - Removed bogus call to controls.Remove() from DestroyHandle()
23794
23795 2005-02-26  Peter Bartok  <pbartok@novell.com>
23796
23797         * Control.cs: Properly destroy child windows when our handle is
23798           destroyed
23799
23800 2005-02-25  Peter Bartok  <pbartok@novell.com>
23801
23802         * XplatUI.cs:
23803           - Added 'DriverDebug' define to allow tracing XplatUI API calls
23804           - Alphabetized Static Methods and Subclasses
23805
23806         * XplatUIX11.cs:
23807           - Added XException class to allow custom handling of X11 exceptions
23808           - Created custom X11 error handler, tied into XException class
23809           - Added support for MONO_XEXCEPTIONS env var to allow the user
23810             to either throw an exception on X errors or continue running
23811             after displaying the error
23812           - Added handling of DestroyNotify message
23813           - Added handler for CreateNotify message (still disabled)
23814           - Improved (tried to at least) Where method to provide file and lineno
23815         * X11Structs.cs:
23816           - Added XErrorHandler delegate
23817           - Added XRequest enumeration (to suppor translation of errors)
23818
23819 2005-02-25  Jackson Harper  <jackson@ximian.com>
23820
23821         * PropertyManager.cs: Implement editing features
23822         * CurrencyManager.cs:
23823         * Binding.cs: First attempt at UpdateIsBinding
23824         * BindingManagerBase.cs: Call UpdateIsBinding before
23825         pushing/pulling data.
23826
23827 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
23828
23829         * MenuAPI.cs: Respect disabled items
23830         * ThemeWin32Classic.cs
23831                 - Caches ImageAttributes creation for DrawImageDisabled
23832                 - Fixes vertical menu line drawing
23833                 - Draws disabled arrows in disable menu items
23834
23835 2005-02-24  Peter Bartok  <pbartok@novell.com>
23836
23837         * Hwnd.cs:
23838           - Added UserData property to allow associating arbitrary objects
23839             with the handle
23840           - Fixed leak; now removing Hwnd references from static windows array
23841         * XplatUIWin32.cs:
23842           - Fixed Graphics leak in PaintEventEnd
23843           - Removed usage of HandleData, switched over to Hwnd class
23844         * HandleData.cs: Removed, obsoleted by Hwnd.cs
23845
23846 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23847
23848         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
23849         * ScrollBar.cs: Fixes bug
23850         * TrackBar.cs: removes death code, clipping, mimize refreshes,
23851          keyboard navigation enhancements
23852
23853 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23854
23855         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
23856         * GroupBox.cs: Add control styles
23857         * Label.cs: Add control styles
23858         * UpDownBase.cs: Add control styles
23859         * ListBox.cs: Add control styles
23860         * XplatUIWin32.cs: Fixes wrong parameter order
23861
23862
23863 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
23864
23865         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
23866
23867 2005-02-23  Jackson Harper  <jackson@ximian.com>
23868
23869         * PropertyManager.cs: Implement property binding. This doesn't
23870         seem to work yet though as (I think) there are some bugs in
23871         System.ComponentModel.PropertyDescriptor.
23872         * BindingContext.cs: Use new PropertyManager constructor.
23873
23874 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
23875
23876         * ProgressBar.cs: use clip region in ProgressBar
23877         * ThemeWin32Classic.cs: use clip region in ProgressBar
23878
23879 2004-02-22  Jackson Harper  <jackson@ximian.com>
23880
23881         * BindingsCollection.cs: Remove some debug code.
23882
23883 2005-02-22  Jackson Harper  <jackson@ximian.com>
23884
23885         * BindingContext.cs:
23886         * ControlBindingsCollection.cs:
23887         * CurrencyManager.cs:
23888         * Binding.cs:
23889         * BindingManagerBase.cs: Initial implementation
23890         * BindingsCollection.cs: Add an internal contains method that the
23891         BindingManagerBase uses to ensure bindings aren't added twice to
23892         the collection.
23893         * PropertyManager.cs: Stubbed out.
23894         * Control.cs:
23895         * ContainerControl.cs: Hook up databinding
23896         
23897 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
23898
23899         * XplatUIOSX.cs:
23900           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
23901           Fixed Invalidate/Update chain.
23902           Fixed tons of other minor bugs (this is almost a complete rewrite).
23903
23904 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
23905
23906         * ComboBox.cs: do subcontrol creation when the control is created
23907
23908 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23909
23910         * Label.cs: fixes image drawing (image and imagelist)
23911         * ThemeWin32Classic.cs: cache brushes
23912         
23913 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23914
23915         * Form.cs: Move menu drawing code to Theme class
23916         * ComboBox.cs: Move ComboBox drawing code to Theme class
23917         * MenuItem.cs: Move menu drawing code to Theme class
23918         * MenuAPI.cs: Move menu drawing code to Theme class
23919         * ThemeWin32Classic.cs: New methods
23920         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
23921         * ListBox.cs: Move Listbox drawing code to Theme class
23922         * Theme.cs: New methods
23923
23924 2005-02-20  Peter Bartok  <pbartok@novell.com>
23925
23926         * Control.cs:
23927           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
23928             only process mnemonics on those)
23929           - Fixed event sequence for key handling; first calling
23930             ProcessKeyEventArgs now
23931         * TextBoxBase.cs:
23932           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
23933             for processing non-character keys
23934           - Fixed WM_CHAR to generate proper event sequence before processing
23935         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
23936           generation
23937
23938 2005-02-19  Peter Bartok  <pbartok@novell.com>
23939
23940         * UserControl.cs: Added TextChanged event; added attributes
23941         * SizeGrip.cs: Implemented resizing and optional display of grip
23942         * Form.cs: Fixed attribute
23943         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
23944           Changed meaning of ScrollWindow bool argument; instead of the
23945           clear attribute (which will be true usually anyway), it gives the
23946           option of moving child controls as well.
23947         * XplatUIX11.cs:
23948           - Changed to match new ScrollWindow argument
23949           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
23950             now handles the implicit parent window a WM puts around us
23951         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
23952           to work)
23953         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
23954         * TreeView.cs: Adjusted to new ScrollWindow arguments
23955
23956 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23957
23958         * Form.cs: Menu integration with non-client area
23959         * MenuItem.cs: Menu integration with non-client area
23960         * MenuAPI.cs: Menu integration with non-client area
23961
23962 2005-02-18  Peter Bartok  <pbartok@novell.com>
23963
23964         * MethodInvoker.cs: Added
23965         * MdiLayout.cs: Added
23966         * SendKeys.cs: Started implementation
23967         * ErrorIconAlignment.cs: Added
23968
23969 2005-02-18  Peter Bartok  <pbartok@novell.com>
23970
23971         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
23972         * Form.cs: Added handling for Menu-related Non-client messages
23973
23974 2005-02-17  Peter Bartok  <pbartok@novell.com>
23975
23976         * UpDownBase.cs: Fixed typo, compilation errors
23977         * DomainUpDown.cs: Fixed attribute value
23978
23979 2005-02-16  Miguel de Icaza  <miguel@novell.com>
23980
23981         * UpDownBase.cs: Attach entry events.
23982         Propagate events.
23983         Add ForeColor property, Focused, InterceptArrowKeys (interception
23984         does not work yet).
23985
23986 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
23987
23988         * Form.cs:
23989                 - Redraw non client are on Setmenu
23990                 - Calc proper menu starting point
23991
23992 2005-02-17  Peter Bartok  <pbartok@novell.com>
23993
23994         * Application.cs: Fixed message_filter check
23995
23996 2005-02-17  Peter Bartok  <pbartok@novell.com>
23997
23998         * Application.cs: Now calls registered message filters
23999         * DockStyle.cs: Fixed attribute
24000         * Form.cs: Fixed attribute
24001         * Menu.cs: Fixed attribute
24002         * ToolTip.cs: Fixed attribute
24003         * TreeNode.cs: Added missing attributes and arranged in regions
24004         * PropertyGrid.cs: Fixed signatures
24005         * TreeNodeCollection.cs: Added attributes
24006         * Splitter.cs: Added missing attributes; arranged into regions
24007         * TabPage.cs: Added missing attributes; arranged into regions
24008         * TextBoxBase.cs: Added missing attributes
24009         * TextBox.cs: Added missing attributes
24010         * ArrangeDirection.cs: Added missing attributes
24011         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
24012         * ToolBarButton.cs: Fixed attributes
24013         * AnchorStyles.cs: Fixed attribute
24014         * TrackBar.cs: Fixed attributes
24015         * TabControl.cs: Added missing attributes and arranged into regions
24016         * ToolBar.cs: Fixed attribute
24017         * StatusBar.cs: Fixed signature, organized into regions and added
24018           attributes
24019         * StatusBarPanel.cs: Fixed attributes
24020         * ContentsResizedEventArgs.cs: Implemented
24021         * ContentsResizedEventHandler.cs: Implemented
24022         * DateBoldEventArgs.cs: Implemented
24023         * DateBoldEventHandler.cs: Implemented
24024         * UpDownEventArgs.cs: Implemented
24025         * UpDownEventHandler.cs: Implemented
24026         
24027 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
24028
24029         * Form.cs: first Menu NC refactoring
24030         * MenuAPI.cs: first Menu NC refactoring
24031         
24032 2005-02-16  Peter Bartok  <pbartok@novell.com>
24033
24034         * ImeMode.cs: Added missing attributes
24035         * Menu.cs: Fixed attribute
24036         * GroupBox.cs: Fixed attribute
24037         * Label.cs: Fixed attribute
24038         * ColorDialog.cs (RunDialog): Removed TODO attribute
24039         * ComboBox.cs: Fixed attributes
24040         * ListControl.cs: Added missing attributes
24041         * PropertyGrid.cs: Fixed attributes
24042         * Control.cs: Fixed attributes
24043         * ListViewItem.cs: Added TypeConverter attribute
24044         * NotifyIcon.cs: Fixed attributes
24045         * ListView.cs: Fixed attributes
24046         * ButtonBase.cs: Fixed attribute
24047         * ImageList.cs: Added missing attributes
24048         * ContainerControl.cs: Fixed signature
24049         * CheckedListBox.cs: Fixed attribute; added missing attributes
24050         * Panel.cs: Fixed attributes
24051         * PropertyTabChangedEventArgs.cs: Added missing attribute
24052         * PropertyValueChangedEventArgs.cs: Added missing attribute
24053         * Binding.cs: Fixed attribute
24054         * ListViewItemConverter: Implemented ListViewSubItemConverter class
24055         * ListBox.cs: Fixed attribute; added missing attributes;
24056         * ScrollableControl.cs: Added missing attributes
24057         * PictureBox.cs: Added missing attributes; implemented missing property
24058         * DateTimePicker.cs: Added missing attributes
24059         * Theme.cs (ToolWindowCaptionHeight): Fixed type
24060         * MonthCalendar.cs: Fixed attributes
24061         * StatusBarPanel.cs: Added missing attributes
24062         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
24063
24064 2005-02-16  Peter Bartok  <pbartok@novell.com>
24065
24066         * TextBoxBase.cs: The previous method to enforce height yet remember
24067           the requested high was less than ideal, this is an attempt to do
24068           it better.
24069         * Control.cs: Added comment about possible problem
24070         * Copyright: Updated format
24071         * GridItemType.cs: Fixed swapped values
24072
24073 2005-02-15  Jackson Harper  <jackson@ximian.com>
24074
24075         * BaseCollection.cs: Use property so we never access an
24076         uninitialized list. Also initialize the list in the property.
24077
24078 2005-02-15  Peter Bartok  <pbartok@novell.com>
24079
24080         * GroupBox.cs (ProcessMnemonic): Implemented
24081         * Label.cs (ProcessMnemonic): Implemented
24082         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
24083           hotkeys
24084
24085 2005-02-15  Peter Bartok  <pbartok@novell.com>
24086
24087         * RadioButton.cs (ProcessMnemonic): Implemented
24088         * CheckBox.cs (ProcessMnemonic): Implemented
24089         * Control.cs:
24090           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
24091             handling
24092           - Added internal method to allow calling ProcessMnemonic from other
24093             controls
24094         * ContainerControl.cs:
24095           - Started support for handling validation chain handling
24096           - Implemented ProcessMnemonic support
24097           - Added Select() call to Active, to make sure the active control
24098             receives focus
24099         * Form.cs: Setting toplevel flag for Forms (this was lost in the
24100           FormParent rewrite)
24101         * ThemeWin32Classic.cs:
24102           - DrawCheckBox(): Fixed stringformat to show hotkeys
24103           - DrawRadioButton(): Fixed stringformat to show hotkeys
24104         * CommonDialog.cs: Removed WndProc override, not needed
24105
24106 2005-02-14  Peter Bartok  <pbartok@novell.com>
24107
24108         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
24109           missed those in the rewrite
24110
24111 2005-02-14  Miguel de Icaza  <miguel@novell.com>
24112
24113         * NumericUpDown.cs (Increment, ToString): Add.
24114         (DecimalPlaces): implement.
24115         
24116         Add attributes.
24117         
24118         * UpDownBase.cs: Add the designer attributes.
24119
24120 2005-02-13  Peter Bartok  <pbartok@novell.com>
24121
24122         * Panel.cs: Removed border_style, now in Control
24123         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
24124           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
24125
24126 2005-02-13  Peter Bartok  <pbartok@novell.com>
24127
24128         * MouseButtons.cs: Added missing attributes
24129         * XplatUIStructs.cs: Added enumeration for title styles
24130         * LeftRightAlignment.cs: Added missing attributes
24131         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
24132           it compatible with Graphics.FromHwnd()
24133         * SelectedGridItemChangedEventArgs.cs: Fixed property type
24134         * Keys.cs: Added missing attributes
24135         * SelectionRange.cs: Added missing attributes
24136         * SelectionRangeConverter.cs: Added
24137         * XplatUI.cs:
24138           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
24139             ReleaseMenuDC methods
24140           - Renamed ReleaseWindow to UngrabWindow
24141           - Added proper startup notice to allow version identification
24142         * Form.cs:
24143           - Added missing attributes
24144           - Removed FormParent concept
24145         * Label.cs: Removed border_style field, now in Control
24146         * RadioButton.cs: Now properly selects RadioButton when focus is
24147           received
24148         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
24149         * Control.cs:
24150           - Added missing attributes
24151           - Added borderstyle handling
24152           - Removed FormParent concept support
24153           - Fixed calls to XplatUI to match changed APIs
24154           - Fixed bug that would case us to use disposed Graphics objects
24155           - Removed unneeded internal methods
24156           - PerformLayout(): Fixed to handle DockStyle.Fill properly
24157           - SelectNextControl(): Fixed to properly check common parents
24158         * TextBoxBase.cs: Removed border_style field (now in Control)
24159         * MessageBox.cs:
24160           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
24161             fixed calculations for form size
24162           - Added support for localized strings and icons
24163           - Improved form size calculations, added border
24164         * ListView.cs: Removed border_style field (now in Control)
24165         * X11Structs.cs: Moved several structs from X11 driver here
24166         * X11Keyboard.cs: Changed debug message
24167         * Application.cs: Removed FormParent concept support
24168         * CommonDialog.cs:
24169           - Resetting end_modal flag
24170           - Removed FormParent concept support
24171         * NativeWindow.cs: Removed FormParent concept support
24172         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
24173           Client area and Non-Client whole window to allow support for WM_NC
24174           messages
24175         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
24176           prevent using it until it supports Hwnd as per Geoff Norton's request
24177         * ToolBar.cs: Fixed drawing, was not doing proper drawing
24178         * PictureBox.cs: Removed border_style field, now in Control
24179         * XplatUIWin32.cs: Added new driver methods
24180
24181 2005-02-12  Peter Bartok  <pbartok@novell.com>
24182
24183         * OpacityConverter.cs: Implemented
24184         * Hwnd.cs: Internal class to support drivers that need to emulate
24185           client area/non-client area window behaviour
24186
24187 2005-02-11  Peter Bartok  <pbartok@novell.com>
24188
24189         * KeysConverter.cs: Implemented
24190
24191 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
24192
24193         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
24194         * LinkLabel: Added missing attributes
24195         * MainMenu.cs: fixes ToString
24196         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
24197         * ListBox.cs: fixes event position
24198         * TrackBar.cs: adds missing attributes and events
24199         
24200 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
24201
24202         * MenuItem.cs: Use SystemInformation and bug fixes
24203         * MenuAPI.cs: Use SystemInformation and bug fixes
24204
24205 2005-02-09  Jackson Harper  <jackson@ximian.com>
24206
24207         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
24208         their keystate otherwise things like VK_MENU get stuck "on".
24209
24210 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
24211
24212         * ListBox.cs: Fixes AddRange bug
24213         
24214 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
24215
24216         * ProgressBar.cs
24217                 - Add missing attributes
24218                 - Add missing method
24219                 
24220         * CheckedListBox.cs: Added missing attributes
24221                 - Add missing attributes
24222                 - Remove extra method
24223         
24224         * ComboBox.cs: Added missing attributes
24225         * VScrollBar.cs: Added missing attributes
24226         * ScrollBar.cs:  Added missing attributes
24227         * ListBox.cs: Fixes signature, add missing consts
24228         * LinkArea.cs:   Added missing attributes
24229         
24230
24231 2005-02-08  Peter Bartok  <pbartok@novell.com>
24232
24233         * Menu.cs: Added missing attributes
24234         * MainMenu.cs: Added missing attributes
24235         * GroupBox.cs: Added missing attributes
24236         * Label.cs: Added missing attributes
24237         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
24238         * ColorDialog.cs:
24239           - Added Instance and Options properties
24240           - Added missing attributes
24241         * Cursor.cs: Made Serializable
24242         * NotifyIcon: Added missing attributes
24243         * MenuItem.cs: Added missing attributes
24244         * TextBoxBase.cs: Implemented AppendText() and Select() methods
24245         * Panel.cs: Added Missing attributes
24246         * MonthCalendar.cs: Fixed CreateParams
24247
24248 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24249         
24250         * LinkLabel.cs:
24251                 - Fixes signature
24252                 - Fixes issues with links
24253                 - Adds the class attributes
24254
24255 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
24256         
24257         * ComboBox.cs:
24258                 - Fixes button when no items available in dropdown
24259                 - Fixes repainting problems
24260                 - Adds the class attributes
24261                 
24262 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24263
24264         * XplatUIOSX.cs: Detect the menu bar and title bar height from
24265         the current theme.  Cache these on startup.
24266
24267 2005-02-07  Jackson Harper  <jackson@ximian.com>
24268
24269         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
24270         the scrollbar buttons when they are depressed.
24271
24272 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24273
24274         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
24275         Get the display size from the main displayid.  We currently dont
24276         support multiple display configurations.
24277
24278 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
24279
24280         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
24281
24282 2005-02-07  Miguel de Icaza  <miguel@novell.com>
24283
24284         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
24285
24286 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
24287
24288         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
24289
24290 2005-02-04  Jackson Harper  <jackson@ximian.com>
24291
24292         * ThemeWin32Classic.cs: Respect the clipping rect when
24293         drawing. Only fill the intersection of clips and rects so there
24294         isn't a lot of large fills.
24295         * ScrollBar.cs: Pass the correct clipping rect to the theme
24296         engine. Remove some debug code.
24297
24298 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
24299         
24300         * DateTimePicker.cs:
24301                 - Fixed crash on DateTime.Parse, use Constructor instead
24302
24303 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24304         
24305         * MenuItem.cs:
24306         * MenuAPI.cs:
24307                 - Owner draw support (MeasureItem and DrawItem)
24308
24309 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
24310         
24311         *  Menu.cs:
24312                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
24313                 - Fixes MenuItems.Add range
24314         * MenuItem.cs:
24315                 - MergeMenu and Clone and CloneMenu functions
24316
24317 2005-02-03  Jackson Harper  <jackson@ximian.com>
24318
24319         * ScrollBar.cs: Make abstract
24320         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
24321         is abstract.
24322
24323 2005-02-03  Jackson Harper  <jackson@ximian.com>
24324
24325         * ScrollBar.cs: First part of my scrollbar fixups. This removes
24326         all the unneeded refreshes and uses invalidates with properly
24327         computed rects.
24328
24329 2005-02-03  Peter Bartok  <pbartok@novell.com>
24330
24331         * ComponentModel.cs: Added
24332         * IDataGridEditingService.cs: Added
24333         * Timer.cs: Added missing attributes
24334         * ToolTip.cs: Added missing attributes
24335
24336 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
24337
24338         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
24339
24340 2005-02-03  Peter Bartok  <pbartok@novell.com>
24341
24342         * ListBox.cs: Added missing attributes
24343
24344 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
24345         
24346         * ListBox.cs:
24347                 - Fixes font height after font change
24348                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
24349                 
24350 2005-02-02  Peter Bartok  <pbartok@novell.com>
24351
24352         * HandleData.cs: Introduced static methods to allow class
24353           to be more self-contained and track it's own HandleData objects
24354         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
24355           HandleData to use new static methods
24356
24357 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
24358
24359         * Combobox.cs:
24360                 - Fixes default size and PreferredHeight
24361                 - Missing events
24362                 - ObjectCollection.Insert implementation
24363                 
24364         * ListControl.cs
24365                 - Fixes signature
24366         * ListBox.cs:
24367                 - Several fixes
24368                 - ObjectCollection.Insert implementation
24369                 - No selection after clean
24370                 - Small fixes
24371
24372 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
24373
24374         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
24375
24376 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
24377
24378         * Combobox.cs:
24379                 - Caches ItemHeight calculation for OwnerDrawVariable
24380                 - Handles dropdown properly
24381                 - Fixes several minor bugs
24382
24383 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
24384
24385         * ListBox.cs:
24386                 - Fixes 71946 and 71950
24387                 - Fixes changing Multicolumn on the fly
24388                 - Fixes keyboard navigation on Multicolumn listboxes
24389
24390 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24391         
24392         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
24393         crash reporter log.
24394
24395 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24396
24397         * XplatUIOSX.cs: Allow applications to actually exit.
24398
24399 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24400
24401         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
24402         their parent at creation time rather than lazily later.  Fixes a major
24403         regression we were experiencing.
24404
24405 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
24406
24407         * ThemeWin32Classic.cs: more date time picker painting fixes
24408         * DateTimePicker.cs: more monthcalendar drop down fixes
24409         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
24410
24411 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
24412
24413         * ScrollBar.cs:
24414                 - When moving the thumb going outside the control should stop the moving
24415                 - Adds the firing of missing events
24416                 - Fixes no button show if Size is not specified
24417                 - End / Home keys for keyboard navigation
24418
24419 2005-01-30  Peter Bartok  <pbartok@novell.com>
24420
24421         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
24422           sanity check to prevent theoretical loop
24423         * XplatUIWin32.cs (SetVisible): Removed debug output
24424         * XplatUIX11.cs (SystrayChange): Added sanity check
24425         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
24426         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
24427           behaviour, valid until the X11 client window rewrite is done
24428         * TextBox.cs (ctor): Setting proper default foreground and background
24429           colors
24430
24431 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
24432
24433         * Theme: Added DrawDateTimePicker to interface
24434         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
24435         * DateTimePicker.cs: Created (still needs keys and painting code)
24436         * DateTimePickerFormat.cs: added
24437         * MonthCalendar.cs: fixed CreateParams for popup window mode
24438           
24439 2005-01-29  Peter Bartok  <pbartok@novell.com>
24440
24441         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
24442           this should also the calculations for ligher/darker
24443         * Theme.cs: Fixed defaults for ScrollBar widths/heights
24444
24445 2005-01-29  Peter Bartok  <pbartok@novell.com>
24446
24447         * ArrangeDirection.cs: Added
24448         * ArrangeStartingPositon.cs: Added
24449         * SystemInformation.cs: Implemented
24450         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24451           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
24452           used by SystemInformation class
24453         * X11Strucs.cs: Added XSizeHints structure
24454         * MenuAPI.cs:
24455           - Fixed CreateParams to make sure the menu window is always visible
24456           - TrackPopupMenu: Added check to make sure we don't draw the
24457             menu offscreen
24458
24459 2005-01-29  Peter Bartok  <pbartok@novell.com>
24460
24461         * HandleData.cs: Added method for altering invalid area
24462         * TextBoxBase.cs: Implemented TextLength
24463
24464 2005-01-28  Peter Bartok  <pbartok@novell.com>
24465
24466         * XplatUIX11.cs: Improvement over last patch, not sending
24467           the WM_PAINT directly anymore, instead we scroll any pending
24468           exposed areas and let the system pick out the WM_PAINT later
24469
24470 2005-01-28  Peter Bartok  <pbartok@novell.com>
24471
24472         * SWF.csproj: Deleted, no longer used. Instead,
24473           Managed.Windows.Forms/SWF.csproj should be used
24474         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
24475           directly, to avoid a potential race condition with the next
24476           scroll
24477
24478 2005-01-28  Peter Bartok  <pbartok@novell.com>
24479
24480         * XplatUI.cs: Made class internal
24481
24482 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
24483
24484         * CheckedListBox.cs:
24485                 - Draw focus
24486                 - Fixed Drawing
24487                 - Missing methods and events
24488
24489 2005-01-27  Peter Bartok  <pbartok@novell.com>
24490
24491         * Application.cs (Run): Don't use form if we don't have one
24492
24493 2005-01-27  Peter Bartok  <pbartok@novell.com>
24494
24495         * TextBoxBase.cs (get_Lines): Fixed index off by one error
24496
24497 2005-01-27  Peter Bartok  <pbartok@novell.com>
24498
24499         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
24500         * GridItem.cs: Added; Patch by Jonathan S. Chambers
24501         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
24502         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
24503         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
24504         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
24505         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24506         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24507         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24508         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24509         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24510         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24511
24512 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24513
24514         * Combobox.cs:
24515                 - Draw focus on Simple Combobox
24516                 - Fixes drawing issues
24517                 - fixes 71834
24518
24519 2005-01-27  Peter Bartok  <pbartok@novell.com>
24520
24521         * Form.cs:
24522           - Place window in default location, instead of hardcoded 0/0
24523           - Send initial LocationChanged event
24524         * Control.cs:
24525           - UpdateBounds after creation to find out where the WM placed us
24526           - Make sure that if the ParentForm changes location the Form
24527             is notified
24528         * XplatUIX11.cs: XGetGeometry will not return the coords relative
24529             to the root, but to whatever the WM placed around us.
24530             Translate to root coordinates before returning toplevel
24531             coordinates
24532         * XplatUIWin32.cs: Removed debug output
24533         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
24534           flag to GetWindowPos, to allow translation of coordinates on X11
24535
24536 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24537
24538         * ListBox.cs: connect LostFocus Event
24539
24540 2005-01-27  Peter Bartok  <pbartok@novell.com>
24541
24542         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
24543           XplatUIX11.cs: Extended the Systray API
24544         * Form.cs: Removed debug output
24545         * Application.cs: Fixed focus assignment, always need to call
24546           XplatUI.Activate() since Form.Activate() has rules that may
24547           prevent activation
24548         * NotifyIcon.cs: Should be complete now
24549         * ToolTip.cs: Worked around possible timer bug
24550
24551 2005-01-27  Jackson Harper  <jackson@ximian.com>
24552
24553         * TabControl.cs:
24554         - Only invalidate the effected tabs when the
24555         selected index changes. This reduces drawing and gets rid of some
24556         flicker.
24557         - Only refresh if the tabs need to be shifted, otherwise only
24558         invalidate the slider button.
24559         - On windows the tabs are not filled to right if the slider is
24560         visible.
24561         
24562 2005-01-27  Jackson Harper  <jackson@ximian.com>
24563
24564         * TabControl.cs: Only refresh on mouseup if we are showing the
24565         slider. Also only invalidate the button whose state has changed.
24566
24567 2005-01-26  Peter Bartok  <pbartok@novell.com>
24568
24569         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
24570         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
24571           and SystrayRemove() methods
24572         * XplatUIOSX.cs: Stubbed Systray methods
24573         * XplatUIX11.cs:
24574           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
24575             methods
24576           - Fixed broken XChangeProperty calls (marshalling messed up things)
24577         * X11Structs.cs: Added enums and structs required for Size hinting
24578         * NotifyIcon.cs: Added & implemented
24579
24580 2005-01-26  Jackson Harper  <jackson@ximian.com>
24581
24582         * TabControl.cs: Space vertically layed out tabs properly.
24583
24584 2005-01-26  Peter Bartok  <pbartok@novell.com>
24585
24586         * Form.cs (CreateClientParams): Always set the location to 0,0
24587           since we're a child window.
24588
24589         * Control.cs (SetVisibleCore): Always explicitly setting the location
24590           of a toplevel window, apparently X11 doesn't like to move windows
24591           while they're not mapped.
24592
24593 2005-01-26  Jackson Harper  <jackson@ximian.com>
24594
24595         * TabControl.cs: Implement FillToRight size mode with vertically
24596         rendered tabs.
24597
24598 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24599
24600         * ControlPaint.cs, ThemeWin32Classic.cs
24601                 - Fixes DrawFocusRectangle
24602
24603 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24604
24605         * MenuAPI.cs:
24606                 - MenuBar tracking only starts when item is first clicked
24607                 - Fixes menu hidding for multiple subitems
24608                 - Unselect item in MenuBar when item Executed
24609                 - Fixes bug 71495
24610
24611 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
24612
24613         * ListControl.cs:
24614                 - IsInputKey for ListBox
24615         * ListBox.cs:
24616                 - Focus item
24617                 - Shift and Control item selection
24618                 - Implement SelectionMode.MultiExtended
24619                 - Fixes RightToLeft
24620         * ComboBox.cs:
24621                 - IsInputKey implemented
24622                 - Do not generate OnTextChangedEdit on internal txt changes
24623                 
24624 2005-01-23  Peter Bartok  <pbartok@novell.com>
24625
24626         * AccessibleObject.cs: Partially implemented Select()
24627         * MonthCalendar.cs: Added missing attributes and events
24628         * Form.cs: Fixed CreateParams behaviour, now controls derived from
24629           form can properly override CreateParams.
24630         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24631           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
24632           Control performs Invalidate & Update
24633         * NativeWindow (CreateHandle): Added special handling for Form
24634           and Form.FormParent classes to allow overriding of From.CreateParams
24635         * Control.cs:
24636           - ControlNativeWindow: Renamed 'control' variable to more intuitive
24637             name 'owner'
24638           - ControlNativeWindow: Added Owner property
24639           - Removed usage of Refresh() on property changes, changed into
24640             Invalidate(), we need to wait until the queue is processed for
24641             updates, direct calls might cause problems if not all vars for
24642             Paint are initialized
24643           - Added call to UpdateStyles() when creating the window, to set any
24644             styles that CreateWindow might have ignored.
24645           - Added support for Form CreateParent overrides to UpdateStyles()
24646         * MessageBox.cs: Removed no longer needed FormParent override stuff,
24647           CreateParams are now properly overridable
24648         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
24649           CreateParams are now properly overridable
24650
24651 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
24652
24653         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
24654         OnTextBoxChanged.
24655
24656         Capture LostFocus and OnTextBoxChanged.  The later introduces a
24657         recursive invocation that I have not figured out yet.
24658
24659         Reset the timer when not using (it was accumulating).
24660
24661
24662         (OnTextBoxChanged): Set UserEdit to true here to track whether the
24663         user has made changes that require validation.
24664
24665         Reset changing to avoid loops.
24666
24667 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
24668
24669         * NumericUpDown.cs: Display value at startup.
24670
24671         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
24672         ValidateEditText.
24673
24674         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
24675         filled in.  Added some basic parsing of text.
24676
24677         Still missing the OnXXX method overrides, and figuring out the
24678         events that must be emitted.
24679
24680         * UpDownBase.cs: Handle UserEdit on the Text property.
24681         
24682 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
24683
24684         * ComboBox.cs:
24685           - Fixes IntegralHeight
24686           - ToString method
24687
24688 2005-01-21  Jackson Harper  <jackson@ximian.com>
24689
24690         * TabControl.cs: Set the SelectedIndex property when SelectedTab
24691         is set so that the page visibility is updated and the tabs are
24692         sized correctly.
24693
24694 2005-01-21  Jackson Harper  <jackson@ximian.com>
24695
24696         * TabControl.cs: Use cliping rectangle for blitting. Give the
24697         theme the clipping rect so we can do clipping while
24698         drawing. Remove some debug code.
24699
24700 2005-01-21  Jackson Harper  <jackson@ximian.com>
24701
24702         * TabPage.cs: Add a new method so tab pages can force the tab
24703         control to recalculate the tab page sizes.
24704         * TabControl.cs: UpdateOwner needs to make the tab control recalc
24705         sizes.
24706
24707 2005-01-20  Jackson Harper  <jackson@ximian.com>
24708
24709         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
24710
24711 2005-01-20  Jackson Harper  <jackson@ximian.com>
24712
24713         * TreeView.cs: Set the bounds for nodes properly. They were
24714         getting screwed up when checkboxes were not enabled, but images
24715         were.
24716
24717 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
24718
24719         * ListBox.cs:
24720                 - Owner draw support
24721                 - Fixes
24722                 
24723 2005-01-20  Jackson Harper  <jackson@ximian.com>
24724
24725         * XplatUIStructs.cs: More misc keys
24726         * X11Keyboard.cs: Ignore some control keys.
24727
24728 2005-01-20  Jackson Harper  <jackson@ximian.com>
24729
24730         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
24731         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
24732
24733 2005-01-19  Peter Bartok  <pbartok@novell.com>
24734
24735         * Control.cs: Un-selecting the control when it is loosing focus
24736
24737 2005-01-19  Jackson Harper  <jackson@ximian.com>
24738
24739         * TreeView.cs: Hook up to the text controls leave event so we can
24740         end editing when the users clicks outside the text box.
24741         
24742 2005-01-19  Jackson Harper  <jackson@ximian.com>
24743
24744         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
24745         get set in the conversion array.
24746
24747 2005-01-19  Peter Bartok  <pbartok@novell.com>
24748
24749         * Application.cs (ModalRun): Added a call to CreateControl to ensure
24750           focus is properly set
24751         * Button.cs:
24752           - Added missing attributes
24753           - removed styles, those are already set in the base class
24754         * ButtonBase.cs:
24755           - Added missing attributes
24756           - Added clip window styles
24757         * CheckBox.cs: Added missing attributes
24758         * CommonDialog.cs:
24759           - FormParentWindow.CreateParams: Added required clip styles
24760         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
24761           also filters modifier keys
24762         * MessageBox.cs:
24763           - Added assignment of Accept and Cancel button to enable Enter
24764             and Esc keys in MessageBox dialogs
24765           - FormParentWindow.CreateParams: Added required clip styles
24766         * RadioButton.cs: Added missing attributes
24767         * TextControl.cs: No longer draws selection if control does not
24768           have focus
24769         * TextBoxBase.cs:
24770           - Now draws simple rectangle around test area to make it obvious
24771             there's a control. This is a hack until we properly support borders
24772           - A few simple fixes to support selections better, now erases selected
24773             text when typing, and resets selection when using movement keys
24774
24775 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24776
24777         * UpDownBase.cs: Added some new properties.
24778
24779         * DomainUpDown.cs: Implement a lot to get my test working.
24780
24781 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24782
24783         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
24784
24785 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24786
24787         * OSXStructs (WindowAttributes): Fixed csc complaints
24788
24789 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24790
24791         * XplayUIOSX.cs:
24792           OSXStructs.cs: Initial refactor to move enums and consts into
24793           OSXStructs and use them in the driver for greater readability.
24794
24795 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24796
24797         * XplatUIOSX.cs: Initial support for Standard Cursors.
24798         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
24799
24800 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
24801
24802         * ComboBox.cs: ability to change style when the ctrl is already
24803         created, missing methods and events, bug fixes, signature fixes
24804
24805 2005-01-19  Peter Bartok  <pbartok@novell.com>
24806
24807         * Cursors.cs (ctor): Added ctor to fix signature
24808
24809 2005-01-18  Peter Bartok  <pbartok@novell.com>
24810
24811         * Button.cs: Implemented DoubleClick event
24812         * ButtonBase.cs:
24813           - Fixed keyboard handling to behave like MS, where the press of
24814             Spacebar is equivalent to a mousedown, and the key release is
24815             equivalent to mouseup. Now a spacebar push will give the same
24816             visual feedback like a mouse click.
24817           - Added missing attributes
24818           - Added ImeModeChanged event
24819           - Added support for generating DoubleClick event for derived classes
24820         * CheckBox.cs:
24821           - Implemented DoubleClick event
24822           - Added missing attributes
24823         * CommonDialog.cs: Added missing attribute
24824         * ContextMenu.cs: Added missing attributes
24825         * RadioButton.cs:
24826           - AutoChecked buttons do not allow to be unselected when clicked
24827             (otherwise we might end up with no selected buttons in a group)
24828           - Added missing attributes
24829           - Implemented DoubleClickEvent
24830         * ThreadExceptionDialog.cs: Enabled TextBox code
24831
24832 2005-01-18  Peter Bartok  <pbartok@novell.com>
24833
24834         * Form.cs: Removed debug output
24835         * Button.cs: Added support for DoubleClick method
24836
24837 2005-01-18  Peter Bartok  <pbartok@novell.com>
24838
24839         * Form.cs:
24840           - Added method to parent window that allows triggering size
24841             calculations when a menu is added/removed
24842           - set_Menu: Cleaned up mess from early days of Form and Control,
24843             now properly triggers a recalc when a menu is added/removed
24844           - Added case to select form itself as focused form if no child
24845             controls exist
24846           - Added PerformLayout call when showing dialog, to ensure properly
24847             placed controls
24848         * Control.cs:
24849           - Select(): Made internal so Form can access it
24850           - Focus(): Only call Xplat layer if required (avoids loop), and sets
24851             status
24852         * Application.cs (Run): Removed hack and calls PerformLayout instead
24853           to trigger calculation when Form becomes visible
24854
24855 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
24856
24857         * ComboBox.cs: fixes for ownerdraw
24858
24859 2005-01-18  Peter Bartok  <pbartok@novell.com>
24860
24861         * TextControl.cs:
24862           - Sentinel is no longer static, each Document gets it's own, this
24863             avoids locking or alternatively overwrite problems when more
24864             than one text control is used simultaneously.
24865           - Switched to use Hilight and HilightText brushes for text selection
24866
24867         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
24868
24869 2005-01-18  Peter Bartok  <pbartok@novell.com>
24870
24871         * Control.cs:
24872           - Hooked up the following events:
24873                 o ControlAdded
24874                 o ControlRemoved
24875                 o HandleDestroyed
24876                 o ImeModeChanged
24877                 o ParentChanged
24878                 o TabStopChanged
24879                 o Invalidated
24880                 o SystemColorsChanged
24881                 o ParentFontChanged
24882                 o Move
24883           - Removed debug output
24884           - Added a call to the current theme's ResetDefaults when a color change
24885             is detected
24886         * Form.cs: Now setting the proper ImeMode
24887         * Theme.cs: Defined a method to force recreation of cached resources
24888           and rereading of system defaults (ResetDefaults())
24889         * ThemeWin32Classic.cs: Added ResetDefaults() stub
24890
24891 2005-01-17  Peter Bartok  <pbartok@novell.com>
24892
24893         * Control.cs: Added missing attributes
24894
24895 2005-01-17  Jackson Harper  <jackson@ximian.com>
24896
24897         * TreeNode.cs: Implement editing. Add missing properties selected
24898         and visible.
24899         * TreeView.cs: Implement node editing. Also some fixes to use
24900         Invalidate (invalid area) instead of Refresh when selecting.
24901
24902 2005-01-17  Peter Bartok  <pbartok@novell.com>
24903
24904         * Control.cs:
24905           - Implemented InvokeGotFocus() method
24906           - Implemented InvokeLostFocus() method
24907           - Implemented InvokePaint() method
24908           - Implemented InvokePaintBackground() method
24909           - Implemented InvokeClick() method
24910           - Implemented FindForm() method
24911           - Implemented RectangleToClient() method
24912           - Implemented ClientToRectangle() method
24913           - Implemented ResetBackColor() method
24914           - Implemented ResetCursor() method
24915           - Implemented ResetFont() method
24916           - Implemented ResteForeColor() method
24917           - Implemented ResetImeMode() method
24918           - Implemented ResetLeftToRight() method
24919           - Implemented ResetText() method
24920           - Implemented Scale() methods
24921           - Implemented ScaleCore() method
24922           - Implemented Update() method
24923           - Removed unused variables
24924           - Stubbed AccessibilityNotifyClients and
24925             ControlAccessibleObject.NotifyClients() methods (dunno what to do
24926             with those yet)
24927           - Now setting proper default for RightToLeft property
24928           - Fixed bug in SetClientSizeCore that would cause windows to get
24929             really big
24930           - Now sending Click/DoubleClick events
24931           - Now selecting controls when left mouse button is clicked on
24932             selectable control
24933         * AccessibleEvents.cs: Added
24934         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
24935         * XplatUIOSX.cs: Stubbed UpdateWindow() method
24936         * XplatUIWin32.cs: Implemented UpdateWindow() method
24937         * XplatUIX11.cs: Implemented UpdateWindow() method
24938         * Form.cs: Removed stray semicolon causing CS0162 warning
24939         * ThemeWin32Classic.cs: Fixed unused variable warnings
24940         * ScrollableControl.cs: Now calls base method for ScaleCore
24941         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
24942           style to avoid interference with internal click handler (which is
24943           different than standard Control click handling)
24944         * RadioButton.cs:
24945           - Now unchecks all sibling radio buttons when control is
24946             selected (Fixes #68756)
24947           - Removed internal tabstop variable, using the one inherited from
24948             Control
24949
24950 2005-01-17  Jackson Harper  <jackson@ximian.com>
24951
24952         * NavigateEventArgs.cs: Fix base type.
24953         * LinkLabel.cs: Sig fix
24954         
24955 2005-01-17  Jackson Harper  <jackson@ximian.com>
24956
24957         * TreeView.cs: Only invalidate the effected nodes bounds when
24958         selecting nodes.
24959
24960 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24961
24962         * XplatUIWin32.cs: fixes Win32 marshaling
24963         * XplatUIX11.cs: fixes method signature
24964
24965 2005-01-17  Peter Bartok  <pbartok@novell.com>
24966
24967         * XplatUIX11.cs: Clean up resources when we no longer need them
24968
24969 2005-01-17  Peter Bartok  <pbartok@novell.com>
24970
24971         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
24972           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
24973           and DestroyCursor() methods.
24974         * Cursor.cs: Partially implemented, now supports standard cursors;
24975           still contains some debug code
24976         * Cursors.cs: Implemented class
24977         * Control.cs:
24978           - WndProc(): Added handling of WM_SETCURSOR message, setting the
24979             appropriate cursor
24980           - Implemented Cursor property
24981           - Replaced break; with return; more straightforwar and possibly
24982             faster
24983           - Now properly setting the result for WM_HELP
24984         * X11Structs.cs: Added CursorFontShape enum
24985         * XplatUIStructs.cs:
24986           - Added StdCursor enum (to support DefineStdCursor() method)
24987           - Added HitTest enum (to support sending WM_SETCURSOR message)
24988         * XplatUIX11.cs:
24989           - Now sends the WM_SETCURSOR message
24990           - Implemented new cursor methods
24991         * XplatUIOSX.cs: Stubbed new cursor methods
24992         * XplatUIWin32.cs:
24993           - Implemented new cursor methods
24994           - Added GetSystemMetrics function and associated enumeration
24995
24996 2005-01-15  Peter Bartok  <pbartok@novell.com>
24997
24998         * Control.cs:
24999           - WndProc(): Now handles EnableNotifyMessage
25000           - SelectNextControl(): Fixed bug where if no child or sibling
25001             controls exist we looped endlessly
25002
25003 2005-01-14  Jackson Harper  <jackson@ximian.com>
25004
25005         * TreeView.cs: Recalculate the tab pages when a new one is added
25006         so that the proper bounding rects are created.
25007
25008 2005-01-14  Jackson Harper  <jackson@ximian.com>
25009
25010         * TreeView.cs: Draw a gray box instead of a grip in the lower
25011         right hand corner when there are both horizontal and vertical
25012         scroll bars.
25013
25014 2005-01-14  Jackson Harper  <jackson@ximian.com>
25015
25016         * Control.cs: When erasing backgrounds use FromHwnd instead of
25017         FromHdc when there is a NULL wparam. This occurs on the X driver.
25018         * XplatUIX11.cs: Set the wparam to NULL.
25019
25020 2005-01-13  Jackson Harper  <jackson@ximian.com>
25021
25022         * PictureBox.cs: Implement missing methods (except ToString, need
25023         to test that on windows) and events. When visibility is changed we
25024         need to redraw the image because the buffers are killed. When size
25025         is changed refresh if the sizemode needs it.
25026
25027 2005-01-13  Peter Bartok  <pbartok@novell.com>
25028
25029         * Control.cs (SelectNextControl): Was using wrong method to select
25030           a control
25031
25032 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25033
25034         * ComboBox.cs: fixes dropstyle
25035
25036 2005-01-13  Peter Bartok  <pbartok@novell.com>
25037
25038         * Form.cs:
25039           - Implemented Select() override
25040           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
25041           - Now sets keyboard focus on startup
25042         * Control.cs (SelectNextControl): Now properly handles directed=true
25043         * TextBoxBase.cs:
25044           - WndProc: Now passes tab key on to base if AcceptTabChar=false
25045           - Added (really bad) focus rectangle (mostly for testing)
25046         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
25047           to enforce redraw on focus changes
25048         * ContainerControl.cs:
25049           - Fixed detection of Shift-Tab key presses
25050           - Fixed traversal with arrow keys
25051         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
25052           gonna keep this or if it's complete yet
25053         
25054 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
25055
25056         * ComboBox.cs: missing properties, fixes
25057
25058 2005-01-13  Peter Bartok  <pbartok@novell.com>
25059
25060         * Panel.cs (ctor): Setting Selectable window style to off
25061         * Splitter.cs (ctor): Setting Selectable window style to off
25062         * GroupBox.cs (ctor): Setting Selectable window style to off
25063         * Label.cs (ctor): Setting Selectable window style to off
25064
25065 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
25066
25067         * UpDownBase.cs (InitTimer): If the timer has been already
25068         created, enable it.
25069
25070         Use a TextBox instead of a Label.
25071
25072 2005-01-12  Jackson Harper  <jackson@ximian.com>
25073
25074         * TreeView.cs: Refresh the tree after sorting the nodes. Always
25075         draw the connecting node lines (when ShowLines is true).
25076         * TreeNode.cs: The nodes index can now be updated. This is used
25077         when a node collection is sorted.
25078         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
25079         insert or an existing unsorted node collection can be sorted.
25080         
25081 2005-01-12  Peter Bartok  <pbartok@novell.com>
25082
25083         * ContainerControl.cs: Implemented ProcessDialogKeys()
25084
25085 2005-01-12  Peter Bartok  <pbartok@novell.com>
25086
25087         * Control.cs:
25088           - Implemented SelectNextControl() method
25089           - Several focus related bug fixes
25090           - Fixed Docking calculations to match MS documentation and
25091             behaviour
25092
25093 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
25094
25095         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
25096         bug fixes
25097
25098 2005-01-12  Peter Bartok  <pbartok@novell.com>
25099
25100         * Control.cs:
25101           - Fixed broken Contains() method
25102           - Implemented GetNextControl() method. Finally. This is the pre-
25103             requisite for focus handling.
25104
25105 2005-01-12  Peter Bartok  <pbartok@novell.com>
25106
25107         * OSXStrucs.cs: Added
25108
25109 2005-01-12  Peter Bartok  <pbartok@novell.com>
25110
25111         * XplatUIWin32.cs:
25112           - Removed PeekMessageFlags
25113           - Implemented SetWindowStyle() method
25114         * XplatUIStructs.cs: Added PeekMessageFlags
25115         * X11Structs: Added missing border_width field to XWindowChanges struct
25116         * XplatUIX11.cs:
25117           - PeekMessage: Now throws exception if flags which are not yet
25118             supported are passed
25119           - Implemented SetWindowStyle() method
25120           - Fixed SetZOrder to handle AfterHwnd properly
25121         * XplatUI.cs: Added SetWindowStyle() method
25122         * XplatUIDriver.cs: Added SetWindowStyle() abstract
25123         * Control.cs:
25124           - Implemented UpdateStyles() method
25125           - Implemented UpdateZOrder() method
25126         * XplatUIOSX.cs: Added SetWindowStyle() stub
25127
25128 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
25129
25130         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
25131         button mouse).
25132
25133
25134 2005-01-11  Jackson Harper  <jackson@ximian.com>
25135
25136         * TreeView.cs: Still need to draw lines to siblings even if out of
25137         the current node is out of the clip.
25138
25139 2005-01-11  Jackson Harper  <jackson@ximian.com>
25140
25141         * TreeView.cs: When setting the hbar/vbar/grip position use
25142         SetBounds so that perform layout is only called once. Also suspend
25143         and resume layout so layout is only done once for all controls.
25144         - Removed some debug fluff
25145         * SizeGrip.cs: Call base implmentation in overriding methods.
25146         - When visibility is changed the drawing buffers are killed so we
25147         need to redraw.
25148
25149 2005-01-11  Jackson Harper  <jackson@ximian.com>
25150
25151         * TreeView.cs: Calculate the open node count while drawing. This
25152         saves us an entire tree traversal for every paint operation. Use
25153         a member var for the open node count so less vars are passed around.
25154
25155 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
25156
25157         * MonthCalendar.cs:
25158         - fixed selection to use mousemove, not mouse polling on timer
25159         * ThemeWin32Classic.cs
25160         - removed redundant unused variable "no_more_content"
25161         
25162 2005-01-11  Peter Bartok  <pbartok@novell.com>
25163
25164         * XplatUIX11.cs (DoEvents): Needs to return when no more events
25165           are pending, so it now calls PeekMessage instead of GetMessage;
25166           implemented a incomplete version of PeekMessage
25167         
25168 2005-01-11  Peter Bartok  <pbartok@novell.com>
25169
25170         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
25171           I18n issues
25172         * TextBoxBase.cs: Added sending of TextChanged event
25173
25174 2005-01-10  Jackson Harper  <jackson@ximian.com>
25175
25176         * TreeView.cs: Try not to draw outside the clipping rectangle on
25177         each node element.
25178
25179 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
25180
25181         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
25182
25183 2005-01-10  Jackson Harper  <jackson@ximian.com>
25184
25185         * TreeView.cs:
25186         - Implement fast scrolling. Now only the newly
25187         exposed nodes are drawn and the old image is moved using the
25188         XplatUI::ScrollWindow method.
25189         - Factor in height of nodes when calculating whether or not the
25190         node is in the clipping rect.
25191
25192 2005-01-10  Jackson Harper  <jackson@ximian.com>
25193
25194         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
25195
25196 2005-01-10  Peter Bartok  <pbartok@novell.com>
25197
25198         * Application.cs: Added temporary hack to resolve all our resize
25199           required issues on startup. This will get fixed properly at
25200           some point in the future
25201
25202 2005-01-10  Jackson Harper  <jackson@ximian.com>
25203
25204         * SizeGrip.cs: New internal class that is used as a sizing
25205         grip control...hence the name.
25206
25207 2005-01-10  Peter Bartok  <pbartok@novell.com>
25208
25209         * Control.cs: Implemented proper TabIndex handling, now assigning
25210           a tabindex when a control is added to a container
25211         * GroupBox.cs (ctor): Now sets the Container style bit, required
25212           for Control.GetNextControl()
25213
25214 2005-01-09  Jackson Harper  <jackson@ximian.com>
25215
25216         * TextBoxBase.cs: Clear window when scrolling (fixes build).
25217
25218 2005-01-09  Peter Bartok <pbartok@novell.com>
25219
25220         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
25221           XplatUIX11.cs: Added ability to control ScrollWindow expose and
25222           an overload for ScrollWindow to allow only scrolling a rectangle
25223
25224 2005-01-09  Peter Bartok <pbartok@novell.com>
25225
25226         * Form.cs:
25227           - Implemented SetDesktopBounds method
25228           - Implemented SetDesktopLocation method
25229
25230 2005-01-08  Jackson Harper  <jackson@ximian.com>
25231
25232         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
25233         the node count has changed, this removes to VScroll::Refresh calls
25234         when drawing.
25235
25236 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
25237
25238         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
25239
25240 2005-01-07  Jackson Harper  <jackson@ximian.com>
25241
25242         * TreeNode.cs: Just update the single node when it is
25243         checked. Don't refresh after toggling, the Expand/Collapse already
25244         handles this.
25245         * TreeView.cs: Respect clipping a little more when drawing. Try
25246         not to redraw things that don't need to be redrawn. Just hide the
25247         scrollbars when they are no longer needed instead of removing
25248         them, so they don't have to be created again and again.
25249         
25250 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
25251
25252         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
25253         coordinates to window space to place the caret properly, FIXED.
25254         Implement GetWindowState & SetWindowState
25255
25256 2005-01-06  Peter Bartok <pbartok@novell.com>
25257
25258         * Form.cs:
25259           - Implemented ClientSize property
25260           - Implemented DesktopBounds property
25261           - Implemented DesktopLocation property
25262           - Implemented IsRestrictedWindow property
25263           - Implemented Size property
25264           - Implemented TopLevel property
25265           - Implemented FormWindowState property
25266         * Control.cs:
25267           - Implemented GetTopLevel() method
25268           - Implemented SetTopLevel() method
25269         * X11Structs.cs (Atom):
25270           - Added AnyPropertyType definition
25271           - Added MapState definiton and updated XWindowAttribute struct
25272         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
25273         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
25274         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
25275         * XplatUIWin32.cs:
25276           - Implemented GetWindowState() and SetWindowState() methods
25277           - Fixed Win32GetWindowLong return type
25278         * XplatUIX11.cs:
25279           - Introduced central function for sending NET_WM messages
25280           - Implemented GetWindowState() and SetWindowState() methods
25281         * TextBoxBase.cs (set_Lines):
25282           - Now uses Foreground color for text added via Text property (Duh!)
25283           - Added code to remember programmatically requested size (fixes
25284             behaviour when Multiline is set after Size)
25285           - Added AutoSize logic
25286
25287 2005-01-06  Jackson Harper  <jackson@ximian.com>
25288
25289         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
25290
25291 2005-01-06  Jackson Harper  <jackson@ximian.com>
25292
25293         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
25294         set to less then 0.
25295
25296 2005-01-06  Jackson Harper  <jackson@ximian.com>
25297
25298         * ScrollableControl.cs: Lazy init the scrollbars.
25299         
25300 2005-01-06  Jackson Harper  <jackson@ximian.com>
25301
25302         * Theme.cs: Speed up getting pens and solid brushes, by using
25303         their ARGB as a hash instead of tostring and not calling Contains.
25304
25305 2005-01-06  Peter Bartok <pbartok@novell.com>
25306
25307         * Form.cs:
25308           - Implemented OnActivated and OnDeactivate event trigger
25309           - Implemented Activate() method
25310           - Fixed ShowDialog() to activate the form that was active before
25311             the dialog was shown
25312         * XplatUIX11.cs:
25313           - Added global active_window var that tracks the currently active
25314             X11 window
25315           - Now always grabs Property changes from the root window to always
25316             catch changes on the active window property
25317           - Added code to PropertyNotify handler to send Active/Inactive
25318             messages when state changes. This puts X11 and Win32 en par on
25319             WM_ACTIVATE notifications (except for double notifications when
25320             the user clicks away from our modal window to another one of our
25321             windows)
25322
25323 2005-01-05  Jackson Harper  <jackson@ximian.com>
25324
25325         * ImageList.cs: Implment ctor
25326
25327 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25328
25329         * XplatUIOSX.cs: Implement Activate/SetTopmost
25330
25331 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25332
25333         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
25334
25335 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
25336
25337         * XplatUIOSX.cs: Implement GetActive/SetFocus.
25338
25339 2005-01-05  Peter Bartok <pbartok@novell.com>
25340
25341         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
25342           XplatUIOSX.cs: Added GetActive method to return the currently
25343           active window for the application (or null, if none is active)
25344         * Form.cs:
25345           - Implemented ActiveForm
25346           - Commented out owner assignment for modal dialogs (causes problems
25347             on Win32, since the owner will be disabled)
25348           - Reworked some Active/Focus handling (still incomplete)
25349         * CommonDialog.cs: Commented out owner assignment for modal dialogs
25350           (causes problems on Win32, since the owner will be disabled)
25351         * IWin32Window: Added ComVisible attribute
25352
25353 2005-01-05  Peter Bartok <pbartok@novell.com>
25354
25355         * ToolTip.cs (WndProc): Enable setting focus now that we have the
25356           required XplatUI functions.
25357
25358 2005-01-05  Peter Bartok <pbartok@novell.com>
25359
25360         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
25361           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
25362           to implement focus and activation handling; still incomplete and
25363           with debug output
25364
25365 2005-01-04  Peter Bartok <pbartok@novell.com>
25366
25367         * TextBoxBase.cs: Changed access level for Document property to
25368           match switch to internal for TextControl
25369
25370 2005-01-04  Peter Bartok <pbartok@novell.com>
25371
25372         * AccessibleObject: Added ComVisible attribute
25373
25374 2005-01-04  Jackson Harper  <jackson@ximian.com>
25375
25376         * X11Keyboard.cs: Remove unneeded var.
25377
25378 2005-01-04  Jackson Harper  <jackson@ximian.com>
25379
25380         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
25381         but PAINT.
25382         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
25383         ClientMessage. This makes apps exit cleanly (more often).
25384         
25385 2005-01-04  Jackson Harper  <jackson@ximian.com>
25386
25387         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
25388         handling focus, return correct colors and fonts,
25389         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
25390         handle selection, horizontal scrolling, and mouse interaction.
25391
25392 2005-01-04  Peter Bartok <pbartok@novell.com>
25393
25394         * ICommandExecutor.cs: Added
25395         * IDataGridColumnStyleEditingNotificationService.cs: Added
25396         * IFeatureSupport.cs: Added
25397         * IFileReaderService.cs: Added
25398         * IDataObject.cs: Added ComVisible attribute
25399         * AmbientProperties.cs: Added
25400         * BaseCollection.cs: Added missing attributes
25401         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
25402         * BaseCollection.cs: Added missing attributes
25403         * Binding.cs: Added TypeConverter attribute
25404         * BindingContext.cs: Added DefaultEvent attribute
25405         * BindingsCollection.cs: Added DefaultEvent attribute
25406         * Button.cs: Added DefaultValue attribute
25407         * DragEventArgs.cs: Added ComVisible attribute
25408         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
25409         * KeyEventArgs.cs: Added ComVisible attribute
25410         * KeyPressEventArgs.cs: Added ComVisible attribute
25411         * MouseEventArgs.cs: Added ComVisible attribute
25412         * NavigateEventArgs.cs: Added
25413         * NavigateEventHandler.cs: Added
25414         * FeatureSupport.cs: Added
25415         * OSFeature.cs: Added
25416         * Theme.cs: Added abstract Version property to support OSFeature
25417         * ThemeWin32Classic.cs: Added Version property to
25418           support OSFeature.Themes
25419         * ProgressBar.cs: Removed OnPaintBackground override, not required since
25420           the proper styles to avoid background drawing are set, also doesn't
25421           match MS signature
25422         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
25423         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
25424         * ScrollEventArgs.cs: Added ComVisible attribute
25425         * SplitterEventArgs.cs: Added ComVisible attribute
25426         * AccessibleSelection.cs: Added Flags attribute
25427         * Appearance.cs: Added ComVisible attribute
25428         * Border3DSide.cs: Added ComVisible attribute
25429         * Border3DStyle.cs: Added ComVisible attribute
25430         * BorderStyle.cs: Added ComVisible attribute
25431         * DragAction.cs: Added ComVisible attribute
25432         * ErrorBlinkStyle.cs: Added
25433         * ScrollEventType.cs: Added ComVisible attribute
25434         * AnchorStyles.cs: Added Editor attribute
25435         * DockStyle.cs: Added Editor attribute
25436         * HorizontalAlignment.cs: Added ComVisible attribute
25437         * HelpEventArgs.cs: Added ComVisible attribute
25438         * PaintEventArgs.cs: Added IDisposable
25439
25440 2005-01-04  Peter Bartok <pbartok@novell.com>
25441
25442         * TextControl.cs: Switched Line, LineTag and Document classes to
25443           internal
25444
25445 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25446
25447         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
25448         Simple mode, fixes, IntegralHeight, etc.
25449
25450 2005-01-04  Peter Bartok <pbartok@novell.com>
25451
25452         * TextBoxBase.cs: Using proper font variable now
25453
25454 2005-01-04  Peter Bartok <pbartok@novell.com>
25455
25456         * Form.cs (ShowDialog): Set parent to owner, if provided
25457         * GroupBox.cs: Removed unused vars
25458         * TextControl.cs:
25459           - Added GetHashCode() for Document and LineTag classes
25460           - Removed unused variables
25461           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
25462             to allow translation between continuous char position and line/pos
25463         * CheckBox.cs: Removed vars that are provided by base class
25464         * RadioButton.cs: Removed vars that are provided by base class, added
25465           new keyword where required
25466         * LinkLabel.cs: Added new keyword where required
25467         * Control.cs (WndProc): Removed unused variable
25468         * TextBoxBase.cs:
25469           - Finished SelectionLength property
25470           - Implemented SelectionStart property
25471           - Implemented Text property
25472           - Removed unused vars
25473         * MessageBox.cs: Added new keyword where required
25474         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
25475           WndProc signature
25476         * MenuAPI.cs: Added new keyword where required
25477         * ButtonBase.cs: Removed vars that are provided by base class, added
25478           new keyword where required
25479         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
25480           argument to double, to allow compiling with csc 2.0 (Atsushi ran
25481           into this)
25482         * Application.cs (Run): Now triggers the ThreadExit event
25483         * CommonDialog.cs: Added new keyword where required; now properly sets
25484           parent (owner) for dialog
25485         * XplatUIX11.cs: Commented out unused vars
25486         * StatusBar.cs: Fixed signature for Text property
25487         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
25488
25489 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25490
25491         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
25492         TrackBar.cs, MonthCalendar.cs: remove unused vars
25493
25494 2005-01-03  Jackson Harper  <jackson@ximian.com>
25495
25496         * ThemeWin32Classic.cs:
25497         * X11Keyboard.cs: Remove unused vars.
25498
25499 2005-01-03  Peter Bartok  <pbartok@novell.com>
25500
25501         * TextBox.cs:
25502           - set_Text: Tied into TextControl
25503           - set_TextAlignment: Tied into TextControl
25504         * TextControl.cs:
25505           - Added alignment properties and implemented alignment handling
25506             and drawing (still has a bug, not generating proper expose events)
25507           - Added new Line() constructor to allow passing the line alignment
25508           - Fixed selection setting, properly handling end<start now
25509           - Added aligment considerations to RecalculateDocument()
25510         * TextBoxBase.cs:
25511           - Now properly enforces control height for single line controls
25512           - Added support for CharacterCasing
25513           - Added IsInputKey override
25514           - Fixed Keys.Enter logic
25515           - Added SetBoundsCore override
25516           - Fixed mouse selection handling
25517
25518 2005-01-03  Jackson Harper  <jackson@ximian.com>
25519
25520         * TreeView.cs:
25521           - Collapse and uncheck all nodes when CheckBoxes is disabled.
25522           - Checkboxes are always aligned to the bottom of the node,
25523           regardless of item height.
25524           - Use the node bounds to draw the text so we can center it when
25525           the item height is greater then the font height.
25526           - Node::Bounds are only the text part of the node.
25527         * TreeNode.cs: New method to combine collapsing and unchecking all
25528           nodes recursively.
25529
25530 2005-01-02  Jackson Harper  <jackson@ximian.com>
25531
25532         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
25533         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
25534         tree when a check is changed. TODO: Only refresh the checked node.
25535
25536 2004-12-30  Jackson Harper  <jackson@ximian.com>
25537
25538         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
25539         * TreeNode.cs: When collapsing make sure to never collapse the
25540         root node.
25541
25542 2004-12-29  Jackson Harper  <jackson@ximian.com>
25543
25544         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
25545         
25546 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
25547
25548         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
25549
25550 2004-12-28  Peter Bartok  <pbartok@novell.com>
25551
25552         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
25553           not yet assigned
25554
25555 2004-12-28  Peter Bartok  <pbartok@novell.com>
25556
25557         * Control.cs (WndProc): Added WM_HELP handler, now generates
25558           HelpRequested event
25559         * Form.cs: Added HelpButton property and required support code
25560         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
25561
25562 2004-12-28  Peter Bartok  <pbartok@novell.com>
25563
25564         * CommonDialog.cs:
25565           - Made DialogForm.owner variable internal
25566           - Added check to ensure owner form is set before setting
25567             owner properties in CreateParams
25568
25569 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
25570
25571         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
25572           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
25573           GetCursorPos.  Fix major visibility issues.  Rework the windowing
25574           system to support borderless/titleless windows (implements menus).
25575           Fix GetWindowPos.  Implement initial background color support for
25576           views.
25577
25578 2004-12-28  Peter Bartok  <pbartok@novell.com>
25579
25580         * Form.cs (get_CreateParams): Make sure we have an owner before using
25581           the owner variable. Implement proper default if no owner exists
25582
25583 2004-12-28  Peter Bartok  <pbartok@novell.com>
25584
25585         * In preparation for making Managed.Windows.Forms the default build target
25586           for System.Windows.Forms, the following stubbed files were added.
25587           Dialogs are currently being implemented by contributors and are only
25588           short-term place holders.
25589         * ColorDialog.cs: Initial check-in (minmal stub)
25590         * DataGrid.cs: Initial check-in (minimal stub)
25591         * DataGridLineStyle.cs: Initial check-in (minimal stub)
25592         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
25593         * DataGridTableStyle.cs: Initial check-in (minimal stub)
25594         * FontDialog.cs: Initial check-in (minimal stub)
25595         * FileDialog.cs: Initial check-in (minimal stub)
25596         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
25597         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
25598         * OpenFileDialog: Initial check-in (minimal stub)
25599         * IComponentEditorPageSite.cs: Initial check-in
25600         * Splitter.cs: Initial check-in (for Jackson)
25601         * SplitterEventArgs.cs: Initial check-in (for Jackson)
25602         * SplitterEventHandler.cs: Initial check-in (for Jackson)
25603         * TextBox.cs: Initial check-in; still needs some wiring to
25604           TextControl backend
25605         * Form.cs: Implemented ControlBox property
25606         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
25607         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
25608         * TextControl.cs: Added selection functionality; added todo header
25609         * TextBoxBase.cs:
25610           - Implemented Lines property
25611           - Implemented TextHeight property
25612           - Implemented SelectedText property
25613           - Implemented SelectionLength property
25614           - Implemented SelectAll method
25615           - Implemented ToString method
25616           - Removed and cleaned up some debug code
25617           - Implemented (still buggy) mouse text selection
25618
25619 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
25620
25621         * ComboBox.cs: Complete DropDownList implementation, fixes.
25622
25623 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
25624
25625         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
25626         * ComboBoxStyle.cs: ComboBoxStyle enum
25627         * ComboBox.cs: Initial work on ComboBox control
25628
25629 2004-12-21  Peter Bartok  <pbartok@novell.com>
25630
25631         * Control.cs (ctor, CreateParams): Moved setting of is_visible
25632           forward so that anything that creates a window gets the default,
25633           also no longer uses Visible property in CreateParams to avoid
25634           walking up the parent chain and possibly get the wrong visible
25635           status. Fixed IsVisible to no longer walk up to the parent.
25636
25637 2004-12-21  Peter Bartok  <pbartok@novell.com>
25638
25639         * Form.cs (ShowDialog): Unset modality for the proper window
25640  
25641 2004-12-20  Peter Bartok  <pbartok@novell.com>
25642
25643         * CommonDialog.cs: Initial check-in
25644
25645 2004-12-20  Peter Bartok  <pbartok@novell.com>
25646
25647         * Control.cs (Visible): Now uses the parent window instead of the
25648           client area window for the property
25649
25650         * Form.cs
25651           - ShowDialog(): Now uses the proper window for modality
25652           - The default visibility state for the form parent is now false. This
25653             will prevent the user from seeing all the changes to the form and
25654             its controls before the application hits Application.Run()
25655           - Removed some stale commented out code
25656
25657         * NativeWindow.cs:
25658           - Added FindWindow() method to have a method to check for existence
25659             of a window handle
25660           - Added ability to override default exception handling (for example
25661             when debugging with VS.Net; to do this the ExternalExceptionHandler
25662             define must be set
25663           - Removed some useless debug output
25664
25665         * XplatUIX11.cs:
25666           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
25667             not working as expected
25668           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
25669             property to allow switching back to the modal window if focus is
25670             given to another one of our windows (Application Modal)
25671           - Now only sets override_redirect if we create a window
25672             without WS_CAPTION
25673           - Moved EventMask selection before mapping of newly created window
25674             so we can catch the map event as well
25675           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
25676           - Added various Atom related DllImports
25677           - Implemented Exit() method
25678           - .ctor() : No longer shows window if WS_VISIBLE is not defined
25679             in the CreateParams
25680
25681         * MessageBox.cs: Now properly deals with the FormParent window by
25682           providing an override the FormParent CreateParams property to
25683           set as POPUP instead of OVERLAPPED window.
25684
25685 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25686
25687         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
25688         Minor code cleanup.
25689
25690 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25691         
25692         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
25693
25694 2004-12-18  Peter Bartok  <pbartok@novell.com>
25695
25696         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
25697           implementing SetModal() method
25698
25699 2004-12-18  Peter Bartok  <pbartok@novell.com>
25700
25701         * X11Structs.cs (XGCValues): Fixed type of function element
25702         * XplatUI.cs: Added ScrollWindow() method
25703         * XplatUIDriver.cs: Added ScrollWindow() abstract
25704         * XplatUIWin32.cs: Implemented ScrollWindow() method
25705         * XplatUIX11.cs: Implemented ScrollWindow() method
25706         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
25707
25708 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25709
25710         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
25711         Some more keyboard support (INCOMPLETE)
25712
25713 2004-12-17  Peter Bartok  <pbartok@novell.com>
25714
25715         * TextControl.cs:
25716         - Added color attribute to line tags.
25717         - Added color argument to all functions dealing with tags
25718         - Added color argument support to various functions
25719         - Fixed miss-calculation of baseline/shift in certain circumstances
25720
25721         * TextBoxBase.cs: Added new color option to test code
25722
25723 2004-12-17  Jackson Harper  <jackson@ximian.com>
25724
25725         * TreeNode.cs:
25726         * MonthCalendar.cs: Signature fixes
25727
25728 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25729
25730         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
25731         keyboard event moved it.  Create a new graphics context for each paint resolves this
25732
25733 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25734
25735         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
25736         Make caret exist and go blink blink.  Initial keyboard support.
25737         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
25738         works.
25739
25740 2004-12-17  Jackson Harper  <jackson@ximian.com>
25741
25742         * XplatUIStructs.cs: Updated set of virtual keycodes.
25743         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
25744
25745 2004-12-17  Jackson Harper  <jackson@ximian.com>
25746
25747         * XplatUIX11.cs: Prune old keyboard code.
25748
25749 2004-12-17  Jackson Harper  <jackson@ximian.com>
25750
25751         * XplatUIX11.cs: When generating mouse wparams get the modifier
25752         keys from the ModifierKeys property.
25753
25754 2004-12-17  Jackson Harper  <jackson@ximian.com>
25755
25756         * X11Keyboard.cs: Send up/down input when generating
25757         messages. Remove some unused vars.
25758
25759 2004-12-17  Jackson Harper  <jackson@ximian.com>
25760
25761         * TabControl.cs:
25762         * TreeView.cs: get rid of warnings.
25763
25764 2004-12-17  Jackson Harper  <jackson@ximian.com>
25765
25766         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
25767
25768 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
25769
25770         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
25771           CheckedListBox.cs: Implementation
25772
25773 2004-12-17  Peter Bartok  <pbartok@novell.com>
25774
25775         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
25776
25777 2004-12-16  Peter Bartok  <pbartok@novell.com>
25778
25779         * TextControl.cs:
25780           - InsertCharAtCaret(): Fixed start pos fixup
25781           - CaretLine_get: No longer derives the line from the tag, the tag
25782             could be stale if lines in the document have been added or deleted
25783           - RebalanceAfterDelete(): Fixed bug in balancing code
25784           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
25785           - Line.Streamline(): Now can also elminate leading empty tags
25786           - DumpTree(): Added a few more tests and prevented exception on
25787             uninitialized data
25788           - Added Debug section for Combining lines
25789           - Delete(): Now copies all remaining properties of a line
25790           
25791         * TextBoxBase.cs:
25792           - Left mousebutton now sets the caret (and middle button still acts
25793             as formatting tester, which must go away soon)
25794           - Added Debug section for Deleting/Combining lines
25795           - Fixed calculations for UpdateView after Combining lines
25796
25797 2004-12-16  Peter Bartok  <pbartok@novell.com>
25798
25799         * TextControl.cs: Now properly aligns text on a baseline, using the
25800           new XplatUI.GetFontMetrics() method. Simplified several calculations
25801         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
25802           defined
25803
25804 2004-12-16  Peter Bartok  <pbartok@novell.com>
25805
25806         * XplatUI.cs: Added GetFontMetrics() method
25807         * XplatUIDriver.cs: Added GetFontMetrics() abstract
25808         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
25809           into libgdiplus, our private GetFontMetrics function
25810         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
25811         * XplatUIWin32.cs: Implemented GetFontMetrics() method
25812
25813 2004-12-16  Jackson Harper  <jackson@ximain.com>
25814
25815         * XplatUIStruct.cs: Add enum for dead keys
25816         * X11Keyboard.cs: Map and unmap dead keys.
25817
25818 2004-12-16  Jackson Harper  <jackson@ximian.com>
25819
25820         * X11Keyboard.cs: Detect and use the num lock mask.
25821
25822 2004-12-16  Peter Bartok  <pbartok@novell.com>
25823
25824         * Control.cs (CreateGraphics): Added check to make sure the
25825           handle of the window exists before calling Graphics.FromHwnd()
25826
25827 2004-12-16  Peter Bartok  <pbartok@novell.com>
25828
25829         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
25830           contains a lot of code that's not supposed to be there for the
25831           real thing, but required for developing/testing the textbox
25832           backend.
25833
25834 2004-12-16  Peter Bartok  <pbartok@novell.com>
25835
25836         * TextControl.cs:
25837         - Fixed Streamline method
25838         - Added FindTag method to Line
25839         - Added DumpTree method for debugging
25840         - Added DecrementLines() method for deleting lines
25841         - Fixed UpdateView to update the cursor to end-of-line on single-line
25842           updates
25843         - Added PositionCaret() method
25844         - Fixed MoveCaret(LineDown) to move into the last line, too
25845         - Added InsertChar overload
25846         - Fixed InsertChar tag offset calculations
25847         - Added DeleteChar() method
25848         - Added Combine() method for folding lines
25849         - Fixed Delete() method, no longer allocates wasted Line object and
25850           now copies all properties when swapping nodes
25851         - Delete() method now updates document line counter
25852
25853 2004-12-15  Jackson Harper  <jackson@ximian.com>
25854
25855         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
25856         * X11Keyboard.cs: Expose the currently selected modifier keys
25857         through a property.
25858
25859 2004-12-15  Peter Bartok  <pbartok@novell.com>
25860
25861         * TextControl.cs: Initial check-in. Still incomplete
25862
25863 2004-12-15  Jackson Harper  <jackson@ximian.com>
25864
25865         * TreeNode.cs:
25866         * TreeView.cs: Fix build on csc (second time today ;-))
25867
25868 2004-12-15  Jackson Harper  <jackson@ximian.com>
25869
25870         * TreeView.cs: Store the treenodes plus/minus box bounds when it
25871         is calculated and use this for click testing.
25872         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
25873
25874 2004-12-15  Jackson Harper  <jackson@ximian.com>
25875
25876         * TreeView.cs: Pass the nodes image index to the image list when
25877         drawing that image.
25878
25879 2004-12-15  Jackson Harper  <jackson@ximian.com>
25880
25881         * X11Keyboard.cs: Set messages hwnd.
25882         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
25883         post_message calls.
25884
25885 2004-12-15  Jackson Harper  <jackson@ximian.com>
25886
25887         * X11Keyboard.cs: Fix to compile with csc.
25888         
25889 2004-12-15  Jackson Harper  <jackson@ximian.com>
25890
25891         * X11Structs.cs: Add key mask values
25892         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
25893         * X11Keyboard.cs: New file - Extrapolates and interpolates key
25894         down/up foo into WM_CHAR foo
25895         * KeyboardLayouts.cs: Common keyboard layouts
25896         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
25897         post messages into the main queue.
25898
25899 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
25900
25901         * Button.cs: implement ProcessMnemonic
25902         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
25903           brushes everytime
25904         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
25905         * ButtonBase.cs: Show HotkeyPrefix (not the &)
25906
25907 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
25908         
25909         * MonthCalendar.cs: Implemented click-hold for next/previous month
25910           and date selection
25911           
25912 2004-12-11  Peter Bartok  <pbartok@novell.com>
25913
25914         * X11Structs.cs:
25915           - Added XKeyboardState (moved from XplatUIX11.cs)
25916           - Added XCreateGC related enums and structures
25917           - Added GXFunction for XSetFunction
25918
25919         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
25920
25921         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
25922           CaretVisible() calls
25923
25924         * ToolTip.cs: Added code to prevent stealing focus from app windows
25925
25926         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
25927           DestroyCaret, SetCaretPos and CaretVisible)
25928
25929         * XplatUIX11.cs:
25930           - Added implementation for caret functions
25931           - Moved hover variables into a struct, to make it a bit easier
25932             on the eyes and to debug
25933           - Removed XKeyboardState (moved to XplatUIX11.cs)
25934           - Moved Keyboard properties into the properties region
25935
25936         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
25937           call to get a graphics context for our control
25938
25939         * XplatUIOSX.cs: Added empty overrides for the new caret functions
25940
25941         * TreeView.cs: Fixed bug. No matter what color was set it would always
25942           return SystemColors.Window
25943
25944         * XplatUIWin32.cs: Implemented caret overrides
25945
25946 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
25947
25948         * ListBox.cs: fire events, implement missing methods and properties,
25949         sorting.
25950
25951 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
25952
25953         * MonthCalendar.cs: invalidation bug fixing
25954         * ThemeWin32Classic.cs: paint fixing
25955
25956 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
25957
25958         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
25959         prepare the CGContextRef there now.
25960
25961 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
25962
25963         * MonthCalendar.cs:
25964           - optimisationL only invalidate areas that have changed
25965         * ThemeWin32Classic.cs:
25966           - only paint parts that intersect with clip_area
25967
25968 2004-12-09  Peter Bartok  <pbartok@novell.com>
25969
25970         * Application.cs: Undid changes from r37004 which cause problems
25971         on X11
25972
25973 2004-12-09  Ravindra  <rkumar@novell.com>
25974
25975         * ToolBar.cs: Added support for displaying ContextMenu
25976         attached to a button on ToolBar.
25977         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
25978         property.
25979
25980 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25981
25982         * Label.cs: autosize works in text change and removes unnecessary
25983         invalidate
25984
25985 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25986
25987         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25988         remove warnings
25989
25990 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
25991
25992         * XplatUIOSX.cs: Added mouse move/click/grab support
25993         Remove some debugging WriteLines not needed anymore.
25994         Add window resizing/positioning.
25995         Fix visibility on reparenting.
25996
25997 2004-12-08  Peter Bartok  <pbartok@novell.com>
25998
25999         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
26000
26001 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
26002
26003         * XplatUIOSX.cs: Initial checkin
26004         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
26005
26006 2004-12-03  Ravindra <rkumar@novell.com>
26007
26008         * ListView.cs: Added some keybindings and fixed scrolling.
26009         ScrollBars listen to ValueChanged event instead of Scroll
26010         Event. This would let us take care of all changes being
26011         done in the scrollbars' values programmatically or manually.
26012         * ListView.cs (CanMultiselect): Added a check for shift key.
26013         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
26014         * ListViewItem.cs (Clone): Fixed. We need to make a copy
26015         of ListViewSubItemCollection as well.
26016
26017 2004-12-06  Peter Bartok <pbartok@novell.com>
26018
26019         * Control.cs (Parent): Added check and exception to prevent
26020         circular parenting
26021
26022 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
26023
26024         * ListBox.cs: implemented clipping, selection single and multiple,
26025         bug fixing
26026
26027 2004-12-03  Ravindra <rkumar@novell.com>
26028
26029         * ListView.cs (ListView_KeyDown):
26030         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
26031         when CTRL key is pressed.
26032         * ListViewItem.cs (Selected): Fixed setting the property.
26033
26034 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26035
26036         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
26037
26038         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
26039         MinimizeBox, ShowInTaskbar, TopMost properties.
26040
26041         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
26042         will be implemented).
26043
26044 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
26045
26046         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
26047
26048         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
26049         tests.
26050         
26051         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
26052         
26053         * TreeView.cs: BackColor is Colors.Window.
26054
26055 2004-12-01  Jackson Harper  <jackson@ximian.com>
26056
26057         * TreeView.cs: When resizing the tree if the user is making it
26058         smaller we don't get expose events, so we need to handle adding
26059         the horizontal scrollbar in the size changed handler as well as
26060         the expose handler.
26061
26062 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
26063
26064         * DrawItemState.cs: fixes wrong enum values
26065
26066 2004-12-01  Jackson Harper  <jackson@ximian.com>
26067
26068         * TreeView.cs: Resize the hbar as well as the vbar on resize.
26069
26070 2004-12-01  Jackson Harper  <jackson@ximian.com>
26071
26072         * NodeLabelEditEventArgs.cs:
26073         * NodeLabelEditEventHandler.cs:
26074         * OpenTreeNodeEnumerator.cs:
26075         * TreeNode.cs:
26076         * TreeNodeCollection.cs:
26077         * TreeView.cs:
26078         * TreeViewAction.cs:
26079         * TreeViewCancelEventArgs.cs:
26080         * TreeViewCancelEventHandler.cs:
26081         * TreeViewEventArgs.cs:
26082         * TreeViewEventHandler.cs: Initial implementation.
26083
26084 2004-12-01  Ravindra <rkumar@novell.com>
26085
26086         * ListView.cs (CalculateListView): Fixed scrolling related
26087         calculations. Also, removed some debug statements from other
26088         places.
26089         * ListViewItem.cs: Changed access to 'selected' instance variable
26090         from private to internal.
26091         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
26092
26093 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
26094
26095         * ThemeWin32Classic.cs: remove cache of brush and pens for
26096         specific controls and use the global system, fixes scrollbutton
26097         bugs (for small sizes, disabled, etc)
26098         
26099         * ScrollBar.cs: does not show the thumb for very small controls
26100         (as MS) and allow smaller buttons that the regular size
26101
26102 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
26103
26104         * UpDownBase.cs: Add abstract methods for the interface.
26105         Add new virtual methods (need to be hooked up to TextEntry when it
26106         exists).
26107         Add override methods for most features.
26108         Computes the size, forces the height of the text entry.
26109
26110         * NumericUpDown.cs: Put here the current testing code.
26111
26112         * Set eol-style property on all files that do not have mixed line
26113         endings, to minimize the future problems.  There are still a few
26114         files with mixed endings, and someone should choose whether they
26115         want to move it or not.
26116
26117 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
26118
26119         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
26120         System.Colors
26121         
26122 2004-11-30  Ravindra <rkumar@novell.com>
26123
26124         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
26125         drawing and replaced use of SystemColors by theme colors.
26126         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
26127         * ListView.cs (ListViewItemCollection.Add): Throw exception when
26128         same ListViewItem is being added more than once.
26129
26130 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
26131
26132         * MonthCalendar.cs:
26133           - ControlStyles love to make the control not flicker
26134           
26135 2004-11-30  Peter Bartok  <pbartok@novell.com>
26136
26137         * CharacterCasing.cs: Added
26138
26139 2004-11-29  Peter Bartok  <pbartok@novell.com>
26140
26141         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26142           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
26143           I am removing these files as they conflict with already completed
26144           work. While it is fantastic to get contributions to MWF, I
26145           respectfully ask that everyone please coordinate their contributions
26146           through mono-winforms-list or #mono-winforms at this time. We're
26147           explicitly avoiding stubbing and don't want controls that don't have
26148           their basic functionality implemented in svn. Please also see
26149           http://www.mono-project.com/contributing/winforms.html
26150
26151
26152 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
26153
26154         * Application.cs (ModalRun): Don't hang after exit.
26155
26156         * Theme.cs: New TreeViewDefaultSize property.
26157
26158         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
26159         with less hardcoded SystemColors constant.
26160         Implemented TreeViewDefaultSize.
26161
26162         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
26163         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
26164
26165
26166 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
26167
26168         * MonthCalendar.cs:
26169           - Fix NextMonthDate and PrevMonthDate click moving calendar
26170
26171 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26172
26173         * MonthCalendar.cs:
26174           - Fix usage of ScrollChange Property when scrolling months
26175
26176 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
26177
26178         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
26179          - Fixes menu destroying
26180          - Support adding and removing items on already created menus
26181
26182 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
26183
26184         * MonthCalendar.cs:
26185           - Re-worked all bolded dates handling to match win32
26186         * ThemeWin32Classic.cs:
26187           - Fixed rendering with bolded dates
26188
26189 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
26190
26191         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
26192         - Horizontal scroolbar
26193         - Multicolumn
26194         - Fixes
26195
26196
26197 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
26198
26199         * MonthCalendar.cs:
26200           - Fix Usage of MaxSelectionCount from SelectionRange
26201           - Fixed Shift + Cursor Selection
26202           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
26203           - Fixed normal cursor selection to be compat with win32
26204           - Fixed Shift + Mouse Click selection
26205
26206 2004-11-24  Peter Bartok <pbartok@novell.com>
26207
26208         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
26209         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
26210         * XplatUIX11.cs:
26211           - CreatedKeyBoardMsg now updates keystate with Alt key
26212           - Added workaround for timer crash to CheckTimers, Jackson will
26213             develop a proper fix and check in later
26214           - Implemented DispatchMessage
26215           - Removed calling the native window proc from GetMessage (call
26216             now moved to DispatchMessage)
26217
26218         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
26219           the keydata (Fixes bug #69831)
26220
26221         * XplatUIWin32.cs:
26222           - (DispatchMessage): Switched to return IntPtr
26223           - Added DllImport for SetFocus
26224
26225 2004-11-24  Ravindra <rkumar@novell.com>
26226
26227         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
26228         background drawing.
26229         * ListViewItem.cs: Fixed various properties, calculations
26230         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
26231         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
26232         and some internal properties. Fixed MouseDown handler and Paint
26233         method.
26234
26235 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26236
26237         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
26238
26239 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26240
26241         * ContainerControl.cs: correct accidental check in of local changes
26242
26243 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
26244
26245         * ThemeWin32Classic.cs:
26246                 - Fixed Drawing Last month in grid (sometimes not showing)
26247         * MonthCalendar.cs:
26248                 - Fixed title width calculation bug (makeing title small)
26249
26250 2004-11-23  Peter Bartok <pbartok@novell.com>
26251
26252         * XplatUIX11.cs:
26253           - Added generation of WM_MOUSEHOVER event
26254           - Added missing assignment of async_method atom
26255           - Fixed WM_ERASEBKGND; now only redraws the exposed area
26256
26257 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26258
26259         * ThemeWin32Classic.cs:
26260                 - Fixed Drawing of today circle when showtodaycircle not set
26261                 - fixed drawing of first and last month in the grid (gay dates)
26262         * MonthCalendar.cs:
26263                 - Fixed Drawing of today circle
26264                 - Fixed drawing of grady dates
26265                 - Fixed HitTest for today link when ShowToday set to false
26266                 - Fixed DefaultSize to obey ShowToday
26267
26268 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
26269
26270         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
26271         * System.Windows.Forms/Theme.cs
26272         * MonthCalendar.cs: added for MonthCalendar
26273         * SelectionRange.cs: added for MonthCalendar
26274         * Day.cs: added for MonthCalendar: added for MonthCalendar
26275         * DateRangeEventArgs.cs: added for MonthCalendar
26276         * DateRangeEventHandler.cs: added for MonthCalendar
26277
26278 2004-11-22  Ravindra <rkumar@novell.com>
26279
26280         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
26281         property.
26282
26283 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
26284
26285         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
26286         event handler.
26287         
26288         * NumericUpDown.cs: Added new implementation.
26289         * UpDownBase.cs: Added new implementation.
26290
26291         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
26292         implementations.
26293         
26294         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
26295         implementations.
26296
26297         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
26298         methods.
26299
26300 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
26301
26302         * Timer.cs  (Dispose): Should call the base dispose when
26303         overriding.
26304
26305 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26306
26307         * ScrollBar.cs: updates thumb position when max, min or increment
26308         is changed
26309
26310 2004-11-21  Ravindra <rkumar@novell.com>
26311
26312         * ListView.cs: Implemented item selection, activation and
26313         column header style. Fixed properties to do a redraw, if
26314         required. Added support for MouseHover, DoubleClick, KeyDown
26315         and KeyUp event handling and some minor fixes.
26316         * ListViewItem.cs: Fixed constructor.
26317         * ThemeWin32Classic.cs: Improved drawing for ListView.
26318
26319 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
26320
26321         * ThemeWin32Classic.cs: initial listbox drawing code
26322         * DrawMode.cs: new enumerator
26323         * ListControl.cs: stubbed class
26324         * ListBox.cs: initial implementation
26325         * Theme.cs: new methods definitions
26326         * SelectionMode.cs: new enumerator
26327
26328 2004-11-17  Peter Bartok  <pbartok@novell.com>
26329
26330         * XplatUIWin32.cs: Added double-click events to the class style
26331         * Control.cs (WndProc):
26332           - Added handling of click-count to MouseDown/ MouseUp events.
26333           - Added handling of middle and right mouse buttons
26334           - Removed old debug code
26335
26336 2004-11-17  Jackson Harper  <jackson@ximian.com>
26337
26338         * XplatUIX11.cs: Use the new Mono.Unix namespace.
26339
26340 2004-11-17  Ravindra <rkumar@novell.com>
26341
26342         * ListView.cs: Added event handling for MouseMove/Up/Down.
26343         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
26344         * ThemeWin32Classic.cs: We need to clear the graphics context and
26345         draw column header in a proper state.
26346
26347
26348 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
26349
26350         *  Menu.cs: fixes signature
26351
26352 2004-11-16  Peter Bartok  <pbartok@novell.com>
26353
26354         * XplatUIX11.cs (GetMessage): Implemented generation of
26355           double click mouse messages
26356
26357 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
26358
26359         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
26360         not by menu
26361
26362 2004-11-11  Peter Bartok  <pbartok@novell.com>
26363
26364         * HandleData.cs: Added Visible property
26365         * XplatUIX11.cs (IsVisible): Now uses Visible property from
26366           HandleData
26367         * XplatUIX11.cs: Removed old debug leftovers
26368         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
26369         * Control.cs (WndProc): Removed old debug leftovers,
26370           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
26371           needed WM_SIZE handling
26372
26373 2004-11-11  Jackson Harper  <jackson@ximian.com>
26374
26375         * OwnerDrawPropertyBag.cs:
26376         * TreeViewImageIndexConverter.cs: Initial implementation
26377
26378 2004-11-10  Jackson Harper  <jackson@ximian.com>
26379
26380         * ThemeWin32Classic.cs:
26381         * TabControl.cs: instead of moving tabs by the slider pos just
26382         start drawing at the tab that is offset by the slider. This way
26383         scrolling always moves by exactly one tab.
26384
26385 2004-11-10  Jackson Harper  <jackson@ximian.com>
26386
26387         * TabControl.cs: You can only scroll left when the slider has
26388         already ben moved right.
26389         
26390 2004-11-10  Jackson Harper  <jackson@ximian.com>
26391
26392         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
26393         the clip area.
26394         
26395 2004-11-10  Jackson Harper  <jackson@ximian.com>
26396
26397         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
26398         clip area.
26399         
26400 2004-11-09  Jackson Harper  <jackson@ximian.com>
26401
26402         * TabControl.cs (CalcXPos): New helper method so we can determine
26403         the proper place to start drawing vertical tabs.
26404         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
26405         
26406 2004-11-09  Jackson Harper  <jackson@ximian.com>
26407
26408         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
26409         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
26410         and Bottom, left and right are illegal values for this and
26411         multiline is enabled when the alignment is set to left or right.
26412         (DrawTab): Each alignment block should draw the text itself now
26413         because Left requires special love. Also add rendering for Left
26414         aligned tabs.
26415         
26416 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
26417
26418         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
26419         does not destroy the windows, removes debugging messages
26420
26421 2004-11-09  jba  <jba-mono@optusnet.com.au>
26422
26423         * ThemeWin32Classic.cs
26424         (DrawButtonBase): Fix verticle text rect clipping in windows
26425         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26426         rendering and incorrect text rect clipping
26427         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26428         rendering and incorrect text rect clipping
26429         
26430 2004-11-08  Jackson Harper  <jackson@ximian.com>
26431
26432         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
26433         bottom when they are bottom aligned so the bottoms of the tabs get
26434         displayed.
26435         * TabControl.cs (DropRow): Move rows up instead of down when the
26436         tab control is bottom aligned.
26437
26438 2004-11-08 13:59  pbartok
26439
26440         * XplatUIX11.cs:
26441           - Added handling for various window styles
26442           - Added handling for popup windows
26443           - Added SetTopmost handling
26444
26445 2004-11-08 13:55  pbartok
26446
26447         * XplatUIWin32.cs:
26448           - Added argument to SetTopmost method
26449           - Fixed broken ClientToScreen function
26450
26451 2004-11-08 13:53  pbartok
26452
26453         * XplatUIStructs.cs:
26454           - Added missing WS_EX styles
26455
26456 2004-11-08 13:53  pbartok
26457
26458         * XplatUI.cs, XplatUIDriver.cs:
26459           - Added argument to SetTopmost
26460
26461 2004-11-08 13:52  pbartok
26462
26463         * X11Structs.cs:
26464           - Added XSetWindowAttributes structure
26465           - Improved XWindowAttributes structure
26466           - Added SetWindowValuemask enum
26467           - Added window creation arguments enum
26468           - Added gravity enum
26469           - Added Motif hints structure
26470           - Added various Motif flags and enums
26471           - Added PropertyMode enum for property functions
26472
26473 2004-11-08 13:50  pbartok
26474
26475         * Form.cs:
26476           - Fixed arguments for updated SetTopmost method
26477
26478 2004-11-08 13:49  pbartok
26479
26480         * ToolTip.cs:
26481           - Fixed arguments for updated SetTopmost function
26482           - Fixed usage of PointToClient
26483
26484 2004-11-08 13:44  pbartok
26485
26486         * MenuAPI.cs:
26487           - Added Clipping of children and siblings
26488
26489 2004-11-08 13:41  pbartok
26490
26491         * MainMenu.cs:
26492           - Removed SetMenuBarWindow call. We do this in Form.cs
26493
26494 2004-11-08 13:40  jackson
26495
26496         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
26497           scrolling jimmi in the correct location with bottom aligned tabs
26498
26499 2004-11-08 13:36  pbartok
26500
26501         * ContainerControl.cs:
26502           - Implemented BindingContext
26503           - Implemented ParentForm
26504
26505 2004-11-08 12:46  jackson
26506
26507         * TabControl.cs: Put bottom rendered tabs in the right location
26508
26509 2004-11-08 07:15  jordi
26510
26511         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
26512           removes dead code
26513
26514 2004-11-05 17:30  jackson
26515
26516         * TabControl.cs: When selected tabs are expanded make sure they
26517           don't go beyond the edges of the tab control
26518
26519 2004-11-05 14:57  jackson
26520
26521         * TabControl.cs: Reset show_slider so if the control is resized to
26522           a size where it is no longer needed it's not displayed anymore
26523
26524 2004-11-05 13:16  jackson
26525
26526         * TabControl.cs: Make tab pages non visible when added to the
26527           control
26528
26529 2004-11-05 12:42  jackson
26530
26531         * TabControl.cs: Implement SizeMode.FillToRight
26532
26533 2004-11-05 12:16  jackson
26534
26535         * Control.cs: Do not call CreateHandle if the handle is already
26536           created
26537
26538 2004-11-05 11:46  jackson
26539
26540         * TabControl.cs: Remove superflous call to CalcTabRows
26541
26542 2004-11-05 09:07  jackson
26543
26544         * XplatUIX11.cs: Update for Mono.Posix changes
26545
26546 2004-11-05 07:00  ravindra
26547
26548         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
26549           scrolling.
26550
26551 2004-11-04 22:47  jba
26552
26553         * ThemeWin32Classic.cs:
26554           - Fix Button rendering for FlatStyle = Flat or Popup
26555           - Fix RadioButton and CheckBox rendering when Appearance = Button
26556             (normal and flatstyle).
26557           - Correct outer rectangle color when drawing focus rectangle
26558           - Adjust button bounds to be 1 px smaller when focused
26559           - Make button not draw sunken 3d border when pushed (windows compat)
26560           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
26561           - Offset the text in RadioButton and Checkbox when being rendered as
26562           a button.
26563           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
26564           radiobuttons
26565           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
26566           - Fixed disabled text rendering for normally rendered radiobuttons
26567
26568 2004-11-04 10:26  jackson
26569
26570         * TabControl.cs: Recalculate tab rows when resizing
26571
26572 2004-11-04 07:47  jordi
26573
26574         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
26575           collection completion, drawing issues, missing features
26576
26577 2004-11-04 05:03  ravindra
26578
26579         * ScrollBar.cs:
26580                 - We need to recalculate the Thumb area when
26581                 LargeChange/maximum/minimum values are changed.
26582           - We set the 'pos' in UpdatePos() method to minimum, if it's less
26583                 than minimum. This is required to handle the case if large_change is
26584                 more than max, and use LargeChange property instead of large_change
26585                 variable.
26586           - We return max+1 when large_change is more than max, like MS does.
26587
26588 2004-11-04 04:29  ravindra
26589
26590         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
26591                 - Changed default value signatures (prefixed all with ListView).
26592                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
26593                 ListView.
26594           - Fixed calculations for ListViewItem and implemented Clone()
26595           method.
26596
26597 2004-11-04 04:26  ravindra
26598
26599         * Theme.cs, ThemeWin32Classic.cs:
26600                 - Changed default ListView values signatures (prefixed all with
26601                 ListView).
26602           - Fixed default size values for VScrollBar and HScrollBar.
26603                 - Fixed DrawListViewItem method.
26604
26605 2004-11-04 04:05  ravindra
26606
26607         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
26608
26609 2004-11-04 04:04  ravindra
26610
26611         * ImageList.cs: Implemented the missing overload for Draw method.
26612
26613 2004-11-03 19:29  jackson
26614
26615         * TabControl.cs: Handle dropping rows on selection properly
26616
26617 2004-11-03 11:59  jackson
26618
26619         * TabControl.cs: remove debug code
26620
26621 2004-11-03 11:52  jackson
26622
26623         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
26624           the scrolly widgerywoo
26625
26626 2004-11-02 13:52  jackson
26627
26628         * TabControl.cs: Resize the tab pages and tabs when the tab control
26629           is resized
26630
26631 2004-11-02 13:40  jackson
26632
26633         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
26634           selected tab to the bottom
26635
26636 2004-11-02 13:39  jackson
26637
26638         * TabPage.cs: Store the tab pages row
26639
26640 2004-11-02 12:33  jordi
26641
26642         * MenuItem.cs: fixes handle creation
26643
26644 2004-11-02 11:42  jackson
26645
26646         * TabControl.cs: signature fix
26647
26648 2004-11-02 08:56  jackson
26649
26650         * TabControl.cs: Calculate whether the tab is on an edge properly.
26651           Remove top secret debugging code
26652
26653 2004-11-01 19:57  jackson
26654
26655         * TabControl.cs: Add click handling, and proper sizing
26656
26657 2004-11-01 19:47  jackson
26658
26659         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
26660           tab controls
26661
26662 2004-11-01 19:39  jackson
26663
26664         * TabPage.cs: add internal property to store the bounds of a tab
26665           page
26666
26667 2004-10-30 04:23  ravindra
26668
26669         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
26670           values.
26671
26672 2004-10-30 04:21  ravindra
26673
26674         * ListView.cs, ListViewItem.cs: Added support for scrolling and
26675           fixed calculations.
26676
26677 2004-10-30 03:06  pbartok
26678
26679         * XplatUIX11.cs:
26680           - Removed extension of DllImported libs
26681
26682 2004-10-29 09:55  jordi
26683
26684         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
26685           navigation, itemcollection completion, menu fixes
26686
26687 2004-10-27 22:58  pbartok
26688
26689         * XplatUIX11.cs:
26690           - Now throws a nice error message when no X display could be opened
26691
26692 2004-10-26 13:51  jordi
26693
26694         * ListView.cs: removes warning
26695
26696 2004-10-26 03:55  ravindra
26697
26698         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
26699           ThemeWin32Classic.cs: Some formatting for my last checkins.
26700
26701 2004-10-26 03:36  ravindra
26702
26703         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
26704           control and default values.
26705
26706 2004-10-26 03:35  ravindra
26707
26708         * Theme.cs: Added some default values for ListView control.
26709
26710 2004-10-26 03:33  ravindra
26711
26712         * ToolBar.cs: ToolBar should use the user specified button size, if
26713           there is any. Added a size_specified flag for the same.
26714
26715 2004-10-26 03:33  ravindra
26716
26717         * ColumnHeader.cs: Added some internal members and calculations for
26718           ColumnHeader.
26719
26720 2004-10-26 03:32  ravindra
26721
26722         * ListViewItem.cs: Calculations for ListViewItem.
26723
26724 2004-10-26 03:31  ravindra
26725
26726         * ListView.cs: Added some internal members and calculations for
26727           ListView.
26728
26729 2004-10-22 13:31  jordi
26730
26731         * MenuAPI.cs: speedup menus drawing
26732
26733 2004-10-22 13:16  jackson
26734
26735         * XplatUIX11.cs: Make sure to update exposed regions when adding an
26736           expose event
26737
26738 2004-10-22 11:49  jackson
26739
26740         * Control.cs: oops
26741
26742 2004-10-22 11:41  jackson
26743
26744         * Control.cs: Check to see if the window should have its background
26745           repainted by X when drawing.
26746
26747 2004-10-22 11:31  jackson
26748
26749         * XplatUIX11.cs: When invalidating areas only use XClearArea if
26750           clear is true, this way we do not get flicker from X repainting the
26751           background
26752
26753 2004-10-22 11:28  jackson
26754
26755         * XEventQueue.cs: Queue properly
26756
26757 2004-10-21 09:38  jackson
26758
26759         * XEventQueue.cs: Fix access modifier
26760
26761 2004-10-21 09:36  jackson
26762
26763         * XEventQueue.cs: Don't loose messages
26764
26765 2004-10-21 09:22  jackson
26766
26767         * XEventQueue.cs: Don't loose messages
26768
26769 2004-10-20 04:15  jordi
26770
26771         * BootMode.cs: enum need it by SystemInfo
26772
26773 2004-10-19 21:58  pbartok
26774
26775         * XplatUIWin32.cs:
26776           - Small sanity check
26777
26778 2004-10-19 21:56  pbartok
26779
26780         * Form.cs:
26781           - Added private FormParentWindow class which acts as the container
26782             for our form and as the non-client area where menus are drawn
26783           - Added/Moved required tie-ins to Jordi's menus
26784           - Fixed/Implemented the FormStartPosition functionality
26785
26786 2004-10-19 21:52  pbartok
26787
26788         * Control.cs:
26789           - Removed unneeded locals
26790           - Added code to all size and location properties to understand and
26791             deal with the parent container of Form
26792
26793 2004-10-19 21:33  pbartok
26794
26795         * Application.cs:
26796           - Fixed to deal with new Form subclasses for menus
26797
26798 2004-10-19 17:48  jackson
26799
26800         * XEventQueue.cs: commit correct version of file
26801
26802 2004-10-19 16:50  jackson
26803
26804         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
26805
26806 2004-10-19 16:15  jordi
26807
26808         * MenuAPI.cs: MenuBarCalcSize returns the height
26809
26810 2004-10-19 08:31  pbartok
26811
26812         * Control.cs:
26813           - Added missing call to PreProcessMessage before calling OnXXXKey
26814           methods
26815
26816 2004-10-19 00:04  ravindra
26817
26818         * ToolTip.cs: Fixed constructor.
26819
26820 2004-10-18 09:31  jordi
26821
26822         * MenuAPI.cs: menuitems in menubars do not have shortcuts
26823
26824 2004-10-18 09:26  jordi
26825
26826         * MenuItem.cs: fixes MenuItem class signature
26827
26828 2004-10-18 08:56  jordi
26829
26830         * MenuAPI.cs: prevents windows from showing in the taskbar
26831
26832 2004-10-18 00:28  ravindra
26833
26834         * ToolTip.cs: Suppressed a warning message.
26835
26836 2004-10-18 00:27  ravindra
26837
26838         * Control.cs: Default value of visible property must be true.
26839
26840 2004-10-17 23:19  pbartok
26841
26842         * ToolTip.cs:
26843           - Complete implementation
26844
26845 2004-10-17 23:19  pbartok
26846
26847         * XplatUIX11.cs:
26848           - Added EnableWindow method
26849           - Added SetModal stub
26850           - Added generation of WM_ACTIVATE message (still needs testing)
26851           - Added SetTopMost stub
26852           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
26853
26854 2004-10-17 23:17  pbartok
26855
26856         * XplatUIWin32.cs:
26857           - Removed VirtualKeys to XplatUIStructs
26858           - Implemented SetTopMost method
26859           - Implemented EnableWindow method
26860           - Bugfix in ScreenToClient()
26861           - Bugfixes in ClientToScreen()
26862
26863 2004-10-17 22:51  pbartok
26864
26865         * XplatUIStructs.cs:
26866           - Added WS_EX styles to WindowStyles enumeration
26867
26868 2004-10-17 22:50  pbartok
26869
26870         * XplatUI.cs, XplatUIDriver.cs:
26871           - Added method for enabling/disabling windows
26872           - Added method for setting window modality
26873           - Added method for setting topmost window
26874
26875 2004-10-17 22:49  pbartok
26876
26877         * ThemeWin32Classic.cs:
26878           - Added ToolTip drawing code
26879
26880 2004-10-17 22:49  pbartok
26881
26882         * Theme.cs:
26883           - Added ToolTip abstracts
26884
26885 2004-10-17 22:47  pbartok
26886
26887         * Form.cs:
26888           - Fixed Form.ControlCollection to handle owner relations
26889           - Added Owner/OwnedForms handling
26890           - Implemented Z-Ordering for owned forms
26891           - Removed unneeded private overload of ShowDialog
26892           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
26893             so I hope)
26894           - Fixed Close(), had wrong default
26895           - Added firing of OnLoad event
26896           - Added some commented out debug code for Ownership handling
26897
26898 2004-10-17 22:16  pbartok
26899
26900         * Control.cs:
26901           - Fixed/implemented flat list of controls
26902
26903 2004-10-17 22:14  pbartok
26904
26905         * Application.cs:
26906           - Added code to simulate modal dialogs on Win32
26907
26908 2004-10-17 16:11  jordi
26909
26910         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
26911           mouse event
26912
26913 2004-10-17 13:39  jordi
26914
26915         * MenuAPI.cs: menu drawing fixes
26916
26917 2004-10-15 09:10  ravindra
26918
26919         * StructFormat.cs: General Enum.
26920
26921 2004-10-15 09:09  ravindra
26922
26923         * SizeGripStyle.cs: Enum for Form.
26924
26925 2004-10-15 09:08  ravindra
26926
26927         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
26928           in Theme for ListView.
26929
26930 2004-10-15 09:06  ravindra
26931
26932         * ColumnHeader.cs: Flushing some formatting changes.
26933
26934 2004-10-15 09:05  ravindra
26935
26936         * ListViewItem.cs: Implemented GetBounds method and fixed coding
26937           style.
26938
26939 2004-10-15 09:03  ravindra
26940
26941         * ListView.cs: Implemented Paint method and fixed coding style.
26942
26943 2004-10-15 07:34  jordi
26944
26945         * MenuAPI.cs: fix for X11
26946
26947 2004-10-15 07:32  ravindra
26948
26949         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
26950                 - Renamed Paint() method to Draw() for clarity. Also, moved
26951                 DrawImage() to OnPaint().
26952
26953 2004-10-15 07:25  ravindra
26954
26955         * CheckBox.cs, RadioButton.cs:
26956                 - Removed Redraw (), we get it from ButtonBase.
26957                 - Implemented Paint (), to do class specific painting.
26958
26959 2004-10-15 07:16  ravindra
26960
26961         * ButtonBase.cs:
26962                 - Redraw () is not virtual now.
26963                 - Added an internal virtual method Paint (), so that
26964                 derived classes can do their painting on their own.
26965                 - Modified OnPaint () to call Paint ().
26966
26967 2004-10-15 06:43  jordi
26968
26969         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
26970           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
26971
26972 2004-10-15 00:30  ravindra
26973
26974         * MessageBox.cs:
26975                 - MessageBox on windows does not have min/max buttons.
26976                 This change in CreateParams fixes this on Windows. We
26977                 still need to implement this windowstyle behavior in
26978                 our X11 driver.
26979
26980 2004-10-14 05:14  ravindra
26981
26982         * ToolBar.cs:
26983                 - Changed Redraw () to do a Refresh () always.
26984                 - Fixed the MouseMove event handling when mouse is pressed,
26985                 ie drag event handling.
26986                 - Replaced the usage of ToolBarButton.Pressed property to
26987                 ToolBarButton.pressed internal variable.
26988
26989 2004-10-14 05:10  ravindra
26990
26991         * ToolBarButton.cs:
26992                 - Added an internal member 'inside' to handle mouse move
26993                 with mouse pressed ie mouse drag event.
26994                 - Changed 'Pressed' property to return true only when
26995                 'inside' and 'pressed' are both true.
26996                 - Some coding style love.
26997
26998 2004-10-14 00:17  ravindra
26999
27000         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
27001           public method.
27002
27003 2004-10-14 00:15  ravindra
27004
27005         * ButtonBase.cs: Redraw () related improvements.
27006
27007 2004-10-14 00:14  ravindra
27008
27009         * MessageBox.cs: Moved InitFormSize () out of Paint method and
27010           removed unnecessary calls to Button.Show () method.
27011
27012 2004-10-13 17:50  pbartok
27013
27014         * XplatUIX11.cs:
27015           - Formatting fix
27016           - Removed destroying of window until we solve the problem of X
27017             destroying the window before us on shutdown
27018
27019 2004-10-13 16:32  pbartok
27020
27021         * ButtonBase.cs:
27022           - Now Redraws on MouseUp for FlatStyle Flat and Popup
27023
27024 2004-10-13 14:18  pbartok
27025
27026         * XplatUIX11.cs:
27027           - Added code to destroy the X window
27028
27029 2004-10-13 14:18  pbartok
27030
27031         * XplatUIWin32.cs:
27032           - Added code to destroy a window
27033
27034 2004-10-13 14:12  pbartok
27035
27036         * ButtonBase.cs:
27037           - Added the Redraw on Resize that got dropped in the last rev
27038
27039 2004-10-13 09:06  pbartok
27040
27041         * ThemeWin32Classic.cs:
27042           - Path from John BouAntoun:
27043             * Fix check rendering (centre correctly for normal style, offset
27044               correctly for FlatStyle).
27045             * Fix border color usage (use backcolor) for FlatStyle.Popup
27046             * Use checkbox.Capture instead of checkbox.is_pressed when
27047               rendering flatstyle states.
27048
27049 2004-10-12 21:48  pbartok
27050
27051         * ThemeWin32Classic.cs:
27052           - Removed all occurences of SystemColors and replaced them with the
27053             matching theme color
27054
27055 2004-10-12 21:41  pbartok
27056
27057         * ThemeWin32Classic.cs:
27058           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
27059             him using the function for flatstyle drawing
27060           - Changed functions to use the new version of CPDrawBorder3D
27061
27062 2004-10-12 21:15  pbartok
27063
27064         * ControlPaint.cs:
27065           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
27066             match MS documentation. They need to return defined colors if the
27067             passed color matches the configured control color. Thanks to John
27068             BouAntoun for pointing this out.
27069
27070 2004-10-12 20:57  pbartok
27071
27072         * Control.cs:
27073           - Fix from John BouAntoun: Raise ForeColorChanged event when text
27074             color is changed
27075
27076 2004-10-12 20:46  pbartok
27077
27078         * CheckBox.cs:
27079           - Fix from John BouAntoun: Now properly sets the Appearance property
27080
27081 2004-10-12 20:45  pbartok
27082
27083         * ThemeWin32Classic.cs:
27084           - Fixes from John BouAntoun: now handles forecolors and backcolors
27085             for flatstyle rendered controls much better; It also fixes normal
27086             checkbox rendering when pushed or disabled.
27087
27088 2004-10-08 02:50  jordi
27089
27090         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
27091           work
27092
27093 2004-10-07 08:56  jordi
27094
27095         * ThemeWin32Classic.cs: Removes deletion of cached brushes
27096
27097 2004-10-06 03:59  jordi
27098
27099         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
27100           XplatUIWin32.cs: removes warnings from compilation
27101
27102 2004-10-05 12:23  jackson
27103
27104         * RadioButton.cs: Fix ctor
27105
27106 2004-10-05 11:10  pbartok
27107
27108         * MessageBox.cs:
27109           - Partial implementation by Benjamin Dasnois
27110
27111 2004-10-05 10:15  jackson
27112
27113         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
27114           by John BouAntoun
27115
27116 2004-10-05 03:07  ravindra
27117
27118         * ToolBar.cs:
27119                 - Removed a private method, Draw ().
27120                 - Fixed the ButtonDropDown event handling.
27121                 - Fixed MouseMove event handling.
27122
27123 2004-10-05 03:04  ravindra
27124
27125         * ThemeWin32Classic.cs:
27126                 - Added DrawListView method and ListViewDefaultSize property.
27127                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
27128                 - Changed DOS style CRLF to Unix format (dos2unix).
27129
27130 2004-10-05 03:03  ravindra
27131
27132         * Theme.cs:
27133                 - Added DrawListView method and ListViewDefaultSize property.
27134
27135 2004-10-05 02:42  ravindra
27136
27137         * ToolBarButton.cs: Added an internal member dd_pressed to handle
27138           clicks on DropDown arrow.
27139
27140 2004-10-04 22:56  jackson
27141
27142         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
27143           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
27144           Control handle the buffers, derived classes should not have to
27145           CreateBuffers themselves.
27146
27147 2004-10-04 21:20  jackson
27148
27149         * StatusBar.cs: The control handles resizing the buffers now.
27150
27151 2004-10-04 21:18  jackson
27152
27153         * Control.cs: When resizing the buffers should be invalidated. This
27154           should be handled in Control not in derived classes.
27155
27156 2004-10-04 14:45  jackson
27157
27158         * TabPage.cs: oops
27159
27160 2004-10-04 02:14  pbartok
27161
27162         * LeftRightAlignment.cs:
27163           - Initial check-in
27164
27165 2004-10-04 01:09  jordi
27166
27167         * ThemeWin32Classic.cs: fixes right button position causing right
27168           button not showing on horizontal scrollbars
27169
27170 2004-10-02 13:12  pbartok
27171
27172         * XplatUIX11.cs:
27173           - Simplified the Invalidate method by using an X call instead of
27174             generating the expose ourselves
27175           - Added an expose when the window background is changed
27176           - Implemented ClientToScreen method
27177
27178 2004-10-02 13:08  pbartok
27179
27180         * XplatUIWin32.cs:
27181           - Added Win32EnableWindow method (test for implementing modal
27182           dialogs)
27183           - Added ClientToScreen method and imports
27184
27185 2004-10-02 13:07  pbartok
27186
27187         * XplatUI.cs, XplatUIDriver.cs:
27188           - Added ClientToScreen coordinate translation method
27189
27190 2004-10-02 13:06  pbartok
27191
27192         * KeyPressEventArgs.cs:
27193           - Fixed access level for constructor
27194
27195 2004-10-02 13:06  pbartok
27196
27197         * NativeWindow.cs:
27198           - Changed access level for the window_collection hash table
27199
27200 2004-10-02 13:05  pbartok
27201
27202         * Form.cs:
27203           - Added KeyPreview property
27204           - Added Menu property (still incomplete, pending Jordi's menu work)
27205           - Implemented ProcessCmdKey
27206           - Implemented ProcessDialogKey
27207           - Implemented ProcessKeyPreview
27208
27209 2004-10-02 13:02  pbartok
27210
27211         * Control.cs:
27212           - Added private method to get the Control object from the window
27213           handle
27214           - Implemented ContextMenu property
27215           - Implemented PointToScreen
27216           - Implemented PreProcessMessage
27217           - Implemented IsInputChar
27218           - Implemented IsInputKey
27219           - Implemented ProcessCmdKey
27220           - Completed ProcessKeyEventArgs
27221           - Fixed message loop to call the proper chain of functions on key
27222           events
27223           - Implemented ProcessDialogChar
27224           - Implemented ProcessDialogKey
27225           - Implemented ProcessKeyMessage
27226           - Implemented ProcessKeyPreview
27227           - Added RaiseDragEvent stub (MS internal method)
27228           - Added RaiseKeyEvent stub (MS internal method)
27229           - Added RaiseMouseEvent stub (MS Internal method)
27230           - Added RaisePaintEvent stub (MS Internal method)
27231           - Added ResetMouseEventArgs stub (MS Internal method)
27232           - Implemented RtlTranslateAlignment
27233           - Implemented RtlTranslateContent
27234           - Implemented RtlTranslateHorizontal
27235           - Implemented RtlTranslateLeftRight
27236           - Added generation of KeyPress event
27237
27238 2004-10-02 05:57  ravindra
27239
27240         * ListViewItem.cs: Added attributes.
27241
27242 2004-10-02 05:32  ravindra
27243
27244         * ListView.cs: Added attributes.
27245
27246 2004-10-01 11:53  jackson
27247
27248         * Form.cs: Implement the Close method so work on MessageBox can
27249           continue.
27250
27251 2004-09-30 14:06  pbartok
27252
27253         * XplatUIX11.cs:
27254           - Bug fixes
27255
27256 2004-09-30 11:34  jackson
27257
27258         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
27259
27260 2004-09-30 07:26  ravindra
27261
27262         * ListViewItemConverter.cs: Converter for ListViewItem.
27263
27264 2004-09-30 07:26  ravindra
27265
27266         * SortOrder.cs: Enum for ListView control.
27267
27268 2004-09-30 07:25  ravindra
27269
27270         * ColumnHeader.cs: Supporting class for ListView control.
27271
27272 2004-09-30 07:24  ravindra
27273
27274         * ListView.cs, ListViewItem.cs: Initial implementation.
27275
27276 2004-09-30 07:20  ravindra
27277
27278         * ItemActivation.cs: Enum for ListView Control.
27279
27280 2004-09-29 20:29  pbartok
27281
27282         * XplatUIX11.cs:
27283           - Added lookup of pixel value for background color; tries to get a
27284             color 'close' to the requested color, it avoids having to create a
27285             colormap.  Depending on the display this could mean the used color
27286             is slightly off the desired color. Might have to change it to a more
27287             resource intensive colormap approach, but it will work as a
27288           workaround to avoid red screens.
27289
27290 2004-09-29 14:27  jackson
27291
27292         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
27293
27294 2004-09-28 12:44  pbartok
27295
27296         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
27297           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
27298           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
27299           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
27300           TrackBar.cs, VScrollBar.cs:
27301           - Streamlined Theme interfaces:
27302             * Each DrawXXX method for a control now is passed the object for
27303               the control to be drawn in order to allow accessing any state the
27304               theme might require
27305
27306             * ControlPaint methods for the theme now have a CP prefix to avoid
27307               name clashes with the Draw methods for controls
27308
27309             * Every control now retrieves it's DefaultSize from the current
27310             theme
27311
27312 2004-09-28 12:17  jackson
27313
27314         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
27315           drawing
27316
27317 2004-09-24 14:57  jackson
27318
27319         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
27320           Gives us a nice little performance boost.
27321
27322 2004-09-24 12:02  jackson
27323
27324         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
27325           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
27326           Control and supporting classes. Initial checkin
27327
27328 2004-09-23 13:08  jackson
27329
27330         * Form.cs: Temp build fixage
27331
27332 2004-09-23 01:39  ravindra
27333
27334         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
27335           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
27336           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
27337           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
27338           EventHandlers needed by ListView Control.
27339
27340 2004-09-22 14:12  pbartok
27341
27342         * ScrollableControl.cs:
27343           - Implemented DockPadding property
27344           - Implemented AutoScroll property
27345           - Implemented AutoScrollMargin property
27346           - Implemented AutoScrollMinSize property
27347           - Implemented AutoScrollPosition property
27348           - Implemented DisplayRectangle property (still incomplete)
27349           - Implemented CreateParams property
27350           - Implemented HScroll property
27351           - Implemented VScroll property
27352           - Implemented OnVisibleChanged property
27353
27354 2004-09-22 14:09  pbartok
27355
27356         * Form.cs:
27357           - Added Form.ControllCollection class
27358           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
27359             RemoveOwnedForm (still incomplete, missing on-top and common
27360             minimize/maximize behaviour)
27361           - Added StartPosition property (still incomplete, does not use when
27362             creating the form)
27363           - Added ShowDialog() methods (still incomplete, missing forcing the
27364             dialog modal)
27365
27366 2004-09-22 14:05  pbartok
27367
27368         * Application.cs:
27369           - Added message loop for modal dialogs
27370
27371 2004-09-22 14:02  pbartok
27372
27373         * GroupBox.cs:
27374           - Fixed wrong types for events
27375
27376 2004-09-22 14:00  pbartok
27377
27378         * Shortcut.cs, FormWindowState.cs:
27379           - Fixed wrong values
27380
27381 2004-09-22 12:01  jackson
27382
27383         * Control.cs: Text is never null
27384
27385 2004-09-20 22:14  pbartok
27386
27387         * XplatUIWin32.cs:
27388           - Fixed accessibility level for Idle handler
27389
27390 2004-09-20 18:54  jackson
27391
27392         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27393           XplatUIX11.cs: New message loop that uses poll so we don't get a
27394           busy loop
27395
27396 2004-09-17 10:43  pbartok
27397
27398         * ScrollBar.cs:
27399           - Fixed behaviour of arrow buttons. Now properly behaves like
27400             Buttons (and like Microsoft's scrollbar arrow buttons)
27401
27402 2004-09-17 10:14  pbartok
27403
27404         * ScrollBar.cs:
27405           - Added missing release of keyboard/mouse capture
27406
27407 2004-09-17 06:18  jordi
27408
27409         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
27410           Theme.cs: Very early menu support
27411
27412 2004-09-16 17:45  pbartok
27413
27414         * XplatUIWin32.cs:
27415           - Fixed sending a window to the front
27416           - Added overload for SetWindowPos to avoid casting
27417
27418 2004-09-16 17:44  pbartok
27419
27420         * Control.cs:
27421           - Added SendToBack and BringToFront methods
27422
27423 2004-09-16 07:00  ravindra
27424
27425         * Copyright: Added Novell URL.
27426
27427 2004-09-16 07:00  ravindra
27428
27429         * ToolBar.cs: Invalidate should be done before redrawing.
27430
27431 2004-09-15 21:19  ravindra
27432
27433         * ColumnHeaderStyle.cs: Enum for ListView Control.
27434
27435 2004-09-15 21:18  ravindra
27436
27437         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
27438           ListView Control.
27439
27440 2004-09-13 18:26  jackson
27441
27442         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
27443           properly
27444
27445 2004-09-13 18:13  jackson
27446
27447         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
27448           a second thread and post messages into the main threads message
27449           queue. This makes timing much more consistent. Both win2K and XP
27450           have a minimum timer value of 15 milliseconds, so we now do this
27451           too.
27452
27453 2004-09-13 15:18  pbartok
27454
27455         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27456           XplatUIX11.cs:
27457           - Added Z-Ordering methods
27458
27459 2004-09-13 10:56  pbartok
27460
27461         * Form.cs:
27462           - Fixed #region names
27463           - Moved properties and methods into their proper #regions
27464
27465 2004-09-13 10:51  pbartok
27466
27467         * Form.cs:
27468           - Added Accept and CancelButton properties
27469           - Added ProcessDialogKey() method
27470
27471 2004-09-13 08:18  pbartok
27472
27473         * IWindowTarget.cs:
27474           - Initial check-in
27475
27476 2004-09-10 21:50  pbartok
27477
27478         * Control.cs:
27479           - Added DoDragDrop() [incomplete]
27480           - Properly implemented 'Visible' handling
27481           - Added SetVisibleCore()
27482           - Implemented FindChildAtPoint()
27483           - Implemented GetContainerControl()
27484           - Implemented Hide()
27485
27486 2004-09-10 19:28  pbartok
27487
27488         * Control.cs:
27489           - Moved methods into their appropriate #regions
27490           - Reordered methods within regions alphabetically
27491
27492 2004-09-10 18:57  pbartok
27493
27494         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27495           - Added method to retrieve text from window
27496
27497 2004-09-10 18:56  pbartok
27498
27499         * Control.cs:
27500           - Moved some internal functions into the internal region
27501           - Implemented FontHeight
27502           - Implemented RenderRightToLeft
27503           - Implemented ResizeRedraw
27504           - Implemented ShowFocusCues
27505           - Implemented ShowKeyboardCues
27506           - Implemented FromChildHandle
27507           - Implemented FromHandle
27508           - Implemented IsMnemonic
27509           - Implemented ReflectMessage
27510           - All public and protected Static Methods are now complete
27511
27512 2004-09-10 16:54  pbartok
27513
27514         * Control.cs:
27515           - Implemented remaining missing public instance properties
27516           - Alphabetized some out of order properties
27517
27518 2004-09-10 05:51  ravindra
27519
27520         * PictureBox.cs: Added a check for null image.
27521
27522 2004-09-10 00:59  jordi
27523
27524         * GroupBox.cs: remove cvs tag
27525
27526 2004-09-09 05:25  ravindra
27527
27528         * ToolBar.cs: Make redraw accessible from ToolBarButton.
27529
27530 2004-09-09 05:23  ravindra
27531
27532         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
27533           parent redraw.
27534
27535 2004-09-09 02:28  pbartok
27536
27537         * ThemeWin32Classic.cs:
27538           - Improve disabled string look
27539
27540 2004-09-09 01:15  jordi
27541
27542         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
27543           args and handler
27544
27545 2004-09-08 23:56  ravindra
27546
27547         * ItemBoundsPortion.cs: It's enum, not a class!
27548
27549 2004-09-08 23:47  ravindra
27550
27551         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
27552           Enums for Form.
27553
27554 2004-09-08 21:13  ravindra
27555
27556         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
27557           ListView control.
27558
27559 2004-09-08 21:03  ravindra
27560
27561         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
27562           avoid crash.
27563
27564 2004-09-08 21:01  ravindra
27565
27566         * ScrollableControl.cs: Removed unreachable code.
27567
27568 2004-09-08 06:45  jordi
27569
27570         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
27571
27572 2004-09-08 01:00  jackson
27573
27574         * XplatUIX11.cs: Only run the timers when updating the message
27575           queue. This effectively gives X messages a higher priority then
27576           timer messages. Timers still need love though
27577
27578 2004-09-07 14:01  jackson
27579
27580         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
27581           this for us and the handle is no longer valid.
27582
27583 2004-09-07 13:59  jackson
27584
27585         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
27586           loop that manages to not crash. TODO: Add poll and cleanup timers
27587
27588 2004-09-07 11:12  jordi
27589
27590         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
27591
27592 2004-09-07 03:40  jordi
27593
27594         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
27595           fixes, methods, multiple links
27596
27597 2004-09-06 06:55  jordi
27598
27599         * Control.cs: Caches ClientRectangle rectangle value
27600
27601 2004-09-05 02:03  jordi
27602
27603         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
27604           certain situations
27605
27606 2004-09-04 11:10  jordi
27607
27608         * Label.cs: Refresh when font changed
27609
27610 2004-09-02 16:24  pbartok
27611
27612         * Control.cs:
27613           - Added sanity check to creation of double buffer bitmap
27614
27615 2004-09-02 16:24  pbartok
27616
27617         * ButtonBase.cs:
27618           - Fixed selection of text color
27619           - Fixed handling of resize event; now properly recreates double
27620             buffering bitmap
27621           - Added missing assignment of TextAlignment
27622           - Added proper default for TextAlignment
27623
27624 2004-09-02 14:26  pbartok
27625
27626         * RadioButton.cs:
27627           - Added missing RadioButton.RadioButtonAccessibleObject class
27628
27629 2004-09-02 14:26  pbartok
27630
27631         * Control.cs:
27632           - Added missing Control.ControlAccessibleObject class
27633           - Started to implement Select()ion mechanisms, still very incomplete
27634
27635 2004-09-02 14:25  pbartok
27636
27637         * AccessibleObject.cs:
27638           - Added missing methods
27639
27640 2004-09-02 14:23  pbartok
27641
27642         * AccessibleNavigation.cs, AccessibleSelection.cs:
27643           - Initial check-in
27644
27645 2004-09-02 10:32  jordi
27646
27647         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
27648           pool for pens, brushes, and hatchbruses
27649
27650 2004-09-01 15:30  jackson
27651
27652         * StatusBar.cs: Fix typo
27653
27654 2004-09-01 14:44  pbartok
27655
27656         * RadioButton.cs:
27657           - Fixed state
27658
27659 2004-09-01 14:39  pbartok
27660
27661         * Button.cs, RadioButton.cs:
27662           - Functional initial check-in
27663
27664 2004-09-01 14:01  pbartok
27665
27666         * CheckBox.cs:
27667           - Added missing default
27668           - Added missing region mark
27669
27670 2004-09-01 09:10  jordi
27671
27672         * Label.cs: fixes method signatures, new methods, events, fixes
27673           autosize
27674
27675 2004-09-01 07:19  jordi
27676
27677         * Control.cs: Init string variables with an empty object
27678
27679 2004-09-01 04:20  jordi
27680
27681         * Control.cs: fires OnFontChanged event
27682
27683 2004-08-31 20:07  pbartok
27684
27685         * ButtonBase.cs:
27686           - Enabled display of strings
27687
27688 2004-08-31 20:05  pbartok
27689
27690         * Form.cs:
27691           - Added (partial) implementation of DialogResult; rest needs to be
27692             implemented when the modal loop code is done
27693
27694 2004-08-31 19:55  pbartok
27695
27696         * CheckBox.cs:
27697           - Fixed to match the removal of the needs_redraw concept
27698
27699 2004-08-31 19:55  pbartok
27700
27701         * ButtonBase.cs:
27702           - Removed the rather odd split between 'needs redraw' and redrawing
27703           - Now handles the events that require regeneration (ambient
27704             properties and size)
27705
27706 2004-08-31 19:41  pbartok
27707
27708         * Control.cs:
27709           - Added firing of BackColorChanged event
27710           - Added TopLevelControl property
27711           - Fixed handling of WM_ERASEBKGRND message
27712
27713 2004-08-31 12:49  pbartok
27714
27715         * ButtonBase.cs:
27716           - Removed debug
27717           - Minor fixes
27718
27719 2004-08-31 12:48  pbartok
27720
27721         * CheckBox.cs:
27722           - Finished (famous last words)
27723
27724 2004-08-31 04:35  jordi
27725
27726         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
27727           scrolling bugs, adds new methods
27728
27729 2004-08-30 14:42  pbartok
27730
27731         * CheckBox.cs:
27732           - Implemented CheckBox drawing code
27733
27734 2004-08-30 14:42  pbartok
27735
27736         * ButtonBase.cs:
27737           - Made Redraw() and CheckRedraw() virtual
27738           - Improved mouse up/down/move logic to properly track buttons
27739
27740 2004-08-30 09:44  pbartok
27741
27742         * CheckBox.cs:
27743           - Updated to fix broken build. Not complete yet.
27744
27745 2004-08-30 09:28  pbartok
27746
27747         * CheckState.cs:
27748           - Initial checkin
27749
27750 2004-08-30 09:17  pbartok
27751
27752         * Appearance.cs:
27753           - Initial check-in
27754
27755 2004-08-27 16:12  ravindra
27756
27757         * ToolBarButton.cs: Added TypeConverter attribute.
27758
27759 2004-08-27 16:07  ravindra
27760
27761         * ImageIndexConverter.cs: Implemented.
27762
27763 2004-08-27 14:17  pbartok
27764
27765         * Control.cs:
27766           - Removed unneeded stack vars
27767           - First attempt to fix sizing issues when layout is suspended
27768
27769 2004-08-25 15:35  jordi
27770
27771         * ScrollBar.cs: more fixes to scrollbar
27772
27773 2004-08-25 14:04  ravindra
27774
27775         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
27776           Added the missing divider code and grip for ToolBar Control.
27777
27778 2004-08-25 13:20  pbartok
27779
27780         * Control.cs:
27781           - Control now properly passes the ambient background color to child
27782             controls
27783
27784 2004-08-25 13:20  jordi
27785
27786         * ScrollBar.cs: small bug fix regarding bar position
27787
27788 2004-08-25 12:33  pbartok
27789
27790         * Timer.cs:
27791           - Now only calls SetTimer or KillTimer if the enabled state has
27792           changed
27793
27794 2004-08-25 12:33  pbartok
27795
27796         * XplatUIWin32.cs:
27797           - Fixed timer handling, now seems to work
27798           - Improved error message for window creation
27799
27800 2004-08-25 12:32  pbartok
27801
27802         * Control.cs:
27803           - Fixed generation of MouseUp message
27804
27805 2004-08-25 12:29  jordi
27806
27807         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
27808           and fixes for progressbar
27809
27810 2004-08-24 18:43  ravindra
27811
27812         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
27813           in ToolBar control.
27814
27815 2004-08-24 17:15  pbartok
27816
27817         * Panel.cs:
27818           - Added #region
27819           - Added missing events
27820           - Alphabetized
27821
27822 2004-08-24 17:14  pbartok
27823
27824         * StatusBar.cs, PictureBox.cs:
27825           - Now uses Control's CreateParams
27826
27827 2004-08-24 16:36  pbartok
27828
27829         * XplatUIX11.cs:
27830           - Fixed background color handling
27831           - Fixed sending of enter/leave events on a grab
27832
27833 2004-08-24 16:35  pbartok
27834
27835         * X11Structs.cs:
27836           - Refined definitions for CrossingEvent
27837
27838 2004-08-24 12:37  jordi
27839
27840         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
27841           formmating, methods signature, and adds missing events
27842
27843 2004-08-24 12:24  jordi
27844
27845         * Control.cs: fire OnEnabledChanged event
27846
27847 2004-08-24 11:17  pbartok
27848
27849         * XplatUIWin32.cs:
27850           - Implemented SetTimer() and KillTimer()
27851
27852 2004-08-24 11:16  pbartok
27853
27854         * XplatUIX11.cs:
27855           - Now uses Remove instead of Add to kill the timer
27856
27857 2004-08-24 10:16  jackson
27858
27859         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
27860           picture boxes in the theme now. Draw picture box borders and obey
27861           sizing modes
27862
27863 2004-08-24 05:49  jackson
27864
27865         * Timer.cs: Remove top secret debugging code
27866
27867 2004-08-24 05:34  jackson
27868
27869         * PictureBox.cs: Temp hack to make picture boxes draw their full
27870           image
27871
27872 2004-08-24 05:29  jackson
27873
27874         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27875           XplatUIX11.cs: Move timers to the driver level. On X they are
27876           queued by the driver and checked on idle.
27877
27878 2004-08-24 01:07  jackson
27879
27880         * XplatUIX11.cs: Use a queue for async messages instead of passing
27881           them as ClientMessages since that was totally broken. Also simply
27882           check for events and return an idle message if none are found. This
27883           gives us an idle handler, and prevents deadlocking when no messages
27884           are in the queue.
27885
27886 2004-08-23 18:19  ravindra
27887
27888         * XplatUIWin32.cs: Removed the unwanted destructor.
27889
27890 2004-08-23 17:27  pbartok
27891
27892         * ButtonBase.cs:
27893           - Finishing touches. Works now, just needs some optimizations.
27894
27895 2004-08-23 16:53  jordi
27896
27897         * ScrollBar.cs: small fix
27898
27899 2004-08-23 16:45  pbartok
27900
27901         * Application.cs:
27902           - Removed debug output
27903           - Simplifications
27904
27905 2004-08-23 16:43  jordi
27906
27907         * ScrollBar.cs: [no log message]
27908
27909 2004-08-23 16:10  pbartok
27910
27911         * Form.cs:
27912           - Fixed handling of WM_CLOSE message
27913           - Removed debug output
27914
27915 2004-08-23 16:09  pbartok
27916
27917         * Application.cs:
27918           - Added handling of Idle event
27919           - Added handling of form closing
27920           - Fixed reporting of MessageLoop property
27921           - Removed some unneeded code, should provide a bit of a speedup
27922
27923 2004-08-23 15:22  pbartok
27924
27925         * Control.cs:
27926           - Added InitLayout() method
27927           - Added code to properly perform layout when Anchor or Dock property
27928             is changed
27929           - Changed 'interpretation' of ResumeLayout. MS seems to have a
27930             LAMESPEC, tried to do it in a way that makes sense
27931
27932 2004-08-23 14:10  jordi
27933
27934         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
27935           properties and methods
27936
27937 2004-08-23 13:55  pbartok
27938
27939         * Control.cs:
27940           - Properly fixed Jordi's last fix
27941           - Now uses Cursor's Position property instead of calling XplatUI
27942           directly
27943
27944 2004-08-23 13:44  jordi
27945
27946         * PaintEventHandler.cs: Adding missing attribute
27947
27948 2004-08-23 13:39  pbartok
27949
27950         * Cursor.cs:
27951           - Implemented Position property
27952
27953 2004-08-23 13:39  pbartok
27954
27955         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27956           - Added method to move mouse cursor
27957
27958 2004-08-23 13:39  pbartok
27959
27960         * XplatUIX11.cs:
27961           - Fixed setting of background color
27962           - Added method to move mouse cursor
27963
27964 2004-08-23 13:16  jordi
27965
27966         * Control.cs: avoids null exception
27967
27968 2004-08-22 17:46  jackson
27969
27970         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
27971           PictureBox
27972
27973 2004-08-22 17:40  jackson
27974
27975         * XplatUIX11.cs: Add some missing locks
27976
27977 2004-08-22 15:10  pbartok
27978
27979         * Control.cs, Form.cs:
27980           - Removed OverlappedWindow style from Control, instead it's default
27981             now is child
27982           - Made form windows OverlappedWindow by default
27983
27984 2004-08-22 13:34  jackson
27985
27986         * ScrollBar.cs: Update the position through the Value property so
27987           the OnValueChanged event is raised.
27988
27989 2004-08-22 12:04  pbartok
27990
27991         * SWF.csproj:
27992           - Added Cursor.cs and UserControl.cs
27993
27994 2004-08-22 12:03  pbartok
27995
27996         * Cursor.cs:
27997           - Started implementation, not usable yet
27998
27999 2004-08-22 12:00  pbartok
28000
28001         * UserControl.cs:
28002           - Implemented UserControl (complete)
28003
28004 2004-08-21 19:20  ravindra
28005
28006         * ToolBar.cs: Correcting the formatting mess of VS.NET.
28007
28008 2004-08-21 18:49  ravindra
28009
28010         * ToolBar.cs: Probably this completes the missing attributes in
28011           toolbar control.
28012
28013 2004-08-21 18:03  ravindra
28014
28015         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
28016           Fixed toolbar control signatures.
28017
28018 2004-08-21 16:32  pbartok
28019
28020         * LinkLabel.cs:
28021           - Signature Fixes
28022
28023 2004-08-21 16:30  pbartok
28024
28025         * Label.cs:
28026           - Signature fixes
28027
28028 2004-08-21 16:19  pbartok
28029
28030         * Control.cs, Label.cs:
28031           - Signature fixes
28032
28033 2004-08-21 15:57  pbartok
28034
28035         * ButtonBase.cs:
28036           - Added loads of debug output for development
28037           - Fixed typo in method name
28038
28039 2004-08-21 15:52  pbartok
28040
28041         * ToolBarButtonClickEventArgs.cs:
28042           - Added missing base class
28043
28044 2004-08-21 14:53  pbartok
28045
28046         * Control.cs:
28047           - Updated to match new GrabWindow signature
28048
28049 2004-08-21 14:51  pbartok
28050
28051         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28052           - Added method to get default display size
28053
28054 2004-08-21 14:23  pbartok
28055
28056         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28057           - Added method to query current grab state
28058           - Added argument to allow confining a grab to a window
28059
28060 2004-08-21 14:22  pbartok
28061
28062         * Keys.cs:
28063           - Added [Flags] attribute so that modifiers can be used in bitwise
28064           ops
28065
28066 2004-08-21 14:21  pbartok
28067
28068         * TrackBar.cs, ScrollBar.cs:
28069           - Replaced direct XplatUI calls with their Control counterpart
28070
28071 2004-08-21 13:32  pbartok
28072
28073         * Control.cs:
28074           - Implemented Created property
28075
28076 2004-08-21 13:28  pbartok
28077
28078         * Control.cs:
28079           - Implemented ContainsFocus
28080
28081 2004-08-21 13:26  pbartok
28082
28083         * Control.cs:
28084           - Implemented CausesValidation
28085
28086 2004-08-21 13:21  pbartok
28087
28088         * Control.cs:
28089           - Implemented CanFocus
28090           - Implemented CanSelect
28091           - Implemented Capture
28092
28093 2004-08-21 12:35  pbartok
28094
28095         * XplatUIWin32.cs:
28096           - Fixed bug with Async message handling
28097           - Implemented getting the ModifierKeys
28098
28099 2004-08-21 12:32  jackson
28100
28101         * AsyncMethodResult.cs: Make sure we have the mutex before we
28102           release it. Fixes BeginInvoke on windows
28103
28104 2004-08-21 11:31  pbartok
28105
28106         * XplatUIWin32.cs, XplatUIX11.cs:
28107           - Drivers now return proper mouse state
28108
28109 2004-08-21 10:54  jackson
28110
28111         * Control.cs: Implement EndInvoke
28112
28113 2004-08-21 10:48  jackson
28114
28115         * Timer.cs: Remove unneeded finalizer
28116
28117 2004-08-20 19:52  ravindra
28118
28119         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
28120           in mouse event handling in the ToolBar control.
28121
28122 2004-08-20 19:50  ravindra
28123
28124         * ImageList.cs: Changed draw method to use the arguments passed in
28125           to draw the image.
28126
28127 2004-08-20 18:58  pbartok
28128
28129         * XplatUIStructs.cs:
28130           - Added private message for async communication
28131
28132 2004-08-20 17:38  ravindra
28133
28134         * Control.cs: Made RightToLeft property virtual and removed a
28135           Console.WriteLine.
28136
28137 2004-08-20 14:39  jordi
28138
28139         * ThemeGtk.cs: use style_attach
28140
28141 2004-08-20 14:39  pbartok
28142
28143         * XplatUIWin32.cs:
28144           - Added jackson's Async code from X11 to Win32
28145
28146 2004-08-20 14:09  pbartok
28147
28148         * SWF.csproj:
28149           - Added all new files
28150
28151 2004-08-20 14:09  pbartok
28152
28153         * Control.cs:
28154           - Added call to set window background color
28155
28156 2004-08-20 14:03  pbartok
28157
28158         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28159           - Added method for setting the window background
28160
28161 2004-08-20 14:02  pbartok
28162
28163         * XplatUIWin32.cs:
28164           - Added method for setting the background color
28165           - Added handling for erasing the window background
28166
28167 2004-08-20 13:45  jordi
28168
28169         * TrackBar.cs: fixes timer, new properties and methods
28170
28171 2004-08-20 13:34  jackson
28172
28173         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
28174           correct thread
28175
28176 2004-08-20 13:22  jackson
28177
28178         * Timer.cs: Timer Tick events are now handed through Controls Async
28179           mechanism so the callbacks are executed in the same thread as X
28180
28181 2004-08-20 13:19  jackson
28182
28183         * XplatUIDriver.cs: Expose functionality to send async messages
28184           through the driver
28185
28186 2004-08-20 13:18  jackson
28187
28188         * Control.cs: Implement Begininvoke
28189
28190 2004-08-20 13:14  jackson
28191
28192         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
28193           messages through the driver
28194
28195 2004-08-20 13:12  jackson
28196
28197         * XplatUIX11.cs: Lock before all X operations. Also added Async
28198           method functionality through XSendEvent
28199
28200 2004-08-20 13:11  jackson
28201
28202         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
28203           This will screw up on 64 bit systems)
28204
28205 2004-08-20 13:10  jackson
28206
28207         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
28208           Async messages through X/Win32
28209
28210 2004-08-19 19:39  pbartok
28211
28212         * XplatUIX11.cs:
28213           - Updated code to match new HandleData.DeviceContext type
28214
28215 2004-08-19 19:38  pbartok
28216
28217         * HandleData.cs:
28218           - Made DeviceContext a generic object to allow usage from various
28219           drivers
28220           - Added support for queueing Windows messages
28221
28222 2004-08-19 19:37  pbartok
28223
28224         * XplatUIWin32.cs:
28225           - Added generation of MouseEnter, MouseLeave and MouseHover events
28226           - Added cleanup on EndPaint
28227
28228 2004-08-19 19:17  pbartok
28229
28230         * Control.cs:
28231           - Added handling of WM_MOUSEHOVER
28232           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
28233           code
28234
28235 2004-08-19 18:55  jordi
28236
28237         * ThemeGtk.cs: fixes button order
28238
28239 2004-08-19 18:12  jordi
28240
28241         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
28242
28243 2004-08-19 17:09  pbartok
28244
28245         * Control.cs:
28246           - Added Right property
28247           - Added RightToLeft property
28248
28249 2004-08-19 16:27  jordi
28250
28251         * ThemeGtk.cs: experimental GTK theme support
28252
28253 2004-08-19 16:26  jordi
28254
28255         * ITheme.cs, Theme.cs: move themes from an interface to a class
28256
28257 2004-08-19 16:25  jordi
28258
28259         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
28260           theme enhancaments
28261
28262 2004-08-19 16:04  pbartok
28263
28264         * XplatUIX11.cs:
28265           - Added colormap basics
28266           - Added a way to re-initialize with a different display handle
28267           - Fixed setting of the window background color
28268           - Added various X11 imports related to colors and colormaps
28269
28270 2004-08-19 15:51  pbartok
28271
28272         * X11Structs.cs:
28273           - Removed packing hints (Paolo suggested this a while back)
28274           - fixed colormap type
28275           - Added default Atom types
28276           - Added Screen and color structs and enums
28277
28278 2004-08-19 15:39  pbartok
28279
28280         * ImageList.cs:
28281           - Added missing Draw() method
28282           - Added missing RecreateHandle event
28283
28284 2004-08-19 15:30  pbartok
28285
28286         * Form.cs:
28287           - Added handling of WM_CLOSE
28288
28289 2004-08-18 13:16  jordi
28290
28291         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
28292           a table
28293
28294 2004-08-18 09:56  jordi
28295
28296         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
28297
28298 2004-08-17 15:31  ravindra
28299
28300         * SWF.csproj: Updated project.
28301
28302 2004-08-17 15:25  pbartok
28303
28304         * Control.cs:
28305           - Drawing improvement; don't call UpdateBounds if we are not visible
28306             (or have been minimized)
28307
28308 2004-08-17 15:24  pbartok
28309
28310         * XplatUIWin32.cs:
28311           - Finished IsVisible
28312           - Added Win32GetWindowPlacement
28313
28314 2004-08-17 15:08  jackson
28315
28316         * Panel.cs: Initial checkin of the Panel
28317
28318 2004-08-17 14:25  pbartok
28319
28320         * Control.cs:
28321           - Fixed broken handling of default window sizes
28322
28323 2004-08-17 13:29  jackson
28324
28325         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
28326           has a large startup time.
28327
28328 2004-08-17 10:25  jackson
28329
28330         * HandleData.cs: union areas properly
28331
28332 2004-08-17 10:12  jackson
28333
28334         * HandleData.cs: union areas properly
28335
28336 2004-08-16 20:00  ravindra
28337
28338         * ToolBar.cs, ToolBarButton.cs: Added attributes.
28339
28340 2004-08-16 18:48  ravindra
28341
28342         * ToolBar.cs: Added attributes.
28343
28344 2004-08-16 17:17  ravindra
28345
28346         * SWF.csproj: Updated project.
28347
28348 2004-08-16 17:16  jackson
28349
28350         * XplatUIX11.cs: Check for more expose events before sending a
28351           WM_PAINT so they can all be grouped together. This makes dragging a
28352           window across another window redraw in a sane way.
28353
28354 2004-08-16 15:47  pbartok
28355
28356         * Control.cs:
28357           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
28358             support OnMouseEnter/Leave()
28359           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
28360             exposure handling
28361
28362 2004-08-16 15:46  pbartok
28363
28364         * XplatUIStructs.cs, XplatUIX11.cs:
28365           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
28366           OnMouseEnter/Leave()
28367
28368 2004-08-16 15:34  jackson
28369
28370         * XplatUIX11.cs: Group multiple expose events in HandleData, make
28371           sure messages get the message field set to WM_NULL if they are not
28372           handled.
28373
28374 2004-08-16 15:24  jackson
28375
28376         * HandleData.cs: HandleData is used for storing message information
28377           for window handles
28378
28379 2004-08-15 17:23  ravindra
28380
28381         * ColorDepth.cs: Added attribute.
28382
28383 2004-08-15 17:23  ravindra
28384
28385         * SWF.csproj: Updated project for ToolBar Control.
28386
28387 2004-08-15 17:20  ravindra
28388
28389         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
28390           control and also dos2unix format.
28391
28392 2004-08-15 17:13  ravindra
28393
28394         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
28395           ToolBarButtonClickEventArgs.cs,
28396           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
28397           ToolBarTextAlign.cs: First Implementation of ToolBar control.
28398
28399 2004-08-15 15:31  pbartok
28400
28401         * ButtonBase.cs:
28402           - First (mostly) working version
28403
28404 2004-08-13 16:15  pbartok
28405
28406         * Control.cs:
28407           - Fixed Anchor default
28408
28409 2004-08-13 15:43  pbartok
28410
28411         * Control.cs:
28412           - Changed GetCursorPos signature
28413
28414 2004-08-13 15:42  pbartok
28415
28416         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28417           - Changed signature for GetCursorPos
28418
28419 2004-08-13 15:25  pbartok
28420
28421         * XplatUIX11.cs:
28422           - Cleanup
28423           - Fixed resizing/exposure handling
28424
28425 2004-08-13 15:22  jordi
28426
28427         * ThemeWin32Classic.cs: removes redundant code and fixes issues
28428           with tickposition
28429
28430 2004-08-13 14:55  jordi
28431
28432         * TrackBar.cs: change from wndproc to events
28433
28434 2004-08-13 13:00  jordi
28435
28436         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28437           XplatUIX11.cs: implements PointToClient (ScreenToClient)
28438
28439 2004-08-13 12:53  pbartok
28440
28441         * XplatUIWin32.cs:
28442           - Changed GetWindowPos to also provide client area size
28443           - Fixed broken prototypes for several win32 functions
28444
28445 2004-08-13 12:53  pbartok
28446
28447         * XplatUI.cs, XplatUIDriver.cs:
28448           - Changed GetWindowPos to also provide client area size
28449
28450 2004-08-13 12:52  pbartok
28451
28452         * XplatUIX11.cs:
28453           - Added generation of WM_POSCHANGED
28454           - Changed GetWindowPos to also provide client area size
28455
28456 2004-08-13 12:52  pbartok
28457
28458         * Control.cs:
28459           - Added Dispose() and destructor
28460           - Fixed resizing and bounds calculation
28461           - Fixed Layout
28462           - Added memory savings for invisible windows
28463
28464 2004-08-13 12:46  jordi
28465
28466         * TrackBar.cs: adds timer and grap window
28467
28468 2004-08-13 10:25  jackson
28469
28470         * Timer.cs: SWF Timer
28471
28472 2004-08-12 16:59  pbartok
28473
28474         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28475           - Implemented method to get current mouse position
28476
28477 2004-08-12 14:29  jordi
28478
28479         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
28480           enhancement, fix mouse problems, highli thumb, etc
28481
28482 2004-08-12 13:31  pbartok
28483
28484         * Control.cs:
28485           - Fixed Anchoring bugs
28486
28487 2004-08-12 13:01  jackson
28488
28489         * StatusBar.cs: Don't forget things
28490
28491 2004-08-12 12:54  jackson
28492
28493         * ThemeWin32Classic.cs: Handle owner draw status bars
28494
28495 2004-08-12 12:54  jackson
28496
28497         * StatusBar.cs: Implement missing properties, events, and methods.
28498           Handle mouse clicking
28499
28500 2004-08-12 10:19  jackson
28501
28502         * StatusBarPanelClickEventArgs.cs,
28503           StatusBarPanelClickEventHandler.cs: Classes for handling status
28504           bar panel click events
28505
28506 2004-08-12 10:10  jackson
28507
28508         * Control.cs: Add missing properties
28509
28510 2004-08-12 09:46  pbartok
28511
28512         * BindingsManagerBase.cs:
28513           - Name changed to BindingManagerBase.cs
28514
28515 2004-08-12 09:25  jordi
28516
28517         * ScrollableControl.cs: calls ctrlbase instead of exeception
28518
28519 2004-08-11 16:28  pbartok
28520
28521         * InputLanguageChangingEventArgs.cs:
28522           - Never check in before compiling. Fixes the last check-in
28523
28524 2004-08-11 16:26  pbartok
28525
28526         * InputLanguageChangingEventArgs.cs:
28527           - More signature fixes
28528
28529 2004-08-11 16:20  pbartok
28530
28531         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
28532           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
28533           ImageListStreamer.cs, InputLanguage.cs,
28534           InputLanguageChangedEventArgs.cs,
28535           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
28536           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
28537           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
28538           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28539           - Signature fixes
28540
28541 2004-08-11 16:16  pbartok
28542
28543         * Application.cs:
28544           - Fixed Signature
28545           - Added .Net 1.1 method
28546
28547 2004-08-11 15:25  pbartok
28548
28549         * SWF.csproj:
28550           - Fixed BindingManagerBase.cs filename
28551
28552 2004-08-11 15:22  pbartok
28553
28554         * BindingManagerBase.cs:
28555           - Was checked in with wrong filename
28556
28557 2004-08-11 14:50  pbartok
28558
28559         * SWF.csproj:
28560           - Updated
28561
28562 2004-08-11 13:41  jordi
28563
28564         * XplatUIWin32.cs: Fixes ClientRect
28565
28566 2004-08-11 13:19  pbartok
28567
28568         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28569           XplatUIX11.cs:
28570           - We had SetWindowPos and MoveWindow to set window positions and
28571             size, removed MoveWindow. We have GetWindowPos, so it made sense to
28572             keep SetWindowPos as matching counterpart
28573           - Added some X11 sanity checking
28574
28575 2004-08-11 12:59  pbartok
28576
28577         * Control.cs:
28578           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
28579             (It seems that SetBounds is just a front for SetBoundsCore and
28580              SetBoundsCore updates the underlying window system and
28581              UpdateBounds is responsible for updating the variables associated
28582              with the Control and sending the events)
28583           - Major cleanup of Size handling; we now have two sizes, client_size
28584             and bounds. Bounds defines the window with decorations, client_size
28585             without them.
28586
28587 2004-08-11 12:55  pbartok
28588
28589         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28590           - Added method to calculate difference between decorated window and
28591             raw client area
28592
28593 2004-08-11 12:54  pbartok
28594
28595         * Label.cs:
28596           - Forcing redraw on resize
28597
28598 2004-08-11 11:43  pbartok
28599
28600         * ImageList.cs:
28601           - Removed disposing of the actual images when the list is disposed
28602
28603 2004-08-11 09:13  pbartok
28604
28605         * Control.cs:
28606           - Now properly reparents windows
28607
28608 2004-08-11 08:37  pbartok
28609
28610         * Control.cs:
28611           - Duh!
28612
28613 2004-08-11 07:47  pbartok
28614
28615         * Control.cs:
28616           - Rewrote the collection stuff. Might not be as fast now, not
28617             keeping the number of children around and accessible directly, but
28618             it's more straightforward
28619
28620 2004-08-11 07:44  pbartok
28621
28622         * AccessibleObject.cs:
28623           - Fixed to match ControlCollection rewrite
28624
28625 2004-08-11 07:43  pbartok
28626
28627         * ImageList.cs:
28628           - Added missing creation of the collection list
28629
28630 2004-08-10 20:08  jackson
28631
28632         * StatusBar.cs: Get the paint message from WndProc
28633
28634 2004-08-10 19:31  jackson
28635
28636         * ThemeWin32Classic.cs: Create Brushes as little as possible
28637
28638 2004-08-10 19:20  jackson
28639
28640         * UICues.cs: Add Flags attribute
28641
28642 2004-08-10 19:19  jackson
28643
28644         * StatusBarPanel.cs: Signature cleanup
28645
28646 2004-08-10 19:10  jackson
28647
28648         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
28649           Initial implementation of status bar item drawing
28650
28651 2004-08-10 17:27  jordi
28652
28653         * TrackBar.cs: add missing methods, properties, and restructure to
28654           hide extra ones
28655
28656 2004-08-10 16:24  jackson
28657
28658         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
28659           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
28660           attribute
28661
28662 2004-08-10 13:21  jordi
28663
28664         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
28665           enhancements and standarize on win colors defaults
28666
28667 2004-08-10 12:52  jackson
28668
28669         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
28670           ThemeWin32Classic.cs: Implement DrawItem functionality
28671
28672 2004-08-10 12:47  jordi
28673
28674         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
28675
28676 2004-08-10 12:32  jordi
28677
28678         * Control.cs: throw ontextchange event
28679
28680 2004-08-10 11:43  pbartok
28681
28682         * Control.cs:
28683           - Added more to the still unfinished Dock/Anchor layout code
28684
28685 2004-08-10 11:39  pbartok
28686
28687         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28688           - Added GetWindowPos method
28689
28690 2004-08-10 11:36  pbartok
28691
28692         * XplatUIWin32.cs:
28693           - Implemented several methods
28694
28695 2004-08-10 09:47  jackson
28696
28697         * TrackBar.cs: Allow control to handle buffering
28698
28699 2004-08-10 09:41  jackson
28700
28701         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
28702
28703 2004-08-10 09:24  jackson
28704
28705         * Label.cs, LinkLabel.cs: Let Control handle buffering.
28706
28707 2004-08-10 09:09  jackson
28708
28709         * StatusBar.cs: Let Control handle all the buffering.
28710
28711 2004-08-10 09:08  jackson
28712
28713         * Control.cs: Control will now handle the buffering code, so each
28714           control does not have to implement this.
28715
28716 2004-08-10 08:34  jackson
28717
28718         * XplatUIDriver.cs: Use default colors from the theme
28719
28720 2004-08-09 17:12  pbartok
28721
28722         * ImageList.cs:
28723           - Fixed several bugs Ravindra pointed out
28724
28725 2004-08-09 16:11  pbartok
28726
28727         * Control.cs:
28728           - Added incomplete dock layout code
28729           - Added support for mouse wheel
28730
28731 2004-08-09 16:09  pbartok
28732
28733         * XplatUIX11.cs:
28734           - Added handling for middle and right mousebutton
28735           - Added handling for mouse wheel
28736           - Added handling for key state and mouse state and position
28737           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
28738           messages
28739
28740 2004-08-09 15:40  jackson
28741
28742         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
28743           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
28744           checkin
28745
28746 2004-08-09 15:37  jackson
28747
28748         * StatusBar.cs: Initial implementation of StatusBar
28749
28750 2004-08-09 15:36  jackson
28751
28752         * ITheme.cs: Add support for drawing status bar and getting status
28753           bar item sizes
28754
28755 2004-08-09 15:35  pbartok
28756
28757         * MouseButtons.cs:
28758           - Fixed values
28759
28760 2004-08-09 15:34  jackson
28761
28762         * ThemeWin32Classic.cs: Add support for drawing status bar and get
28763           status bar item sizes
28764
28765 2004-08-09 15:21  jackson
28766
28767         * ThemeWin32Classic.cs: Use known colors for default control
28768           colours
28769
28770 2004-08-09 15:12  jackson
28771
28772         * ThemeWin32Classic.cs: Make the default font static, it is static
28773           in control so this doesn't change functionality and creating fonts
28774           is sloooooow.
28775
28776 2004-08-09 14:56  pbartok
28777
28778         * X11Structs.cs:
28779           - Added GrabMode enum
28780
28781 2004-08-09 14:55  pbartok
28782
28783         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28784           - Removed Run method, was only required for initial development
28785
28786 2004-08-09 14:51  pbartok
28787
28788         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28789           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
28790           capture
28791
28792 2004-08-09 13:48  pbartok
28793
28794         * XplatUIX11.cs:
28795           - Fixed default sizing for child windows
28796
28797 2004-08-09 12:56  pbartok
28798
28799         * XplatUIX11.cs:
28800           - Added generation of WM_DESTROY message
28801           - Added handling of window manager induced shutdown
28802
28803 2004-08-09 11:31  jackson
28804
28805         * ThemeWin32Classic.cs: New names for control properties
28806
28807 2004-08-09 11:25  jackson
28808
28809         * Control.cs: Use new color names
28810
28811 2004-08-09 11:02  jackson
28812
28813         * XplatUI.cs: Get default window properties from the theme
28814
28815 2004-08-09 11:01  jackson
28816
28817         * ITheme.cs: The theme engine now controls default window
28818           properties
28819
28820 2004-08-09 11:00  jackson
28821
28822         * ThemeWin32Classic.cs: Add default window color properties
28823
28824 2004-08-09 10:17  jackson
28825
28826         * ThemeWin32Classic.cs: Use correct default back color
28827
28828 2004-08-09 10:05  jackson
28829
28830         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
28831           the theme now.
28832
28833 2004-08-09 09:56  jackson
28834
28835         * XplatUI.cs: Remove defaults, these are handled by the theme now.
28836
28837 2004-08-09 09:54  jackson
28838
28839         * Control.cs: Get default properties from the theme.
28840
28841 2004-08-09 09:53  jackson
28842
28843         * ITheme.cs: Themes now handle default control properties
28844
28845 2004-08-09 09:53  jackson
28846
28847         * ThemeWin32Classic.cs: Themes now handle default control
28848           properties so coloring will be consistent
28849
28850 2004-08-08 16:54  jordi
28851
28852         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
28853
28854 2004-08-08 15:08  jordi
28855
28856         * XplatUIX11.cs: fixes keyboard crash
28857
28858 2004-08-08 13:47  jordi
28859
28860         * Label.cs: add cvs header info
28861
28862 2004-08-08 12:09  jackson
28863
28864         * ThemeWin32Classic.cs: Add pen_buttonface
28865
28866 2004-08-08 11:52  jordi
28867
28868         * Label.cs, LinkLabel.cs: [no log message]
28869
28870 2004-08-08 11:34  jordi
28871
28872         * ThemeWin32Classic.cs: Use Windows Standard Colours
28873
28874 2004-08-07 17:32  jordi
28875
28876         * TrackBar.cs: throw exceptions of invalid enums values
28877
28878 2004-08-07 17:31  jordi
28879
28880         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
28881           draw method name
28882
28883 2004-08-07 16:56  jackson
28884
28885         * HorizontalAlignment.cs: Initial checkin
28886
28887 2004-08-07 13:16  jordi
28888
28889         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
28890           methods
28891
28892 2004-08-07 13:05  jordi
28893
28894         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
28895           GetSysColor defines
28896
28897 2004-08-06 18:01  pbartok
28898
28899         * ThemeWin32Classic.cs:
28900           - Fixed some rounding issues with float/int
28901
28902 2004-08-06 18:00  jackson
28903
28904         * DockStyle.cs, AnchorStyles.cs:
28905
28906                   Add flags and serializable attributes.
28907
28908 2004-08-06 17:46  pbartok
28909
28910         * XplatUIX11.cs:
28911           - Implemented GetParent
28912
28913 2004-08-06 17:18  pbartok
28914
28915         * TrackBar.cs:
28916           - Fixed some rounding issues with float/int
28917
28918 2004-08-06 17:17  pbartok
28919
28920         * X11Structs.cs, XplatUIX11.cs:
28921           - Fixed Refresh and Invalidate
28922
28923 2004-08-06 15:30  pbartok
28924
28925         * Control.cs, X11Structs.cs, XplatUIX11.cs:
28926           - Fixed recursive loop when resizing
28927           - Improved/fixed redrawing on expose messages
28928
28929 2004-08-06 09:53  jordi
28930
28931         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
28932           keyboard navigation
28933
28934 2004-08-06 08:02  pbartok
28935
28936         * X11Structs.cs, XplatUIX11.cs:
28937           - Fixed reparenting
28938           - Fixed window border creation
28939
28940 2004-08-05 15:38  pbartok
28941
28942         * XplatUIX11.cs:
28943           - Attempted fix for reparenting problems
28944
28945 2004-08-04 15:14  pbartok
28946
28947         * Control.cs:
28948           - Fixed Invalidation bug (calculated wrong client area)
28949           - Added ClientSize setter
28950
28951 2004-08-04 15:13  pbartok
28952
28953         * Form.cs:
28954           - Added AutoScale properties
28955
28956 2004-08-04 15:13  pbartok
28957
28958         * SWF.csproj:
28959           - Added latest files
28960
28961 2004-08-04 14:11  pbartok
28962
28963         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28964           XplatUIX11.cs:
28965           - Added Invalidate handling
28966
28967 2004-08-03 17:09  jordi
28968
28969         * XplatUIDriver.cs: fixes spelling mistake
28970
28971 2004-07-27 09:53  jordi
28972
28973         * TrackBar.cs: fixes trackbar events, def classname, methods
28974           signature
28975
28976 2004-07-27 09:29  jordi
28977
28978         * ScrollBar.cs: fixes scrollbar events
28979
28980 2004-07-27 04:38  jordi
28981
28982         * Control.cs: changes to be able to run winforms samples
28983
28984 2004-07-26 11:42  jordi
28985
28986         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
28987           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
28988
28989 2004-07-26 05:41  jordi
28990
28991         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
28992           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
28993           implementation
28994
28995 2004-07-22 09:22  jordi
28996
28997         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
28998           check link overlapping, implement events, and fixes
28999
29000 2004-07-21 10:28  jordi
29001
29002         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
29003
29004 2004-07-21 10:19  jordi
29005
29006         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
29007           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
29008           LinkLabelLinkClickedEventArgs.cs,
29009           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
29010           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
29011           implementation
29012
29013 2004-07-19 13:09  jordi
29014
29015         * Control.cs, Label.cs: label control re-written: added missing
29016           functionlity, events, and properties
29017
29018 2004-07-19 10:49  jordi
29019
29020         * Control.cs: fixes SetBounds logic
29021
29022 2004-07-19 01:29  jordi
29023
29024         * Control.cs: Call RefreshWindow only if the window has created
29025
29026 2004-07-15 14:05  pbartok
29027
29028         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
29029           - Implemented ImageList and ImageList.ImageCollection classes
29030           - Added ColorDepth enumeration
29031           - Updated SWF VS.Net project
29032
29033 2004-07-15 11:06  jordi
29034
29035         * XplatUIStructs.cs: added MsgButons enum
29036
29037 2004-07-15 11:03  jordi
29038
29039         * Control.cs: added basic mouse handeling events
29040
29041 2004-07-15 03:38  jordi
29042
29043         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
29044           Vertical TrackBar control implementation
29045
29046 2004-07-13 09:33  jordi
29047
29048         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
29049
29050 2004-07-13 09:31  jordi
29051
29052         * Control.cs, Form.cs: commit: new properties and fixes form size
29053           problems
29054
29055 2004-07-09 14:13  miguel
29056
29057         * ProgressBar.cs: Spelling
29058
29059 2004-07-09 11:25  pbartok
29060
29061         * ProgressBar.cs:
29062           - Removed usage of Rectangle for drawing. Miguel pointed out it's
29063           faster
29064
29065 2004-07-09 11:17  miguel
29066
29067         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
29068
29069                 * ProgressBar.cs: Fixed spelling for `block'
29070
29071                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
29072                 style guidelines.
29073
29074                 Avoid using the += on rect.X, that exposed a bug in the compiler.
29075
29076 2004-07-08 23:21  pbartok
29077
29078         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
29079           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
29080           BaseCollection.cs, Binding.cs, BindingContext.cs,
29081           BindingMemberInfo.cs, BindingsCollection.cs,
29082           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
29083           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
29084           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
29085           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
29086           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
29087           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
29088           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
29089           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
29090           FrameStyle.cs, GiveFeedbackEventArgs.cs,
29091           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
29092           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
29093           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
29094           InputLanguageChangedEventArgs.cs,
29095           InputLanguageChangedEventHandler.cs,
29096           InputLanguageChangingEventArgs.cs,
29097           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
29098           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
29099           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
29100           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
29101           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
29102           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
29103           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
29104           QueryAccessibilityHelpEventArgs.cs,
29105           QueryAccessibilityHelpEventHandler.cs,
29106           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
29107           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
29108           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
29109           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
29110           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
29111           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
29112           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
29113           XplatUIX11.cs, lang.cs:
29114           - Initial check-in
29115
29116