* System.Windows.Forms/ThemeWin32Classic.cs: A FixedToolWindow has
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2
3         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
4         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
5           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
6           Refactored HandleNCCalcSize somewhat to avoid code duplication.
7         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
8           FormBorderStyle to decide if we're calculating a new size from the
9           client size or not. CreateParams: Don't fake tool windows, only the X11
10           backend manages toolwindows manually.
11
12 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
13
14         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
15         ObjectDisposedException.
16
17 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
18
19         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
20         in OnLoad should not have any effect.  [Fixes bug #82470]
21
22 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
23
24         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
25         paint for controls that create their own ToolTipWindow instead of
26         going through ToolTip.
27
28 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
29
30         * ToolTip.cs: Make Hide internal instead of public to match MS API.
31
32 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
33
34         * ListViewGroupCollection.cs: Use generic List instead of an
35         ArrayList, since this collection is 2.0 only.
36
37 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
38
39         * ToolTip.cs (Hide): Made public to make the build work (should
40         this not be public?).
41
42 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
43
44         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
45         ToolTipWindow.
46         * ToolTip.cs: Add an internal Visible property to facilitate transition.
47
48 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
49
50         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
51         PopupEventHandler.cs: Make these internal for 1.1.
52         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
53         use ToolTipWindow internals.
54         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
55         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
56
57 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
58
59         * X11Dnd.cs: Add a null check.
60
61 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
62
63         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
64           nothing else succeeds. Fixes #82453.
65
66 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
67
68         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
69           rectangle if we're painting to another window than the one the paint
70           message was generated on. Simplify the code somewhat, which makes
71           PaintEventEnd also simpler.
72
73 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
74
75         * Control.cs: When changing parent of a form, let the form decide whether
76           XplatUI.SetParent should be called or not.
77         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
78           recreating the handle. If the new parent's handle isn't created, don't
79           recreate our handle, just destroy it. CreateParams: Check if the
80           parent's handle is created before fetching it.
81
82 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
83
84         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
85           Update calls to PaintEventStart/End to take a Message argument.
86         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
87           take a Message argument.
88         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
89           Message argument, and handle the case where we don't paint to the window
90           for which the paint message was generated.
91
92 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
93
94         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
95           Marshal.GetLastWin32Error. Plug nasty memory leak in
96           PaintEventStart/End, we were creating a DC we weren't releasing.
97
98 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
99
100         * ListView.cs: Add Groups support in Details view. Also have a small
101         method to do the layout of the group header. Don't use a separate
102         method to do the groups calculation in Icons view, since our methods
103         are now a little simpler.
104         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
105         `Bounds'.
106         * ThemeWin32Classic.cs: Likewise.
107
108 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
109
110         * Application.cs: Add FilterMessage method and rework our message loop
111         logic to use it.
112
113 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
114
115         * Application.cs: Add some methods and stub a few methods that are
116         pretty much never used.
117
118 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
119
120         * TreeNode.cs: Add some serialization methods.
121
122 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
123
124         * ListView.cs: In ListViewItemCollection have a 
125         'is_main_collection' field to not modify ListViewItem.ListView
126         when using it as ListViewGroup.Items (and not ListView.Items)
127         and also don't modify selection state (.Net behaviour). 
128         Instead, set group for items contained in a ListViewGroup.Items collection.
129         * ListViewItem.cs: Simplify some code in Group setter.
130         * ListViewGroup.cs: use the new .ctor to pass the current instance
131         to the ItemsCollection.
132         * ListViewGroup.cs: Set the ListView property for ListViewGroup
133         instances when adding/removing. Also make Remove use RemoveAt, which
134         should perform better.
135
136 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
137
138         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
139         that crept into the 1.1 profile.
140
141 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
142
143         * ToolBarButton.cs: Implement ImageKey.
144
145 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
146
147         * ToolBar.cs: Implement ScaleControl/ScaleCore.
148
149 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
150
151         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
152           created, it might have gotten destroyed since we last checked. Fixes
153           #82405.
154
155 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
156
157         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
158         tooltip will hide when mouse is moved off the control.
159         [Fixes bug #82407]
160
161 2007-08-11 Andreia Gaita <avidigal@novell.com>
162
163         * WebBrowserBase.cs, WebBrowser.cs: add implementation
164         using Mono.Mozilla for loading and navigating webcontrol
165         with xulrunner.
166         The initial implementation was done on 
167         /trunk/mozembed/tests/browser , and copied here.
168
169 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
170
171         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
172         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
173
174 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
175
176         * DataGridView.cs: Add support for an editing row. Fixes #82226.
177           RowTemplateFull: throw an exception if a column doesn't have a template.
178         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
179           add the row just before it.
180         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
181           selected.
182         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
183           DataGridView field to be able to reach the grid's editing row.
184
185 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
186
187         * ToolTip.cs: If the control's handle hasn't been created when it has a
188         tooltip set on it, don't check to see if we need to show the tooltip.  This
189         check was causing the control's handle to be created.
190         [Fixes bug #82399]
191
192 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
193
194         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
195                                         1.1             2.0
196         Handle Not Created      -1              0
197         Handle Created          0               0
198         [Fixes bug #82371]
199
200 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
201
202         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
203         [Fixes bug #82348]
204
205 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
206
207         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
208         * ToolTip.cs: Implement some properties and owner draw.
209
210 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
211
212         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
213           show them again, since setting visibility causes a paint, causing an
214           endless loop (instead use a temporary and set it all when it's known if
215           they should be shown or not). Fixes #79265.
216
217 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
218
219         * DataGridView.cs: Only do a full column/row selection if a header was
220           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
221           isn't pressed, deselect everything before selecting something.
222
223 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
224
225         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
226           behaviour according to bug #81075 - they are returned in the order they
227           are selected. Fix HitTest to check if the point is within any of the
228           headers. Allow for row/column selection when in ColumnHeader or
229           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
230           the row and column to call when their selected state changes, and
231           updated selected_[rows|columns] whenever SetSelected* is called.
232         * DataGridViewBand.cs: Initialize isRow correctly. Call
233           SetSelected[Row|Column]CoreInternal when the selected state changes, and
234           add a SelectedInternal to avoid StackOverflows.
235         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
236           ReadOnly no matter what.
237         * DataGridViewSelectedColumnCollection.cs,
238           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
239           the items in reverse order (just as MS does...)
240
241 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
242
243         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
244         itself, not part of a mnemonic.  [Fixes bug #82378]
245
246 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
247
248         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
249         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
250           the DGV, the column, the row, or the cell itself is readonly.
251
252 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
253
254         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
255         OSVersion.Platform.
256         * FileDialog.cs: Same.
257         * TextRendered.cs: Same.
258         * FolderBrowserDialog.cs: Same.
259         * TextBoxBase.cs: Same.
260         * Application.cs: Same.
261         * Cursors.cs: Same.
262         * ThemeClearLooks.cs: Same.
263
264 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
265
266         * XplatUI.cs: Added RunningOnUnix property to be used by controls
267         instead of duplicating these checks everywhere.
268         * FileDialog.cs: Use case-insensitive comparison for populating the
269         DirComboBox when not running on unix. Fixes bug #82385.
270         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
271         "Look in".
272
273 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
274
275         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
276           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
277           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
278           cell and column selection with ctrl and shift pressed. Call the correct
279           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
280           the corresponding virtual method (PaintBackground to paint background,
281           etc).
282         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
283           either the column, row or the cell itself is selected.
284         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
285           OnRowsAdded.
286         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
287           here. When the row is selected, don't select all cells. Each cell now
288           queries the row to see if the row is selected.
289
290 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
291
292         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
293           SelectionMode.
294
295 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
296
297         * ListView.cs: In ListViewItemsCollection check that owner is
298         not null before trying to access it (this happens quite often
299         using Groups). Also don't duplicate calls by calling CollectionChanged
300         method.
301
302 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
303
304         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
305         when we are dismissed to clear keyboard mnemonics.
306         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
307         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
308         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
309         was activated by keyboard or the OS tells us to always draw them.
310         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
311         [Fixes bugs #82376, #82377]
312
313 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
314
315         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
316         shot at having it because Alt was pressed.
317         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
318         the first real menu item.
319         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
320         a mnemonic if Text is null.
321         [Fixes bug #82374]
322
323 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
324
325         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
326         search do check whether the item is already contained in the
327         collection or not; instead check if the owner of the item is the same
328         as ours. Also, remove a redundant check in the same method. 
329
330 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
331
332         * Control.cs: Allow the clip region to be set back to null.
333         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
334         [Fixes button still showing up in bug #82370 when Show Through is turned off]
335
336 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
337
338         * GridEntry.cs: Add a null check.
339         * PropertyGrid.cs: When checking for existing grid entries, ignore category
340           entries. Fixes #82297.
341
342 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
343
344         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
345         for 2.0.
346
347 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
348
349         * ListBox.cs: Implement ScaleControl.
350
351 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
352
353         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
354           have a menu strip.
355         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
356           parent has a menu strip. Fixes #81689.
357
358 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
359
360         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
361           moments, so apply some fuzzy logic to determine if the mouse is still
362           inside a control or not. Fixes #82288 (for the third time).
363
364 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
365
366         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
367           Don't create the child if it has been disposed already (may happen if
368           the user closes the form the Load event).
369
370 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
371
372         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
373           #82288.
374
375 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
376
377         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
378           might call us after we've been destroyed, in which case our own private
379           parent field is null. Fixes #82326.
380
381 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
382
383         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
384         check for setting the dropdown's owner.
385
386 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
387
388         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
389         before removing system menu items.
390
391 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
392
393         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
394         folding.
395         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
396         folding.
397         * ToolStrip.cs: Add a null check to mnemonics.
398         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
399         no ConnectedArea.
400         [Fixes most of bug #81689]
401
402 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
403
404         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
405
406 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
407
408         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
409
410 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
411
412         * DataGridViewCell.cs: EditType: returns
413           DataGridViewTextBoxEditingControl always.
414
415 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
416
417         * TextRenderer.cs: Remove the LineLimit string format flag from the
418         DrawString fallback method so that things like buttons that aren't
419         tall enough to draw a full line will still draw part of the text.
420         [Fixes part of bug #82272]
421
422 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
423
424         * DataGridView.cs: Implemented AutoResizeColumn(s).
425         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
426           according to the Alignment.
427         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
428           Implement alignment and padding when painting.
429         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
430           exists.
431         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
432           way.
433         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
434           a column is added.
435
436 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
437
438         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
439         which is internal.
440
441 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
442
443         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
444         hide GetPreferredSize from public API.
445         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
446         * ToolStripItem.cs: Stub out drag and drop methods and events.
447         * ToolStripManager.cs: Stub out Save/LoadSettings.
448         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
449         * ToolStripPanel.cs: Fix corcompare error.
450         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
451         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
452         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
453
454 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
455
456         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
457         bounds height instead of PreferredHeight.  Puts things back the way 
458         they were for height while still fixing the width.  Fixes broken unit
459         tests.
460
461 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
462
463         * Binding.cs: Implement 2.0 constructors and add a null check.
464
465 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
466
467         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
468           and fix row index (off by one).
469
470 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
471
472         * PropertyGridView.cs: Remove debug output.
473
474 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
475
476         * Control.cs: We need to reset the is_created flags when the handle is
477           destroyed. Fixes #82187.
478         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
479           client coordinates if the window doesn't have a parent.
480           Win32GetParent returns the parent or the owner, and for top-level
481           windows with no parent (but with an owner) we were calculating the
482           location from the location of the owner.
483         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
484           form has been disposed.
485         * MdiClient.cs: Add a null-check.
486
487 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
488
489         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
490         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
491         so we can provide an implementation that returns the current width
492         and preferred height.  Allows anchor = right to work with TextBox 2.0.
493         [Fixes bug #82233]
494
495 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
496
497         * ListView.cs: Add support for navigating items in Groups mode, by
498         creating a big matrix containing all rows and cols of all groups. When
499         are in other mode than Details, pressing Up should have a similar
500         behaviour as that one of Down (moving to the next available column if
501         current one doesn't have an item in the requested row). Also, don't
502         proceed to use groups if ShowGroups is false.
503         * ListViewGroup.cs: Add an internal int field to store the starting
504         row of the group (used by the big matrix used for navigating the
505         ListView).
506         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
507         false.
508
509 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
510
511         * ToolStripDropDown.cs: When we do Show, start with the 
512         DefaultDropDownDirection, but if our popup menu is going to off-screen,
513         modify the direction to keep it on screen.  [Fixes bug #82210]
514
515 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
516
517         * FileDialog.cs: Accept any FilterIndex value, and store it
518         unmodified. When FilterIndex is less than 1, or greater than number
519         of filters, then default to first filter. Only add filter extension to
520         file if user did not specifiy an extension. When type of dialog is
521         OpenFileDialog and DefaultExt is set, then only use filter extension
522         if: CheckFileExists is true and no file wih the default extension
523         exists, or CheckFileExists is false, and user specified file does not
524         exist. When CheckFileExists is true, then add first extension of 
525         selected filter that matches existing file. Perform checks for
526         existing file, overwrite and create after extension has been added to
527         file name. When CheckFileExists is true and type is SaveFileDialog,
528         then only consider first filter extension if DefaultExt is set.
529         When CheckFileExists is true, then ignore DefaultExt if file with that
530         extension does not exist. Also perform check for existing file when
531         type is SaveFileDialog. Changed some field to constants.
532
533 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
534
535         * ListView.cs: Take into account the region used by header
536         control when doing the vertical scroll (this way we invalidate
537         the precise area, and don't get any dirty one).
538
539 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
540
541         * FileDialog.cs: Check for valid filterIndex on button open/save. 
542         Fixes #82184.
543
544 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
545
546         * ListView.cs: Update some layout calculations in details view
547         and clean the code in a pair of assignations.
548
549 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
550
551         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
552         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
553         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
554         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
555
556 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
557
558         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
559         performance of thread-safe Graphic methods.  (Thanks rolf!)
560
561 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
562
563         * ListView.cs: When doing the layout calculations, don't calculate
564         scroll bars before handle is created. This is unnecessary and also
565         calculating them before handle creation item causes a number of random
566         bugs (which begin to appear after Chris' big patch for handle creation
567         fixes). 
568
569 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
570
571         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
572         for things that don't have a Graphics object.  Currently, things just use
573         the static Hwnd.bmp_g which is not thread safe.
574
575 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
576
577         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
578           dialog. Fixes #82187.
579
580 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
581
582         * DataGridViewElement.cs: Initialize state.
583         * DataGridView.cs: Forward a few Mouse events to cells. Add
584           GetRowInternal and GetCellInternal that doesn't unshare rows.
585           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
586           don't use the index, but look it up. Add
587           DataGridViewControlCollection.RemoveInternal to remove controls
588           that Remove won't remove (scrollbars, edit control).
589         * DataGridViewColumn.cs: Initialize State correctly.
590         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
591           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
592           implementing this.
593         * DataGridViewRowCollection.cs: Implemented shared rows.
594         * DataGridViewRow.cs: Throw exceptions as MS do.
595         * DataGridViewCell.cs: A few properties are implemented by a
596           Get<Property> method, so move implementation there and remove the
597           NIEX in the method. Add a bunch of OnXInternal that DataGridView
598           calls when necessary.
599         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
600           complicates matters.
601         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
602           unshare any rows.
603
604 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
605
606         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
607         the children controls.  Instead, we will just set up the proper docking for the
608         children controls so we don't have to worry about it.  [Fixes bug #82188]
609
610 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
611
612         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
613         canceling and correct Before/AfterLabelEdit properties as layed out in bug
614         81847.  [Fixes bug #81847]
615
616 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
617
618         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
619         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
620         an explicit size based on the design-time size of the text.  Since our fonts
621         may not match this explicit size, we tend to cut off the ends of people's labels.
622
623 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
624
625         * Menu.cs: Add some missing methods to MenuItemCollection.
626
627 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
628
629         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
630         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
631         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
632         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
633         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
634         * DataGridViewElement.cs: State defaults to Visible.
635         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
636         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
637
638 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
639
640         * Control.cs: Minor 1.1 corcompare fix.
641
642 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
643
644         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
645         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
646
647 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
648
649         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
650           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
651           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
652           DataGridViewSelectedColumnCollection.cs,
653           DataGridViewSelectedRowCollection.cs: Corcompare work.
654
655 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
656
657         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
658         it is autoset by VS2005 designer and the effect is barely noticeable.
659
660 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
661
662         * TreeView.cs: Implement HitTest.
663
664 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
665
666         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
667           manually adding and removing the control from the Controls
668           collecftion.
669         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
670           EditingControlInternal property that tracks the editing control.
671           Always keeping the scrollbars in the Controls collection, as MS
672           testing confirms is the right behaviour.
673
674 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
675
676         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
677           according to MSDN and new test.
678
679 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
680
681         * TreeNode.cs: Implement ToolTipText.
682         * TreeView.cs: Implement tooltips, NodeMouse* events.
683
684 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
685
686         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
687
688 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
689
690         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
691         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
692
693 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
694
695         * Control.cs, Form.cs, ContainerControl.cs,
696         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
697         for misc properties.
698
699 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
700
701         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
702         * TreeView.cs: Implement StateImageList.
703
704 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
705
706         * Form.cs: Don't check if the current form is the active form before
707           activating it. Fixes #81904.
708
709 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
710
711         * Form.cs: Don't check if the current form is the active form before
712           activating it. Fixes #81904.
713
714 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
715
716         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
717
718 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
719
720         * Form.cs: Don't try to position the form after loading if the form was
721           disposed. Fixes #81969.
722
723 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
724
725         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
726           properties. Had to change ToolBar into ToolStrip, which required a
727           few #ifs.
728
729 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
730
731         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
732           resized, fixes part of #79829 (vertical lines in toolbar).
733           PropertyGrid: Refactored Populate* to something that's easier to
734           follow at least for me, as well as splitting it up into several new
735           methods, required to update only subitems when something has
736           changed by a popup editor or listbox. Don't use events to check
737           when any values are changed, since the events are unreliable (we're
738           changing the objects the events are registered with, and if the
739           event handling requires the objects to be immutable (objects stored
740           in hashtables for instance), the events will never be raised).
741         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
742           everytime we change a value, since events are unreliable.
743           DropDownButtonClicked: For the same reason don't compare objects to
744           check if it has changed or not, it would require all objects to
745           derive Equals. Fix dialog location on windows, MS is doing weird
746           things when creating parented forms.
747         * GridEntry.cs: Add a SelectedObject setter.
748
749 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
750
751         * TreeNode.cs: Add some corcompare attributes.
752         * TreeNodeCollection.cs: Implement 2.0 stuffs.
753         * TreeView.cs: Implement some 2.0 stuffs.
754
755 2007-07-18  Andreia Gaita  <avidigal@novell.com>
756
757         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
758         for moma.
759
760 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
761
762         * ListBox.cs: Implement custom tab offsets.
763
764 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
765
766         * ToolStripContentPanel.cs: Support System renderer.
767         * ToolStripControlHost.cs: Set RightToLeft to default to No.
768
769 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
770
771         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
772
773 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
774
775         * CheckBox.cs: Chain TextAlign to base implementation instead of
776         maintaining another one.
777
778 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
779
780         * ButtonBase.cs: Fix an incorrect string constant.
781
782 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
783
784         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
785         of creating one for measuring strings.
786
787 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
788
789         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
790         Implement MaxItemSize.
791
792 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
793
794         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
795         for DeviceContext.  Instead, use the static one available in Hwnd.
796         Informal tests show this saves about 500k on formtest.exe.
797
798 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
799
800         * ContainerControl.cs: Implement 2.0 AutoScaling.
801
802 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
803
804         * ComboBox.cs: Work around bug #82120 (bug in mcs).
805
806 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
807
808         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
809         Darken the focus color.
810
811 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
812
813         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
814         for the checkbox.
815         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
816         X, Y instead of a rect for drawing text.
817         - For ControlPaint.DrawCheckBox, center the check a little better when the
818         checkbox is odd width.  When drawing a flat checkbox, use a white background
819         when state != inactive.
820         [Fixes bugs #82097, 82100]
821
822 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
823
824         * ListControl.cs: When changing CurrencyManager, disconnect event
825         handlers from previous one. Fixes bug #81771. Code formatting.
826
827 2007-07-15  Andreia Gaita <avidigal@novell.com>
828
829         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
830         full preview invalidation from layout invalidation, and only invalidate
831         the layout when setting zoom or other properties. Invalidation should
832         always be done even when resetting properties with the same values as
833         what is there. Fixes #81744 and #79830.
834
835 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
836
837         * ListView.cs: Implement initial support for Groups. Split some of the
838         LayoutIcons code to render a partial list of the items (needed by
839         items contained in ListViewGroup instances). Let the
840         ListViewItemsCollection.ListView property be modifiable (needed when
841         using Groups, too).
842         * ListViewGroup.cs: Use a Bounds property rather than a Location
843         one. Also invalidate the bounds when they get changed.
844         * ThemeWin32Classic.cs: When drawing items, also draw the group header
845         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
846         method as well.
847
848 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
849
850         * ListView.cs: When space gets pressed and CheckBoxes is true, 
851         don't invoke the Begin and EndUpdate methods. We are generating 
852         a redraw of the entire control without need to do so.
853
854 2007-07-13  William Holmes <billholmes54@gmail.com> 
855
856         * Control.cs: Changing logic in FindFlatForward and 
857           FindFlatBackward to handle multiple Controls with 
858           the same TabIndex.  
859           This fixes bug 81687.
860
861 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
862
863         * OSFeature.cs: Enable IsPresent.
864
865 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
866
867         * Control.cs: Don't do anything in WmShowWindow if the control has been
868           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
869           control is created, put on a form, the control is disposed (the
870           form is never shown), and then we get a MapNotify, triggering a
871           WM_SHOWWINDOW.
872         * Form.cs: Exclude the current form when sending Deactivate to all
873           MdiChildren.
874         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
875           there was a race condition because assigning the handle raises
876           events, we can get more messages, therefore trying to assign the
877           handle again, which would fail if any of those event handlers
878           closed/disposed the control.
879
880 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
881
882         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
883
884 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
885
886         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
887         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
888
889 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
890
891         * DateTimePicker.cs: If there's no part format specifier, return an
892           empty string.
893
894 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
895
896         * FlatButtonAppearance.cs: Throw NotSupportedException for a
897         Transparent BorderColor.
898
899 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
900
901         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
902           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
903           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
904           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
905           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
906           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
907           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
908           Remove warnings.
909         * X11Structs.cs: Remove warnings, add ToString implementations.
910
911 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
912
913         * XplatUIX11.cs: Translate min/max size according to the actual min/max
914           size, and not the current size. Fixes #81798.
915
916 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
917
918         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
919           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
920           to the control yet).
921
922 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
923
924         * PropertyGridTextBox.cs: Add a method that sends any forwarded
925           mousedowns to the contained textbox.
926         * X11Structs.cs: More ToString implementation.
927         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
928           #81791.
929
930 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
931
932         * PropertyGridView.cs: Add a null-check, fixes a few tests.
933
934 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
935
936         * TableLayoutPanelCellPosition.cs: TypeConverter.
937
938 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
939
940         [ Fixes #79761]
941         
942         * PropertyGridTextBox.cs: Propagate any color changes to all contained
943           controls.
944         * PropertyGridView.cs: A few color fixes.
945
946 2007-07-10  Jackson Harper  <jackson@ximian.com>
947
948         * TextControl.cs: Remove some old unused text formatting stuff.
949
950 2007-07-10  Jackson Harper  <jackson@ximian.com>
951
952         * TreeView.cs: Update full row select invalidation to match the
953         newer DrawSelection... method.
954         - Make sure to invalidate the entire width when selecting a new
955         node, if we have full row selection enabled.
956
957 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
958
959         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
960           display of properties again.
961
962 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
963
964         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
965         to existing collections.
966
967 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
968
969         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
970         that changed between 1.1 and 2.0.
971
972 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
973
974         * PowerStatus.cs: Added.  This is just a data class, it is filled
975         in by SystemInformation.
976
977 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
978
979         * Message.cs: Add op_Equality and op_Inequality.
980
981 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
982
983         * MenuStrip.cs: Finish corcompare work.
984
985 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
986
987         * LinkArea.cs: Add op_Equality and op_Inequality.
988
989 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
990
991         * Application.cs: Add MessageLoopCallback delegate.
992
993 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
994
995         * ListBox.cs: First set of 2.0 stuffs.
996
997 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
998
999         * Control.cs: Make an internal Height property we can override
1000         without messing up the public API.
1001         * ListBox.cs: Override HeightInternal to always return the size
1002         the user set.  [Fixes bug #80466]
1003
1004 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
1005
1006         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
1007         paint cell borders if we haven't calculated where they go yet.
1008         [Fixes bugs #82040 and #82041]
1009
1010 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1011
1012         * ListView.cs: In Details view, set the location of item_control
1013         in the (0,0) position (and the header_control is thus on the
1014         item_control). This way the Bounds of the Items are relative to the
1015         ListView control (before this, they had a Bounds value without the
1016         header_control offset, which wasn't matching .Net). Fixes #82004.
1017
1018 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1019
1020         * ListControl.cs: When DataSource is set to null, pass an empty
1021         array of object to SetItemsCore. This is done to clean the items
1022         in the ListContol children. Fixes #81788.
1023
1024 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1025
1026         * ListControl.cs: Add 2.0 stuffs.
1027
1028 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1029
1030         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
1031         Refresh is overkill for just about every repaint request.
1032
1033 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1034
1035         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
1036         so remove my custom Get method and fix the property getter.
1037
1038 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1039
1040         * Label.cs: DefaultMargin for 2.0.
1041
1042 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1043
1044         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
1045         reported issue where other controls with mnemonics would steal strokes
1046         from a selected ComboBox.
1047
1048 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
1049
1050         * ScrollOrientation.cs: Make internal for 1.1.
1051         * ScrollEventArgs.cs: Add 2.0 stuffs.
1052
1053 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
1054
1055         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
1056         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
1057         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
1058
1059 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1060
1061         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
1062
1063 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1064
1065         * ListView.cs: Implement the so-incredibly broken 2.0 
1066         VirtualItemsSelectionRangeChanged event.
1067
1068 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1069
1070         * ListView.cs: When enter is pressed and selection is non empty,
1071         an OnItemActivate event must be fired.
1072
1073 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1074
1075         * ListView.cs: Store the FocusedItem information as an
1076         int instead of a ListViewItem (needed by VirtualMode).
1077         Update the calls to SetFocusedItem to pass an index instead of
1078         an item.
1079         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
1080         the Focused state from the owner ListView. 
1081
1082 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1083
1084         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
1085         property. Also, invalidate previous focused item in the mentioned
1086         property (match .Net).
1087
1088 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1089
1090         * ListView.cs: Implement 2.0 FocusedItem property setter.
1091
1092 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1093
1094         * ListView.cs: Implement 2.0 TopItem property setter.
1095
1096 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
1097
1098         * StatusStrip.cs: The default renderer is System.
1099         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
1100         if the user specifies it.
1101         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
1102         if we are ManagerRenderMode.
1103         * ToolStripMenuItem.cs: Calculate our text color better.
1104         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
1105         from Professional to the base class based off working with the System renderer.
1106         * ToolStripSystemRenderer.cs: Added.
1107
1108 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1109
1110         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
1111
1112 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
1113
1114         * ToolTip.cs: Implement 2.0 Tag property.
1115
1116 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1117
1118         * ListView.cs: Implement 2.0 HitTest methods.
1119
1120 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1121
1122         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
1123         item is under the pointer or not (sugar). Also remove the TODO
1124         regarding to the cursor changes in OneClick activation.
1125         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
1126         the subitems use the parent's HotFont if UseItemStyleForSubItems is
1127         true; otherwise don't show the underline style.
1128
1129 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1130
1131         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
1132         the code to retrieve the item at position only one time. Also
1133         change cursor when Activation is ItemActivation.OneClick as well
1134         as invalidate the item if HotTracking is true (to show/hide the
1135         underline style). Add an internal HotItemIndex property to retrieve
1136         the current hot item's index.
1137         * ListViewItem.cs: Add an internal HotFont property to cache the
1138         font used when HotTracking is true and the pointer moves within the
1139         item's borders.
1140         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
1141         HotFont depending on the hot state of the item.
1142
1143 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1144
1145         * ListView.cs: Implement 2.0 HotTracking property.
1146
1147 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1148
1149         * ToolStripControlHost.cs: If our hosted control never got created,
1150         don't try to dispose it.  [Fixes bug #81909]
1151
1152 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1153
1154         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
1155
1156 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
1157
1158         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
1159
1160 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1161
1162         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
1163         Details view.
1164         * DrawListViewColumnHeaderEventArgs.cs:
1165         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
1166         using the DrawText () methods.
1167
1168 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
1169
1170         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
1171         background which got erased in my changes yesterday.
1172
1173 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1174
1175         * ListViewItem.cs: Actually set bounds for subitems in Details view
1176         (2.0 feature).
1177         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
1178         can invoke from the owner draw routines if we need it. Also, add
1179         support for Owner draw in Details view.
1180
1181 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1182
1183         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
1184         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
1185         ShowImageMargin setting, properly align text in a ToolStripLabel
1186         hosted on a ToolStripDropDown.
1187
1188 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1189
1190         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
1191         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
1192
1193 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1194
1195         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
1196
1197 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
1198
1199         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
1200         location to match ToolStripMenuItems.
1201
1202 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1203
1204         * DrawListViewColumnHeaderEventArgs.cs:
1205         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
1206         column headers in ListView. 
1207
1208 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1209
1210         * UserControl.cs: Implement AutoSize.
1211
1212 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1213
1214         * DrawListViewItemEventArgs.cs:
1215         * ListView.cs:
1216         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
1217         ListView.
1218
1219 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
1220
1221         * ToolStripDropDownItemAccessibleObject.cs: Added.
1222         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
1223         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
1224         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
1225         ToolStripTextBox.cs: corcompare work.
1226
1227 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1228
1229         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
1230         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
1231         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
1232                 corcompare.
1233
1234 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
1235
1236         * OSFeature.cs: Add IsPresent.
1237         * PrintPreviewControl.cs: Add RightToLeft.
1238         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
1239         * SplitterPanel.cs: Add AutoSizeMode.
1240
1241 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1242
1243         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
1244         * MdiClient.cs: Add 2.0 ScaleControl.
1245         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
1246         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
1247
1248 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1249
1250         * Form.cs: Implement some scaling methods, stub some RTL methods,
1251         corcompare work.
1252
1253 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1254
1255         * Control.cs: corcompare work.
1256         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
1257
1258 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
1259
1260         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
1261         ControlPaint 2.0 stuffs.
1262
1263 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1264
1265         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
1266
1267 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1268
1269         * UpDownBase.cs: Add 2.0 stuffs.
1270
1271 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1272
1273         * NumericUpDown.cs: Add 2.0 stuffs.
1274
1275 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1276
1277         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
1278
1279 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1280
1281         * ErrorProvider.cs: Implement 2.0 stuffs.
1282
1283 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1284
1285         * DomainUpDown.cs: Implement 2.0 stuffs.
1286
1287 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1288
1289         * CheckedListBox.cs: Fix RefreshItems signature.
1290
1291 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
1292
1293         * PictureBox.cs: Implement 2.0 stuffs.
1294
1295 2007-06-12  Andreia Gaita  <avidigal@novell.com>
1296         
1297         * TabControl.cs: Check if there are tabpages before checking
1298         the selected index - fix #81802 (font changes raise a ResizeTabs
1299         call on controls.add, which blew up nicely with no tabpages)
1300
1301 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1302
1303         * ListView.cs:
1304         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
1305
1306 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1307
1308         * ListView.cs:
1309         * ListViewItem.cs: In VirtualMode the selection information
1310         resides in the ListView, rather than in the Items. Also, throw
1311         InvalidOperationExceptions when VirtualMode is being used and
1312         CheckedItemCollection is accessed.
1313
1314 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1315
1316         * ComboBox.cs: Add ScaleControl.
1317
1318 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1319
1320         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
1321
1322 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1323
1324         * GroupBox.cs: Add 2.0 stuffs.
1325
1326 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
1327
1328         * Panel.cs: Add autosize properties/event.
1329
1330 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1331
1332         * Control.cs:
1333         - When we remove a control, remove it from the collection before performing the layout.
1334         - Setup an internal property for explicit_bounds.
1335         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
1336         - Perform a layout when we set a new AutoSizeMode.
1337
1338 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
1339
1340         * ScrollableControl.cs: Add 2.0 stuffs.
1341
1342 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1343
1344         * ScrollBar.cs: Add 2.0 stuffs.
1345
1346 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1347
1348         * Splitter.cs: Add 2.0 stuffs.
1349
1350 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1351
1352         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
1353         to have BindingContext simply use base implementation.
1354
1355 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1356
1357         * ColumnHeader.cs: corcompare fix.
1358
1359 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1360
1361         * Button.cs: corcompare fixes.
1362         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
1363
1364 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
1365
1366         * Button.cs: Override GetPreferredSizeCore.
1367         * ButtonBase.cs: PerformLayout after changing properties that can affect
1368         AutoSize.  Simplify some mouse/keyboard code.
1369         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
1370         * MouseEventArgs.cs: Make Location internal for 1.1.
1371         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
1372         * Theme.cs: Add CalculateButtonAutoSize.
1373         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
1374
1375 2007-06-05  Miguel de Icaza  <miguel@novell.com>
1376
1377         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
1378
1379 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1380
1381         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
1382         since we can get different item instances every time we retrieve it.
1383
1384 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1385
1386         * ListView.cs: Work around for #81602, since an unkown an pretty
1387         infrequent condition appears only in some systems (old linux boxes, it
1388         seems).
1389
1390 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1391
1392         * Button.cs: Completely reformat and a little refactor to bring
1393         this closer to Mono circa 2007.
1394
1395 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1396
1397         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
1398         to be ButtonBase.Invalidate.
1399
1400 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1401
1402         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
1403
1404 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
1405
1406         * ButtonBase.cs: Completely reformat and a little refactor to bring
1407         this closer to Mono circa 2007.
1408
1409 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
1410
1411         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
1412         values for autosize. Fixes #80137.
1413
1414 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1415
1416         * Control.cs: Don't perform layout when AutoSize changes.
1417         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
1418         directly when autosizing, use SetBounds with BoundsSpecified.None.
1419         Fixes unit tests my last commit broke.
1420
1421 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1422
1423         * Control.cs: Perform layout when AutoSize changes.
1424         * Form.cs: Implement AutoSizing.
1425
1426 2007-06-01  Chris Toshok  <toshok@ximian.com>
1427
1428         * DataGrid.cs: remove the XXX'ed check at the top of
1429         ProcessGridKey.  fixes #80464.
1430
1431 2007-06-01  Chris Toshok  <toshok@ximian.com>
1432
1433         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
1434         adding idempotent (add/remove in Edit()), and also make sure we
1435         don't add it until after we set the text, so it's not tripped in
1436         Edit().  Fixes unit test regression.
1437
1438 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
1439
1440         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
1441         change is user explicit, not when the layout engine moves stuff.  Fixes
1442         anchoring to bottom and right.  [Fixes bug #81790]
1443
1444 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1445
1446         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
1447
1448 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1449
1450         * ContainerControl.cs: 
1451         Fire enter event for common ancestor if it is not a ContainerControl.
1452         Send focus to the active_control and not the 'value', the active 
1453         control might have been changed in one of the events fired.     
1454         Definitely fixes #80159.
1455
1456 2007-06-01  Andreia Gaita  <avidigal@novell.com>
1457
1458         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
1459
1460 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1461
1462         * PropertyGrid.cs: Anchor the help description to the bottom of the
1463           help panel and refactor SelectGridItem into a
1464           SelectGridItemInternal that can be set to null (and update it to
1465           clear the help texts when it is set to null). Set root item to null
1466           when there's no SelectedObject. Fixes #80438.
1467         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
1468           when we're recalculating after a resize (only).
1469
1470 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1471
1472         * ListView.cs: Implement 2.0 RedrawItems method.
1473
1474 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1475
1476         * ListControl.cs: Disconnect PositionChanged and ItemChanged
1477         handlers from previous data manager when DataSource is set to
1478         null. Fixes #81771.
1479
1480 2007-05-31  Jackson Harper  <jackson@ximian.com>
1481
1482         * TextBoxBase.cs: These seem to be the correct values.
1483
1484 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
1485
1486         * FileDialog.cs: When close dialog with ok set filterindex using combobox
1487         value. Fixes #81784.
1488
1489 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
1490
1491         * Control.cs: Implement 2.0 scaling methods.
1492
1493 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1494
1495         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
1496           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
1497           corcompare issues.
1498
1499 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1500
1501         * ProgressBar.cs: Implemented missing 2.0 members.
1502
1503 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1504
1505         * Control.cs: Corcompare issues.
1506         * MessageBox.cs: Implemented missing 2.0 functions.
1507
1508 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1509
1510         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
1511           Implemented more 2.0 members.
1512
1513 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1514
1515         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
1516           null (strange, but it seems to happen when running unit tests).
1517
1518 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1519
1520         * ContainerControl.cs: Set active_control even earlier, before 
1521         firing any events, and undo it if validation returns false.
1522
1523 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1524
1525         * ContainerControl.cs: Raise Validation and Enter/Leave events
1526         even if there is no Form and set active_control earlier, just
1527         before firing Enter events (toshok's patches). Fixes #80647.
1528
1529 2007-05-30  Jackson Harper  <jackson@ximian.com>
1530
1531         * TextControl.cs: Redid the pageup/pagedown a little to simplify
1532         things and fix bug #81311.
1533
1534 2007-05-30  Jackson Harper  <jackson@ximian.com>
1535
1536         * X11Dnd.cs: Now that we have our own event loop, we need to
1537         cancel when we get a mouseup but it won't be accepted.
1538
1539 2007-05-30  Chris Toshok  <toshok@ximian.com>
1540
1541         * DataGrid.cs (set_CurrentCell): guard against negative
1542         column/row.
1543
1544         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
1545         array index syntax instead of looping over the property names.
1546
1547         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
1548         and set IsInEditOrNavigateMode to false there.
1549
1550 2007-05-30  Jackson Harper  <jackson@ximian.com>
1551
1552         * TreeView.cs: Make sure we don't get a bad visible order when
1553         setting to the top node.  Fixes some misc crashing in
1554         ControlInspector.
1555
1556 2007-05-30  Andreia Gaita  <avidigal@novell.com>
1557
1558         * UserControl.cs: Add 2.0 AutoSizeMode
1559
1560 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1561
1562         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
1563
1564 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1565
1566         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
1567         lines. Fixes #80285. 
1568
1569 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1570
1571         * DataGridColumnStyle.cs: Add char trimming column header text format. 
1572
1573 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
1574
1575         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
1576         Fixes #80147.
1577
1578 2007-05-29  Jackson Harper  <jackson@ximian.com>
1579
1580         * TreeNode.cs: Fix off by one on calculating whether or not a node
1581         is visible.
1582
1583 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
1584
1585         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
1586         * ScrollableControl.cs: Force an UpdateDistances when we move the
1587         scrollbars.
1588         [Fixes bug #80605]
1589
1590 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1591
1592         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
1593         update the page setup screen.
1594
1595 2007-05-29  Andreia Gaita  <avidigal@novell.com>
1596
1597         * PageSetupDialog.cs: Fix landscape mode.
1598
1599 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1600
1601         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
1602         IconSizeHorizontalSpacing.
1603
1604 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1605
1606         * ListView.cs: The declaration of prev_tooltip_item should be inside
1607         a NET_2_0 conditional (avoid a warning).
1608
1609 2007-05-28  Andreia Gaita  <avidigal@novell.com>
1610
1611         * PageSetupDialog.cs: Implement PrintPreview control to display
1612         the preview thumbnail. Change unit conversion to use 
1613         PrinterUnitConvert methods.
1614         
1615         Note: there is a huge bug in ms.net where the default margins are 
1616         interpreted as centimeters (?), when in fact they are set in inches. When 
1617         loading the page setup dialog initially (ms.net), the default margins 
1618         are set to 1 inch, and the dialog shows them with value 10, when in fact 
1619         it should be 25 (properly converted). Our dialog doesn't have this bug.
1620         
1621         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
1622         RectangleF.
1623         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
1624
1625 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1626
1627         * ListView.cs:
1628         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
1629         items.
1630
1631 2007-05-28  Andreia Gaita  <avidigal@novell.com>
1632
1633         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
1634         an IntPtr on csc (it builds fine on mcs, could it be a compiler
1635         bug?), convert the ptr to Int32 first.
1636
1637 2007-05-28  Jackson Harper  <jackson@ximian.com>
1638
1639         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
1640         recieved, we will exit the dnd tracking loop.
1641
1642 2007-05-28  Jackson Harper  <jackson@ximian.com>
1643
1644         * X11Dnd.cs: Keep tracking until the xdnd finished event is
1645         recieved. TODO: I should probably stick a timer on the dropped
1646         event, and finish the drag if the XDND Finished event never shows
1647         (because some apps don't seem to send it).
1648
1649 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
1650
1651         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
1652         #81733.
1653
1654 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1655
1656         * MonthCalendar.cs: Only mark the keypresses we actually handle as
1657           handled.
1658
1659 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1660
1661         * MonthCalendar.cs: Set the size after initializing all the relevant
1662           variables. Fixes #81742.
1663
1664 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1665
1666         * KeyEventArgs.cs: Fix typo.
1667
1668 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
1669
1670         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
1671         to match MS. Fixed MinDate to only accept value less than or equal
1672         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
1673         Removed TODO's that are now verified by unit tests.
1674
1675 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
1676
1677         * TreeNodeCollection.cs: Minor corrections to exceptions to match
1678         MS.
1679
1680 2007-05-25  Jackson Harper  <jackson@ximian.com>
1681
1682         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
1683         it's own message loop.
1684         * XplatUIX11.cs: Remove some of the dnd hooks
1685
1686 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
1687
1688         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
1689         instead of MinimizedWindowSize.
1690
1691 2007-05-25  Jackson Harper  <jackson@ximian.com>
1692
1693         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
1694
1695 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1696
1697         * KeyEventArgs.cs: Added SuppressKeyPress.
1698         * Control.cs: Added support for SuppressKeyPress.
1699
1700 2007-05-24  Andreia Gaita  <avidigal@novell.com>
1701
1702         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
1703         problems with PieChart. suppress_validation should not be a counter,
1704         if there are several BeginInit calls, the first EndInit will 
1705         activate validation. Fix exceptions thrown by set_Value.
1706         * UpDownBase.cs: ValidateText only if it's the user editing it.
1707
1708 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1709
1710         * ListControl.cs: FilterItemOnProperty should return the filtered
1711         item proeprty even if DataSource is null. The same applies for
1712         GetItemText. Fixes #80427.
1713
1714 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
1715
1716         * Control.cs: If a control doesn't have a parent when it's Dock is
1717         set, but it has children, it needs to do a layout.  Fixes some nested
1718         controls issues.  [Fixes bug #81199]
1719
1720 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1721
1722         * ComboBox.cs: If there are few items in the drop down list, make it
1723           the exact size the items need, no bigger. Fixes #81612.
1724
1725 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
1726
1727         * Application.cs: When we have captured the keyboard for a menu,
1728         check for mouse down events in case we need to close the menu.
1729         * Control.cs, Form.cs: Remove mouse down checks for menus.
1730
1731 2007-05-24  Jackson Harper  <jackson@ximian.com>
1732
1733         * TextControl.cs: Handle tabs in non multiline mode a little
1734         differently.
1735
1736 2007-05-24  Jackson Harper  <jackson@ximian.com>
1737
1738         * TextControl.cs: We need to manually break apart tabbed text and
1739         move the tabs, since the system.drawing tabbing mechanism relies
1740         on tab stops.
1741         * TextBoxBase.cs: Move the caret properly when the user enters a
1742         tab.
1743
1744 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
1745
1746         * ContainerControl.cs: Don't check CanSelect before calling
1747         ProcessMnemonic.
1748         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
1749         release a KeyboardActive on click if it's not ours.
1750
1751 2007-05-23  Andreia Gaita  <avidigal@novell.com>
1752
1753         * ColumnHeader.cs: Add TypeConverter
1754
1755 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1756
1757         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
1758
1759 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1760
1761         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
1762
1763 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1764
1765         * LinkLabel.cs: Implement public Padding property.
1766
1767 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1768
1769         * LinkLabel.cs: Implement public FlatStyle.
1770
1771 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
1772
1773         * Control.cs: Apply patch from George to call parent.PerformLayout
1774         when Visible is changed.  [Fixes bugs #81118, 81718]
1775
1776 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1777
1778         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
1779
1780 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1781
1782         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
1783
1784 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
1785
1786         * ContextMenu.cs: Implement Collapse.
1787
1788 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
1789
1790         * ToolBarButton.cs: Implement Name.
1791
1792 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
1793
1794         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
1795         use current_item, it prevents some NRE. Fixes #81675.  
1796
1797 2007-05-22  Andreia Gaita  <avidigal@novell.com>
1798
1799         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
1800         without updating the text.
1801
1802 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
1803
1804         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
1805         without calling DeleteObject.  [Should fix bug #81709]
1806
1807 2007-05-22  Jackson Harper  <jackson@ximian.com>
1808
1809         * RichTextBox.cs: Set the line endings correctly, when flushing
1810         RTF text.
1811
1812 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
1813
1814         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
1815          {Width=0,Height=0}.
1816
1817 2007-05-22  Jackson Harper  <jackson@ximian.com>
1818
1819         * TreeView.cs: Setting top with a null node should set to the very
1820         top.
1821
1822 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1823
1824         * Form.cs: ShowDialog: destroy the handle when message loop is
1825           finished, matches MS behaviour. Refactor parts of WmClose into
1826           RaiseCloseEvents, that only raises events if they haven't already
1827           been raised. Fixes #81688 and #81521.
1828         * Application.cs: Don't call close on the form when exiting a modal
1829           loop, it will raise all the (Form)Closed/Closing events again if
1830           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
1831           which doesn'r raise any events it they have been raised before.
1832
1833 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
1834
1835         * Control.cs: Add OnPrint.
1836         * ToolStrip.cs: Add GetChildAtPoint.
1837         * ToolStripContainer.cs: Add OnRightToLeftChanged.
1838         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
1839
1840 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
1841
1842         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
1843
1844 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1845
1846         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
1847           isn't visible anymore. Fixes #81651.
1848
1849 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1850
1851         * Control.cs: WmShowWindow: Update children's z-order after setting
1852           their parent. SetParent may show the window, thereby corrupting
1853           z-order, since the window will be shown on top.
1854         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
1855           multiple (and redundant) WM_SHOWWINDOW messages.
1856         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
1857           event has already been raised.
1858         * Form.cs: Change is_changing_visible_state to a counter, since
1859           SetVisibleCore can be called recursively. CreateHandle: when
1860           creating mdi children, send (De)Activated events.
1861         * MdiClient.cs: Update use of is_changing_visible_state.
1862         * Application.cs: OnThreadException: Surround exception handling with
1863           try/finally to ensure we always reset the error-handling state
1864           before leaving.
1865
1866 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1867
1868         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
1869           (#81704).
1870
1871 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1872
1873         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
1874         SmallIcon views, now that we have a standarized horizontal spacing.
1875
1876         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
1877         4, just like the other views (Match .Net).
1878
1879 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
1880
1881         * Control.cs: Delay calculating anchor distances until we actually layout.
1882         Always query the WM for the actual size and location it put us at instead of
1883         only when we send negative values.
1884         [Fixes bugs #81694, 81695]
1885
1886 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1887
1888         * Application.cs: Avoid a possible stack overflow when trying to exit
1889           the application.
1890
1891 2007-05-19  Marek Safar  <marek.safar@gmail.com>
1892
1893         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
1894         enum value.
1895
1896 2007-05-19  Andreia Gaita  <avidigal@novell.com>
1897
1898         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
1899         * NumericUpDownAcceleration.cs, 
1900           NumericUpDownAccelerationCollection.cs: Added 2.0
1901           implementation.
1902
1903 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
1904
1905         * RichTextBox.cs: Recalculate the document after the ScrollBars
1906         property is changed. Fixes bug #81681.
1907
1908 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
1909
1910         * DataObject.cs: Implement 2.0 methods.
1911
1912 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1913
1914         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
1915         in the center of the checkbox, not in the left-top corner. 
1916         Fixes #80037.
1917
1918 2007-05-18  Jackson Harper  <jackson@ximian.com>
1919
1920         * RichTextBox.cs: Recalculate the document after the scrollbars
1921         property is changed.
1922         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
1923         81486.
1924
1925 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1926
1927         * CreateParams.cs: Make HasWindowManager marginally faster.
1928         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
1929           into Hwnd so that other drivers can use it as well.
1930         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
1931           the default location from Hwnd. Fixes MDI client windows always
1932           showing up at (0,0) in Windows (Win32 won't set the default
1933           location since the window styles aren't correct).
1934
1935 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
1936
1937         * TreeView.cs: Modified DoubleBuffered to just use the base
1938         implementation.
1939
1940 2007-05-18  Jackson Harper  <jackson@ximian.com>
1941
1942         * TreeView.cs: Set the top node to the last child node when
1943         expanding all
1944         - When we get focus, if there is no selected node, use the top
1945         node.
1946
1947 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
1948
1949         * KeysConverter.cs: Add CanConvertTo.
1950         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
1951         * LinkConverter.cs: Added.
1952
1953 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
1954
1955         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
1956         it prevents error when file dont have write access. Fixes #81669 and #81667.  
1957
1958 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
1959
1960         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
1961         button text. Fixes #79640.  
1962
1963 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
1964
1965         * Control.cs: According to MSDN controls created in the designer theres 
1966         keyboard accelerators visible by default. So included check for design
1967         in ShowKeyboardCuesInternal.  
1968
1969 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
1970
1971         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
1972         text. Fixes #81621.  
1973
1974 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
1975
1976         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
1977         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
1978
1979 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
1980
1981         * Control.cs: Finish implementation of UI State using WmChangeUIState
1982         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
1983         in some controls to check for show_keyboard_cues to draw accell keys "_".  
1984
1985 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1986
1987         * ListBox.cs: When calculating the horizontal scrollbar
1988         in single column mode, don't use values less than 0 for
1989         Maximum. Fixes #81474.
1990
1991 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1992
1993         * ListBox.cs: Throw the some missing exceptions in
1994         ListBox.ObjectCollection methods.
1995
1996 2007-05-17  Jackson Harper  <jackson@ximian.com>
1997
1998         * TextBoxBase.cs: Recalculate the document when the word wrap
1999         value has changed. This fixes 81488.
2000
2001 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2002
2003         * Clipboard.cs: Implement missing GetText overload.
2004
2005 2007-05-17  Chris Toshok  <toshok@ximian.com>
2006
2007         * Control.cs (CheckDataBindings): remove the binding_context arg
2008         to binding.Check.
2009
2010         * CurrencyManager.cs (OnItemChanged): fix this now that
2011         BindingManagerBase is fixed. also remove the comment telling where
2012         the fix should go.  We set transfering_data to true/false around
2013         the call to PushData to keep UpdateIsBinding from being called.
2014         (ListChangedHandler): remove the extra OnMetaDataChanged call for
2015         PropertyDescriptorAdded in the 1.1 case.  The extra call is
2016         actually generated by System.Data generating 2 metadata changed
2017         events of its own per column add.  The fix should go there.  Add a
2018         comment to that affect in our test's Assert.Ignore.
2019
2020         * BindingManagerBase.cs: Rework PullData and PushData slightly.
2021         we keep a boolean flag (transfering_data) that keeps us from
2022         calling UpdateIsBinding multiple times if we re-enter either of
2023         them.
2024
2025         * ControlBindingsCollection.cs (AddCore): remove the
2026         binding_context arg to binding.Check.
2027
2028         * Binding.cs (IsBinding): don't check if we're binding here, just
2029         return our cached value.  we update it in UpdateIsBinding.
2030         (Check): don't take the binding_context arg, we'll just use our
2031         control's.  Also, for some reason MS doesn't use the data member
2032         field when getting the bindingmanager for this binding.  it just
2033         uses the datasource.  Make this method callable multiple times,
2034         and only do the is_null_desc stuff if manager.Position != -1 (so
2035         we don't get an exception accessing manager.Current).
2036         (UpdateIsBinding): move the code from IsBinding here.
2037         (PositionChangedHandler): call Check here to we can initialize
2038         things that require a non- -1 position.
2039
2040 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2041
2042         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
2043         control.
2044
2045 2007-05-17  Andreia Gaita  <avidigal@novell.com>
2046
2047         * TabControl.cs: Add 2.0 methods and events, including
2048         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
2049         * TabPage.cs: Add 2.0 methods
2050
2051 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
2052
2053         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
2054         keyboard_cues is properly handled by message method.  
2055
2056 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2057
2058         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
2059
2060 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
2061
2062         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
2063
2064 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
2065
2066         * Control.cs: 
2067         - WmUpdateUIState added to handle state changes, it make call to
2068         OnChangeUICues event.
2069         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
2070         SystemInformation.
2071
2072 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
2073
2074         * ImageKeyConverter.cs: Added.
2075         * TreeViewImageKeyConverter.cs: Added.
2076
2077 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2078         
2079         * ToolTips.cs: Update Text if SetToolTip is called for a control
2080         already showing the tooltip, as well as restarting its timer; show
2081         tooltip if we are inside the control bounds by the time of calling
2082         SetToolTip. Inside ShowTooltip remove the check to not show the 
2083         tooltip again for the active control (it is allowed by .Net to 
2084         show the tooltip on the same control multiple times).
2085
2086 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2087
2088         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
2089
2090 2007-05-16  Andreia Gaita <avidigal@novell.com> 
2091
2092         * ContainerControl.cs: only process tab key if there are no 
2093         modifier keys present, otherwise the control does the 
2094         tab processing, if it needs to. Fixes #81622
2095         * TabControl.cs: Fixes calculation for which tab to select on
2096         shift+ctrl+tab.
2097
2098 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2099
2100         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
2101
2102 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
2103
2104         * Control.cs: Make IsInputCharInternal to allow controls to
2105         override it and still match MS API.
2106         * TextBoxBase.cs: Override IsInputCharInternal and always
2107         return true.
2108         [Fixes bug #81616]
2109
2110 2007-05-15  Jackson Harper  <jackson@ximian.com>
2111
2112         * TextBox.cs: Disable some of the menu options when using a
2113         readonly textbox.
2114
2115 2007-05-15  Jackson Harper  <jackson@ximian.com>
2116
2117         * TextBox.cs:
2118         * TextBoxBase.cs:
2119         * RichTextBox.cs: Some new 2.0 methods
2120
2121 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
2122
2123         * FileDialog.cs: On 1.0 profile, do not support multidotted 
2124         extensions.
2125
2126 2007-05-14  Jackson Harper  <jackson@ximian.com>
2127
2128         * TextBoxBase.cs: Implement some of the new 2.0 methods.
2129         * RichTextBox.cs: We need to override these methods on 2.0.
2130         * MaskedTextBox.cs: These are implemented now
2131         * TextControl.cs: This was off by one.
2132
2133 2007-05-14  Jackson Harper  <jackson@ximian.com>
2134
2135         * TextControl.cs: Because the line endings are including in the
2136         text, we don't need to add them in anymore.
2137
2138 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2139
2140         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
2141         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
2142
2143 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2144
2145         * ToolBar.cs: Adjust size to default size when button theres no text and
2146         image, it fixes remaining issues from #81524.
2147
2148 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2149
2150         * ToolBar.cs: 
2151         - When not flat call redraw to recalculate sizes on creare handle to match
2152         win32 behavior.
2153         - Revert 77220 because it causes some regressions in toobar
2154         button.
2155
2156 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2157
2158         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
2159           now actually enters a usable state.
2160
2161 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2162
2163         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
2164         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
2165         3 buttons.
2166
2167 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2168
2169         * ToolBar.cs: Save default_size on create handle to use later for buttons
2170         without text, needed to mimic win32 behavior.
2171
2172 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
2173
2174         * ToolBar.cs: Fix button layour to best fit width or height according to
2175         vertical or not. Fixes #81524.
2176
2177 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2178
2179         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
2180         toolbar size info because different styles theres different sizes.
2181         Fixes #81522.
2182
2183 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2184
2185         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
2186         if we are using checkboxes, checked is true, and we have less
2187         than two images in StateImageList; for the 1.1 in the same scenario
2188         draw the first image if we have at least one image in StateImageList.
2189         Fixes part of #81191.
2190
2191 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2192
2193         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
2194         the owner's Items collection on merge.
2195
2196 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2197
2198         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
2199         * ToolStripItemCollection.cs: Lots of fixes to when events get called
2200         and parent/owner gets changed based on gert's unit tests.
2201
2202 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2203
2204         * MaskedTextBox.cs: Started implementing parts of it.
2205
2206 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2207
2208         * ListView.cs: When clicking the checkbox on the items
2209         take into account the double clicks even if we have only
2210         one image in StateImageList (only for 1.0/1.1). Also 
2211         generate an extra change of checked state when we receive
2212         the second click on checkbox (match .Net behaviour). 
2213         Fixes part of #81191.
2214
2215 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
2216
2217         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
2218
2219 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
2220
2221         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
2222         even if OnLoad is overriden and base.OnLoad is not called.
2223         [Fixes bug #81582]
2224
2225 2007-05-10  Andreia Gaita  <avidigal@novell.com>
2226
2227         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
2228         shame. (I blame my ever-persisting and annoying cold)
2229
2230 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2231
2232         * ListView.cs: Don't eat navigation keys.  Let them flow through to
2233         KeyDown/KeyPress routines.  [Fixes bug #81569]
2234
2235 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2236
2237         * ListView.cs: When handling keys for selecting the item based off
2238         keyboard input, do not consider keys pressed with Alt or Control.  Also,
2239         correctly handle keys when the Shift key is down. [Fixes bug #81578]
2240
2241 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2242
2243         * Control.cs: When using UseWaitCursor, we have to store the requested
2244         Cursor to use when UseWaitCursor is turned off.
2245
2246 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
2247
2248         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
2249         to false.
2250         * Application.cs: Use PreProcessControlMessage instead of
2251         PreProcessMessage.
2252         * PreProcessControlMessage.cs: Make internal for 1.1.
2253
2254 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2255
2256         * Control.cs: Add InternalContains focus property, which hast the same
2257         functionality of ContainsFocus, but also including implicit controls.
2258         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
2259         since we need to know if the focus is contained in our implicit
2260         ItemControl when calculating Layout. Fixes part of #80888.
2261
2262 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
2263
2264         * ToolTip.cs: Remove center form string alignment as it must be align to
2265         left.
2266
2267 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
2268
2269         * ToolStripItemCollection.cs: Set the new item's parent and owner
2270         in Insert like we do in Add.  [Fixes bug #81568]
2271
2272 2007-05-08  Jackson Harper  <jackson@ximian.com>
2273
2274         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
2275         - Off by one error in SetTop
2276         - Disable DoubeBuffering
2277         
2278 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2279
2280         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
2281           control as much as necessary in order to make it entirely visible,
2282           instead of centering the control in the container (matches MS
2283           behaviour). CalculateCanvasSize: we need to take the current scroll
2284           position into account when calculating the maximum canvas,
2285           otherwise the following scenario will fail: resize so that the
2286           scrollbars appear, use the scrollbars to scroll, resize again
2287           smaller, and now the canvas size is too small. Recalculate: when
2288           showing scrollbars make sure they start off at 0, and try to scroll
2289           the active control into view. Fixes #79540. HandleScrollBar: don't
2290           scroll anywhere if the scrollbar isn't visible.
2291
2292 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2293
2294         * ListView.cs: When focus changed, call Layout/Invalidate
2295         in the focused item to update the selected state (should show
2296         entire label when ListView is focused, and a part of it if is not).
2297         * ListViewItem.cs: When doing layout for LargeIcon, take into account
2298         for displaying the entire label not only the Focused state of the
2299         item, but also the Focused state of the ListView (match .Net
2300         behaviour).
2301
2302 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2303
2304         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
2305         Implement UseWaitCursor. 
2306
2307 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2308         Applying contributed patch from Sergey Volk.
2309
2310         * Clipboard.cs: Implement SetDataObject retry logic and new overload
2311         of SetDataObject.
2312         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
2313
2314 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2315
2316         * Control.cs: Implement DrawToBitmap.
2317
2318 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2319         Applying contributed patch from Stefan Noack.
2320         
2321         * Control.cs: Add [Get|Set]AutoSizeMode.
2322
2323 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2324
2325         * MdiClient.cs: Unmerge menus when the last child is closed.
2326
2327 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
2328
2329         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
2330         * ToolStripManager.cs: Call Merge on DropDowns.
2331         [Fixes bug #81477]
2332
2333 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2334
2335         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
2336           uints.
2337         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
2338           visibility. We can't create forms visible, since we have to set the
2339           owner before making the form visible (otherwise Win32 will do
2340           strange things with task bar icons). The problem is that we set the
2341           internal is_visible to true before creating the control, so
2342           is_changing_visible_state is the only way of determining if we're
2343           in the process of creating the form due to setting Visible=true -
2344           this works because SetVisibleCore explicitly makes the form
2345           visibile afterwards anyways. Fixes #80775.
2346
2347 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2348
2349         * ThemeWin32Classic.cs: When drawing ListViewItems,
2350         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
2351         or LargeIcon _and_ item is not focused (match .Net behaviour).
2352
2353 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2354
2355         * Control.cs, Form.cs: Fix some obsolete method warnings.
2356
2357 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
2358
2359         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
2360         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
2361
2362 2007-05-04  Andreia Gaita  <avidigal@novell.com>
2363
2364         * ContainerControl.cs: Fix active_control attribution when going
2365         up the parent chain so that the first parent container gets the control
2366         and the rest of the parent containers get the child containers (skips
2367         non-containers). Fixes #80729
2368
2369 2007-05-04  Randolph Chung  <tausq@debian.org>
2370
2371         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
2372         [Fixes bug #81499]
2373
2374 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2375
2376         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
2377           takes a size parameter, since the CreateParam's size isn't true for
2378           minimized forms. Fixes #81518,
2379
2380 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2381
2382         * Form.cs: Add OnDeactivateInternal.
2383         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
2384
2385 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2386
2387         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
2388           accessing the parent. Fixes #81508.
2389
2390 2007-05-03  Chris Toshok  <toshok@ximian.com>
2391
2392         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
2393         2.0 block, pass listposition + 1 to ChangeRecordState when a row
2394         was added before the current listposition.  Fixes the
2395         TestInsertRowBeforeCurrent unit test.
2396
2397 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
2398
2399         * Application.cs: Add RaiseIdle.
2400         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
2401         XplatUIX11.cs: Implement RaiseIdle.
2402
2403 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
2404         corcompare work: N - Z
2405         * NotifyIcon.cs
2406         * ProgressBar.cs
2407         * RadionButton.cs
2408         * ScrollableControl.cs
2409         * SplitContainer.cs
2410         * SplitterPanel.cs
2411         * StatusBar.cs
2412         * SystemInformation.cs
2413         * TabControl.cs
2414         * TableLayoutControlCollection.cs
2415         * TableLayoutPanel.cs
2416         * TabPage.cs
2417         * ToolBar.cs
2418         * ToolBarButton.cs
2419         * ToolStrip.cs
2420         * ToolStripComboBox.cs
2421         * ToolStripContainer.cs
2422         * ToolStripContentPanel.cs
2423         * ToolStripDropDown.cs
2424         * ToolStripDropDownItem.cs
2425         * ToolStripDropDownMenu.cs
2426         * ToolStripItem.cs
2427         * ToolStripItemCollection.cs
2428         * ToolStripMenuItem.cs
2429         * ToolStripPanel.cs
2430         * ToolStripSplitButton.cs
2431         * ToolTip.cs
2432         * TreeNode.cs
2433         * TreeNodeCollection.cs
2434         * TreeNodeMouseHoverEventArgs.cs
2435         * TreeView.cs
2436
2437 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
2438
2439         * ContextMenu.cs: Add public method Show with alignment property to 2.0
2440         stuff. Thanks aatdark for the patch. 
2441
2442 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2443
2444         * GridItem.cs: Implement 2.0 Tag property.
2445
2446 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
2447
2448         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
2449         count instead of Nodes.Length.  [Fixes bug #81448]
2450
2451 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2452
2453         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
2454         [Fixes bug #81506]
2455
2456 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2457         corcompare work: A - M
2458         * BindingNavigator.cs
2459         * Button.cs
2460         * ButtonBase.cs
2461         * CheckBox.cs
2462         * Control.cs
2463         * FlowLayoutPanel.cs
2464         * Form.cs
2465         * Label.cs
2466         * LinkLabel.cs
2467         * ListView.cs
2468
2469 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
2470
2471         * Application.cs: Give toolstrips a chance to process mnemonics.
2472         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
2473         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
2474         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
2475
2476 2007-05-01  Jackson Harper  <jackson@ximian.com>
2477
2478         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
2479         wider area too.
2480         - Don't set the BoundsSpecified
2481
2482 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2483
2484         * Application.cs: When using the toolstrip shortcut mechanism, allow the
2485         message to pass through to a regular control if it hosted by a toolstrip.
2486         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2487         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
2488
2489 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2490
2491         * TextRenderer.cs: Use the flags argument when using the MeasureString
2492         fallback algorithm.
2493
2494 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
2495
2496         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
2497         the MDI menu item.  [Fixes bug #81483]
2498
2499 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
2500
2501         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
2502         string. When setting Name to null, use zero-length string instead.
2503
2504 2007-04-29  Andreia Gaita  <avidigal@novell.com>
2505
2506         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
2507         DeselectTab). Implement missing 2.0 TabPageCollection methods
2508         (Add, ContainsKey, RemoveByKey, IndexOfKey)
2509
2510 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
2511
2512         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
2513
2514 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
2515
2516         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
2517         Fixes bug #81479. Include details of exception when LoadFile fails.
2518
2519 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
2520
2521         * DrawListViewSubItemEventArgs.cs: Added missing setter
2522
2523 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2524
2525         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
2526         Hide methods (not complete). Implement missing 2.0 OnPopup event.
2527
2528 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2529
2530         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
2531         removed in ly last commit (it was breaking the Label edit feature).
2532
2533         * ThemeWin32Classic.cs: When drawing a ListViewItem use
2534         StringAlignment.Near for LineAlignment (match .Net).
2535
2536 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2537
2538         * TabControl.cs: Change SetTab so it adds the tabpage to the list
2539         of controls if it isn't already there - was blowing up when doing
2540         tabcontrol.TabPages[i]=new TabPage(). 
2541         SetTab now does a replace by removing the page at the index. 
2542         Add a new InsertTab method that inserts a page in a given index 
2543         instead of replacing. 
2544         Implements TabPageCollection.Insert(int, TabPage).
2545
2546 2007-04-27  Chris Toshok  <toshok@ximian.com>
2547
2548         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
2549         internal handler that can be invoked from our subclasses.)  Also,
2550         add a comment to PushData about how we need to fix it.
2551
2552         * CurrencyManager.cs: tons of changes here.  trying to get things
2553         matching the behavior of .net wrt event orders (ItemChanged,
2554         CurrentChanged, PositionChanged.)  I've implemented a private .net
2555         symbol (ChangeRecordState) that appears in stack traces because
2556         it's actually easier to do this than to effective inline all its
2557         various behaviors at every call site.
2558
2559         * RelatedPropertyManager.cs: guard against an exception here by
2560         not using parent.Current if the position is set to -1 (if the
2561         parent datasource is cleared, for instance).
2562
2563         * Binding.cs: don't parse data in PushData (this might be wrong,
2564         but it jives with MS's behavior.)  Also, don't call PushData when
2565         we get a CurrentChanged event.
2566
2567 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2568
2569         * WebBrowser.cs,
2570           WebBrowserBase.cs,
2571           WebBrowserSiteBase.cs,
2572           HtmlDocument.cs: Added stubbed out classes, no real implementations 
2573           yet.
2574
2575 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2576
2577         * MainMenu.cs: In draw method without parameters call draw method with 
2578         PaintEvent, another one (just rect) adjust rectangle and we dont need it
2579         as Rect property is already adjusted. Fixes #80694.
2580
2581 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
2582
2583         * Application.cs: Need to handle keyboard menu deselection here.
2584         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
2585         navigation, allowing keyboard to work on X11.
2586         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
2587
2588 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2589
2590         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
2591         menu bar. It fixes some drawing issues in menu bar.
2592
2593 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
2594
2595         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
2596         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
2597         when <alt> key is pressed.
2598
2599 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
2600
2601         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
2602         example just set visible to false and make this prevent from other problems.
2603         In SystrayAdd always remove pending expose. Fixes #81072.
2604
2605 2007-04-26  Marek Safar  <marek.safar@gmail.com>
2606
2607         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
2608         value is set.
2609
2610 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2611
2612         * ListView.cs: Added three missing 2.0 events and corresponding
2613         EventHandlers. Added the OwnerDraw property.
2614         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
2615
2616 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2617
2618         * DrawListViewItemEventArgs.cs
2619         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
2620
2621 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
2622
2623         * TextControl.cs: Fixed typo in constructor
2624
2625 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
2626
2627         * Application.cs: Create a shortcut path so that currently selected
2628         MenuStrips can intercept keyboard events without having focus.
2629         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
2630         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
2631         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
2632         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
2633         generate WM_SYSCOMMAND message in X11 for other platforms.
2634         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
2635         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
2636         * ToolStripSplitButton.cs: Add DefaultItem property.
2637         
2638 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
2639
2640         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
2641         fixes some menu draw problem on Windows with border diferent from default
2642         it also fixes #81403.
2643
2644 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2645
2646         * Form.cs: Refactor WndProc into separate methods, just like Control is
2647           doing it.
2648
2649 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2650
2651         * Control.cs: set_Text: move the call to the driver into a seperate
2652           virtual method so that Form can override it.
2653         * MaskedTextBox.cs: Corcompare fixes.
2654         * Form.cs: Override UpdateWindowText and only update the styles if the
2655           form has been shown (fixes #81405).
2656
2657 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
2658
2659         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
2660         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
2661         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
2662         the form lost focus or another control was clicked.
2663
2664 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
2665
2666         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
2667         fixed.
2668
2669 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2670
2671         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
2672           DrawListViewItemEventHandler.cs,
2673           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
2674           Added.
2675         * X11Structs.cs: More ToString implementation.
2676
2677 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
2678
2679         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
2680         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
2681
2682 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2683
2684         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
2685           handle.
2686         * FormCollection.cs: Don't add a form if it's already in the
2687           collection.
2688         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
2689           according to behaviour and MSDN. The ownerWin32 is the active
2690           window at the moment when we call ShowDialog, not the context's
2691           main form (the context's main form may open another form that opens
2692           a form with ShowDialog, the win32 owner is the second form). Add
2693           and remove forms to the Application.OpenForms in other places to
2694           better match MS behaviour. Add an IsActive property that raises
2695           On(de)Activated only if the active state has changed (we were
2696           raising OnDeactivated before OnActivated while creating forms).
2697         * Application.cs: Refactor Enabling/Disabling of windows for modal
2698           dialog loops out to separate methods, and restore the thread
2699           context when we quit the method. Fixes #81407.
2700
2701 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2702
2703         * ListView.cs: In ItemControl.HandleClicks, also fire 
2704         2.0 MouseClick or MouseDoubleClick events on the parent,
2705         not only the Click/DoubleClick events.
2706
2707 2007-04-24  Andreia Gaita  <avidigal@novell.com>
2708
2709         * TableLayoutSettings.cs: 
2710         - Added a GetControls method and a support structure to help the 
2711         TypeConverter to enumerate the controls for     serialization. 
2712         - Added a new serialization constructor. 
2713         - Added a isSerialized flag initialized to true on the 
2714         serialization constructor so that the TableLayoutPanel.LayoutSettings 
2715         setter does not throw the designed NotSupportedOperation exception
2716         when the object is built through deserialization.
2717         - Implemented GetObjectData
2718         
2719         * TableLayoutPanel.cs: Added check on LayoutSettings.
2720
2721 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2722
2723         * ListView.cs: Report Click and DoubleClick events to the parent
2724         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
2725         from breaking the click count state when using dialog forms (Control
2726         reports the clicks in a similar fashion). In the previous behaviour
2727         the last WM_LBUTTONUP message in a  double click was sent to the
2728         ListView's form, instead of the ListView, which was breaking the click
2729         count for it. Fixes #80387.
2730
2731 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
2732
2733         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
2734
2735 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
2736
2737         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
2738         us from created dropdowns for menu items that do not have subitems.
2739         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
2740         Check HasDropDownItems before calling DropDown so a dropdown will not be
2741         created if it isn't needed.
2742
2743 2007-04-24  Jackson Harper  <jackson@ximian.com>
2744
2745         * TreeView.cs: Set the first node to the selected node when we get
2746         focus if there is no selected node.
2747
2748 2007-04-24  Andreia Gaita  <avidigal@novell.com>
2749
2750         * MimeIcon.cs: remove using blocks so that image streams are
2751         not disposed of. Fixes #80151
2752
2753 2007-04-24  Jackson Harper  <jackson@ximian.com>
2754
2755         * TextBoxBase.cs: Fixup the height of textboxes when the control
2756         is created.
2757
2758 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
2759
2760         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
2761         for each ToolStripItem when the parent's RightToLeftChanged is called.
2762
2763 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2764
2765         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
2766           Fixes #80163.
2767         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
2768           property, so that the setter can be overriden too.
2769         * TextBox.cs: Change GetContextMenuInternal() to use
2770           ContextMenuInternal.
2771
2772 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2773
2774         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
2775           #81406.
2776
2777 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2778
2779         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
2780           #81406.
2781
2782 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2783
2784         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
2785           avoid duplicate work. Mostily skeleton code, it's not working at
2786           all yet.
2787
2788 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
2789
2790         * NotifyIcon.cs : stub for MouseClick event
2791         * Application.cs: stub for SetUnhandledExceptionMode
2792
2793 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
2794
2795         * BindingNavigator.cs : Initial (partial) implementation
2796
2797 2007-04-23  Jackson Harper  <jackson@ximian.com>
2798
2799         * TreeView.cs: Do not create the treeview's handle when setting
2800         the scroll position.
2801         - ExpandAll needs to compute the scrollbars so it knows which
2802         position to set the bar too.
2803         * TreeNode.cs: 
2804         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
2805
2806 2007-04-23  Jackson Harper  <jackson@ximian.com>
2807
2808         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
2809         key. Fixes #81408.
2810
2811 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
2812
2813         * ToolStripItem.cs: Make GetImageSize internal.
2814         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
2815         need to draw an item.  Fixes a reported issue where images on menus
2816         that were not 16x16 were drawing incorrectly.
2817
2818 2007-04-21  Miguel de Icaza  <miguel@novell.com>
2819
2820         * Padding.cs: Use the converter, fixes the resgen2 issue with
2821         XMLNotePad. 
2822
2823 2007-04-21  Jackson Harper  <jackson@ximian.com>
2824
2825         * TreeView.cs: Dont try to unhighlight the selected node if there
2826         isn't a selected node.
2827
2828 2007-04-21  Jackson Harper  <jackson@ximian.com>
2829
2830         * UpDownBase.cs:
2831         * TextBoxBase.cs:
2832         * ListView.cs:
2833         * ListBox.cs:
2834         * TreeView.cs: Use the InternalBorderStyle property to set the
2835         initial border style, this forces the client rectangle to be sized
2836         correctly.
2837
2838 2007-04-20  Jackson Harper  <jackson@ximian.com>
2839
2840         * TreeView.cs: Simplify scrolling to the last node after expanding
2841         all.
2842         - Fix some off by ones with setting the bottom.
2843
2844 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
2845
2846         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
2847         that.  We were incorrectly doing it the other way around.  Also,
2848         update ClientSize if we change the BorderStyle before the control
2849         is created.
2850
2851 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
2852
2853         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
2854         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
2855         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
2856         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
2857         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
2858         Caption to CaptionHeight.
2859         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
2860         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
2861         and FixedFrameBorderSize to return value from current XplatUI driver.
2862         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
2863         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
2864         and FixedFrameBorderSize using win32 API. Renamed Caption to
2865         CaptionHeight.
2866         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
2867         * SystemInformation.cs: Fixed typo in BorderSize.
2868
2869 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
2870
2871         * XplatUI.cs: Added MenuAccessKeysUnderlined.
2872         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
2873         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
2874         returning false.
2875         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
2876         value from XplatUI driver.
2877         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
2878         SystemParametersInfo.
2879         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
2880         override.
2881         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
2882         returning false.
2883
2884 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2885
2886         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
2887
2888 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2889
2890         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
2891
2892 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
2893
2894         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
2895         MenuStrips that contain ToolStripSeparators.
2896
2897 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2898
2899         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
2900           DefineStdCursorBitmap.
2901         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
2902           has been created off a standard cursor. This is used to get a
2903           bitmap of the standard cursor when Draw or DrawStretched is called
2904           in order to draw the cursor.
2905         * X11Structs.cs: Added XcursorImage and XcursorImages.
2906         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
2907           DefineStdCursorBitmap.
2908         * Cursors.cs: Update all relevant creations of Cursor to use the new
2909           internal constructor.
2910
2911 2007-04-19  Jackson Harper  <jackson@ximian.com>
2912
2913         * TextBox.cs: Move the has_been_focused into the base control, so
2914         some of the text adding methods can manipulate it (probably time
2915         for a better name for this flag too).
2916         - Call a new version of selectall that doesn't scroll
2917         * TextBoxBase.cs: When we append text, if the document is empty,
2918         don't scroll.  If the document has text already, we scroll to the
2919         end of the appended text.
2920         - When the text is changed, we reset the has_been_focused, so the
2921         next time the control gets focused, all the text is selected.
2922
2923 2007-04-19  Jackson Harper  <jackson@ximian.com>
2924
2925         * TextControl.cs: Move the margins to the document, add a method
2926         so the margin sizes can be updated.
2927         * TextBoxBase.cs: When the border style is changed, update the
2928         border sizes.
2929
2930 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
2931
2932         * Control.cs: Respect DefaultPadding.
2933         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
2934         padding into account.
2935         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
2936
2937 2007-04-19  Jackson Harper  <jackson@ximian.com>
2938
2939         * TextControl.cs: Oops, we need to use the ClientRect not the
2940         bounds here.
2941
2942 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2943
2944         * ListView.cs: In ItemControl.ItemsMouseDown, take into
2945         account the double clicks when CheckBoxes are used and
2946         the pointer is inside the checkbox. Fixes part of #81191.
2947
2948 2007-04-18  Jackson Harper  <jackson@ximian.com>
2949
2950         * TextControl.cs: Pressing the end key shouldn't move the caret
2951         past the line ending.
2952         * TextBoxBase.cs: We can still delete if we are in the line
2953         ending and the combine will just kill the existing line ending.
2954
2955 2007-04-18  Jackson Harper  <jackson@ximian.com>
2956
2957         * TextControl.cs: We can't move lines, then invalidate their
2958         bounds, we need to get the old bounds and combine that with the
2959         new bounds.
2960         * TextBoxBase.cs: Before combining two lines for a delete, we need
2961         to invalidate the area of the old line, since that will be moved
2962         in the combine operation.
2963
2964 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
2965
2966         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
2967         with transparent background. Fixes #80482.
2968
2969 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
2970
2971         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
2972         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
2973         [Fixes bug #81391]
2974
2975 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2976
2977         * CreateParams.cs: Add a couple of helper methods and do a less string
2978           concatenation in ToString.
2979         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
2980           overload that takes a Control parameter, since this method may be
2981           called before a control is assigned to the hwnd (from
2982           CreateWindow), and update CreateWindow to use the new overload. In
2983           GetMenuOrigin subtract the title bar from the y position if the
2984           form has a window manager (since we're painting it and not X).
2985         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
2986           CreateParams to calculate the origin (since border sizes may vary).
2987           In ScreenToMenu only subtract the title height if we actually have
2988           a title.
2989         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
2990           mdi children never have menus of themselves.
2991         * InternalWindowManager.cs: Implement menu handling like form does.
2992           Added GetMenuOrigin to calculate the menu origin, can't use the
2993           CreateParams from the form like normally since it's lying.
2994         * Hwnd.cs: Implement GetBorderSize better (in the sense more
2995           windows-like) and add Inflate and comparison operators to the
2996           Borders type. When calculating MenuOrigin and it's a form with a
2997           window manager, use the window manager to calculate it.
2998
2999 2007-04-17  Chris Toshok  <toshok@ximian.com>
3000
3001         * Control.cs (CreateControl): turns out in 2.0 we don't need this
3002         OnBindingContextChanged thing here.  It's only generated from
3003         ContainerControl.OnCreateControl.  Fixes a newly written unit test
3004         - BindingTest.BindingContextChangedTest4.
3005         
3006 2007-04-17  Jackson Harper  <jackson@ximian.com>
3007
3008         * ScrollBar.cs: When setting values, make sure the current
3009         position stays within the new values range.
3010
3011 2007-04-17  Chris Toshok  <toshok@ximian.com>
3012
3013         * Control.cs (CreateControl): talk about a bizarre corner case.
3014         Don't emit OnBindingContextChanged here if we're a parentless
3015         control (i.e. if we're a form.).  Fixes
3016         BindingTest.BindingContextChangedTest2.
3017
3018 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3019
3020         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
3021         from win32. Fixes #81255.
3022
3023 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
3024
3025         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
3026         already present in CalculateButtonTextAndImageLayout.
3027
3028 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3029
3030         * XplatUIX11.cs: When setting min/max size for a window we need to
3031           translate the coordinates to x coordinates. Create an overload of
3032           SetWindowMinMax that takes a CreateParams handling this, and change
3033           SetWMStyles to call this function (can't use Control.FromHandle in
3034           the SetWindowMinMax to get the control/CreateParams from the handle
3035           because the handle might not have been assigned to the control
3036           yet). Fixes #81371.
3037
3038 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3039
3040         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
3041         if StateImageList is non-null and it has less than two items (match MS
3042         behaviour). Also, in HandleNavKeys handle the Space key, calling
3043         the new ToggleItemsCheckState method, which tries to change the
3044         checked state of the selected items. Fixes part of #81191.
3045
3046 2007-04-16  Jackson Harper  <jackson@ximian.com>
3047
3048         * RichTextBox.cs: namespace cleanup.
3049
3050 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3051
3052         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
3053
3054 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
3055
3056         [Fixes #79447]
3057         * Control.cs: Call invalidate in set_Region.
3058
3059         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
3060         it dont works here.
3061
3062 2007-04-16  Jackson Harper  <jackson@ximian.com>
3063
3064         * TextBoxBase.cs: When enter is pressed, we need to update all
3065         lines below the current.
3066
3067 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
3068
3069         * MdiClient.cs: Implement implicit menu merging for MDI
3070         children.  When a child form is active, if it has a menustrip
3071         and the parent form has a MainMenuStrip, automatically merge
3072         the menus.
3073
3074 2007-04-15  Andreia Gaita  <avidigal@novell.com>
3075
3076         * TabControl.cs: Refactored sizing methods to not repeat
3077         code all over the place. Tab bounds are now calculated
3078         as if alignment is top and single line, and only when 
3079         setting the bounds are the positions adjusted according
3080         to alignment. Replaced hardcoded positions, spacings and
3081         paddings by getting the values the ThemeEngine. 
3082         Fixes #79619.
3083         
3084         * Theme.cs: Change TabControl properties and methods so
3085         that all start with TabControl*. Added more properties
3086         to help remove hardcoded values on tabcontrol.
3087         Add CPDrawBorder3D declaration so the Theming classes
3088         can access it.
3089         
3090         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
3091
3092         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
3093         on the Theming namespace, and call the appropriate methods here.
3094         Change CPDrawBorder3D to public.
3095
3096 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3097
3098         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
3099         the control after firing the OnMouseUp event, instead of sending
3100         the message before the mentioned event. This is so we can match the
3101         MS behaviour. Fixes part of #80385.
3102
3103 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3104
3105         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
3106         RightToLeft property.
3107
3108 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
3109
3110         * ToolStrip.cs: Add properties and internal methods to support merging.
3111         * ToolStripItem.cs: Add MergeAction and MergeIndex.
3112         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
3113         not trigger reparenting or layouts.
3114         * ToolStripManager.cs: Add Merge and RevertMerge methods.
3115         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
3116         is hosting the overflow menu.
3117
3118 2007-04-13  Jackson Harper  <jackson@ximian.com>
3119
3120         * TextControl.cs: Set the line ending correctly for the first
3121         inserted line.
3122
3123 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3124
3125         * Theme.cs: Update GetMethod to get the new definition for 
3126         KnownColors.Update (and fix theme color updates).
3127
3128 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
3129
3130         * MessageBox.cs: Fix some test and button position.
3131
3132 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3133
3134         * Form.cs: Consider the implicit controls in
3135         GetRealChildAtPoint. We need it since this method
3136         is called on Form when handling the some messages in
3137         WndProc, and need to consider those implicit ones too.
3138         Fixes #80385.
3139
3140 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
3141
3142         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
3143         if there are no ShortcutKeys set.
3144         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
3145         set, use it when painting.
3146
3147 2007-04-12  Jackson Harper  <jackson@ximian.com>
3148
3149         * TextControl.cs: Fix some off-by-one issues in line duplication
3150         and insertion in the undo manager. Also, overwrite the first tag
3151         of a line on insert, if it is just a zero lengthed tag. This
3152         prevents us from getting an extra stranded tag at the beginning of
3153         the first line.
3154
3155 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
3156
3157         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
3158         to calculated proper size including when handle was not created yet.
3159
3160 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3161
3162         * MdiWindowManager.cs: When moving a form, allow the form to be moved
3163           when the mouse is outside of it's parent's client rectangle. Fixes
3164           #79982 (take 3, part 2).
3165
3166 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3167
3168         * X11Structs.cs: Add a few ToString() overrides.
3169         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
3170           the window location in a window-manager independent way. Reworked
3171           FrameExtents, it now actually works. Reworked AddConfigureNotify
3172           and ReparentNotify handling to use GetTopLevelWindowLocation
3173           instead of the earlier, more hacky solution. Reworked SetWMStyles,
3174           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
3175           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
3176           for all other windows (fixes #81281 part 1), a toolwindow is hidden
3177           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
3178           and generally refactored to do as few calculations as possible
3179           inside the lock.
3180
3181 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
3182
3183         * Theme.cs: Change "reflective-contract" between MWF and SD to 
3184         minimize # of calls, avoid Color serialization and avoid updating 
3185         every "known colors" each time a single one is updated.
3186
3187 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3188
3189         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
3190         when not readonly and the text is explicitly set. Code style updates.
3191         * DataGridTableStyle.cs: Removed extra line.
3192         * DataGrid.cs: Code style updates. Removed extra whitespace.
3193         * DataGridColumnStyle.cs: Code style updates. Removed extra 
3194         whitespace.
3195
3196 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3197
3198         * XplatUIX11.cs: Added comment that "fixes" #80021.
3199
3200 2007-04-09  Jackson Harper  <jackson@ximian.com>
3201
3202         * TextControl.cs: We don't need this -1 on the line count anymore.
3203
3204 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
3205
3206         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
3207         entered value to underlying type, and convert it back to a string to
3208         apply formatting. Modified GetFormattedValue to use TypeConverter
3209         if available.
3210
3211 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
3212
3213         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
3214         Use SubItems property when we want to ensure there's at least one
3215         subitem. Modified SubItems property to ensure there's always at least
3216         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
3217         the NRE's reported by MS.
3218
3219 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
3220
3221         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
3222         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
3223         Spaces to tabs. Removed extra tabs.
3224
3225 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
3226
3227         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3228         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
3229
3230 2007-04-06  Jackson Harper  <jackson@ximian.com>
3231
3232         * TextBoxBase.cs: When a delete removes a line, recalculate all
3233         lines below that line (they need to get offsets setup correctly)
3234         and invalidate.
3235
3236 2007-04-05  Jackson Harper  <jackson@ximian.com>
3237
3238         * TextControl.cs: We need to invalidate across the width of the
3239         document when we are invalidating multiple lines.
3240         * TextBoxBase.cs: Don't delete into the line ending.
3241
3242 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3243
3244         * ListView.cs: Restore the check for the MouseHover event
3245         in ListView. It looks like the ListView fires more than one MouseHover
3246         event when HoverSelection is true  _only_ in weird-corner scenarios, but
3247         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
3248         event.
3249
3250 2007-04-05  Mike Kestner  <mkestner@novell.com>
3251
3252         * ListView.cs : raise MouseDown before updating selection.
3253         [Fixes #80373 tab 1&3]
3254
3255 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3256
3257         * ToolStripRenderer.cs: Add static method to mirror image.
3258         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
3259         and RightToLeftAutoMirrorImage.
3260         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
3261
3262 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
3263
3264         * ToolStripSplitStackLayout.cs: Support Alignment property.
3265         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
3266
3267 2007-04-05  Jackson Harper  <jackson@ximian.com>
3268
3269         * TextControl.cs: Move around the line endings when crossing line
3270         boundaries.
3271         - When combining lines, strip the ending text off the first line.
3272
3273 2007-04-05  Jackson Harper  <jackson@ximian.com>
3274
3275         * TextControl.cs:
3276         * TextBoxBase.cs: Try to never move the cursor into the line
3277         ending.
3278         
3279 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3280
3281         * ToolStripItem.cs: Make sure we aren't firing mouse events when
3282         the item is disabled.  Also add a few missing methods.
3283
3284 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3285
3286         * ListView.cs: We don't need the MouseEnter/MouseLeave check
3287         to fire just one MouseHover event when HoverSelection is true, since
3288         .Net does fire more than one MouseHover event in that scenario. Also,
3289         fix the selection in HoverSelection, by invoking UpdateMultiSelect
3290         if MultiSelect is true, instead of only setting ListViewItem.Selected.
3291         Finally, we need to reset the Hover logic in MouseMove, even when we
3292         don't have a selected item.
3293
3294 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3295
3296         * ToolStrip.cs: Add several missing methods, properties, and events.
3297
3298 2007-04-04  Chris Toshok  <toshok@ximian.com>
3299
3300         * DataGridTextBoxColumn.cs: set the bounds of the text box to
3301         (0,0,0,0) in Commit, as MS does.
3302
3303         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
3304         make sure we set CurrentRow on a row header click *before* calling
3305         Select.  This moves the current cell (and the textbox) to the new
3306         row.  The call to Select then hides the textbox, giving us the
3307         correct behavior.  Fixes #80362.
3308
3309         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
3310         (ListChangedHandler): reorder the position/current changed events,
3311         and call UpdateIsBinding in the ItemAdded case.
3312
3313         * GridColumnStylesCollection.cs: add some columns events, one of
3314         which raises the CollectionChanged event.
3315
3316 2007-04-04  Jackson Harper  <jackson@ximian.com>
3317
3318         * TextControl.cs: When we delete multiple selection lines
3319         invalidate the selection area, don't need to do that for single
3320         lines because the final update view will handle it.
3321
3322 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
3323
3324         * Control.cs: When we CreateControl, we need to also create all of the
3325         control's children.  The child's OnLoad must also fire before the parent's
3326         OnLoad.  Fixes the toolbox size in PDN.
3327
3328 2007-04-04  Jackson Harper  <jackson@ximian.com>
3329
3330         * TextBoxBase.cs: When the user presses enter, insert a line
3331         ending into the text. (Maybe this would be a good spot for
3332         Environment.NewLine).
3333         * TextControl.cs: Remove undo manager hack, line endings get
3334         inserted properly now.
3335         
3336 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3337
3338         * MenuAPI.cs: 
3339         - Remove unneeded parameters in UpdateCursor.
3340         - Fix UpdateCursor to check if menu is active.
3341         - Call UpdateCursor when menu deactivate my click.
3342         [Fixes remaining issues from #80410]
3343
3344 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
3345
3346         * Control.cs: GetRealChildAtPoint method added, it make an
3347         recursive child control search for the point. 
3348
3349         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
3350         menu.
3351
3352         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
3353
3354 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3355
3356         * Form.cs: Fix mouse position when send back mouse event after closes
3357         menu.
3358
3359 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
3360
3361         * Form.cs: Simplify the BUTTONDOWN for active tracker.
3362
3363 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3364
3365         * Control.cs: Fix an issue where if a user resized a control inside
3366         a sizing method like OnResize, we would overwrite their explicit
3367         value.  Also, only call DefaultSize once in the constructor instead
3368         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
3369         nothing actually changed.
3370
3371 2007-04-03  Jackson Harper  <jackson@ximian.com>
3372
3373         * TextControl.cs: Don't attempt to copy text for lines with no
3374         text in them (technically this shouldn't happen, but we aren't
3375         always inserting line endings when we should be).
3376
3377 2007-04-03  Jackson Harper  <jackson@ximian.com>
3378
3379         * TextBoxBase.cs: Calculate the scrollbars before calculating the
3380         document, because this sets some of the document size properties
3381         that are needed.
3382
3383 2007-04-03  Jackson Harper  <jackson@ximian.com>
3384
3385         * TextBoxBase.cs: We need to calculate maximums even if this is
3386         not a multiline control, because the maxs are used for scrolling.
3387         - Display the caret after doing a page up/down, we need to
3388         manually display it because a proper CaretMoved event isn't
3389         triggered (this is because of the way the math is done to
3390         determine how far to scroll).
3391
3392 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
3393
3394         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
3395         (ToolBar was relying on SetBoundsCore to default the values sent 
3396         base off of BoundsSpecified.)
3397
3398 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3399
3400         * DateTimePicker.cs: Change Text so that when a null value or empty
3401           string is assigned to the test we always raise ValueChanged and
3402           TextChanged (earlier implementation would only raise ValueChanged
3403           if the current date value was different from DateTime.Now).
3404
3405 2007-04-03  Andreia Gaita <avidigal@novell.com> 
3406
3407         * ButtonBase: Call update after invalidation, fixes #80194
3408
3409 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3410
3411         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
3412           #79335.
3413
3414 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3415
3416         * XplatUIX11.cs: SetWMStyles: If the control is a form with
3417           FormBorderStyle = None, don't give the window any decorations.
3418           Fixes #81276.
3419
3420 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3421
3422         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3423         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
3424           to check for is a mix of several styles (such as WS_CAPTION for
3425           instance).
3426         * Control.cs: Don't paint an area bigger than the client area when
3427           painting the background colour. Add an internal GetCreateParams.
3428           Update calls to XplatUI.CalculateWindowRect due to API change.
3429         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
3430           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
3431           the size if it hasn't been handled by any windows. When creating
3432           and moving windows, X wants the location of the entire window, but
3433           the size of the client window, so add
3434           TranslateClientRectangleToXClientRectangle,
3435           TranslateWindowSizeToXWindowSIze and
3436           TranslatedXWindowSizeToWindowSize to cope with this, and call them
3437           before every window creation and move. Update CalculateWIndowRect
3438           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
3439           In AddConfigureNotify don't do anything if the hwnd is a zombie
3440           (fixes the BadWindow we were getting while running the tests),
3441           always calculate the offsets when it's a parentless window, not
3442           only when reparented, and translate the window size, since we're
3443           getting the client size of the whole window, excluding entire
3444           window.
3445         * Theme.cs: Added BorderSizableSize.
3446         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3447           anymore. Update calls to XplatUI.CalculateWindowRect due to API
3448           chang
3449         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
3450           change. Fake the window styles here instead of in XplatUIWin32 so
3451           that all back-ends get the same window styles (and it's Form that's
3452           deciding when to use wm, not the Win32 backend anyways)
3453         * Hwnd.cs: Completely reworked GetWindowRectangle and
3454           GetClientRectangle - they are now passed a CreateParams and they
3455           only use Style and ExStyle to determine the rectangles (they should
3456           now work just like Win32AdjustWindowRectEx - though quite a few
3457           special cases are probably missing). They should also be 100%
3458           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
3459           == rect), and all numbers (borders, menu sizes) are taken from the
3460           current theme. Added a GetBorders helper function that will return
3461           the borders for any given CreateParams (including captions and
3462           menus), and GetBorderSize that returns the given border size only.
3463         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
3464           Hwnd.GetClientRectangle.
3465
3466 2007-04-02  Chris Toshok  <toshok@ximian.com>
3467
3468         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
3469         logic between the values we present to the user and the values
3470         which are stored in the column's property.  Also, don't call
3471         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
3472
3473 2007-04-02  Jackson Harper  <jackson@ximian.com>
3474
3475         * TextBoxBase.cs: Scroll faster!
3476
3477 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3478
3479         * StatusStrip.cs: Layout fixes for PDN.
3480         * ToolStrip.cs: Set item's available to true, and placement to main when
3481         added.
3482         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
3483         changing in setter before doing any work, add InternalVisible.
3484         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
3485         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
3486         infinite loop.
3487
3488 2007-04-02  Jackson Harper  <jackson@ximian.com>
3489
3490         * TextBox.cs: LBUTTON does not make the textbox select all of it's
3491         text on focus.
3492
3493 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3494
3495         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
3496           Makes ToolStripComboBoxes show up again.
3497
3498 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3499
3500         * ListView.cs: Add a hover_pending field in ListView
3501         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
3502         cycle (we are resetting the MouseHover logic in XplatUI
3503         to handle HoverSelection). Fixes #80429.
3504
3505 2007-04-02  Jackson Harper  <jackson@ximian.com>
3506
3507         * TextControl.cs: Make sure the attributes get set on the last
3508         tag.
3509         - Still have to do the end tag if we have stepped all the ways to
3510         the end.
3511
3512 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3513
3514         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
3515         on an internal libgdiplus call when the information is already 
3516         available via the public API.
3517
3518 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3519
3520         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
3521           control is removed from a control collecftion.
3522         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
3523           Fixes FormPropertyTest (failed on rare occasions).
3524         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
3525           of Win32SetParent (when changing from no parent to a parent it
3526           might add the new parent's location in screen coordinates to this
3527           window's location).
3528         * Form.cs: Rework ChangingParent once again, now the handle is
3529           recreated whenever a FormWindowManager is added or removed (that is
3530           whenever a normal form is parented or abandoned). Also change
3531           CreateParams so that all non-toplevel windows always get the
3532           specified sice (StartupPosition is never considered for
3533           non-TopLevel forms).
3534         * ContainerControl.cs: Add ChildControlRemoved, the container control
3535           needs to be notified when a control is removed from it's
3536           collection, in the case the removed control is the active control.
3537
3538 2007-04-02  Jackson Harper  <jackson@ximian.com>
3539
3540         * RichTextBox.cs: Use the new methods for setting the font and
3541         color, these methods set the specified attribute without
3542         overriding the other attributes.
3543
3544 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
3545
3546         * ToolStripPanel.cs: Fixes for better layouts in PDN.
3547
3548 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
3549
3550         * TextBox.cs: Added internal ChangeBackColor method to special-case
3551         Color.Empty. Added check for invalid ScrollBars value.
3552         * TextBoxBase.cs: Added internal ChangeBackColor method.
3553         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
3554         internal ChangeBackColor method to special-case Color.Empty. Added
3555         check for invalid ScrollBars value.
3556
3557 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
3558
3559         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
3560
3561 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3562
3563         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
3564         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
3565         [Based on submitted patch from Olivier Duff.]
3566
3567 2007-03-30  Jackson Harper  <jackson@ximian.com>
3568
3569         * TextBox.cs: Only select all on initial focus if the user has not
3570         specified a selection area.
3571
3572 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
3573
3574         * UserControl.cs: Override CreateParams.
3575
3576 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3577
3578         [ Fixes #80995 ]
3579
3580         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
3581         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
3582           check for is a mix of several styles (such as WS_CAPTION for instance).
3583         * Control.cs: Don't paint an area bigger than the client area when painting
3584           the background colour. Add an internal GetCreateParams. Update calls to
3585           XplatUI.CalculateWindowRect due to API change.
3586         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
3587           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
3588           hasn't been handled by any windows. When creating and moving windows, X
3589           wants the location of the entire window, but the size of the client
3590           window, so add TranslateClientRectangleToXClientRectangle,
3591           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
3592           to cope with this, and call them before every window creation and move.
3593           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
3594           removing DeriveStyles). In AddConfigureNotify don't do anything if the
3595           hwnd is a zombie (fixes the BadWindow we were getting while running the
3596           tests), always calculate the offsets when it's a parentless window, not
3597           only when reparented, and translate the window size, since we're getting
3598           the client size of the whole window, excluding entire window.
3599         * Theme.cs: Added BorderSizableSize.
3600         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
3601           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
3602         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
3603           Fake the window styles here instead of in XplatUIWin32 so that all
3604           back-ends get the same window styles (and it's Form that's deciding when
3605           to use wm, not the Win32 backend anyways)
3606         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
3607           they are now passed a CreateParams and they only use Style and ExStyle
3608           to determine the rectangles (they should now work just like
3609           Win32AdjustWindowRectEx - though quite a few special cases are probably
3610           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
3611           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
3612           sizes) are taken from the current theme. Added a GetBorders helper
3613           function that will return the borders for any given CreateParams
3614           (including captions and menus), and GetBorderSize that returns the given
3615           border size only.
3616         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
3617           Hwnd.GetClientRectangle.
3618
3619 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3620
3621         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
3622           layout of the mdi children is handled by CreateParams. Fixes
3623           #79964,
3624
3625 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3626
3627         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
3628         processed.
3629
3630         * Form.cs: When active tracker mouse down is not processed, send event 
3631         back to control inside mouse position. [Fixes #81227]
3632
3633 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
3634
3635         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
3636         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
3637         stealing focus from the active form on Windows.  (Control will be made
3638         visible in ShowWindow.)
3639
3640 2007-03-29  Mike Kestner  <mkestner@novell.com>
3641
3642         * ImageList.cs : add internal Changed event.
3643         * ListView.cs : hook up to StateImageList.Changed to perform
3644         invalidations when the the state icon list changes. [Fixes #81191]
3645
3646 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
3647
3648         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
3649         to prevent tooltips from stealing focus from the active form on Windows.
3650
3651 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3652
3653         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
3654
3655         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
3656
3657 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3658
3659         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
3660         balloons.
3661
3662 2007-03-29  Jackson Harper  <jackson@ximian.com>
3663
3664         * TextControl.cs: When deleting text from non multiline textboxes,
3665         we need to update the entire document, because line offsets will
3666         be shifting.
3667
3668 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
3669
3670         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
3671         added to theme, now we can create themes that uses diferent notify engines
3672         like notification-daemon from galago project or growl for Mac OS.
3673
3674 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
3675
3676         * NotifyIcon.cs: Prevent Balloon to show in task bar.
3677
3678 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
3679
3680         * XplatUIX11.cs: Prevent system to open more than one balloon.
3681
3682         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
3683         some compiler warning messages.
3684
3685 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
3686
3687         [Fixes #79149]
3688
3689         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
3690
3691         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
3692         implemented, this methods is used by NotifyIcon.BalloonWindow class.
3693
3694         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
3695         systems.
3696
3697 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3698
3699         * ListViewItem.cs: Forgot to make Invalidate internal.
3700
3701 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3702
3703         * ListView.cs: Add a InvalidateSelection method to
3704         invalidate methods which are currently selected, and call
3705         it when setting FullRowSelect and HideSelection, instead of
3706         calling Redraw.
3707
3708 2007-03-28  Chris Toshok  <toshok@ximian.com>
3709
3710         * XplatUIX11.cs (UnmapWindow): reindent this block.
3711
3712         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
3713         the selection_start if we're moving the selection (that is, not
3714         extending it). Fixes bug #80461.
3715
3716 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3717
3718         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
3719         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
3720         create private ControlCollection.
3721
3722 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3723
3724         * Control.cs: We need to call OnVisibleChanged for our implicit
3725         children as well as our normal children.  Fixes scrollbars in
3726         comboboxes not showing up.
3727
3728 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3729
3730         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
3731         the check for IsHandleCreated first.  The check in CreateHandle is not
3732         good enough because CreateHandle can be overriden, and the override 
3733         should not be called if the handle is already created.
3734
3735 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
3736
3737         * ToolStrip.cs: Remove MonoTODO for tooltips.
3738         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
3739         * ToolStripContainer.cs: Add custom ControlCollection class.
3740         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
3741         * ToolStripDropDown.cs: Add some missing properties/methods.
3742         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
3743         * ToolStripItem.cs: Remove MonoTODO for tooltips.
3744         * ToolStripManager.cs: Add IsShortcutDefined.
3745         * ToolStripOverflow.cs: Override LayoutEngine.
3746         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
3747         * ToolStripSeparator.cs: Add ImageKey.
3748
3749 2007-03-28  Jackson Harper  <jackson@ximian.com>
3750
3751         * TextControl.cs: If a char delete removes a line ending, we need
3752         to update the ending style.
3753         - Make sure the line ending calcs get called.
3754
3755 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3756
3757         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
3758           it was making the new code not work. Fixed a typo in the new code
3759           as well. Fixes #79826.
3760
3761 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3762
3763         * XplatUIWin32.cs:
3764         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
3765         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
3766         - SystrayBalloon method implemented.
3767         [Add support for notifyicon balloon on win32, #79149]
3768
3769 2007-03-27  Mike Kestner  <mkestner@novell.com>
3770
3771         * ThemeWin32Classic.cs : update StateImageList selection to mirror
3772         the ms behavior when only one image is added to the list.
3773         [Fixes #81191]
3774
3775 2007-03-27  Jackson Harper  <jackson@ximian.com>
3776
3777         * TextControl.cs: Improvements to non multiline line ending
3778         drawing/measuing.
3779
3780 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3781
3782         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
3783
3784 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3785
3786         * NotifyIcon.cs: 
3787         - Balloon message handling added.
3788         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
3789
3790         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
3791         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
3792         to SystrayBalloon to me like other Systray method, also a
3793         handle parameter added.
3794
3795 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3796
3797         * ListView.cs: Show scrollbars even when items.Count == 0
3798         but the columns Width is bigger than the ListView.Width.
3799         Also, when columns.Count == 0 set layout_wd and layout_ht
3800         to the ClientRectangle values, so we don't show any scrollbar
3801         in that case.
3802
3803 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3804
3805         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
3806
3807 2007-03-27  Jackson Harper  <jackson@ximian.com>
3808
3809         * RichTextBox.cs: The RTF library decodes the text properly for us
3810         now.
3811
3812 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3813
3814         * ListView.cs: Display HeaderControl even when columns.Count == 0.
3815         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
3816         ListView header (HeaderControl), instead of Control.BackColor.
3817
3818 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
3819
3820         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
3821         Fixes tab control issues where controls would not show up because they
3822         never received their OnVisibleChanged call.
3823
3824 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
3825
3826         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
3827         BalloonTipShown).
3828
3829 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
3830
3831         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
3832         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
3833         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
3834         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
3835         the handle.  Fix WindowState by using the internal variable until we are 
3836         sure that we've been shown.
3837         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
3838         max or min.
3839         [Fixes bug #81198]
3840
3841 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3842
3843         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
3844           (at least borders). Fixes #79386 on Linux (with a small difference
3845           in behaviour: when trying to resize a caption-less window metacity
3846           shows the sysmenu. Resizing is still possible though).
3847         * XplatUIWin32.cs: When setting window styles send request an extra
3848           WM_NCCALCSIZE when it's a form without title (due to no text and no
3849           caption), since Win32 seems to calculate it wrong the first time we
3850           get the message, though the second time things work as they should.
3851         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
3852           newly reparented window might show up unparented. Update
3853           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
3854           there's no title text. Fixes #79386.
3855
3856 2007-03-27  Mike Kestner  <mkestner@novell.com>
3857
3858         * ListBox.cs : don't perform invalidations if the handle hasn't been
3859         created.  [Fixes #80753]
3860
3861 2007-03-27  Mike Kestner  <mkestner@novell.com>
3862
3863         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
3864         [Fixes #80428]
3865
3866 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
3867
3868         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
3869         needed to implement Balloon.
3870
3871 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3872
3873         * ListViewItem.cs: In the constructors that take
3874         an array of strings, don't use ListViewSubItemCollection.AddRange
3875         method to add items, since we need to have a different behaviour (in
3876         the constructors we add an item for each null string, opposed to
3877         the behaviour of AddRange, which adds nothing).
3878
3879 2007-03-26  Andreia Gaita  <avidigal@novell.com>
3880
3881         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
3882
3883 2007-03-26  Jackson Harper  <jackson@ximian.com>
3884
3885         * TextControl.cs: Draw and measure line endings when in non
3886         multiline mode.
3887         - When searching the text, count the end of the last line as a
3888         word boundary.
3889
3890 2007-03-26  Jackson Harper  <jackson@ximian.com>
3891
3892         * RichTextBox.cs: The selection_start and selection_end don't
3893         really track the correct tags for the selection. So we'll manually
3894         compute the correct tag here.
3895
3896 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3897
3898         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
3899           and Continuous styles. Fixes #79469.
3900
3901 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
3902
3903         * ToolStrip.cs: Implement Tooltips.
3904         * ToolStripItem.cs: Create internal method for determining tooltip.
3905
3906 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
3907
3908         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
3909
3910 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
3911
3912         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
3913         it prevents a problem thak keeps icon visible after application 
3914         closes on win32.
3915
3916 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
3917
3918         * NotifyIcon.cs: Balloon properties and methods created.
3919
3920         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
3921         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
3922
3923 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
3924
3925         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
3926
3927 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
3928
3929         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
3930         parameter indicates which aspects were explicit/user-set.
3931         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
3932
3933 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
3934
3935         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
3936         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
3937         SmallChange, and Value (2.0).
3938         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
3939
3940 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3941
3942         * ListView.cs: Always set item_control.Width in LayoutDetails
3943         if View is Details. Setting it later in CalculateScrollBars
3944         in a not-so-corner scenario (the sum of columns width is
3945         not bigger than the ListView width when handle is created, and then
3946         that sum gets bigger by increasing the width of the columns)
3947         causes a very weird recursion path (which shouldn't be happening,
3948         since header_control sets it in CalculateScrollBars too). This bug
3949         appeared after Chris' fixes for handle created issues, so probably
3950         it's related to some handle-creation time.
3951
3952 2007-03-23  Chris Toshok  <toshok@ximian.com>
3953
3954         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
3955         case where there's an add row, just so we don't end up in a case
3956         where it's not displayed (this happens when the row is partially
3957         obscured).  Fixes bug #79574.
3958
3959 2007-03-23  Jackson Harper  <jackson@ximian.com>
3960
3961         * TextControl.cs:
3962         * TextBoxBase.cs:
3963         * RichTextBox.cs: Preserve line endings in the lines text buffer,
3964         also added an enum that represents the line ending type. 
3965
3966 2007-03-23  Andreia Gaita  <avidigal@novell.com>
3967
3968         * NumericUpDown.cs: Fix logic so Text and Value properties are not
3969         messed with in every method call, but only from DownButton, 
3970         UpButton, UpdateEditText() and ValidateText. Fixes #80346
3971
3972 2007-03-23  Chris Toshok  <toshok@ximian.com>
3973
3974         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
3975         format objects if the format spec is "".  Fixes bug #80889.
3976
3977 2007-03-22  Miguel de Icaza  <miguel@novell.com>
3978
3979         * ToolStripPanel.cs (Join): added stubs to build PDN3
3980
3981         * Control.cs (AutoScrollOffset): Add.
3982
3983         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
3984         property, its only implemented for Win32, on X11 it defaults to
3985         some hardcoded value.
3986
3987         * ToolStripItem.cs (AllowDrop): Add property
3988
3989 2007-03-22  Mike Kestner  <mkestner@novell.com>
3990
3991         * ListView.cs : in FullRowSelect Details mode, only enable box
3992         selection if the user clicks over the "item" column outside of the
3993         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
3994
3995 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3996
3997         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
3998           handle is not created yet.
3999         * Form.cs: Select: Don't call CreateHandle if the handle is already
4000           created, avoids a stack overflow on Windows when we are recreating
4001           controls.
4002         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
4003           they are made visible, and override AfterTopMostControl to keep
4004           them on top when other controls are brought to front.
4005           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
4006           or force_*scroll_visible is true (old implementation always shows
4007           scrollbars when needed, no matter what auto_scroll was set to).
4008         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
4009           IsHandleCreated check.
4010
4011 2007-03-22  Andreia Gaita  <avidigal@novell.com>
4012
4013         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
4014         row or col separator.
4015         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
4016
4017 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4018
4019         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
4020
4021 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4022
4023         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
4024         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
4025         every time. Fixes #80410.
4026
4027 2007-03-22  Chris Toshok  <toshok@ximian.com>
4028
4029         * BindingSource.cs (AddNew): partially implement.
4030
4031         remove a couple of NotImplementedException's
4032         to get bug #81148 closed.
4033
4034 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
4035
4036         [Fixes #80380]
4037         
4038         * Control.cs:
4039         - UpdateCursor method added to update the screen cursor.
4040         - GetAvailableCursor method added to return cursor for enabled tree,
4041         it searches for cursor on control and it's parent's for enabled control.
4042         - Call UpdateCursor method on setter of Cursor property.
4043         - On setter of Enabled call UpdateCursor when it is false, we need to
4044         change cursor to normal (or to this parent cursor) because cursor 
4045         setting theres no effect to disabled controls.
4046         - Some minor source changes to follow the coding style guidelines.
4047
4048         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
4049         controls.
4050
4051 2007-03-22  Chris Toshok  <toshok@ximian.com>
4052
4053         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
4054         generates.
4055
4056 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4057
4058         * XplatUIX11.cs: Implement default locations for forms.
4059         * Form.cs: Completely rework startup location for forms. Fixes #79964.
4060         * Hwnd.cs: Add previous_child_startup_location (to track the current
4061           startup location for any child forms of the current form) and
4062           previous_main_startup_location (to track the startup location for
4063           the current toplevel form).
4064
4065 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4066
4067         * Control.cs: Don't trigger a layout if an implicit control is added
4068         that isn't visible.  Also, don't notify the owner when an implicit control
4069         is added.  (Owners shouldn't even know about their implicit controls.)
4070
4071 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4072
4073         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
4074         to save some re-layouts.
4075
4076 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
4077
4078         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
4079         [Fixes #81203]
4080
4081 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
4082
4083         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
4084         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
4085
4086 2007-03-21  Mike Kestner  <mkestner@novell.com>
4087
4088         * ListView.cs : disable selection update for non-left button clicks
4089         with mods and over selected items.  [Fixes #80524]
4090
4091 2007-03-20  Jackson Harper  <jackson@ximian.com>
4092
4093         * TextControl.cs:
4094         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
4095         \r\r\n, \n.
4096
4097 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4098
4099         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
4100           very probably a more complicated calculation there. Update the
4101           textbox' ForeColor and BackColor when the ComboBox' colors are
4102           changed. Change the border change in LayoutComboBox to only affect
4103           the textbox, not all the calculations there. Seems to fix most of
4104           #79436.
4105
4106 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4107
4108         * ComboBox.cs: Handle Home and End keys as well as all combinations of
4109           modifiers + navigation keys as input keys, enables advanced text
4110           selection in the combobox (like Shift+Left Arrow for instance).
4111           ComboTextBox now overrides Focused and returns whatever
4112           ComboBox.Focused returns, since it really should be focused
4113           whenever the ComboBox is. Fixes #80795. Also make the border around
4114           the text box one pixel bigger, as mentioned in #79436.
4115
4116 2007-03-20  Jackson Harper  <jackson@ximian.com>
4117
4118         * TreeView.cs: Don't offset the images, this was causing some
4119         artifacts when expanding/collapsing with images that were the
4120         exact height of the treenode.
4121
4122 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4123
4124         * TrackBar.cs: Query the theme for the correct value when the mouse
4125           moves and the thumb is pressed. 
4126         * Theme.cs: Added TrackBarValueFromMousePosition
4127         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
4128           implementation was updating the trackbar value when drawing, now
4129           the drawing methods only draw. Fixes #80900. Refactored the
4130           calculations out to TrackBarValueFromMousePosition and
4131           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
4132           according to the mouse position whenever it wants to. Changed the
4133           light coloured pen when drawing the thumb from ControlLight to
4134           ControlLightLight, because the ControlLight is the same colour as
4135           the background so the 3D effect is lost. 
4136
4137 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4138
4139         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
4140         defined. Fixes #80784.
4141
4142 2007-03-20  Marek Habersack  <mhabersack@novell.com>
4143
4144         * ContextMenuStrip.cs: align with the change introduced in
4145         revision 74664.
4146
4147 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4148
4149         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
4150         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
4151         in SetTopmost.
4152
4153 2007-03-19  Chris Toshok  <toshok@ximian.com>
4154
4155         * Control.cs (WmPaint): don't make use of the Handle property
4156         after an event is emitted, as the user could have closed the
4157         form/destroyed the control.  Store the Handle in a local variable
4158         and make use of that.  Fixes bug #80768.
4159
4160 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4161
4162         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
4163         behavior in X11 environments.
4164
4165 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4166
4167         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
4168         because on setter of topmost we dont call SetTopmost when handle is not
4169         created.
4170
4171 2007-03-20  Jackson Harper  <jackson@ximian.com>
4172
4173         * TextControl.cs: Need to use SelectionLength () not
4174         selection_length, since that var is reset to -1.
4175         - Draw the caret when we don't have focus.
4176         * TextBox.cs: The selectall actually doesn't occur until the first
4177         focus.
4178         * TextBoxBase.cs: Need to update the caret position after a
4179         selectall.
4180         
4181 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4182
4183         * ListView.cs: Enable scrolling when using Tile view.
4184
4185 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
4186
4187         [Fixes #80902]
4188
4189         * XplatUIDriver.cs: Abstract SetOwner method created.
4190
4191         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
4192         must be implemented and was masked as todo.
4193
4194         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
4195         GWL_HWNDPARENT.
4196
4197         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
4198         cheking for null owner to remove transient. The SetTopmost will be change
4199         on a decond step.
4200
4201         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
4202         SetTopmost. Now owned forms will work properly in win32 and X11.
4203
4204 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4205
4206         * MdiWindowManager.cs: Update function name.
4207         * Form.cs: After closing a form MdiParent is always null.
4208         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
4209           better what it should do: necessary book-keeping when the form is
4210           closed, it should not close the form itself.
4211
4212 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4213
4214         * ListViewItem.cs: Fix back and fore color. The subitems only
4215         use their own colors if they are set, otherwise use the listview's
4216         colors. Don't set default colors on constructor for subitem.
4217         Fixes #79315.
4218
4219 2007-03-19  Mike Kestner  <mkestner@novell.com>
4220
4221         * ListView.cs : make box selection for Details views with 
4222         FullRowSelect conform to MS behavior when clicking in the "item" 
4223         column and clicking outside the defined columns.
4224         [Fixes case 5-6 of #80374]
4225
4226 2007-03-19  Chris Toshok  <toshok@ximian.com>
4227
4228         * ScrollableControl.cs: create the controls from within the ctor,
4229         but don't actually add them until our handle is created.  this
4230         fixes a NRE possibility jpobst found (if you override OnLayout in
4231         a subclass, it's called before your ctor).  Also, add a
4232         IsHandleCreated guard to UpdateSizeGripVisibility as well.
4233
4234 2007-03-19  Jackson Harper  <jackson@ximian.com>
4235
4236         * TextBox.cs: Reduce the amount of invalidation we do.
4237         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
4238         some of them are true by default on MS.
4239         - Add some functions to reduce the amount of invalidates we do.
4240         * TextControl.cs: Less invalidation.
4241
4242 2007-03-19  Chris Toshok  <toshok@ximian.com>
4243
4244         [ Fixes #81773, and *seems* to fix #81553 as well ]
4245
4246         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
4247         AccumulateDestroyedHandles.  We need to do it *after* we send
4248         WM_DESTROY, as the user's code can access Control.Handle in
4249         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
4250         move the WM_DESTROY/zombie handling to before the call to
4251         XDestroyWindow.  For some reason without this ordering
4252         FormTest.RecreateHandle hangs.  This ordering is semantically
4253         equivalent, however, as XDestroyWindow is async anyway.
4254
4255 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
4256
4257         * RichTextBox.cs: Reset backcolor_set after setting default.
4258
4259 2007-03-19  Chris Toshok  <toshok@ximian.com>
4260
4261         * ScrollableControl.cs: the scroll position should not effect the
4262         canvas size.  commit patch from georgegiolfan@yahoo.com, which
4263         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
4264         
4265 2007-03-19  Chris Toshok  <toshok@ximian.com>
4266
4267         * ScrollableControl.cs: clean this up a bit.  create the
4268         scrollbars in the ctor and just show/hide them as needed.  Also,
4269         make hscroll_visible/vscroll_visible internal to Recalculate, and
4270         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
4271         everywhere else.  This seems to fix the scrollbars appearing
4272         beneath the content for me (i have *no* idea why that is,
4273         however.)
4274
4275 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4276
4277         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
4278         some redundacy for stuff in Anchor and Dock that base will take care of.
4279         [Fixes #80762]
4280
4281 2007-03-19  Mike Kestner  <mkestner@novell.com>
4282
4283         * ListView.cs : make box selection for Details views without 
4284         FullRowSelect dependent on the text bounds, not item bounds.
4285         * ListViewItem.cs : add an internal property to obtain the TextBounds
4286         in Details view.  [Fixes case 1-4 of #80374]
4287
4288 2007-03-19  Andreia Gaita  <avidigal@novell.com>
4289
4290         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
4291         we're < 2.0. #78448 && #80316
4292
4293 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
4294
4295         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
4296         have the same style available as the previously selected one.  Also,
4297         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
4298
4299 2007-03-19  Jackson Harper  <jackson@ximian.com>
4300
4301         * TextControl.cs: Add an alignment property that all new lines
4302         will be given.
4303         - Make sure to use the align shift when calculating the line's X
4304         position.
4305         * TextBox.cs: Set the alignment on the document as well as on all
4306         the document lines.
4307
4308 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4309
4310         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
4311           throw if setting the parent of an mdichild that already has an
4312           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
4313           AssemblyProductAttribute in the assembly, use the type's namespace (as
4314           MS seems to do). CreateControl: don't create the handle if the control
4315           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
4316           create handle if the control is not a form. Change FocusInternal to
4317           virtual so that it can be overriden by Form.
4318         * TextBox.cs: Update call to FocusInternal.
4319         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
4320           form is not a toplevel form when it's a mdi child, so update is_toplevel
4321           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
4322           hasn't been created. Show (IWin32Window): Don't allow this overload for
4323           toplevel windows. CenterToParent/CenterToScreen/Select: create the
4324           handle as MS does. SetVisibleCore: if called on a MdiChild and the
4325           parent isn't visible yet, save the visibility and restore it when the
4326           parent is made visible.
4327         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
4328           methods, since the visibility of the scrollbars can be changed from
4329           several places, not only from AutoScroll.
4330           [Fixes #81179]
4331
4332 2007-03-19  Jackson Harper  <jackson@ximian.com>
4333
4334         * RichTextBox.cs: Enable shortcuts by default.
4335         * TextBoxBase.cs: Add conditional shortcuts.  
4336
4337 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4338
4339         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
4340
4341 2007-03-19  Chris Toshok  <toshok@ximian.com>
4342
4343         [ Fixes bug #80604]
4344         
4345         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
4346         swallow the message we're waiting on, instead of delivering it, as
4347         this is only used for the WM_SHOWWINDOW raised from
4348         MapWindow/UnmapWindow, and the message needs to be generated
4349         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
4350         before doing the Map/Unmap.  Also make sure that the Hwnd is still
4351         alive after the message has been handled.
4352
4353         *before* the window is shown.
4354
4355         * Control.cs (CreateControl): guard a few more things inside the
4356         if (!is_created) block, as we might end up being called again -
4357         yay .net.
4358         (WmShowWindow): call CreateControl if we're showing the control.
4359
4360 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4361
4362         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
4363           controls without a handle if they have any parent with a handle. In
4364           Dispose add a check whether the handle is created or not before
4365           calling BeginInvoke, this removes the need of the extra disposing
4366           parameter (which was bogus anyway since it didn't prevent the
4367           invoke from happening, it only skipped the check for an existing
4368           handle, meaning that the invoke would call on an inexistent
4369           handle).
4370
4371 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
4372
4373         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
4374         appears in taskbar.
4375
4376 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4377
4378         * MessageBox.cs:
4379         - Fixed a problem that dont show help button for messages with 3 buttons.
4380         - Refactory button size and position calculations, now dont use fixed 
4381         values, also fixed button sizes (#80043) and form's border space.
4382         - AddButton method created, now all other AddButton methods call this one.
4383         - Some other source code cosmetic changes.
4384
4385 2007-03-18  Jackson Harper  <jackson@ximian.com>
4386
4387         * RichTextBox.cs: Don't do this all fonts must match check if
4388         there is only one char selected.
4389
4390 2007-03-18  Jackson Harper  <jackson@ximian.com>
4391
4392         * TreeView.cs: ScrollWindow works properly now, so we don't need
4393         to screw around with the scroll area.  This fixes some artifacts
4394         when expanding and collapsing.
4395
4396 2007-03-18  Jackson Harper  <jackson@ximian.com>
4397
4398         * TextBoxBase.cs: Allow updating the selection position when the
4399         cursor is outside the textarea, but we have a capture.
4400         * TextControl.cs: A special case for when the cursor is outside
4401         the bounds of the TB.
4402         
4403 2007-03-18  Jackson Harper  <jackson@ximian.com>
4404
4405         * TextBoxBase.cs: Remove image pasting code for now.  There is no
4406         way to get an image on the clipboard right now anyways.
4407         * TextControl.cs:
4408         * RichTextBox.cs: Use the new RTF Picture class for pictures.
4409
4410 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
4411
4412         * MessageBox.cs:
4413         - Set window properties in constructor intead of on CreateParams.
4414         - Remove topmost from Window ExStyle.
4415         - Set ShowInTaskbar to false.
4416         - Set form border to FixedDialog.
4417         - Some cosmetic changes and remove unneeded comments.
4418         - It fixes itens 2,3 and 4 of bug #80043.
4419
4420 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
4421
4422         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
4423         none was explicitly set. Fixes part of bug #79949.
4424
4425 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4426
4427         * ToolStripComboBox.cs: Add AutoComplete*.
4428
4429 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
4430
4431         * ToolStripComboBox.cs: Add FlatStyle.
4432
4433 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
4434
4435         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
4436         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
4437
4438 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4439
4440         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
4441           CheckBox.cs, RadioButton.cs, BindingSource.cs,
4442           DataGridColumnStyle.cs: Remove warnings.
4443
4444 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4445
4446         * Menu.cs: MergeMenu: Check menu argument for null before looping over
4447           it.
4448         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
4449           visibility of mdi child forms. FormSizeChangedHandler: update the
4450           maximized size if size has changed while maximized.
4451         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
4452           creating the handle.
4453         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
4454           avoid creating the handle if not created.
4455         * XplatUI.cs: Update debug output.
4456         * XplatUIStructs.cs: Added ToString's for a couple of structs.
4457
4458 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
4459
4460         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
4461         ProcessCmdKey().
4462         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
4463         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
4464         Implement keyboard shortcuts.
4465
4466 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4467
4468         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
4469         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
4470         ColorDialog and all derived classes.
4471
4472 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
4473
4474         [ Fixes bug #79828 ]
4475
4476         * ToolBar.cs:
4477         - Rename ToolBarButtonInfor to ToolBarItem.
4478         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
4479         - Maintain an array of ToolBarItem, used instead of ToolBarButton
4480         collection to be able add same button more than one time on a toolbar.
4481         - Refactory all properties and methods to use ToolBarItem. 
4482
4483         * ToolBarButton.cs: 
4484         - Remove all propeties and methods that is now in ToolBarItem.
4485         - Rectangle propery now gets the rectangle from first ToolBarItem to
4486         mimic win32 behavior.
4487         - Size calculation and layout methods also removed.
4488
4489         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
4490         ToolBarItem instead of ToolBarButton to right drawing buttons when
4491         same button/separator was added more than one time to ToolBar.
4492
4493         * ThemeNice.cs: Same as above. 
4494
4495 2007-03-15  Andreia Gaita  <avidigal@novell.com>
4496
4497         * XplatUIX11.cs: Fire extra MouseMove events right after
4498         MouseDown and MouseUp, emulating win32's <censored> behaviour
4499         for apps that rely on it.
4500
4501 2007-03-15  Jackson Harper  <jackson@ximian.com>
4502
4503         * TextControl.cs:
4504         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
4505         it is drawn on the controls client window and there is no NC
4506         area.
4507         - Set the background color to gray on 2.0 when we are readonly.
4508
4509 2007-03-15  Chris Toshok  <toshok@ximian.com>
4510
4511         [ Fixes bug #81144 ]
4512         
4513         * XplatUIX11.cs: implement VirtualScreen independently of
4514         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
4515         property.
4516
4517 2007-03-15  Chris Toshok  <toshok@ximian.com>
4518
4519         * Hwnd.cs: add an internal field for the cached_window_state.
4520
4521         * XplatUIX11.cs: cache the window state, invalidating the cache
4522         (and thus re-querying the X server) only when we see an update to
4523         the _NET_WM_STATE property.
4524
4525 2007-03-15  Chris Toshok  <toshok@ximian.com>
4526
4527         * BindingSource.cs: get a lot of the unit tests working.
4528
4529 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4530
4531         * Control.cs: Modify UpdateStyles to store distances when bounds >=
4532         0 instead of just bounds > 0.  [Fixes bug #80912]
4533
4534 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
4535
4536         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
4537         and methods.
4538
4539 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
4540         
4541         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
4542         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
4543         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
4544         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
4545
4546 2007-03-15  Chris Toshok  <toshok@ximian.com>
4547
4548         [ Fixes #81101 ]
4549         
4550         * Control.cs: add Ivan's fix for 81101, with a slight modification
4551         - you can set control.Target to null.
4552
4553 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
4554
4555         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
4556         HideDropDown, use Hide instead to prevent an NRE.
4557         [Fixes bug #81147]
4558
4559 2007-03-14  Jackson Harper  <jackson@ximian.com>
4560
4561         * TextBoxBase.cs: Mess with the creation stuff a little. We need
4562         to calculate the document before the handle is created, in some
4563         cases. (Actually just one case).
4564
4565 2007-03-14  Jackson Harper  <jackson@ximian.com>
4566
4567         * TextBoxBase.cs: Need to display the caret after letting the base
4568         wndproc handle the focus methods, because the caret display
4569         methods check the focus state.
4570         - Try to display the caret after updating it's position with SelectWord.
4571         - Don't need to do an immediate update on this recalc, since there
4572         will be an invalidate anyways.
4573
4574 2007-03-14  Jackson Harper  <jackson@ximian.com>
4575
4576         * TreeView.cs: Some workarounds so that we can match event order a
4577         little better.
4578
4579 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
4580
4581         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
4582         #80803. Avoid NullReferenceException when Control does not have
4583         parent. Fixed different blinkstyle issues. Only subscribe to Tick
4584         event a single time. Only draw error icon when control is created and
4585         visible. Fixes failing unit tests.
4586
4587 2007-03-14  Andreia Gaita  <avidigal@novell.com>
4588
4589         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
4590         Selecting events. Fire Leave and Enter events when changing tabs.
4591
4592 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
4593
4594         * TreeView.cs: Add TreeViewNodeSorter.
4595         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
4596
4597 2007-03-14  Chris Toshok  <toshok@ximian.com>
4598
4599         * Form.cs: go ahead and remove the RecreateHandles that jpobst
4600         removed earlier and I had him add back it.  It turns out metacity
4601         *does* in fact handle the MOTIF_WM_HINTS property changing, it
4602         just doesn't redraw the window titlebar until you resize the
4603         window.  This also means we aren't recreating the entire window
4604         hierarchy on X when you change this property.  And it looks better
4605         on windows, too.
4606
4607 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4608
4609         * ListViewItem.cs:
4610         * ListView.cs: Collecting selection information
4611         is now done in SelectedIndexCollection rather than in
4612         SelectedListViewItemCollection. This is done so we can
4613         have the selection information code in one single place
4614         (virtual mode selection information entirely depends on
4615         SelectedIndexCollection).
4616
4617 2007-03-13  Miguel de Icaza  <miguel@novell.com>
4618
4619         * ErrorProvider.cs: Add stubs for ISupportInitialize
4620
4621 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4622
4623         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
4624         in the right order with the right values, from the Checked property, 
4625         just as MS does (instead of triggering them from ListView).
4626
4627         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
4628
4629 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4630
4631         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
4632         the correct handler in OnItemCheck method (ItemCheckEventHandler 
4633         instead of EventHandler). This used to throw an InvalidCastException.
4634
4635 2007-03-13  Jackson Harper  <jackson@ximian.com>
4636
4637         * TextBoxBase.cs: Calculate the document before the handle is
4638         created, so there isn't an extra invalidate called.
4639
4640 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
4641
4642         * Form.cs: Don't set owner in ShowDialog until we are sure
4643         that we aren't going to throw an exception.  [Fixes bug #80773]
4644
4645 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
4646
4647         * TreeView.cs: Make it compile.
4648
4649 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4650
4651         * Control.cs: Another place we don't call SizeFromClientSize.
4652         * Form.cs: Another place we don't call SizeFromClientSize.
4653         [Fixes bug #81125]
4654
4655 2007-03-12  Jackson Harper  <jackson@ximian.com>
4656
4657         * TreeView.cs: Basically emulating some strangness here with
4658         exanding nodes and setting node positions when windows aren't
4659         created.
4660         - Also attempting to walk the node tree less than previously, and
4661         just use visible order calculations for determining offsets.
4662         - oops made scrolling backwards.
4663         * TreeNode.cs: We need to start nodes with a zero visible order,
4664         because the order calcs are based on the first nodes order.
4665
4666 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4667
4668         * Form.cs: Don't exit the program if RecreateHandle is called on
4669         the main form.
4670
4671 2007-03-12  Chris Toshok  <toshok@ximian.com>
4672
4673         * XEventQueue.cs: remove the use of PostQuitState.
4674
4675         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
4676         WM_QUIT message in GetMessage, return false (and if we're in the
4677         nested WaitForHwndMessage, repost the WM_QUIT message).
4678
4679 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4680
4681         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
4682         or the MaximizeBox properties.  [Part of bug #80640]
4683
4684 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
4685
4686         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
4687         no links.
4688
4689 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4690
4691         * ToolStripItem.cs: Fix some tests I broke by checking Visible
4692         instead of visible.
4693
4694 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
4695
4696         * FileDialog.cs: Use text of File name combobox to determine what
4697         files the user selected. Added tokenizer to parse the file names.
4698         Fixes bug #81123.
4699
4700 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
4701
4702         * Control.cs: We can't call SizeFromClientSize in the constructor,
4703         but we still need to do the same work, so make an internal version.
4704         [Fixes bug #80621]
4705
4706 2007-03-12  Jackson Harper  <jackson@ximian.com>
4707
4708         * TreeView.cs:
4709         * TreeNode.cs:
4710         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
4711         IsExpanded.
4712
4713 2007-03-12  Jackson Harper  <jackson@ximian.com>
4714
4715         * TextBoxBase.cs: Now that the handles are being created a little
4716         later, we need to make sure that the document is recalculated when
4717         the handle is created.
4718
4719 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
4720
4721         * Theme.cs: GetLinkFont abstract method added.
4722         
4723         * LinkLabel.cs: 
4724         - Remove CalcTrimRectangle, no longer needed.
4725         - Factor also remove, position issues must be fixed in libgdiplus.
4726         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
4727         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
4728         care about font used to draw links.
4729         - Set TabStop to true when control is "Selectable", control is selectable
4730         when have one or more links. Fixes #80501 (test case is also added).
4731         - Set the LinkArea values after links change, LinkArea values must be
4732         based in first link position and size, a test case was created.
4733         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
4734         the attribute must be true LinkArea.Length > 0. The same was applied to
4735         TabStop.
4736         
4737         * ThemeWin32Classic.cs: 
4738         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
4739         in draw method.
4740         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
4741         color change.
4742         - Draw focus rectangle for every parts focused, including parts that 
4743         is on another line, its because regions returns various rectangles
4744         and not only one. Needed to mimic W32 look.
4745         - Uses Graphics.Clip to delimite region painted, it mean that now 
4746         complete text is passed to DrawString, with this we solve layout
4747         issues without create another text renderer.
4748         - Uses Region.Intersect to fix some flickers problems, now only needed
4749         parts will redrawed.
4750         - This changes fixes #79614 and some other unreported issues, on Linux 
4751         some layout problems still remain, the problem is under 
4752         MeasureCharacterRanges but it is an libgdiplus bug.
4753
4754 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
4755
4756         * TextBox.cs: Set for foreground color.
4757         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
4758         this is already done in Control.
4759
4760 2007-03-10  Jackson Harper  <jackson@ximian.com>
4761
4762         * TextBox.cs: Set the background color, but reset the
4763         backcolor_set flag which is just for the user setting the
4764         background color.
4765
4766 2007-03-09  Chris Toshok  <toshok@ximian.com>
4767
4768         * Control.cs: really remove the call to XplatUI.SetVisible from
4769         CreateHandle(), like I said I did when I merged the branch.
4770
4771         * BindingSource.cs: implement some more of this stuff.
4772
4773 2007-03-09  Jackson Harper  <jackson@ximian.com>
4774
4775         * TextBox.cs: Don't explicitly set our background colors.
4776         * TextControl.cs:
4777         * TextBoxBase.cs: Draw readonly text.
4778         - Need to invalidate when backcolor or readonly are changed.
4779         
4780 2007-03-09  Jackson Harper  <jackson@ximian.com>
4781
4782         * TextBoxBase.cs: Don't set the forecolor until the handle is
4783         created.
4784         - Do not raise OnPaint, and removed some old debug code.
4785
4786 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
4787
4788         * ScrollableControl.cs: Fix mouse wheel scrolling.
4789
4790 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
4791
4792         * Control.cs: Wire up MouseDoubleClick event.
4793
4794 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
4795
4796         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
4797         top or bottom.
4798         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
4799         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
4800         item is added.  This logic was moved to ToolStrip.OnItemAdded.
4801         [Fixes bug #81090]
4802
4803 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4804
4805         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
4806
4807 2007-03-08  Jackson Harper  <jackson@ximian.com>
4808
4809         * TreeView.cs: Show the correct image for selected node (this used
4810         to work, not sure how the code got deleted). Also implemented 2.0 feature
4811         SelectedImageKey.
4812
4813 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4814
4815         * ListView.cs:
4816         * ListViewItem.cs: Cache index in items when retrieving them
4817         in VirtualMode.
4818
4819 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
4820
4821         * ToolStripItem.cs: Don't return the explicit_size if we are using 
4822         AutoSize.  Fixes invalidation issue when user has explicitly set a
4823         size and has AutoSize = true.
4824
4825 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
4826
4827         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
4828
4829 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
4830
4831         * DataGridView.cs: Remove event handler from DataView when a
4832         DataTable is used as DataSource.
4833
4834 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
4835
4836         * Control.cs: Create internal setter for client_size to allow it to be
4837         set without triggering resizing code.
4838         * Form.cs: Calculate client_size in constructor, only change client_size
4839         in FormBorderStyle property if Handle has been created.
4840         [Fixes #80574, #80791]
4841
4842 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
4843
4844         * SystemInformation.cs: Add TerminalServerSession.
4845
4846 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
4847
4848         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
4849         TreeView code.
4850
4851 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
4852
4853         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
4854         Handle before we were supposed to.  Now checks ActivateOnShow property
4855         in Control.
4856         * Control.cs: Add internal ActivateOnShow property.
4857         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
4858         for ActivateOnShow.
4859         * Hwnd.cs Remove no longer needed no_activate field.
4860
4861 2007-03-07  Jackson Harper  <jackson@ximian.com>
4862
4863         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
4864         2.0 properties
4865         * DrawTreeNodeEventHandler.cs: Add
4866         * DrawTreeNodeEventArgs.cs: Correct default value.
4867         
4868 2007-03-07  Chris Toshok  <toshok@ximian.com>
4869
4870         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
4871         to be called before NativeWindow.WndProc.  Put the HwndCreating
4872         magic there to hook up our Hwnd's to handles.
4873
4874 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
4875
4876         * DataGridView.cs: Comment out debug code.
4877
4878 2007-03-07  Chris Toshok  <toshok@ximian.com>
4879
4880         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
4881         to make the rest of the world happy]
4882
4883         * Control.cs (CreateHandle): there's no need to call
4884         XplatUI.SetVisible here, it's effectively done by
4885         XplatUI.CreateWindow on X now, and always was on windows.
4886
4887         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
4888         shortcircuit out of the loop if we have a message loop running on
4889         this thread.
4890
4891         [Changelog from merge]
4892
4893         2007-03-05  Chris Toshok  <toshok@ximian.com>
4894
4895                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
4896                 causes handle creation.
4897
4898         2007-02-28  Chris Toshok  <toshok@ximian.com>
4899
4900                 * ApplicationContext.cs: Add a flag to make sure we only raise the
4901                 ThreadExit event once (ExitThreadCore can be indirectly called
4902                 from a few places.)  I don't like the additional flag, but it
4903                 makes the event ordering/count correct.
4904
4905                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
4906                 without locking the collection.  An enumerator doesn't give us any
4907                 protection from modification anyway.  Lock the thread hash and
4908                 replace the complicated enumerator loop with a foreach.
4909                 (Application.CloseForms): make internal so it can be called from
4910                 ApplicationContext.  This should probably be moved to MWFThread.
4911                 (Application.ExitThread): don't call MWFThread.Current.Exit()
4912                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
4913                 when the runloop exits (in response to WM_QUIT.)
4914                 (Application.RunLoop): add a comment (and check) for
4915                 context.MainForm being null after setting context.MainForm.Visible
4916                 = true.  This is because you're perfectly free to dispose of a
4917                 form in VisibilityChanged.  Chalk this up to another case where we
4918                 need to synchronously generate WM_ACTIVATE from Control.Show.
4919                 Also, add handling for WM_QUIT here so we'll exit the loop.
4920                 
4921                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
4922                 fact that we don't wait if we're only unmapping the whole_window
4923                 makes me a bit nervous, but it doesn't seem to cause any problems
4924                 yet.
4925
4926                 also, add a comment about the stupid, broken and wrong resetting
4927                 of PostQuitState to false in GetMessage().
4928
4929                 In PostQuitMessage, we need to add a WM_QUIT message to the
4930                 thread's queue.  We use the FosterParent to get the right
4931                 handle/hwnd/queue.
4932
4933                 Lastly, in SetVisible, we need to unmap both windows, since the
4934                 waiting only happens when we're unmapping the client window.  So
4935                 now, the *only* time we unmap just the whole_window is in the hack
4936                 for resizing a control to 0,0.
4937                 
4938         2007-02-21  Chris Toshok  <toshok@ximian.com>
4939
4940                 * Application.cs (CloseForms): rewrite this so that we don't
4941                 modify the list while we're traversing it.
4942
4943         2007-02-20  Chris Toshok  <toshok@ximian.com>
4944
4945                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
4946                 of OnHandleCreated.
4947                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
4948                 handle is created.  otherwise we'll create it here.
4949                 (VerticalScrollEvent): same here.
4950
4951                 * Application.cs (CloseForms): call Form.Dispose, don't post
4952                 WM_CLOSE_INTERNAL.
4953
4954                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
4955                 here. Application should Dispose() of the Form's.
4956
4957                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
4958                 WM_DESTROY as well.
4959                 (MapWindow,UnmapWindow): only actually do the waiting for
4960                 SHOWWINDOW if the control we're dealing with is a Form.
4961                 (CreateWindow): if the control isn't a form, SendMessage
4962                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
4963
4964                 * Control.cs (SetVisibleCore): always use is_visible here, not
4965                 value.  If we use value, we can end up re-setting something
4966                 visible if, for instance, you do Control.Hide() in a delegate
4967                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
4968
4969         2007-02-20  Chris Toshok  <toshok@ximian.com>
4970
4971                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
4972                 the message we need.  PeekMessage returning false should not be a
4973                 condition under which we exit the loop.
4974
4975         2007-02-15  Chris Toshok  <toshok@ximian.com>
4976
4977                 * Control.cs (Refresh): only refresh if we've got a handle and are
4978                 visible.
4979                 (CreateAccessibilityInstance): CreateControl() here.
4980                 (UpdateChildrenZOrder): complicate the code loop even more by
4981                 taking into account controls that haven't had their handle
4982                 created, and those that aren't visible.  But on the flip side,
4983                 simplify the code by splitting it into two loops.  one which
4984                 builds up the list of child controls we're interested in, and the
4985                 other that sets the z order of those children.
4986
4987         2007-02-14  Chris Toshok  <toshok@ximian.com>
4988
4989                 * Control.cs: Control.AccessibilityObject causes the control to be
4990                 created, not just the handle.
4991
4992         2007-02-14  Chris Toshok  <toshok@ximian.com>
4993
4994                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
4995                 problem on X where a window might have its handle created (and be
4996                 visible) while the window is unmapped.  calling XConfigureWindow
4997                 on an unmapped window is bad, and generates X errors.
4998
4999         2007-02-13  Chris Toshok  <toshok@ximian.com>
5000
5001                 * Control.cs (CreateHandle): don't loop over our children setting
5002                 their parent here.  do it when in WndProc when we're shown.
5003                 (UpdateChildrenZOrder): make this internal so we can call it from
5004                 ScrollableControl.
5005                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
5006                 creating its handle.  Also, remove the calls to PerformLayout from
5007                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
5008                 OnVisibleChanged only seems to be called directly here for the
5009                 toplevel control.  It's propagated down the window hierarchy by
5010                 calls to child.OnParentVisibleChanged.
5011                 (OnVisibleChanged): don't do layout here - it's done (oddly
5012                 enough, according to a glance at stack traces on ms.net..) in
5013                 ScrollableControl.
5014                 
5015                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
5016                 z order of our children before calling PerformLayout.
5017
5018         2007-02-12  Chris Toshok  <toshok@ximian.com>
5019
5020                 [big change, fixes #80020]
5021                 
5022                 * AccessibleObject.cs: we need to make owner internal again to fix
5023                 some of ControlAccessibleObject.
5024
5025                 * Control.cs: lots of changes here.  add support for WM_CREATE,
5026                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
5027                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
5028                 we create child controls.  leave the MonoTODO's for the
5029                 accessibility calls, but fix the exceptions so the tests pass.
5030
5031                 Add the InvalidOperationExceptions to Invoke methods, and remove a
5032                 couple of InvokeInternal methods we aren't using.
5033                 
5034                 Also, add a couple of CreateHandle calls in places where we know
5035                 the handles are being created but our code doesn't reference
5036                 .Handle.
5037
5038                 Make SetVisibleCore call OnVisibleChange if the handle isn't
5039                 created.  If the handle is created, we rely on XplatUI.SetVisible
5040                 generating the event synchronously.
5041                 
5042                 Lastly, make sure we don't use this.Handle inside CreateHandle,
5043                 because we can call back into client (and that code can dispose of
5044                 the control).
5045
5046                 * XplatUIStructs.cs: misc/cleanup.
5047
5048                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
5049                 although we don't populate the wParam properly.
5050                 (CreateWindow): generate WM_CREATE.
5051                 (MapWindow,UnmapWindow): make these calls synchronous, at great
5052                 performance expense (particularly in the unmap case), to match
5053                 win32 behavior.
5054
5055                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
5056                 to call it.
5057                 (set_MdiParent): don't recreate the handle unless it's been
5058                 created already.
5059                 
5060                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
5061                 it's created.
5062
5063                 * NativeWindow.cs: this is probably the weirdest part of the
5064                 patch.  We need a way to link up the window being created to the
5065                 WM_CREATE message.  Since we can only be creating one window at a
5066                 time on a given thread, we keep track of a per-thread reference so
5067                 we can dispatch it properly.  We also need to keep track of the
5068                 Hwnd currently being created so that the win32 backend doesn't
5069                 have problems.
5070                 
5071                 * XplatUIWin32.cs: a similar change to the one we made in
5072                 NativeWindow.cs.
5073
5074 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
5075
5076         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
5077         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
5078         to draw the menu shortcut string.
5079
5080 2007-03-07  Jackson Harper  <jackson@ximian.com>
5081
5082         * TreeNode.cs: Add the 2.0 collapse method.
5083
5084 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5085
5086         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
5087
5088 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5089
5090         * DataGridView.cs: Change DataSource will clear column and row
5091         lists. Call Invalidate() to reflect DataSource change.
5092
5093 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5094
5095         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
5096         and a new row is added to it.
5097
5098 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
5099
5100         * DataGridView.cs: Add columns when DataSource is en empty list but
5101         is a System.Data.DataView (from a System.Data.DataTable).
5102
5103 2007-03-06  Andreia Gaita  <avidigal@novell.com>
5104
5105         * Label.cs: Implement AutoEllipsis (2.0)
5106
5107 2007-03-06  Jackson Harper  <jackson@ximian.com>
5108
5109         * TreeView.cs: Implement 2.0 TopNode setter property.
5110         - Use a local var instead of the skipped_nodes field for computing
5111         how many nodes to skip.  Otherwise we won't scroll because the
5112         valuechanged handler checks if skipped_nodes is equal to the new
5113         value.
5114         - Implement 2.0 Sort method.
5115         - Add useless 2.0 DoubleBuffer property
5116         - Implement 2.0 LineColors property.  Lets you change the color of
5117         the lines in the tree. Terribly useful for creating non cohesive
5118         desktops.
5119         - Implement 2.0 image key feature.
5120
5121 2007-03-06  Jackson Harper  <jackson@ximian.com>
5122
5123         * TreeView.cs: We can't get the bounds of the nodes before raising
5124         the AfterSelect event, because that event could change the node's
5125         bounds (scrolling, font change, etc).
5126
5127 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5128
5129         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
5130         * Form.cs: Don't recreate handle when creating FormWindowManager, just
5131           update window styles. In CreateParams us VisibleInternal instead of
5132           VIsible to get the actual visible flag set for this form.
5133         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
5134           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
5135           handle the case when the form is already maximized, in which case
5136           it should be restored. Fixes #81043.
5137
5138 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5139
5140         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
5141
5142 2007-03-05  Jackson Harper  <jackson@ximian.com>
5143
5144         * TreeViewHitTestInfo.cs: implement.
5145
5146 2007-03-05  Jackson Harper  <jackson@ximian.com>
5147
5148         * InternalWindowManager.cs: class status fix.
5149
5150 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5151
5152         * InternalWindowManager.cs: All windows that have a parent
5153         are confined to their parent when they're being moved.
5154         Fixes #80822.
5155
5156 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
5157
5158         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
5159         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
5160
5161 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5162
5163         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
5164           buttons invisible before deciding which ones should be visible
5165           (fixes minimize/maximize buttons showing up in toolwindows). Remove
5166           an unused variable.
5167         * InternalWindowManager.cs: Remove warning.
5168
5169 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5170
5171         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
5172         to throw an InvalidOperationException is virtual mode is being used.
5173
5174 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5175
5176         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
5177         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
5178         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
5179         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
5180         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
5181         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
5182
5183 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5184
5185         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
5186           driver.KeyboardDelay from XplatUI.KeyboardDelay 
5187         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
5188           (patch by Sergey Volk)
5189
5190 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5191
5192         * ToolWindowManager.cs: Added, contains logic for
5193           tool windows.
5194         * CreateParams.cs: Add a few helper methods and an
5195           internal variable to know which control the CreateParams belongs
5196           to.
5197         * Control.cs: Call Form.ChangingParent when the
5198           parent is about to be changed.
5199         * XplatUIX11.cs: DeriveStyles (): Set
5200           caption_height for all windows that have captions and are children.
5201           Update to use ToolWindowManager instead of InternalWindowManager
5202           for ToolWindows.
5203         * XplatUIWin32.cs: Set fake window styles for all
5204           windows that have window managers.
5205         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
5206           now duplicated for mdi windows when they are
5207           maximized, first for the buttons the window itself has, then for
5208           the buttons that appear in the menu bar. Makes things a little
5209           easier). Updated UpdateWindowDecorations, SetWindowState and the
5210           mouse eventhandlers accordingly.
5211         * Form.cs: Add ChangingParent (), contains the
5212           logic of what should happen when the parent changes. In MdiParent
5213           don't set things that ChangingParent () is doing. When handling
5214           WM_CLOSE, we can close the form if there are any other modal forms
5215           and the current form is a descendent of the modal form.
5216         * InternalWindowManager.cs: A lot of refactoring,
5217           the title buttons are now extracted to a separate container class
5218           that takes care of all button code (clicks, tooltips, etc). Moved
5219           Iconic|Maximized|Normal Bounds properties to this class from
5220           MdiWindowManager, so that the window state logic can succeed for
5221           other than mdi wm's. Implemented general window state change logic.
5222           Moved CreateButtons to ThemeWin32Classic, since the theme might
5223           override which buttons are available when as well as the exact
5224           location.
5225         * FormWindowManager.cs: Added, contains logic for
5226           normal forms.
5227         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
5228           which buttons go where (and if they are at all visible). 
5229           Removed special handling of maximized windows, since they aren't special. 
5230           In DrawManagedWindowDecorations don't try to draw the text if it is
5231           empty.
5232         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
5233           use whatever the wm gives us.
5234
5235 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
5236
5237         * ButtonBase.cs: Add 2.0 properties.
5238         * Button.cs: Override Draw for 2.0.
5239         * Control.cs: Add Entered and Selected properties.
5240         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
5241         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
5242         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
5243         buttons.
5244         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
5245
5246 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5247
5248         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
5249
5250 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
5251
5252         * XplatUIWin32.cs: Register a new class with Windows each time we get
5253         a new ClassStyle.  [Fixes bugs #79432, #80817]
5254         * Controls.cs: Set the correct ClassStyle in CreateParams.
5255         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
5256
5257 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
5258
5259         * ListView.cs: Add fireEvent argument to ReorderColumn since the
5260         ColumnReordered event must not be signaled when modifying DisplayIndex
5261         of a ColumnHeader. Added internal ReorderColumns method which takes
5262         care of drawing, and updating the internal DisplayIndex of the
5263         ColumnHeader. Added AddColumn method which is invoked from
5264         ColumnHeaderCollection when adding or inserting columns, and which
5265         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
5266         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
5267         Recalculated dispay indices after removing a ColumnHeader.
5268         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
5269         match MS. Allows last display index to be returned after ListView
5270         is disposed. Update actual location of ColumnHeader when DisplayIndex
5271         is modified.
5272
5273 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
5274
5275         * LinkLabel.cs: Improve CalcTrimRectangle.
5276         
5277         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
5278
5279 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5280
5281         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
5282         get rectangle as a result value.
5283
5284 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
5285
5286         * LinkLabel.cs: Theres some diferences between rectangle return from 
5287         MeasureCharacterRanges and the area used for DrawString to fix this 
5288         CalcMeasurementFactor method was created, it calcules the diferences
5289         to be use later to adjust rectangle in draw operations. Fixes #80473.
5290         
5291         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
5292         to adjust draw rectangle.
5293
5294 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5295
5296         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
5297         text and some other changes to reduce and optimize source code.
5298
5299 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5300
5301         * RadioButton.cs: Implement 2.0 event.
5302         * RelatedImageListAttribute.cs: Implement new class.
5303
5304 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
5305
5306         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
5307
5308 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
5309
5310         * CheckBox.cs: Implement 2.0 functionality.
5311
5312 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5313
5314         * ListView.cs: Refactor Add and AddRange methods of
5315         ListViewItemCollection, to not update the ListView
5316         everytime an item is added in AddRange. Also move the update
5317         code to a new CollectionChanged method, and call it
5318         from other methods that need it as well (this should also fix some
5319         bugs when Sorting is used).
5320
5321 2007-02-27  Jackson Harper  <jackson@ximian.com>
5322
5323         * TextControl.cs: Try to never let the caret stay in a non-text
5324         tag.
5325         * TextBoxBase.cs: Update the caret.
5326
5327 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
5328
5329         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
5330         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
5331         delete POINT structure, duplicate of one in XplatUIStructs.
5332         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
5333
5334 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
5335
5336         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
5337         edit box since otherwise the Label would immediately be set (even if
5338         the user did not modify the label). In OnKeyDown set Handled to true
5339         if Return or Escape was pressed. In ColumnHeaderCollection unlink
5340         columns that are to be removed. In ListViewItemCollection unlink items
5341         that are to be removed.
5342
5343 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
5344
5345         * TextRenderer.cs: If we set a GDI clip region, we need to clear
5346         it when we are done.  [Fixes bug #80949]
5347
5348 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5349
5350         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
5351
5352 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5353
5354         * ListView.cs: I forgot to commit the changes for ListView 
5355         in my previous patch.
5356
5357 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5358
5359         * Clipboard.cs: Partially implement an overload of SetDataObject.
5360         * Form.cs: Implement ShowWithoutActivation.
5361         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
5362
5363 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5364
5365         This is a first set of changes to make the Virtual mode works,
5366         by avoiding the retrieval of ListViewItem instances until
5367         draw time.
5368
5369         * ListView.cs: Store item position in the ListView instead of the
5370         ListViewItem, this way we don't request the Bounds property of
5371         ListViewItem inside the ListView calculations, as well as cache the item
5372         size in item_size field. Store indexes instead of ListViewItem
5373         instances in the matrix used by icon view. Add a ItemMatrixLocation
5374         struct to hold the row and col info of the matrix info.
5375
5376         * ListViewItem.cs: Don't store the location anymore, and only cache
5377         the rectangles for GetBounds. Use the ListView.GetItemLocation
5378         method to retrieve the actual location.
5379
5380 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5381
5382         * TextRenderer.cs: Add clipping support, thanks to George.
5383         [Fixes bug #80949]
5384
5385 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5386
5387         * ListViewItem.cs: Cancel label edit when item is removed from 
5388         ListView.
5389         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
5390         event before the edit textbox is displayed.  Added CancelEdit method
5391         which is used end to editing while ignoring the value set by the
5392         user. In EndEdit, set focus to ListView to avoid losing focus to
5393         other controls. In ListViewItemCollection.Clear, cancel editing of
5394         any of the items.  In Remove, cancel editing of item being removed.
5395         Avoid udplicate code by modifing RemoveAt to invoke Remove.
5396
5397 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5398
5399         * FileDialog.cs: Update FSEntry when move is successful. Fixes
5400         bug #80948.  
5401
5402 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5403
5404         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
5405         compatible with non X11 systems. Fixes #80901.
5406
5407 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
5408
5409         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
5410         whether the item should be unselected and reselect. We do no want this
5411         when we're starting to edit the label. Do not fire the 
5412         SelectedIndexChanged event from ListView when its already been fired
5413         by modifying ListViewItem.Selected. Fixes bug #80943.
5414
5415 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5416
5417         * TextRenderer.cs: Previos commit logic was backwards.
5418
5419 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
5420
5421         * TextRenderer.cs: Don't add padding on MeasureText if we were
5422         sent the NoPadding flag.
5423
5424 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5425
5426         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
5427         after DrawButton. To prevent image overlaps button borders SetClip and 
5428         ResetClip added before and after draw image. Fixes #79129.
5429
5430 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
5431
5432         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
5433         window size, it fix problem when you run under win32 that theres
5434         Size diferent than ClientSize. Also fix controls size and positions
5435         to mimic Win32. Fixes #80837.
5436
5437 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
5438
5439         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
5440         menu area to fix some problems for non X11 systems. Fixes #80613.
5441
5442 2007-02-22  Jackson Harper  <jackson@ximian.com>
5443
5444         * TreeNode.cs: When a node is expanded, set its is_expanded flag
5445         even if it doesn't have any children.
5446
5447 2007-02-22  Jackson Harper  <jackson@ximian.com>
5448
5449         * TreeView.cs: Calculate the top node 'on the fly', this
5450         eliminates issues where you need to click on the tree before
5451         scrolling it to get the top node computed correctly.
5452         * TreeNodeCollection.cs: We don't need to mess with the top node
5453         anymore.
5454
5455 2007-02-22  Jackson Harper  <jackson@ximian.com>
5456
5457         * DataGridViewRow.cs: Fix typo so height can actually be set.
5458         Patch by Peter Grimm.
5459
5460 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5461
5462         * FileDialog.cs: Fixed support for renaming files and directories.
5463         * ListView.cs: Do not lose focus when edit is canceled. Process
5464         Escape as regular key (to prevent closing of dialogs).
5465
5466 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5467
5468         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
5469         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
5470
5471 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
5472
5473         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
5474         did not modify label.
5475         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
5476         modified the text. Reset Label when user presses Escape in edit mode.
5477         Move focus to ListView after having cancelled or finished editing the
5478         label.
5479
5480 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
5481
5482         * ComboBox.cs: Removed unnecessary initializations. Marked items field
5483         private. Clear textbox when Text is set to null and SelectedIndex is
5484         already -1.
5485         * FileDialog.cs: Removed unnecessary initializations. Removed 
5486         workarounds for ComboBox bugs that are now fixed. Modified
5487         DefaultExt, InitialDirectory and Title property to change null to
5488         zero-length string in getters. Avoid directly accessing fields.
5489
5490 2007-02-20  Jackson Harper  <jackson@ximian.com>
5491
5492         * TextControl.cs: Remove RecalAlignments call, that was some
5493         debugging leftovers.
5494         - Don't use the line indent when we shouldn't.
5495         * RichTextBox.cs: Add support for paragraph left indents.
5496
5497 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5498
5499         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
5500         Seems like the class status pages doesn't catch params differences.
5501
5502 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5503
5504         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
5505
5506 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
5507
5508         * ComboBox.cs: Setting Text should have no effect if item text of
5509         selected item exactly matches value. First lookup text using
5510         case-sensitive comparison, and fallback to case-insensitive comparison.
5511         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
5512         allow startIndex to be last index. Changed ArgumentOutOfRangeException
5513         paramname to match MS. Restart from first item if string is not found
5514         after startIndex. Fixed paramname of ArgumentNullException that is
5515         thrown for null value in ObjectCollection.Contains.
5516
5517 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5518
5519         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
5520
5521 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5522
5523         * ListControl.cs: In SelectedValue use value.Equals to compare for
5524         equality instead of ==, otherwise it will fail for strings.
5525         Fixes #80794.
5526
5527 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5528         
5529         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
5530         since the caret won't show up unless ShowSelection is true. 
5531         Fixes #80795.
5532
5533 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5534
5535         * Application.cs: When disabling all forms but the main form, do not
5536           disable any descendants of the main form (such as mdi children or
5537           other parented forms). Fixes #80822 on Windows.
5538         * Form.cs: If we have a parent, set the WS_CHILD style.
5539         * Control.cs: Update the window styles if the control whose parent has
5540           changed is a form (the WS_CHILD style has to be switched).
5541
5542 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
5543
5544         * XplatUIStructs.cs: MsgUIState structure added.
5545
5546 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5547
5548         * FileDialog.cs: Removed need for separate fileName field. On 2.0
5549         profile, do not check filename(s) for illegal character if filename(s)
5550         were set non-interactively but always check on 1.0 profile. Fixed NRE
5551          in DefaultExt and only strip off first leading dot. Improve exception
5552         message when invalid Filter is set. Do not ignore InitialDirectory if
5553         it does no exist. Store specified Title, and if empty use default
5554         title (depending on type of dialog). Added an internal DialogTitle 
5555         property for retrieving dialog title. Fixed logic of displayed dir to
5556         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
5557         string as its buggy.
5558         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
5559         FileName is a zero-length string (it can never be null). Override 
5560         DialogTitle property to set default title of dialog box.
5561         * SaveFileDialog.cs: Override DialogTitle property to set default
5562         title of dialog box.
5563
5564 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
5565
5566         * FileDialog.cs: Modify default text of filename and filetype labels
5567         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
5568         after we've updated the SelectedIndex. Fixes part of bug #80887.
5569         * SaveFileDialog.cs: Set text of filetype label.
5570
5571 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5572
5573         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
5574         label field. Needed by latest Jackson's fixes for ListView.
5575
5576 2007-02-16  Andreia Gaita  <avidigal@novell.com>
5577
5578         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
5579         print preview images.
5580
5581 2007-02-16  Jackson Harper  <jackson@ximian.com>
5582
5583         * ListView.cs: Make AfterLabelEdit work correctly.
5584         * FileDialog.cs: After changing the name of the folder, we have to
5585         make sure that it is created, or that we pop up an error because
5586         it already exists.
5587
5588 2007-02-16  Jackson Harper  <jackson@ximian.com>
5589
5590         * X11Dnd.cs: Implement aliases on mime handlers, so things like
5591         System.String are mapped to text.
5592         - Handle dataobjects, getting all the possible formats out of them
5593         - We dont need the drag event args before we give feedback. This
5594         allows feedback cursors to be immediate before selections have
5595         been converted.
5596
5597 2007-02-16  Jackson Harper  <jackson@ximian.com>
5598
5599         * TextBoxBase.cs: Modified the method for inserting images to
5600         taking a line and position instead of tag and position.
5601         * RichTextBox.cs: Handle PngBlip data by inserting the png image
5602         into the RTF file.
5603         * TextControl.cs: Allow images to be inserted as the first tag of
5604         a line.
5605         - Fix some off by one issues when we assume the first tag is a
5606         text tag, not an image tag.
5607
5608 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5609
5610         * ListView.cs: Set focus to ListView when ItemControl gets a
5611         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
5612         Fixes part of #80467.
5613
5614 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5615
5616         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
5617           validate Text input (if null or empty string reset Value to default
5618           value). Fixes #80830.
5619
5620 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5621
5622         * ListView.cs: Set owner as null for columns and items when
5623         Dispose is invoked. Fixes #80607.
5624
5625 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
5626
5627         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
5628         showing DropDowns, don't show a Grip when doing Flow layout.
5629         [This fixes the toolbox in PDN 2.72.]
5630         * ToolStripItem.cs: Add Anchor property and some internal properties to
5631         reduces needed changes to FlowLayout.
5632         * ToolStripOverflow.cs: Remove unused variable.
5633         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
5634         use it in the layout calculations.
5635
5636 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5637
5638         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
5639         reported in #79640.
5640         
5641         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
5642         size calculation.
5643
5644 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5645
5646         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
5647         MeasureString format, it can make button very large in some cases, it is
5648         strange but is what win32 do.
5649
5650 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5651
5652         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
5653         size calculation.
5654
5655         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
5656         rendering, the value is based on MenuAccessKeysUnderlined.
5657
5658 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
5659
5660         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
5661         for most themes.
5662         
5663         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
5664         
5665         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
5666         and use MenuAccessKeysUnderlined instead.
5667
5668 2007-02-13  Andreia Gaita  <avidigal@novell.com>
5669
5670         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
5671         A selected control would not get a Focus call if:
5672                 - the default active control of the container is the same as
5673                   the one that was selected
5674                 - we are switching from one container to another
5675         Under these conditions, the container being selected already has
5676         an active_control, which is the same as the one being activated, 
5677         so set_ActiveControl would always return and not send the Focus
5678         call. Fix to check if the currently active control of the container
5679         is actually focused.
5680
5681 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
5682
5683         * StatusStrip.cs: Implement the spring layout.
5684         * ToolStripControlHost.cs: Make sure the hosted control's visibility
5685         always matches the host.
5686         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
5687         and TextAfterImage.
5688
5689 2007-02-13  Andreia Gaita  <avidigal@novell.com>
5690
5691         * Control.cs: Code reorganization only.
5692           - Reorganize the WndProc cases so that each case has it's own handling method, 
5693           to help with the no-line-numbering stack traces.
5694           - Formatting changes (it's vstudio's fault, really :p)
5695
5696 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5697
5698         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
5699           Thread.CurrentUICulture to match DateTimePicker's (and MS)
5700           behaviour.
5701
5702 2007-02-12  Jackson Harper  <jackson@ximian.com>
5703
5704         * RichTextBox.cs:
5705         * TextBox.cs: By default we have a non multiline document
5706         - use the multiline property instead of the internal variable
5707         * TextBoxBase.cs: Treat multiline and non multiline the same in
5708         most places.
5709         - Use the documents multiline flag instead of tracking it ourself
5710         * TextControl.cs: Attempt at getting multiline to match MS
5711         behavior.  Lines now track an offset, which is either their X or Y
5712         offset depending on whether or not we are in multiline mode.
5713         - Update all the methods to understand that lines have an X value.
5714         - Fix crash in Undo::Duplicate when empty lines are deleted.
5715
5716 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
5717
5718         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
5719         code moved to properties PreferredHeight and PreferredWidth. It solve the
5720         all problems when preferred sizes must be recalculated. Fixes #80801.
5721
5722 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
5723
5724         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
5725         font height when compatible_text_rendering is false. Partially fix #80801.
5726
5727 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
5728
5729         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
5730
5731 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
5732
5733         * Form.cs: Improved exception messages in ShowDialog.
5734
5735 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
5736
5737         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
5738         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
5739         if not set. Fixes bug #80764. Avoid accessing current_settings field
5740         directly.
5741
5742 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
5743
5744         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
5745         false.
5746
5747         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
5748         public in 2.0 and for easy maintenance and dont break compatibility it is 
5749         internal in 1.1.
5750         
5751 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
5752
5753         * ToolStripItem.cs: Implement using images from ImageList.
5754
5755 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5756
5757         * DateTimePicker.cs: Change default date-formatting culture from
5758           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
5759           seems to be the way MS does it.
5760
5761 2007-02-08  Andreia Gaita  <avidigal@novell.com>
5762
5763         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
5764         (the 6 was cut off on the right side)
5765
5766 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
5767
5768         * Form.cs: Tell MenuStrips to close when the form is clicked.
5769         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
5770         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
5771         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
5772         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
5773         support for Overflow, where items that do not fit are automatically
5774         reparented to a drop down menu.
5775         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
5776         Also: fixes bug #80747.
5777
5778 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5779
5780         * ComboBox.cs: Remove warning (unused code).
5781         * ScrollableControl.cs: Remove warning for 1.1 profile.
5782
5783 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5784
5785         * Form.cs: Remove a warning.
5786
5787 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5788
5789         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
5790           'g' specifier, not documented anywhere, but seems to always show up
5791           as a single space (might have something to do with the DateTime 'g'
5792           specifier, which is the era format, but since DateTimePicker can't
5793           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
5794           won't crash if the format has an unmatched quote. Now shows
5795           single-character formats correctly. Fixes #80744.
5796
5797 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
5798
5799         * StatusStrip.cs: Stretch property needs to call base.Stretch,
5800         not this.Stretch to fix stack overflow. [Fixes bug #80760]
5801
5802 2007-02-07  Chris Toshok  <toshok@ximian.com>
5803
5804         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
5805         background color.  it overwrites the background image we've
5806         already painted.  Fixes #80599.
5807
5808 2007-02-07  Chris Toshok  <toshok@ximian.com>
5809
5810         * DataGrid.cs: return immediately from Edit() when there are no
5811         columns.  Fixes #80662.
5812
5813 2007-02-07  Chris Toshok  <toshok@ximian.com>
5814
5815         * MessageBox.cs: fix #80625.  don't always show the Help button in
5816         2.0.  use the displayHelpButton parameter to determine if we
5817         should show it. Also, make the internal show_help field private.
5818
5819 2007-02-07  Chris Toshok  <toshok@ximian.com>
5820
5821         * Control.cs (SetVisibleCore): check in the proposed patch for
5822         80604, and set is_visible before calling CreateControl.
5823
5824 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
5825
5826         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
5827         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
5828         on it.
5829
5830 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
5831
5832         * MenuAPI.cs: hotkey_active internal field added, it is required because
5833         we need to know when hotkeys must be draw, before this change a keystate
5834         Navigating was used but we can have menu in navigating state without
5835         hotkeys. Fixes #80694.
5836         
5837         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
5838
5839 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5840
5841         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
5842           corresponding events and methods to be internal for 1.1 profile and
5843           public for 2.0 profile (required by SizeGrip).
5844         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
5845           implicit control list). Don't set the size nor the location of the
5846           SizeGrip anymore as it's not needed.
5847         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
5848           draw directly on the captured control (fixes #80656). Removed
5849           ShowGrip (it wasn't used anywhere), redraw (always true), added
5850           GetDefaultSize and GetDefaultRectangle to calculate defaults.
5851         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
5852           be called from SizeGrip.
5853
5854 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5855
5856         * Timer.cs: Throw ArgumentException if Interval <= 0.
5857
5858 2007-02-05  Jackson Harper  <jackson@ximian.com>
5859
5860         * TreeView.cs: We need to check scrollbar visibility when window
5861         visibility is updated, because non visible trees don't ever add
5862         scrollbars.
5863         * Cursor.cs: We want the override cursor to be reset to NULL when
5864         we set current cursor to the default cursor.
5865
5866 2007-02-05  Jackson Harper  <jackson@ximian.com>
5867
5868         * TextControl.cs: Don't have crlfs when we are non multiline.
5869         - Consolidate the line position.
5870
5871 2007-02-05  Jackson Harper  <jackson@ximian.com>
5872
5873         * X11Keyboard.cs: BACK+CTRL gets a special char code.
5874
5875 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5876
5877         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
5878           handling LeaveNotify->NotifyUngrab in order to send
5879           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
5880           after calling XUngrabPointer, so we call WindowUngrabbed directly
5881           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
5882         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
5883           MouseCaptureChanged correctly. Also create handles if changing
5884           Capture (matches MS behaviour).
5885
5886 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5887
5888         * SizeGrip.cs: Make the last change 2.0 only.
5889
5890 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5891
5892         * SizeGrip.cs: If resizing and the capture is lost, revert any size
5893           changes to initial size (fixes #80597).
5894
5895 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5896
5897         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
5898
5899 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5900
5901         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
5902           background) and only allow dragging if enabled. This way the
5903           sizegrip can be used to fill the open square that otherwise would
5904           have been shown in the bottom right corner of ScrollableControl
5905           when ScrollableControl is not suppose to support sizing.
5906         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
5907           sizegrip is shown and enabled, and hook up with necessary events.
5908
5909 2007-02-01  Chris Toshok  <toshok@ximian.com>
5910
5911         * DataGridTextBoxColumn.cs: clean up the
5912         GetFormattedString/GetColumnValueAtRow combination of functions.
5913         Also fix UpdateUI, and the initial state of
5914         IsInEditOrNavigateMode.
5915
5916         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
5917         aren't supposed to scroll the textbox here, we're supposed to
5918         scroll the datagrid.
5919
5920 2007-02-01  Chris Toshok  <toshok@ximian.com>
5921
5922         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
5923         setting the position.
5924
5925 2007-02-01  Chris Toshok  <toshok@ximian.com>
5926
5927         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
5928         here, since the most recent focus fixes keep us from generating
5929         the Leave event when our textbox gets focus.
5930         (Edit): we should be passing null for the column style's
5931         instantText parameter.
5932         
5933 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
5934
5935         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
5936         raised.  Fixes menu text/icons not showing up in PDN.
5937
5938 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5939
5940         * Control.cs: Remove code in constructor that makes every
5941         control with WS_CHILD set have initial location -1, -1.
5942
5943 2007-01-31  Jackson Harper  <jackson@ximian.com>
5944
5945         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
5946         XplatUIX11.
5947         * XplatUIX11.cs: Give teh keyboard to teh dnd.
5948
5949 2007-01-31  Jackson Harper  <jackson@ximian.com>
5950
5951         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
5952         - Remove some debug code.
5953
5954 2007-01-31  Jackson Harper  <jackson@ximian.com>
5955
5956         * XplatUIX11.cs: If you set the override cursor during a grab, it
5957         should actually override the grab cursor.  This comes into play
5958         when you are setting custom cursors in a DND feedback method.
5959
5960 2007-01-31  Jackson Harper  <jackson@ximian.com>
5961
5962         * X11Dnd.cs: Add support for handling the QueryContinue and
5963         GiveFeedback events.
5964         - Cancel drag and drop actions when the escape key is clicked.
5965         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
5966         can handle the ESCAPE key.
5967         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
5968         done when dnd events are continued after the button is released.
5969         - Add a new helper method so that dnd can translate key events.
5970
5971 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
5972
5973         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
5974         make it more obvious what is happening.
5975
5976 2007-01-30  Jackson Harper  <jackson@ximian.com>
5977
5978         * XplatUIX11.cs: Don't break when handling button release in drag
5979         and drop operations. We need that BUTTONUP message to get through
5980         so capture is released.
5981         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
5982         this is handled automatically when the mouse is down.
5983
5984 2007-01-30  Jackson Harper  <jackson@ximian.com>
5985
5986         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
5987         is closed, so we need to make sure that we aren't changing the
5988         dialog result when the OK (Open or Save) button has been clicked
5989         and we are closing the window ourselves.  Note we don't need to
5990         worry about the cache being written in this case, because it was
5991         already done in the previous FilOk call.
5992
5993 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5994         
5995         * DateTimePicker.cs: Remove a warning.
5996         * ComboBox.cs: Remove a couple of warnings.
5997
5998 2007-01-29  Chris Toshok  <toshok@ximian.com>
5999
6000         * XplatUIX11.cs: don't crash, and remove the icon if the user has
6001         set one, if SetIcon is passed a null icon.
6002
6003 2007-01-29  Andreia Gaita  <avidigal@novell.com>
6004
6005         * TextBox.cs: Redraw when the password characters changes
6006         * TextControl.cs: Check if textbox has a password char and draw 
6007         a line of password chars instead of the text in the line. LineTag gets 
6008         an extra Draw() method which allows document.Draw to override the text 
6009         that will be drawn. Removes 1024 char limitation on length of passworded 
6010         lines.
6011
6012 2007-01-29  Jackson Harper  <jackson@ximian.com>
6013
6014         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
6015         single chars is not.
6016
6017 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
6018
6019         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
6020         one pixel.  Fix a StackOverflowException caused by an overload wrongly
6021         calling itself.
6022
6023 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
6024
6025         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
6026         also remove ProcessArrowKey and put the code inside ProcessKeys.
6027
6028 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
6029
6030         * PaddingConverter.cs: Added.
6031
6032 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6033         
6034         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
6035         ShowPanels is false (fixes #80600). Only draw up to 127 characters
6036         of text (fixes #80601). For panels clip the text to draw to the
6037         panel (fixes #80603).
6038
6039 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6040
6041         * ComboBox.cs: Fixed implementation of ResetText.
6042
6043 2007-01-25  Jackson Harper  <jackson@ximian.com>
6044
6045         * TextControl.cs: For the last char of a line we need to use the
6046         line size, not that chars width, since it won't actually be
6047         computed since the right side of a char is based on the start of
6048         the left side of the next char, and the next char does not exist.
6049
6050 2007-01-25  Chris Toshok  <toshok@ximian.com>
6051
6052         * Splitter.cs: fix the new unit tests, and reindent some switch
6053         statements.
6054
6055 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6056
6057         * ComboBox.cs: Implemented 2.0 methods and events.
6058         * TextBoxBase.cs: Added OnTextUpdate, so that
6059         ComboBox.ComboTextBox can inform ComboBox of it.
6060
6061 2007-01-25  Jackson Harper  <jackson@ximian.com>
6062
6063         * TextControl.cs: Respect ShowSelection when deciding whether or
6064         not to display the caret, this allows comboboxes to have carets
6065         when the combotextbox does not have focus.
6066
6067 2007-01-25  Jackson Harper  <jackson@ximian.com>
6068
6069         * TextControl.cs: Add a Suspend/Resume for updating, basically the
6070         same as the Suspend/Resume for recalc, except this will do actual
6071         Invalidates.
6072         - New Undo manager, works much like the MS version.
6073         - Implemented Redo
6074         * TextBoxBase.cs: The Cut operation is undoable.
6075
6076 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6077         
6078         * TextBoxBase.cs: Don't antialias text. Makes it look way better
6079         on Windows (no difference on Linux).    
6080
6081 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6082
6083         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
6084         we don't want to activate any windows. Fixes #79433.
6085
6086 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
6087
6088         - ButtonBase.cs: Fix capitalization of parameter: disposing.
6089         [Fixes bug #80609]
6090
6091 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
6092
6093         * FileDialog.cs:
6094         - Move to using System.ComponentModel.EventHandlerList
6095         - Replace Refresh with Invalidate
6096         - Clear the mime filecache on closing
6097         - Some other memory reducing work. After beeing closed FD now uses
6098           only about 300 KB for the fdo mime stuff plus the memory of the
6099           cached icons.
6100         * Mime.cs: Changed coding style and removed unnecessary commented
6101         code. Some more memory memory reducing work.
6102
6103 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6104
6105         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
6106         a few other missing 2.0 properties.
6107         * Theme.cs: Added DrawFlatStyleComboBox.
6108         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
6109
6110 2007-01-24  Chris Toshok  <toshok@ximian.com>
6111
6112         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
6113         wake_waiting flag, not just when there's data to be read.  if we
6114         don't, then future wakeup's won't reach us and we'll be doomed to
6115         wait for the entire 1 second timeout forever (unless there are X
6116         events to be had).
6117
6118 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6119
6120         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
6121         until you pass Items.Count, not Items.Count - 1 like 1.1.
6122
6123 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
6124
6125         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
6126
6127 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
6128
6129         * ToolStripContainer.cs: The recent Dock fix exposed that I was
6130         adding the panels in the wrong order.
6131
6132 2007-01-24  Jackson Harper  <jackson@ximian.com>
6133
6134         * TextBoxBase.cs: When we move the caret we also need to move the
6135         selection, this fixes some random crashing after doing select
6136         text, unselect, delete a char, paste.
6137
6138 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6139
6140         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
6141
6142 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6143
6144         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
6145         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
6146         * ToolBar.cs: Force redraw in BackgroundImageChanged.
6147
6148 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6149
6150         * ToolBar.cs:
6151         - Implement support for vertical toolbars. Fixes #80539;
6152         - Call LayoutToolBar when resize, it fix some other problems in layout.
6153         - Rename requested_height to requested_size, as we can have width on it
6154         when toolbar is vertical.
6155         - Create a private property "Vertical" that uses Dock to verify when 
6156         toolbar is vertical or not.
6157         - Set ControlStyles when change Dock property.
6158         - Refactory in LayoutToolBar to have better variables names and to support
6159         vertical toolbars.
6160         - Fixes default value for ButtonSize when button count is equal zero, size
6161         must be (39, 36) test case writed.
6162
6163 2007-01-23  Chris Toshok  <toshok@ximian.com>
6164
6165         * Control.cs: fix the checks so that they work correctly for mdi
6166         parents/children.
6167
6168 2007-01-23  Chris Toshok  <toshok@ximian.com>
6169
6170         * Control.cs: ControlCollection seems to have super-secret
6171         abstraction breaking knowledge of Mdi containers.  allow MdiClient
6172         to add toplevel controls.
6173
6174 2007-01-23  Chris Toshok  <toshok@ximian.com>
6175
6176         * Control.cs: throw an ArgumentException if a toplevel control is
6177         added to our control collection from ControlCollection.Add, as
6178         well as from ControlCollection.IList.Add.  This fixes the
6179         ControlSetTopLevelTest.TestTopLevelAdd unit test.
6180
6181         Also, in ControlCollection.IList.Add, don't through an
6182         ArgumentNullException, throw an ArgumentException, when value ==
6183         null.  This matches MS.
6184
6185 2007-01-23  Chris Toshok  <toshok@ximian.com>
6186
6187         * BindingSource.cs: initial, incomplete, implementation of
6188         BindingSource.
6189
6190 2007-01-23  Jackson Harper  <jackson@ximian.com>
6191
6192         * TextControl.cs:
6193         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
6194         that I can fix a broken unit test (TextBoxTest::ClearUndo)
6195         
6196 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
6197
6198         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
6199
6200 2007-01-23  Andreia Gaita  <avidigal@novell.com>
6201
6202         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
6203         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
6204         IndexOfKey() for 2.0
6205
6206 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6207
6208         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
6209         to prevent it from changing z-order.
6210         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
6211         leave UI updates in MdiWindowManager.
6212         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
6213         1 sized (NC handling goes weird on Linux otherwise).
6214         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
6215         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
6216         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
6217         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
6218         and SetWindowState(s) to allow for changing the size of an activated child
6219         before activating it (reduces a lot of flicker).
6220
6221 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6222
6223         * Form.cs: Changing FormBorderStyle has different semantics based
6224         on whether the Form is visible or not.  If not visible, don't change
6225         the Size.  But InvalidateNC needs to be called to force the window
6226         to pick up the changes and redraw itself.  [Fixes bug #80574]
6227
6228 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
6229
6230         [Moma work]
6231         * ContainerControl.cs: ProcessCmdKey.
6232         * ErrorProvider.cs: new constructor.
6233         * Form.cs: fix AutoValidateEvent compiler warning.
6234         * Label.cs: fix OnAutoSizeChanged compiler warning.
6235         * MenuStrip.cs: fix CanOverflow compiler warning.
6236         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
6237         * TextBox.cs: Dispose.
6238         * ToolStrip.cs: CanOverflow, re-enable double buffering.
6239         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
6240         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
6241         * ToolStripItem.cs: Overflow, RightToLeft properties.
6242
6243 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6244
6245         * Form.cs: Move the layout of the main form to MdiWindowManager.
6246         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
6247         do a layout of the main window to update MdiClient's client area to
6248         the right area. Fixes #80533. Remove the calculation of nc size, 
6249         it was just wrong and the correct one is the same as for 
6250         InternalWindowManager. 
6251
6252 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
6253
6254         * Control.cs: Setting Anchor or Dock needs to reset the other
6255         to its default.  [Fixes bug #80556]
6256
6257 2007-01-20  Chris Toshok  <toshok@ximian.com>
6258
6259         * CheckedListBox.cs: class status changes.
6260
6261         * ScrollableControl.cs: same.
6262
6263         * RichTextBox.cs: same.
6264
6265         * ContainerControl.cs: same.
6266
6267         * ListView.cs: same.
6268
6269         * NotifyIcon.cs: same.
6270
6271         * MenuStrip.cs: same.
6272
6273         * RadioButton.cs: same.
6274
6275         * CheckBox.cs: same.
6276
6277         * PrintPreviewDialog.cs: same.
6278
6279         * Form.cs: same.
6280
6281 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
6282
6283         * TreeNode.cs: Apply Alan's patch for Name property.
6284
6285 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6286         
6287         * Form.cs: Implemented SizeGripStyle.
6288         * SizeGrip.cs: Check for minimum and maximum size for the
6289         control being resized and only resize if size has actually
6290         changed.
6291
6292 2007-01-19  Chris Toshok  <toshok@ximian.com>
6293
6294         * DataGridColumnStyle.cs: stop setting _readonly in the
6295         PropertyDescriptor setter.  fixes a unit test failure.
6296
6297         also, rename ParentReadOnly to TableStyleReadOnly, and have it
6298         just consult our table style (if we have one).  We don't need to
6299         consult the datagrid readonly attribute because that's passed in
6300         as the _ro arg to Edit.  this simplifies things a little.
6301         
6302         * DataGrid.cs: use CurrentColumn instead of
6303         current_cell.ColumnNumber just to simplify some of the code.
6304
6305         switch the order of some things in the CurrentCell setter to keep
6306         the previous cell from getting a textbox again -
6307         EnsureCellVisibility causes scrolling to happen, which calls Edit.
6308         So we need to set the new cell before calling it.
6309         
6310         call Edit in OnEnter, as does Microsoft.
6311         
6312         also, make sure the current table style isn't the one we create
6313         initially when checking to see if it's different than the one
6314         we're setting it to in BindColumns (this fixes #80421).
6315
6316         * GridTableStylesCollection.cs: table styles can have "" for a
6317         mapping name.  part of the fix for #80421.
6318
6319         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
6320         Edit significantly.
6321
6322 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6323
6324         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
6325         and less GDI object leaky-er.
6326
6327 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6328
6329         * LinkLabel.cs: Add opaque control style
6330
6331 2007-01-18  Jackson Harper  <jackson@ximian.com>
6332
6333         * TextControl.cs: Calculate width properly.
6334         - Don't store the tag's X offset, this can be figured out very
6335         easily.
6336         - When getting the caret tag make sure to get the last empty tag.
6337
6338 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6339
6340         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
6341         [Fixes bug #79959]
6342
6343         * Control.cs: Color.Empty shouldn't count for previous transparent
6344         redraw changes.
6345
6346 2007-01-18  Jackson Harper  <jackson@ximian.com>
6347
6348         * TextBox.cs:
6349         * RichTextBox.cs:
6350         * TextControl.cs: Starting to merge in some pieces of my older
6351         undo work.  Basically just some slight cleanup of the undo API.
6352
6353 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6354
6355         * TrackBar.cs: Fix signature of RightToLeftLayout.
6356         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
6357         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
6358         * Application.cs: Implemented UseWaitCursor.
6359
6360 2007-01-18  Jackson Harper  <jackson@ximian.com>
6361
6362         * TextControl.cs: We can't skip tags if any part of the tag is
6363         visible.
6364
6365 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6366
6367         * ContainerControl.cs: Override OnLayout.
6368
6369 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6370
6371         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
6372
6373         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
6374         everything else.
6375
6376 2007-01-18  Chris Toshok  <toshok@ximian.com>
6377
6378         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
6379         (leftover from the container_selected days, I'd wager).  fixes bug
6380         #80546.
6381
6382 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6383
6384         * Control.cs: Apply patch from George to fix the new testcase on
6385         bug #80451.  We can't just check for Color.Transparent, we need 
6386         to check if the back color's alpha channel is < 255.
6387
6388 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
6389
6390         * Form.cs: Move setting show_icon = true to before the constructor
6391         so that the base constructor has that information when it calculates
6392         the form's size.  Was causing forms to be (6, 6) bigger than they
6393         were supposed to be.  Thanks for catching this Rolf!
6394
6395 2007-01-18  Jackson Harper  <jackson@ximian.com>
6396
6397         * TextControl.cs: When replacing a selection we need to invalidate
6398         from the initial selection start, because selection start is moved
6399         to the end of the replacement.
6400
6401 2007-01-18  Andreia Gaita  <avidigal@novell.com>
6402
6403         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
6404
6405 2007-01-18  Chris Toshok  <toshok@ximian.com>
6406
6407         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
6408         I just added.
6409
6410 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
6411
6412         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
6413         layout methods and properties from ToolBarButton must be available
6414         into ToolBarButtonInfo.
6415
6416 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6417
6418         * Control.cs: If the control has a transparent background, we
6419         need to refresh it when it moves and when it's parent's background
6420         image changes.  [Fixes bug #80451]
6421
6422 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6423
6424         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
6425
6426 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
6427
6428         * XplatUIWin32.cs: Implement proper double buffering for Windows.
6429         [Fixes bug #80447, and probably speeds up things as well]
6430
6431 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6432
6433         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
6434         * XplatUIWin32.cs: We need to recalculate NC size after changing 
6435         window style to toolwindow (otherwise the client rectangle will be
6436         3 pixels to small for some reason).
6437         * MdiWindowManager.cs: Revert NC size calculations to match how
6438         they are calculated only based on window styles (to match
6439         Win32AdjustWindowRectEx, since otherwise when setting size or 
6440         location, Control will call Win32AdjustWindowRectEx to update client 
6441         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
6442         calculate a different value of client size causing another paint 
6443         (and flickering))
6444         * InternalWindowManager.cs: When moving or resizing a window only
6445         update size or location if they actually changed.
6446         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
6447         (seems to match Windows behaviour better). Cleaned up 
6448         ManagedWindowDecorations to draw what's needed and nothing else
6449         (was drawing borders and lines where they shouldn't be)
6450         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
6451         (style = 0xFFFF) and takes into account caption height when 
6452         calculating window rectangle.   
6453
6454 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6455
6456         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
6457         can be added to toolbar multiple times, we need to maintain a list of 
6458         button information for each positions.
6459
6460 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
6461
6462         * ToolBar.cs: Some small stetic changes.
6463
6464 2007-01-16  Jackson Harper  <jackson@ximian.com>
6465
6466         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
6467         that allow us to have nested recalc = false blocks.
6468         - Add paste support for images in the RichTextBox
6469         * RichTextBox.cs: flush the text after the color is changed, so
6470         the change takes effect.
6471         - Use SuspendRecalc
6472         - Some extra debugging info
6473         * TextControl.cs: Tags no longer track their length, it is just
6474         computed from the next tags length, this makes things a little
6475         simpler and reduces places that we have to track length changes.
6476         - Refactored the linetag class a little so we could make it
6477         a base class for different kinds of tags
6478         - Created a image tag, a tag that can have a single image inserted
6479         into it
6480         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
6481         that we can call suspend multiple times.
6482         - Add some debugging methods
6483
6484 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6485
6486         * MdiClient.cs: Add ActivatePreviousChild for 
6487         mdi child window navigation.
6488         * Form.cs: Use MdiClient.ActivateNextChild/
6489         ActivatePreviousChild instead of Form.SelectNextControl
6490         to select the next/previous child since 
6491         SelectNextControl doesn't do it in the same order
6492         as mdi children should do it.
6493
6494 2007-01-16  Chris Toshok  <toshok@ximian.com>
6495
6496         * Control.cs: remove container_selected field.
6497
6498 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6499
6500         * MdiClient.cs: Update main form's ActiveChild when
6501         updating keyboard focus for the mdi child.
6502
6503 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
6504
6505         * Control.cs: PreferredSize fix.
6506
6507         * Form.cs: Add several 2.0 events, properties, and methods.
6508
6509 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
6510
6511         * Form.cs: Provide meaningful message when MdiParent is assigned a
6512         Form that is not an MdiContainer.
6513
6514 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6515
6516         * MdiClient.cs: Update main form's ActiveChild when
6517         activating a mdi child.
6518
6519 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6520
6521         * MdiWindowManager.cs: Fix NRE when merging menus and main form
6522         doesn't have a menu.
6523
6524         * Form.cs: Request NCRecalc after creating a mdi child window.
6525         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
6526         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
6527         
6528         * MdiClient.cs: Add new method SendFocusToActiveChild that either
6529         sends keyboard focus to the active child, or to the MdiClient
6530         if there are no child forms.
6531         
6532 2007-01-15  Chris Toshok  <toshok@ximian.com>
6533
6534         * ListView.cs: drop the *Internal overrides, just do our work in
6535         ItemControl's WndProc instead.
6536
6537         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
6538         of the various controls, and forward the events properly (in the
6539         same manner as MS) from the textbox to the UpDown.  Also the
6540         ActiveControl of the UpDownBase gets set properly now.  Finally,
6541         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
6542
6543         * NumericUpDown.cs: set Text in the ctor.
6544
6545         * DomainUpDown.cs: call UpdateEditText in the ctor.
6546         
6547         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
6548         so even a Selectable = false textbox can be focused if you click
6549         in it.  Go figure.
6550
6551         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
6552         just add their handling in their respective WndProc's.  Also add
6553         an explicit FocusInternal method that doesn't consult CanFocus
6554         before calling Select(this).
6555
6556         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
6557         do our work in WndProc instead.
6558
6559         * TabControl.cs: same.
6560
6561         * ComboBox.cs: same.
6562
6563 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6564
6565         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
6566         Fixes #80006.
6567
6568 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
6569
6570         * ListViewItem.cs:
6571         * ThemeWin32Classic.cs: Don't draw the item text outside
6572         item bounds in Details view, as well as use trimming.
6573         Fixes bug #80376.
6574
6575 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6576
6577         * Form.cs: Implement Form.ShowIcon.
6578         
6579         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
6580         null, which when combined with the DlgModalFrame window style removes
6581         the icon from the title bar.
6582
6583 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6584
6585         * Control.cs: Call OnMouseClick after OnClick. (2.0)
6586
6587 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6588
6589         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
6590         menu when mdi child windows theres a menu, uses insert to get icon
6591         at first position. Partially fix #80006.
6592
6593 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
6594
6595         * Clipboard.cs: Implement 2.0 methods.
6596
6597 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
6598
6599         * Menu.cs: Implement Insert method of MenuItemCollection class
6600         to fix MenuMerge.
6601
6602 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6603
6604         * ListView.cs: Implement 2.0 FindItemWithText method.
6605
6606 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
6607
6608         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
6609         to calculate menu bar size. Fixes #80290.
6610
6611 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
6612
6613         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
6614
6615 2007-01-11  Chris Toshok  <toshok@ximian.com>
6616
6617         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
6618         initial form.
6619
6620 2007-01-11  Chris Toshok  <toshok@ximian.com>
6621
6622         * LinkLabel.cs: make sure to call base.Select in our Select method
6623         if it turns out we're going to be selected (i.e. if we have a link
6624         that is going to receive focus).  That way our container's
6625         ActiveControl is updated properly.
6626
6627 2007-01-11  Chris Toshok  <toshok@ximian.com>
6628
6629         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
6630         they have 1 or more links.  this fixes the crash gert reported.
6631
6632 2007-01-11  Andreia Gaita  <avidigal@novell.com>
6633
6634         * ContainerControl.cs: Remove ContainerSelected flag, not needed
6635         anymore.
6636
6637         * Control.cs (Controls.Add): Check if control to be added to the collection
6638         is a top level control, and throw an ArgumentException if it is.
6639         Remove ContainerSelectedFlag, not needed anymore.
6640
6641         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
6642         top most control doesn't activate the form. This fixes a problem in the
6643         MessageBox, where the default button wouldn't get focus because the form
6644         was activated before being Loaded - when the Owner is set, SetTopMost is
6645         called, and it would activate it.
6646
6647 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
6648
6649         * Button.cs: When clicked and setting the parent form's DialogResult,
6650         use FindForm instead of Parent, since parent could be a container
6651         control and not the Form.  Fixes bug #80495.
6652
6653 2007-01-10  Chris Toshok  <toshok@ximian.com>
6654
6655         * Form.cs: move the call to SendControlFocus into the same
6656         is_loaded check.
6657
6658 2007-01-10  Chris Toshok  <toshok@ximian.com>
6659
6660         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
6661         It breaks in the face of the new ActiveControl stuff, and should
6662         be unnecessary.
6663
6664         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
6665         activecontrol's focus if it's not already set, after we set
6666         ActiveControl, but before we call OnActivated.  Re-fixes #79667
6667         after the previous focus/active control fixes regressed it.
6668
6669         * Control.cs: reindent some code.
6670         
6671 2007-01-10  Chris Toshok  <toshok@ximian.com>
6672
6673         * Splitter.cs: clearing some outstanding changes from my tree.
6674         Replace all accesses (not writes) to the internal dock_style field
6675         with the Dock property.
6676
6677 2007-01-10  Chris Toshok  <toshok@ximian.com>
6678
6679         * Control.cs: make FireEnter, FireLeave, FireValidating, and
6680         FireValidated virtual.
6681
6682         * Form.cs: override and don't chain up calls to FireEnter and
6683         FireLeave.
6684
6685 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6686
6687         * ListView.cs: Add more text padding space when using
6688         auto resize for columns (the previous value didn't work fine).
6689
6690         * ThemeWin32Classic.cs: Update text position inside columns,
6691         to match the appeareance of .Net.
6692
6693         * ColumnHeader.cs: When using auto resize, only the Width should
6694         depend on the sub items, not the Height. Also, set width after
6695         auto resizing (the value of Width should never remain as -1 or -2).
6696
6697 2007-01-10  Chris Toshok  <toshok@ximian.com>
6698
6699         * Application.cs: fix compilation errors when debug is enabled.
6700
6701 2007-01-10  Chris Toshok  <toshok@ximian.com>
6702
6703         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
6704         add some nice ascii art pictures and explanation of the process).
6705         (GetMostDeeplyNestedActiveControl): new utility function we need
6706         because our ActiveControl can refer to a child container with its
6707         own ActiveControl.
6708
6709         * Form.cs (OnActivated): remove the call to SelectActiveControl
6710         from here, since you can override this method and not chain up,
6711         and winforms still sets the active control.
6712         (OnCreateControl): also remove the unnecessary SelectActiveControl
6713         call from here.
6714         (WndProc): it's actually called from the WM_ACTIVATE block, just
6715         before calling OnActivated.
6716
6717         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
6718         inside the else.  the ActiveControl setter will end up setting
6719         focus on @control.  This keeps us from setting it again (and
6720         generating an extra LostFocus/GotFocus pair).
6721         (Select (bool, bool)): reindent.
6722
6723 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
6724
6725         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
6726         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
6727         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
6728         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
6729         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
6730         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
6731         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
6732         ToolStripTextBox.cs: Another wave of corcompare work.
6733
6734 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6735
6736         * ColumnHeader.cs: Implement 2.0 AutoResize method using
6737         the Width property.
6738
6739         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
6740         methods by callling Column.AutoResize method on columns.
6741
6742 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
6743
6744         * Control.cs: Provide proper implementations of PreferredSize
6745         and GetPreferredSize (2.0).
6746
6747 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
6748
6749         * Form.cs: Remove one character (!) to make my previous OnClosing
6750         stuff work for modal windows like MessageBox.
6751
6752 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6753
6754         * ListView.cs:
6755         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
6756         ListView.Columns to get the last displayed column. Fixes #80452.
6757
6758 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
6759
6760         * Label.cs, LinkLabel.cs: Source code identation fixes.
6761
6762 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
6763
6764         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
6765         we dont need to invalidate only borders because when we invalidate four
6766         border lines the invalidate's generates a complete redraw of button, 
6767         because it now invalidate a complete rect some other redraws operations
6768         are fixed. Fixes #80196.
6769         
6770         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
6771         Remove ToolBarInvalidateEntireButton as it is not used.
6772
6773 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
6774         
6775         * Form.cs: Make sure that both OnClosing and OnFormClosing are
6776         called for 2.0 profile.
6777         * CloseReason.cs: Make class internal for 1.1.
6778
6779 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
6780
6781         * ToolStripManager.cs: Implement FindToolStrip functionality.
6782         * ToolStrip.cs: Register and unregister with ToolStripManager.
6783
6784 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
6785
6786         * Control.cs: This was messy.  2.0 moves much of ControlCollection
6787         to ArrangedElementCollection.  Implemented this with as few #if's as 
6788         possible (which is still too many).
6789
6790 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
6791
6792         * Control.cs: Implement SizeFromClientSize() [2.0].
6793
6794 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
6795
6796         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
6797         use Theme.BorderSize to calculate area instead of static value 1, 
6798         by the way use new BorderStaticSize instead     Border3DSize when 
6799         border_static is true. Fixes #79537.
6800         
6801         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
6802         
6803         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
6804         it is not needed.
6805
6806 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
6807
6808         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
6809
6810 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
6811
6812         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
6813         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
6814         
6815         * Hwnd.cs: 
6816         - border_static field added, it will used to define when a control 
6817         theres 3D border but it must be static (thin).
6818         - In GetWindowRectangle use Theme.BorderSize to calculate area 
6819         instead of static value 1, by the way use new BorderStaticSize instead
6820         Border3DSize when border_static is true.
6821
6822         * XplatUIX11.cs, XplatUIOSX.cs: 
6823         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
6824         
6825         * Theme.cs: BorderStaticSize field added.
6826
6827 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
6828
6829         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
6830
6831 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
6832
6833         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
6834         mimic same behavior than win32 that set border only in CreateParams,
6835         it fix problems under CreateParams overrides. Fix #79442 and partial
6836         fix #79537.
6837         
6838         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
6839         of thi control you must call recreate handle. 
6840         
6841         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
6842         need to do anything as RecreateHangle will take care about borders.
6843
6844 2007-01-05  Mike Kestner  <mkestner@novell.com>
6845
6846         * ListView.cs: hack to eliminate Lost/Got focus notifications on
6847         cycles between the ItemControl and parent.  Fixes #80388.
6848
6849 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
6850
6851         * Control.cs: Lazy init layout engine. Do not directly use 
6852         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
6853
6854 2007-01-05  Chris Toshok  <toshok@ximian.com>
6855
6856         * DataGrid.cs: don't forceably rebind columns in SetDataSource
6857         unless our list manager has changed (i.e. unless we have reason to
6858         believe our columns have changed).  Fixes #80422.
6859         
6860         also, disable the call do BindColumns in
6861         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
6862         1.1 the event isn't raised in response to a column addition on a
6863         table.)
6864
6865 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
6866
6867         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
6868         that inheritors can not call it if they choose.  Fixes bug #80456.
6869
6870 2007-01-05  Andreia Gaita  <avidigal@novell.com>
6871
6872         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
6873         doesn't blow up with a null exception on marshalling.
6874         
6875 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
6876
6877         * Control.cs: Implement several 2.0 protected properties and methods.
6878         Ensure that all necessary events are being called when properties
6879         are set.
6880
6881 2007-01-05  Mike Kestner  <mkestner@novell.com>
6882
6883         * ListView.cs: implement PgUp/PgDn for Details view.  Also
6884         fixes First/LastVisibleIndex to use the item_control.ClientRect 
6885         instead of the parent control.  Fixes #80378.
6886
6887 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
6888
6889         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
6890           determine whether to use yard-pound or not (bug #78399).
6891
6892 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
6893
6894         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
6895         problems. So it is time to bring back the old popupbutton colors.
6896
6897 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6898
6899         * ColumnHeader.cs:
6900         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
6901         property by using the internal information of the
6902         columns order in ListView.
6903
6904 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
6905
6906         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
6907         Add 2.0 Tag properties.
6908
6909         * LinkArea.cs: Add 2.0 ToString method.
6910
6911 2007-01-03  Chris Toshok  <toshok@ximian.com>
6912
6913         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
6914         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
6915         when we're editing, which fixes #80047.
6916
6917 2007-01-03  Chris Toshok  <toshok@ximian.com>
6918
6919         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
6920         #80404.
6921
6922 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
6923
6924         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
6925         property and implementation.
6926
6927         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
6928         for MdiWindowListItem property.
6929
6930         * ToolStripDropDown.cs: Don't consider hidden menu items while
6931         laying out the menu.
6932
6933 2007-01-03  Andreia Gaita  <avidigal@novell.com>
6934
6935         * SendKeys.cs: window handle is not needed in win32, so just
6936         get the active window for X after parsing keys and don't use
6937         it when building the message; it is passed by parameter to the 
6938         Xplat method and used there to build the message instead. Also,
6939         wait for events to be processed on SendWait, as opposed to Send,
6940         which doesn't wait :) Playing with threads and Send() completely 
6941         hangs on ms.net, only SendWait() works.
6942         
6943         XplatUIX11.cs
6944         X11Display.cs: Check for valid window handle.
6945
6946 2007-01-03  Jackson Harper  <jackson@ximian.com>
6947
6948         * TextControl.cs: Need to prevent wrap calculations when replacing
6949         text (this was there before i removed it accidently).
6950         - Don't update the cursor during the positioning, just set it to
6951         selection_start at the end of the operaion.
6952
6953 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6954
6955         * Control.cs:
6956         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
6957         
6958 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6959
6960         * MonthCalendar.cs: Added Click and DoubleClick events again,
6961         but this time they only hide Control's Click and DoubleClick.
6962         
6963 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
6964
6965         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
6966         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
6967
6968 2007-01-02  Jackson Harper  <jackson@ximian.com>
6969
6970         * TextBoxBase.cs: We move the caret with the split now, so we
6971         don't need to explicitly move the caret after splitting.  This
6972         fixes the caret bumping down an extra line on Enter.
6973
6974 2007-01-02  Miguel de Icaza  <miguel@novell.com>
6975
6976         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
6977         2.72). 
6978
6979         * ScrollableControl.cs: Add Scroll event.
6980
6981 2007-01-02  Mike Kestner  <mkestner@novell.com>
6982
6983         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
6984         to fix all hdr height padding codepaths.  Fixes #80207.
6985
6986 2007-01-02  Chris Toshok  <toshok@ximian.com>
6987
6988         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
6989         setting it to the Control defaults anyway, and it being after the
6990         Dock set was screwing up layout.
6991         (set_Dock): don't short circuit out of setting base.Dock.  Also,
6992         no need to call UpdateStatusBar here, as it'll be re-layed out if
6993         it needs to be.
6994
6995 2007-01-02  Mike Kestner  <mkestner@novell.com>
6996
6997         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
6998         to header height for width == -1. Fixes the rest of #80207.
6999
7000 2007-01-02  Mike Kestner  <mkestner@novell.com>
7001
7002         * ListView.cs: rework the mouse event forwarding everaldo added
7003         to translate the coordinates to the parent control not
7004         raise the parent events until after we've done our work. Hover
7005         needs more work, in the case where HoverSelection is on, because
7006         the item control receives more than one MouseHover per Enter
7007         event, so we need to ensure only the "first" hover gets forwarded.
7008         Opening a minor bug for that.
7009
7010 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
7011
7012         * CheckedListBox.cs: Fixed SelectionMode to match MS.
7013         * ListControl.cs: Implemented AllowSelection property. Removed extra
7014         tabs.
7015         * ListBox.cs: Implemented AllowSelection property.
7016
7017 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7018
7019         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
7020         SelectedItem, it prevent for errors when you must disable item
7021         before perform click. Fixes #80409.
7022
7023 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7024
7025         * MenuAPI.cs: Prevent second level and beyond submenus to close
7026         until first level when move out side of popup.
7027         
7028 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7029
7030         * MenuAPI.cs:
7031         - Down submenu positin in three pixels.
7032         - Closes sub menu when mouse leaves from menu. Fixes #80402.
7033
7034 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
7035
7036         * ThemeWin32Classic.cs:
7037         - Fix popup menu size adding one pixel on the top.
7038         - Down menu item border from two to one to mimic Win32.
7039         - Some source identation fixes. 
7040
7041 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7042
7043         * ThemeWin32Classic.cs: Use float numbers to calculate size and
7044         position of menu arrows, it fix wrong arrow size.
7045
7046 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
7047
7048         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
7049         instead of line, it simplify draw operation and fix it using 3D
7050         borders to mimic Win32.
7051
7052 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
7053
7054         * StatusStrip.cs: Add implementation of the sizing grip.
7055
7056         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
7057         StatusStrip rendering.
7058
7059 2006-12-31  Chris Toshok  <toshok@ximian.com>
7060
7061         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
7062         override the layout style (anchor/dock) of the control.  assign to
7063         Dock instead.  Fixes bug #80416.
7064
7065         * ToolStrip.cs: same.
7066
7067 2006-12-31  Andreia Gaita  <avidigal@novell.com>
7068
7069         * ContainerControl.cs: Use ContainerSelected flag to check if 
7070         a Container is directly selected, or if Select is called on a 
7071         non-container. If a container is directly selected, focus events 
7072         should not be raised.
7073         Apply #80411 patch to throw exception on set_ActiveControl if 
7074         control is the same as the current one.
7075         
7076         * Control.cs: Use ContainerSelected flag (see above).
7077         Add invalidation check to raise event but not invalidate if 
7078         dimensions are 0.       
7079         Apply #80411 patch.
7080         
7081
7082 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
7083
7084         * MenuAPI.cs: After click, dont close popup menu when menu is
7085         ContextMenu. Fixes #80399.
7086
7087 2006-12-30  Chris Toshok  <toshok@ximian.com>
7088
7089         * ContainerControl.cs: make sure we throw the exception if the
7090         container control doesn't contain the control we're setting
7091         ActiveControl to.
7092
7093 2006-12-30  Chris Toshok  <toshok@ximian.com>
7094
7095         * Control.cs (SetTopLevel): fix the exception raised by
7096         SetTopLevel for child controls.
7097         (set_Anchor): call UpdateDistances when setting the anchor type.
7098         This fixes bug #80336.
7099
7100 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7101
7102         * Theme.cs: For now, revert back to 8pt font.
7103
7104 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
7105
7106         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
7107         Fixes #80395.
7108
7109 2006-12-29  Chris Toshok  <toshok@ximian.com>
7110
7111         * Control.cs: reorder the code in OnResize to give the same event
7112         ordering as MS.
7113
7114 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7115
7116         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
7117         TileHorizontally and TileVertically.
7118         
7119 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
7120
7121         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
7122         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
7123         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
7124         Corrected copyright and email adress.
7125
7126 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7127
7128         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
7129         of Exception in FullPath property if no TreeView is associated with
7130         the TreeNode.
7131
7132 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
7133
7134         * Theme.cs: Marked default_font as private, and initialize it in ctor
7135         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
7136         on 2.0 profile.
7137         * ThemeGtk.cs: Removed default_font intialization.
7138         * ThemeWin32Classic.cs: Removed default_font initialization.
7139
7140 2006-12-28  Chris Toshok  <toshok@ximian.com>
7141
7142         * Control.cs: fix a couple of place where we were creating handles
7143         more aggressively than we should be.  Fixes ControlRefresh unit
7144         tests.
7145
7146 2006-12-28  Chris Toshok  <toshok@ximian.com>
7147
7148         * Control.cs: contrary to what the comment said, Control.Dock does
7149         not supercede Control.Anchor - the last one you assign to decides
7150         the layout behavior.  so we need to keep track of which was the
7151         last set.  Also, fix some of the affected property arguments in
7152         PerformLayout calls, and remove an redundant parent.PerformLayout
7153         call in OnResized.
7154
7155         Add a VisibleInternal property, which returns is_visible.  We
7156         can/should get rid of all the usage of this field elsewhere.
7157
7158 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7159         
7160         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
7161         control style, not DoubleBuffer. Added UseDoubleBuffering property
7162         that indicates whether doublebuffering is enabled and supported.
7163         (comment from and code based on Gert Driesen's patch in #80324).
7164         Fixes #80324.
7165
7166 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7167         
7168         * Control.cs: Fixed a NRE.
7169
7170 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7171
7172         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
7173         for 2.0.
7174
7175 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7176
7177         * Control.cs: Rewrote double buffering, now a seperate
7178         class handles all the buffering, no Graphics is disposed of
7179         until the painting is finished (earlier implementation 
7180         would crash if the control was resized in the OnPaint, 
7181         since it would cause the double buffer to be recreated
7182         and the old one disposed), a separate Graphics is 
7183         created for every paint (MS behaviour and anyways the state
7184         of the Graphics would have to be saved and restored otherwise)
7185         
7186         * XplatUIDriver.cs: 
7187         * XplatUIX11.cs:
7188         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
7189         so that we can get the graphics for the back buffer without
7190         having to create a new one and remove the offscreen_dc parameter
7191         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
7192         
7193 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7194
7195         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
7196         Also make virtual all the key-related methods.
7197
7198         * ListViewItem.cs: Make virtual the key related methods for
7199         ListViewSubItemCollection.
7200
7201 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7202
7203         * ListView.cs:
7204         * ListViewItem.cs:
7205         * ThemeWin32Classic.cs:
7206         * Theme.cs: Initial support for Tile view in ListView,
7207         as well as the implementation of the required bits for it (Item
7208         and Subitem).
7209
7210 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7211
7212         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
7213         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
7214         Provide useful exception messages.
7215
7216 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7217
7218         * TrackBar.cs: Remove a warning.
7219         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
7220         when used by DateTimePicker, fixes #80287. This also requires that 
7221         MonthCalendar implements it's own drawing for the yearly updown control,
7222         otherwise the Capture tracking would be too complicated. Removed the Click 
7223         and DoubleClick events (according to comments they were hiding the base class
7224         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
7225         raise these events, not that they cannot be raised. It is possible to raise 
7226         them by calling OnClick and OnDoubleClick). Added two internal fields in 
7227         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
7228         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
7229         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
7230         event, no longer needed.
7231         
7232 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7233
7234         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
7235         true if new value differs from current value.
7236
7237 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7238
7239         * Control.cs: ControlCollection.Count must be public. Fixed build of
7240         unit tests.
7241
7242 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7243
7244         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
7245
7246 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
7247
7248         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
7249
7250 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7251
7252         * Control.cs: Invalidates control including when Width and Height is 
7253         equal zero or is not visible, only Paint event must be care about 
7254         this. Fixes #79913.
7255
7256 2006-12-26  Chris Toshok  <toshok@ximian.com>
7257
7258         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
7259         more corcompare work.
7260
7261         * DataGridView.cs: fix compiler warning.
7262
7263         * ColumnHeader.cs: some corcompare work, and also take the
7264         opportunity to make the internal fields private.
7265
7266         * ListView.cs: fix the fallout from the above field change.
7267
7268 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7269
7270         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
7271         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
7272         ToolStripTextBox.cs: Fixes to events and corcompare.
7273
7274 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
7275
7276         * ListView.cs: Call owner.OnMousexx event to propagate events from
7277         item to ListView. Fixes #80367.
7278
7279 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7280
7281         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
7282         if value is less than one. ItemHeight should not be set to a value
7283         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
7284         Removed extra tabs.
7285
7286 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
7287
7288         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
7289         * ToolStripStatusLabel.cs: Add Spring for Moma.
7290
7291 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7292
7293         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
7294         Fixed code formatting. Removed debug code.
7295         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
7296
7297 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
7298
7299         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
7300         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
7301         ArgumentOutOfRangeException if ColumnCount is negative. In 
7302         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
7303         less than 4 or higher than 32768.
7304         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
7305         Fixed FormatProvider to return CurrentCulture unless explicitly set.
7306         Fixed IsFormatProviderDefault to return true if FormatProvider has
7307         not been explicitly set.
7308
7309 2006-12-25  Chris Toshok  <toshok@ximian.com>
7310
7311         * Application.cs: add a couple of 2.0 events.
7312
7313 2006-12-25  Chris Toshok  <toshok@ximian.com>
7314
7315         * Control.cs: fix compiler warning.
7316
7317         * AxHost.cs: corcompare fixes.
7318
7319         * ApplicationContext.cs: corcompare fixes.
7320
7321 2006-12-25  Chris Toshok  <toshok@ximian.com>
7322
7323         * Control.cs: only update dist_right/dist_bottom if the
7324         width/height is > 0.  this fixes anchored controls being resized
7325         smaller until they disappear and then resized larger again.
7326
7327 2006-12-25  Chris Toshok  <toshok@ximian.com>
7328
7329         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
7330         since they're nothing more than X/Left and Y/Top, respectively.
7331
7332         Also, move back to a per-control Bitmap/Graphics for
7333         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
7334         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
7335         Height.
7336
7337 2006-12-25  Miguel de Icaza  <miguel@novell.com>
7338
7339         * MessageBox.cs: Implemented overload that takes a new "bool
7340         displayHelpButton" by adding a new internal field "show_help".
7341         When clicked this will raise the HelpRequested on the owner or the
7342         main form. 
7343
7344         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
7345         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
7346
7347         * ListView.cs: Add support ColumnWidthChanged and
7348         ColumnWidthChanging. 
7349
7350         Add support for ColumnReordered event.
7351         (ReorderColumn): Add NET_2_0 specific support for cancelling the
7352         reorder.
7353
7354         Very nice codebase!
7355
7356         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
7357
7358         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
7359
7360 2006-12-24  Chris Toshok  <toshok@ximian.com>
7361
7362         * GridTablesFactory.cs: 2.0 corcompare work.
7363
7364         * ToolStripContainer.cs: add "override" to
7365         ContextMenuStripChanged, and remove the local event object.
7366
7367         * ToolStripDropDown.cs: same with a couple properties.
7368
7369         * ToolStripPanel.cs: same with AutoSizeChanged event.
7370
7371         * TextBoxBase.cs: add "override" to AutoSizeChanged.
7372
7373         * Form.cs: add the remaining 2.0 events, and do some corcompare
7374         attribute work.
7375
7376         * DateTimePicker.cs: add "new" to padding.
7377
7378         * ButtonBase.cs: use Control's use_compatible_text_rendering.
7379
7380         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
7381
7382         * DataGridView.cs: PaddingChanged is overridden.
7383
7384 2006-12-24  Chris Toshok  <toshok@ximian.com>
7385
7386         * Control.cs: corecompare work here too.
7387
7388         * DataGridViewElement.cs, DataGridView.cs,
7389         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
7390         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
7391         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
7392         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
7393         work.
7394
7395 2006-12-24  Miguel de Icaza  <miguel@novell.com>
7396
7397         * Control.cs: Switched the error message on the console for a
7398         todo.  A review of the code will have to cope with this anyways
7399         (since its a large feature, it is in our radar) and it was
7400         producing too much output when running PDN.
7401
7402         * ToolStripComboBox.cs: Set the text when the SelectedIndex
7403         changes.  Applications depend on this (PDN 2.72)
7404
7405 2006-12-23  Chris Toshok  <toshok@ximian.com>
7406
7407         * TableLayoutSettings.cs: finish up the corcompare work for this
7408         class.
7409
7410 2006-12-23  Chris Toshok  <toshok@ximian.com>
7411
7412         * Control.cs: make SetImplicitBounds internal, do some futzing
7413         with LayoutEngine so that it's available in 1.1, and remove the
7414         entire duplicated code mess from PerformLayout.  Use
7415         System.Windows.Forms.Layout.DefaultLayout instead.
7416
7417         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
7418
7419 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7420
7421         * Form.cs: Add MainMenuStrip property.
7422
7423 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
7424
7425         * Control.cs: Add ContextMenuStrip property and implementation.
7426         Fix ContextMenu implementation to show menu centered on control when
7427         activated using the keyboard instead of showing at screen (0,0).
7428
7429         * ToolStripDropDown.cs: Fix needed overload of Show ().
7430
7431 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7432
7433         * Menu.cs: Name property added for 2.0 profile.
7434         
7435 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7436
7437         * Menu.cs: Update information about FindMenuItem, method to be
7438         implemented soon.
7439
7440 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7441
7442         * MenuAPI.cs: When deselect items deselect also selected subitems.
7443         
7444 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
7445
7446         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
7447         FindSubItemByCoord to found itens that is not active, also an
7448         cheking added to FindSubItemByCoord to search for items only 
7449         in visible popup windows. Fixes #80274.
7450
7451 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
7452
7453         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
7454         internal property, it be care about change ExStyle. 
7455
7456 2006-12-22  Andreia Gaita  <avidigal@novell.com>
7457
7458         * ContainerControl.cs: set activeControl for parent forms up the 
7459         tree when the new activecontrol is a container.
7460         When validating the active control, if it is a container, also
7461         raise up the validation for it's active control. Fixes #80280
7462         
7463         * Control.cs: Add internal property flag and check to prevent
7464         Focus events from getting raised when Select() is called for
7465         a ContainerControl. There are still too many focus events being
7466         raised at the moment though.
7467         Cleaned up the code a bit.
7468
7469 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7470
7471         * Control.cs: Added all missing 2.0 events.and
7472         fixed a couple of corcompare issues.
7473         * TrackBar.cs: Implemented missing 2.0 bits.
7474         * MonthCalendar.cs, 
7475         * DateTimePicker.cs, 
7476         * MdiClient.cs: Fixed some corcompare issues.
7477
7478 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7479
7480         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
7481         SplitterPanel.cs: corecompare work.
7482
7483 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7484
7485         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
7486         Clean up warnings for BackgroundImageChanged and PaddingChanged
7487         events now that they are implemented in Control.cs.
7488
7489 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
7490
7491         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
7492         
7493         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
7494         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
7495         of TableLayoutPanel and supporting cast.
7496
7497 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7498
7499         * XplatUIWin32.cs: 
7500         - GrabWindow now confines the mouse pointer to the confine window.
7501         - Added Win32ClipCursor and Win32GetClipCursor.
7502
7503         * Control.cs: 
7504         - Added CaptureWithConfine to be able to capture and confine 
7505         mouse pointer.
7506         
7507         * InternalWindowManager.cs: 
7508         - Call CaptureWithConfine instead of Capture if we're an
7509         MdiChild (fixes #79982).
7510
7511 2006-12-21  Chris Toshok  <toshok@ximian.com>
7512
7513         * DataGrid.cs: guard against the initial state of selection, where
7514         selection_start == -1.  make sure we only select from index >= 0.
7515         Fixes bug #80291.
7516
7517 2006-12-21  Chris Toshok  <toshok@ximian.com>
7518
7519         * Control.cs: we don't need to be so draconian with
7520         UpdateDistances, and we thusly don't need to call it before
7521         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
7522
7523 2006-12-21  Daniel Nauck  <dna@mono-project.de>
7524
7525         * ComboBox.cs,
7526         TextBox.cs: Implemented AutoComplete properties.
7527
7528 2006-12-20  Chris Toshok  <toshok@ximian.com>
7529
7530         * DataGridView*.cs: some corecompare work.
7531
7532 2006-12-20  Jackson Harper  <jackson@ximian.com>
7533
7534         * XplatUIX11.cs: We need to hide the caret when deleting it,
7535         otherwise you get carets left lying around everywhere.
7536         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
7537         prevents getting some weird half drawn caret tracers when
7538         scrolling.
7539         * TextControl.cs: Attempt to reduce the number of times we need to
7540         recreate the caret.
7541
7542 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
7543
7544         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
7545
7546 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7547
7548         * DateTimePicker.cs:
7549         - Implemented missing 2.0 bits.
7550         - Changed some default values to match MS.
7551         
7552 2006-12-20  Jackson Harper  <jackson@ximian.com>
7553
7554         * TextBoxBase.cs: When changing the font across the document we
7555         can't recalculate after changing each line, since that will cahnge
7556         the line count.
7557         - PreferredHeight is a little different than i thought.
7558         - When backspacing, move the caret before we do the actual char
7559         delete, because when that delete crosses a wrap boundary the
7560         positional information will change.
7561
7562 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7563
7564         * Control.cs: Added some missing 2.0 bits: 
7565         BackgroundImageLayout, BackgroundImageLayoutChanged, 
7566         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
7567         add IBindableComponent and IDropTarget implementation.
7568         
7569         * MonthCalendar.cs: 
7570         - Added all missing 2.0 features:
7571         BackgroundImageLayout, RightToLeftLayout, 
7572         OnHandleDestroyed, RightToLeftLayoutChanged, 
7573         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
7574         PaddingChanged.
7575         - Rewrote all the BoldDate code, it was completely broken.
7576         - Fixed all the tests (the tests can now be re-enabled, the
7577         problems were not with the tests, but with the control, it was
7578         mostly broken).
7579         
7580         * DateTimePicker.cs: Changed the location where the 
7581         MonthCalendar is shown.
7582         
7583 2006-12-19  Chris Toshok  <toshok@ximian.com>
7584
7585         * DataGridView.cs: add IDropTarget implementation.
7586
7587         * ToolStripPanel.cs: add IDropTarget implementation.
7588
7589 2006-12-19  Jackson Harper  <jackson@ximian.com>
7590
7591         * TextControl.cs: soft now means something different than what it
7592         used to mean, we want to move the caret regardless of whether or
7593         not this break was soft (would we really have wanted the caret
7594         to not move with the break in the old context?)
7595         * TreeView.cs: Make sure we factor in the vert scrollbar when
7596         calculating the horizontal scrollbar's maximum.
7597
7598 2006-12-19  Andreia Gaita  <avidigal@novell.org>
7599
7600         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
7601         check for keywords in alternate casing, close bug #80049.
7602
7603 2006-12-19  Chris Toshok  <toshok@ximian.com>
7604
7605         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
7606         methods (which all do nothing).
7607
7608         * IDropTarget.cs: add the 4 missing methods.
7609
7610 2006-12-19  Chris Toshok  <toshok@ximian.com>
7611
7612         * TableLayoutRowStyleCollection.cs: corcompare work.
7613         
7614         * TableLayoutSettings.cs: same.
7615
7616         * TableLayoutStyle.cs: same.
7617
7618         * TableLayoutColumnStyleCollection.cs: same.
7619
7620 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
7621
7622         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
7623         TableLayoutPanel I've had in my local tree for way too long.
7624
7625 2006-12-19  Miguel de Icaza  <miguel@novell.com>
7626
7627         * TableLayoutSettings.cs: Finish the public API (still needs all
7628         the logic to update on changes). 
7629
7630         * TableLayoutPanelCellPosition.cs: new file.
7631         
7632         * TableLayoutRowStyleCollection.cs,
7633         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
7634         TableLayoutSettings.cs: Track the final 2.0 table api.
7635
7636 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7637
7638         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
7639         and Image List 2.0 members for ColummnHeader.
7640         * ListView.cs: Add key-related 2.0 methods for
7641         ColumnHeaderCollection.
7642
7643 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
7644
7645         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
7646         ArgumentNullException if items argument is null. Ignore null item in
7647         arrays. Removed extra tabs.
7648
7649 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
7650
7651         * MonthCalendar.cs: Fixed InvalidCastException.
7652
7653 2006-12-19  Jackson Harper  <jackson@ximian.com>
7654
7655         * TextControl.cs: Don't increment the position here.
7656         - When calculating char positions only add in the line break size
7657         for hard line breaks.
7658
7659 2006-12-19  Andreia Gaita  <avidigal@novell.org>
7660
7661         * SendKeys.cs: Changed some things to match ms.net behaviour
7662         when parsing shifted capital letters.
7663         
7664         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
7665         Add window handle as parameter to SendInput. X11 needs the 
7666         window handle, and the handle being passed      to it in the keys 
7667         queue is the active control handle (which windows needs), not 
7668         the window handle.
7669         
7670         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
7671         to support SendKeys on X.       
7672         
7673         * X11Keyboard: Implement helper method to lookup a linux keycode
7674         given the virtual keycode. Added table of keycode-2-virtualkey
7675         values to support this.
7676
7677 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7678
7679         * ListView.cs: Add support for SelectedIndexCollection
7680         and SelectedItemCollection 2.0 methods. Implement support
7681         for ImageKey too.
7682         * ListViewItem.cs: Add support for ListViewSubItemCollection
7683         2.0 methods. Also, fix an incorrect behavior of AddRange method
7684         (it shouldn't call Clear).
7685         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
7686
7687 2006-12-19  Jackson Harper  <jackson@ximian.com>
7688
7689         * RichTextBox.cs: 
7690         * TextBoxBase.cs: New args for FormatText
7691         * TextControl.cs: Rewrote the main drawing method, this version
7692         feels a little easier to understand and debug to me.  Hopefully it
7693         does to others also
7694         - Fix FormatText to OR in the new formating values.  Added
7695         FormatSpecified param, basically this works in the same way as
7696         BoundsSpecified in Control.
7697         - Set the caret properties when the caret is positioned.
7698         - When wrapping text make sure that we calculate the width of the
7699         last character
7700         - when calculating alignments we might have wrapped down to the
7701         next line, so don't search for an individual tag, search for the
7702         end of the line
7703         - We need to invalidate the selection area when we replace the
7704         selection.
7705         
7706 2006-12-19  Daniel Nauck  <dna@mono-project.de>
7707
7708         * Application.cs: add Restart () 2.0 support
7709
7710 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7711
7712         * MenuItem.cs: Invalidate menu item rectangle after change Enable
7713         property. Fixes #80268.
7714         
7715 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7716
7717         * MenuAPI.cs: Dont trigger select event when closes top menu
7718         item. Fixes #80270.
7719
7720 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7721
7722         * MenuAPI.cs: When you click on menuitem only trigger onselect
7723         event for top menu itens. Fixes #80271.
7724         
7725 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7726
7727         * MdiWindowManager.cs: Make IconicBounds depend on
7728         the bottom of MdiClient, not the top (fixes #80267)
7729         
7730 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7731
7732         * MdiClient.cs: Added missing 2.0 attribute
7733
7734 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7735
7736         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
7737         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
7738
7739 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
7740
7741         * MenuAPI.cs: Fix click when menuitem is not popup,
7742         this regression was caused by last commit (#80272).
7743
7744 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
7745
7746         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
7747         fire click event or close menu. Fixes #80272.
7748
7749 2006-12-17  Daniel Nauck  <dna@mono-project.de>
7750
7751         * ListViewHitTestInfo.cs: add
7752
7753 2006-12-17  Daniel Nauck  <dna@mono-project.de>
7754
7755         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
7756         * FlatButtonAppearance.cs: add
7757         * DockingAttribute.cs: add
7758
7759 2006-12-17  Chris Toshok  <toshok@ximian.com>
7760
7761         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
7762         and rebind our columns when it does - this way, if you make
7763         changes to the DataTable (or set the Table attribute on a DataView
7764         after setting it as the DataGrid's DataSource, the changes are
7765         made visible.)  Fixes bug #80107.
7766
7767 2006-12-17  Daniel Nauck  <dna@mono-project.de>
7768
7769         * ListViewGroup.cs: add internal Location property for layouting.
7770         * Theme.cs: add abstract ListViewGroupHeight function.
7771         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
7772
7773 2006-12-16  Andreia Gaita  <avidigal@novell.com>
7774
7775         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
7776         Added reset of selected index to 0 when adding first tab page.
7777         Fixes #80264
7778         
7779         * NumericUpDown.cs: Fix NET_2_0 check
7780
7781 2006-12-16  Daniel Nauck  <dna@mono-project.de>
7782
7783         * ListViewGroup.cs: fixed DefaultValueAttribute value
7784
7785 2006-12-16  Daniel Nauck  <dna@mono-project.de>
7786
7787         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
7788
7789 2006-12-15  Miguel de Icaza  <miguel@novell.com>
7790
7791         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
7792         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
7793         ScrollableControl.cs: Add a handful of methods that are
7794         overwritten in 2.0 
7795
7796 2006-12-15  Chris Toshok  <toshok@ximian.com>
7797
7798         * XplatUIWin32.cs: initial implementation of the Reversible
7799         drawing functions.  there are some problems.  DrawReversibleFrame
7800         doesn't seem to work at all for Dashed FrameStyle, and in the
7801         Thick case there are drawing errors at the corners (we probably
7802         need to bind Rectangle instead of doing moveto/lineto's.)
7803
7804 2006-12-16  Andreia Gaita  <avidigal@novell.com>
7805         
7806         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
7807         to send blocks of key messages. Send accumulates keys to send with Flush, 
7808         while SendWait sends all keys immediately.
7809                 
7810         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
7811         XplatUIX11.cs,  XplatUIX11-new.cs:
7812         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
7813         to Win32 SendInput.
7814         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
7815         
7816         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
7817         testing for ms.net on this class is very tricky, as the tests run too fast 
7818         to allow the hook to release, essentially freezing the keyboard and the 
7819         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
7820         category :p
7821
7822 2006-12-16  Daniel Nauck  <dna@mono-project.de>
7823
7824         * Padding.cs: fixed serialization compability to MS ("_var" field names),
7825                         added missing attributes.
7826  
7827 2006-12-15  Daniel Nauck  <dna@mono-project.de>
7828
7829         * ListViewGroup.cs: Added missing attributes.
7830         * ListViewGroupCollection.cs: Added missing attributes.
7831
7832 2006-12-15  Daniel Nauck  <dna@mono-project.de>
7833
7834         * ListViewItem.cs: fixed ListViewSubItem text property.
7835
7836 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7837         
7838         * Control.cs: Added missing 2.0 attributes
7839         
7840 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7841         
7842         * MdiClient.cs: Added missing 2.0 attribute.
7843         * MonthCalendar.cs: Added some missing 2.0 attributes 
7844         and properties.
7845         
7846 2006-12-15  Daniel Nauck  <dna@mono-project.de>
7847
7848         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
7849
7850 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
7851
7852         * MainMenu.cs: Add the new 2.0 constructor to help out people
7853         using the MainMenu in VS2005.
7854
7855 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7856         
7857         * MdiChildContext.cs: Removed it, no longer used.
7858         * MdiClient.cs: Added missing 2.0 attributes.
7859         
7860 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7861         
7862         * InternalWindowManager.cs: Fix a NullRef with previous 
7863         changes for toolwindows.
7864         
7865 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7866
7867         * Control.cs: 
7868         - Added AfterTopMostControl to allow for certain controls 
7869         to always stay on top when normal controls are brought to 
7870         front.
7871         
7872         * XplatUIWin32.cs: 
7873         - (DrawInversibleRectangle): Get window rectangle from Win32 
7874         in stead of from control, since Win32 doesn't calculate
7875         screen coords correctly from control's Location if it 
7876         have docked siblings.
7877         
7878         * MdiWindowManager.cs:
7879         - Correct the control menu popup location when clicked on
7880         the maximized form icon. (fixes #80223.1)
7881         - Don't show moving rectangle if mouse hasn't moved from
7882         the original clicked point.
7883         - Removed FormGotFocus handler (not used).
7884         - Calculate the control buttons location from the main
7885         window's size and not client size (fixes #79770).
7886         - Form is now closed when the form icon is double-clicked
7887         (fixes #79775). 
7888         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
7889         
7890         * InternalWindowManager.cs:
7891         - Moved some MDI-only methods to MdiWindowManager.
7892         - Removed unused properties and methods.
7893         - Unified method naming for methods handling wm messages.
7894         - Moved all message handling to seperate methods for
7895         each message.
7896         
7897         * ThemeWin32Classic.cs:
7898         - DrawManagedWindowDecorations now draws the title bar 
7899         with a gradient brush.
7900         - Add a CPDrawButtonInternal that allows us to specify
7901         light, normal and dark colors for the buttons (control 
7902         buttons for MDI children were drawn with the same light
7903         color as the background, therefore loosing the 3D effect).
7904         
7905         * SizeGrip.cs:
7906         - Add a CapturedControl property that is used to 
7907         determine the control to resize (defaults to parent). 
7908         Needed for MdiClient, since its SizeGrip's parent is
7909         MdiClient, but the control to resize is the main form.
7910         
7911         * MdiClient.cs:
7912         - Set SizeGrip's CapturedControl to the main form in order
7913         to resize the main form and not the MdiClient.
7914         - Override AfterTopMostControl to leave the scrollbars 
7915         always on top.
7916
7917 2006-12-15  Daniel Nauck  <dna@mono-project.de>
7918
7919         * ListView.cs: fixed ListViewItemCollection AddRange and
7920                         implemented ListViewItemCollection AddRange 2.0 support.
7921
7922 2006-12-15  Daniel Nauck  <dna@mono-project.de>
7923
7924         * ListViewGroup.cs: Add.
7925         * ListViewGroupCollection.cs: Add
7926         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
7927         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
7928                                 stub for ImageKey 2.0 support.
7929
7930 2006-12-14  Mike Kestner  <mkestner@novell.com>
7931
7932         * ListView.cs: add text padding to the autocalculation for columns
7933         of width -2.  Fixes #80207.
7934  
7935 2006-12-14  Mike Kestner  <mkestner@novell.com>
7936
7937         * ListView.cs: add some index guarding for partial row navigation 
7938         logic.  Fixes #80250.
7939
7940 2006-12-14  Mike Kestner  <mkestner@novell.com>
7941
7942         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
7943         are added or inserted to the collection.  Fixes #81099.
7944
7945 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
7946
7947         * MenuAPI.cs: Closes menu when right click out side of popup
7948         it fix problem in ContextMenu and MainMenu. Fixes #80252.
7949
7950 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7951
7952         * ListViewItem.cs: Fix dumb error.
7953
7954         * ListView.cs: Add Find and ContainsKey methods in 
7955         ListViewItemCollection, and also return true for IsReadOnly
7956         and IsFixedSize (changes for 2.0). 
7957
7958 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
7959
7960         * Control.cs: Allow Region to be set to null.
7961
7962 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7963
7964         * MdiWindowManager.cs: Remove unused (commented out) code.
7965         * Form.cs: When the MdiChild is maximized, the form needs 
7966         WM_NCMOUSELEAVE, so request it.
7967         * InternalWindowManager.cs: 
7968         - Added tooltips to control buttons.
7969         - Removed duplicated control button handling code.
7970         - Removed unused (commented out) code.
7971         
7972 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
7973
7974         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
7975         was used because we must set cursor without trigger ChangeCursor event
7976         and without change Cursor control property. Fixes #79963.
7977
7978 2006-12-12  Andreia Gaita  <avidigal@novell.com>
7979         
7980         * Control.cs: Check if Region setter value is null, and ignore
7981
7982 2006-12-12  Jackson Harper  <jackson@ximian.com>
7983
7984         * TextControl.cs: We were almost always drawing one more line then
7985         needed, since the GetLineByPixel will return the last line found
7986         at that pixel. In most cases though, we were invalidating up to
7987         the junction between two lines.
7988         - Improve debug code.
7989
7990 2006-12-12  Chris Toshok  <toshok@ximian.com>
7991
7992         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
7993         and FillReversibleRectangle.
7994
7995         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
7996         and FillReversibleRectangle.
7997
7998         * XplatUIWin32.cs: add stubs which do nothing for
7999         DrawReversibleFrame, DrawReversibleLine, and
8000         FillReversibleRectangle.
8001
8002         * XplatUIOSX.cs: add stubs which raise NIE for
8003         DrawReversibleFrame, DrawReversibleLine, and
8004         FillReversibleRectangle.
8005
8006         * XplatUIX11.cs: add working implementation for
8007         DrawReversibleFrame, DrawReversibleLine, and
8008         FillReversibleRectangle.
8009         
8010         * ControlPaint.cs: implement DrawReversibleFrame,
8011         DrawReversibleLine, and FillReversibleRectangle, by calling into
8012         the appropriate XplatUI method.
8013
8014 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8015
8016         * Form.cs: Make MdiClient have the focus even if it's
8017         not selectable, since it should receive WM_KEY* and WM_MOUSE 
8018         messages. Fixes #79907.
8019         
8020 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8021
8022         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
8023         queried after the window is created.
8024         
8025         * XplatUIX11.cs: Added SendParentNotify to implement 
8026         WM_PARENTNOTIFY logic. Fixes #79965.
8027         
8028         * Control.cs: Added MakeParam.
8029         
8030 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8031
8032         * MdiClient.cs: Resume Layout before setting window
8033         states (fixes #80201).
8034
8035 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8036
8037         * MenuAPI.cs: Deselect a menu item after performing
8038         the click (fixes #80197).
8039
8040 2006-12-11  Jackson Harper  <jackson@ximian.com>
8041
8042         * TextBoxBase.cs: We need to cap this value, since Maximum -
8043         ViewPortHeight can be less than zero.
8044         - Only do selection with the left mouse button.
8045         * TextBox.cs: Don't tell the world that we have a context menu.
8046         * Control.cs: New method so that we can control whether or not the
8047         context menu is visible outside MWF.
8048
8049 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8050
8051         * ToolBarButton.cs: Fix text positon. 
8052
8053 2006-12-11  Miguel de Icaza  <miguel@novell.com>
8054
8055         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
8056
8057         * Control.cs (DoubleBuffered): Add implementation.
8058
8059         * Application.cs (OpenForms): Add.
8060
8061 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8062
8063         * Form.cs: Use opacity instead of Opactiy to determine if we need
8064         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
8065
8066 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
8067
8068         * Control.cs: Fix NRE if Control.Site was set to null.
8069
8070 2006-12-11  Chris Toshok  <toshok@ximian.com>
8071
8072         * Control.cs: ControlCollection.Remove should return if the arg is
8073         null, and ControlCollection.SetChildIndex should raise a ANE.
8074
8075 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
8076
8077         * Control.cs: Verify value set for Dock property. Code formatting
8078         updates.
8079
8080 2006-12-11  Jackson Harper  <jackson@ximian.com>
8081
8082         * TextControl.cs: Draw the caret and the selection when a flag is
8083         set on the owner.
8084         * TextBoxBase.cs: We want to draw the caret and the selection for
8085         TextBox but not for TextBoxBase.
8086         - If the window is resized and scrolling is no longer needed (the
8087         whole doc is visible) set the scroll position to zero.
8088         - The default SelectWord (the one TextBox uses) should move the
8089         caret to the end of the word.
8090         - SelectAll moves the caret to the end of the selection.
8091         * TextBox.cs: We don't selectall on focus, we just do it when the
8092         control is created.
8093         
8094 2006-12-11  Mike Kestner  <mkestner@novell.com>
8095
8096         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
8097
8098 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8099
8100         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
8101         2.0 support.
8102         * ListViewItem.cs: Add Name 2.0 property.
8103
8104 2006-12-11  Andreia Gaita  <avidigal@novell.com>
8105
8106         * TabControl.cs: Set visibility on selected or default tab 
8107         when tabcontrol handle is created, so that it's contents
8108         actually show up (duh). Fixes #80193
8109         Don't redraw the control if there is no handle created, as
8110         the selected index might be completely invalid. Added some tests
8111         to check for this.
8112
8113 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
8114
8115         * ToolBar.cs: Uses maximun width and height of all buttons as 
8116         button rectangle when ButtonSize specified, it looks strange but
8117         is what happens in Win32. Fixes #80189.
8118
8119 2006-12-11  Jackson Harper  <jackson@ximian.com>
8120
8121         * TextControl.cs: Need to track undo levels ourself, since
8122         compound actions will mess them up.
8123
8124 2006-12-10  Andreia Gaita  <avidigal@novell.com>
8125
8126         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
8127         SelectedIndex value is changed (even if it's not valid).
8128         Reset SelectedIndex to 0 when the handle is created and if
8129         the current index is invalid.
8130         Fixes SelectdeIndex unit tests and #80128
8131
8132 2006-12-08  Chris Toshok  <toshok@ximian.com>
8133
8134         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
8135         calls EndEdit, it needs to be called before we set current_cell to
8136         its new value.  Otherwise, we end up committing the value in the
8137         textbox to the new cell as well.  Fixes bug #80160.
8138
8139 2006-12-08  Chris Toshok  <toshok@ximian.com>
8140
8141         * Form.cs (set_CancelButton): if the button's DialogResult is
8142         None, set it to Cancel.  Fixes bug 80180.
8143
8144 2006-12-08  Jackson Harper  <jackson@ximian.com>
8145
8146         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
8147         to watch ourselves when setting the canvas size and setting the
8148         scrollbar values.
8149
8150 2006-12-08  Chris Toshok  <toshok@ximian.com>
8151
8152         * DataGrid.cs: comment out the two MakeTransparent calls for the
8153         time being so people using trunk (and not 1.2.2) on windows can
8154         actually use the datagrid.  This deals with bug #80151.
8155
8156 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8157
8158         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
8159         Graphics.DrawImage (image, int, int, int, int) overload instead
8160         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
8161         the dpi difference and was blurring images it drew.
8162         [Fixes bug #79960]
8163
8164 2006-12-08  Chris Toshok  <toshok@ximian.com>
8165
8166         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
8167         rowcnt is 0 (such as with an empty datasource), and make sure we
8168         initialize not_usedarea.Y to cells.Y, so we don't draw over the
8169         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
8170
8171 2006-12-08  Chris Toshok  <toshok@ximian.com>
8172
8173         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
8174         grid.
8175
8176 2006-12-08  Chris Toshok  <toshok@ximian.com>
8177
8178         [ Fixes bug #80167 ]
8179         
8180         * ThemeWin32Classic.cs: don't draw the image if the button's flat
8181         style is FlatStyle.System.
8182
8183         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
8184         ButtonBase.flat_style private, and switch uses of it to the public
8185         property.
8186         
8187 2006-12-08  Chris Toshok  <toshok@ximian.com>
8188
8189         [ Fixes bug #80121 ]
8190         
8191         * ThemeWin32Classic.cs: center the caption text in the datagrid
8192         when we draw it.
8193
8194         * DataGrid.cs: lessen the amount we add to the caption height from
8195         6 to 2.  6 was making it huge.
8196
8197 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8198
8199         * UpDownBase: Handle MouseWheel call directly instead of capturing
8200         the inner textbox's OnMouseWheel. Fixes #80166
8201
8202 2006-12-08  Jackson Harper  <jackson@ximian.com>
8203
8204         * TextControl.cs: We need to invalidate the textbox when we empty
8205         it (how had this not been discovered before?)
8206
8207 2006-12-08  Jackson Harper  <jackson@ximian.com>
8208
8209         * TextBoxBase.cs: Reworked the mouse down code so I could get it
8210         to behave like MS, we now ignore the eventargs.Click and just
8211         track state ourself, which we were already doing anyways.
8212         - Constrain the double click handler to the double click size.
8213         
8214 2006-12-08  Chris Toshok  <toshok@ximian.com>
8215
8216         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
8217         direction if that scrollbar isn't shown.  fixes bug #80158.
8218
8219 2006-12-08  Andreia Gaita  <avidigal@novell.com>
8220
8221         * NumericUpDown.cs: Update value on getter. Fixes #79950
8222
8223 2006-12-08  Chris Toshok  <toshok@ximian.com>
8224
8225         * MenuItem.cs: add back in the event cloning code.  I didn't know
8226         how to do it in the face of the EventHandlerList work i'd done
8227         last week.  Fixes bug #80183.
8228
8229 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
8230
8231         * Control.cs: Add an invalidate to the BackgroundImage setter.
8232         [Fixes 80184]
8233
8234 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8235
8236         * ToolStrip*: Add some small properties reported by MoMA, fix event
8237         firing and default properties based off of unit tests, and add some
8238         attributes based off of the class status page.
8239
8240 2006-12-07  Jackson Harper  <jackson@ximian.com>
8241
8242         * TextBoxBase.cs: Take HideSelection into account when determining
8243         whether or not to show the selection.
8244         * RichTextBox.cs: After inserting the RTF into the document move
8245         the cursor to the beginning of the document.
8246
8247 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
8248
8249         * Control.cs: Remove static ArrayList "controls" which maintained
8250         a reference to every control created.
8251         * Application.cs: Create a static FormCollection to maintain a reference
8252         to every form created.  Use it in places that formerly enumerated through
8253         the controls one looking for forms.
8254         * Form.cs: Add and remove self from above FormCollection.
8255
8256 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
8257
8258         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
8259           not libgdk (though it makes me wonder why I didn't have any
8260           problems)
8261
8262 2006-12-07  Chris Toshok  <toshok@ximian.com>
8263
8264         [ you had to know this was coming after that last commit...]
8265         
8266         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
8267         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
8268         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
8269         XCopyArea).
8270
8271 2006-12-07  Chris Toshok  <toshok@ximian.com>
8272
8273         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
8274         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
8275         all the behavior we need for double buffering.
8276
8277         * XplatUIDriver.cs: implement the 3 double buffer methods using a
8278         client side Bitmap, just like the old Control-based double buffer
8279         code did.  The methods are virtual, so each XplatUI driver
8280         subclass can replace the implementation to use a faster, platform
8281         specific approach.
8282
8283         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
8284         double buffer code, and clean things up a bit in the process.
8285
8286 2006-12-06  Chris Toshok  <toshok@ximian.com>
8287
8288         * Control.cs: reindent WndProc.
8289
8290 2006-12-06  Chris Toshok  <toshok@ximian.com>
8291
8292         [ I wanna be like BenM when I grow up ]
8293         
8294         * Hwnd.cs: create a single static Graphics object on the static
8295         Bitmap we create.  use this for our text measurements.
8296
8297         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
8298         This was causing us to allocate a backbuffer for every control,
8299         even when it wasn't flagged as double buffered.  Instead use the
8300         single graphics instance.  This might have implications for
8301         multithreaded applications.  If we run into problems we can switch
8302         to creating 1 Graphics per control, on the static Hwnd bitmap.
8303
8304         this change nets us a 7M savings in private dirty mappings when
8305         running FormsTest.exe.
8306
8307 2006-12-06  Chris Toshok  <toshok@ximian.com>
8308
8309         * ListView.cs: the BackgroundImage override is just to set
8310         attributes.  chain up to base.BackgroundImage.
8311
8312         * RichTextBox.cs: same.
8313
8314         * ToolBar.cs: same, but we need to also redraw the toolbar when it
8315         changes, so instead a handler for BackgroundImageChanged.
8316         
8317         * Control.cs: make background_image private.
8318
8319 2006-12-06  Chris Toshok  <toshok@ximian.com>
8320
8321         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
8322         sure we even need this assignment, but roll with it for now.
8323
8324         * Control.cs: make the cursor field private.
8325
8326 2006-12-06  Chris Toshok  <toshok@ximian.com>
8327
8328         * Form.cs: we don't need to explicitly set ImeMode to
8329         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
8330         behavior in the face of ImeMode.Inherit.
8331
8332         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
8333         change the ctor's assignment to use ImeMode instead of ime_mode.
8334
8335         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
8336         ImeModeInherit.  Only check for the parent's imemode (and return
8337         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
8338         This fixes the button unit test, which sets both ImeMode and
8339         DefaultImeMode to ImeMode.Disable.
8340
8341         also make the ime_mode field private.
8342
8343 2006-12-06  Chris Toshok  <toshok@ximian.com>
8344
8345         * Control.cs: make control_style private.
8346
8347         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
8348         setting the styles to true, then setting them to false instead of
8349         reverting to their previous values.
8350
8351         also, call SetStyle on the scrollbars instead of using
8352         control_style directly.
8353
8354 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
8355
8356         * FormCollection.cs: Implement. [2.0]
8357
8358 2006-12-06  Chris Toshok  <toshok@ximian.com>
8359
8360         * Control.cs: make tab_stop private.
8361
8362         * Label.cs: set TabStop, not tab_stop.  reformat some event
8363         add/remove methods to make them more compact.
8364
8365 2006-12-06  Chris Toshok  <toshok@ximian.com>
8366
8367         * RadioButton.cs: fix TabStop handling.
8368
8369 2006-12-06  Chris Toshok  <toshok@ximian.com>
8370
8371         * TextBox.cs: remove the explicit assignments to has_focus.
8372         Control does that.
8373
8374         * ButtonBase.cs: remove the assignment to has_focus.  Control will
8375         manage that.
8376         
8377 2006-12-06  Chris Toshok  <toshok@ximian.com>
8378
8379         * ButtonBase.cs: remove all uses of is_enabled from this code.
8380         it's always true when any of the code containing the checks is
8381         executed.
8382
8383 2006-12-06  Chris Toshok  <toshok@ximian.com>
8384
8385         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
8386         with different semantics (some are present in both 1.1 and 2.0
8387         profiles) so that we match MS's behavior in our unit tests.
8388
8389 2006-12-06  Jackson Harper  <jackson@ximian.com>
8390
8391         * TextControl.cs: Make this operation undoable.
8392         * TextBoxBase.cs: Factor the border width into the preferred
8393         height.
8394         - implement Modified as per the spec.
8395
8396 2006-12-06  Chris Toshok  <toshok@ximian.com>
8397
8398         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
8399
8400 2006-12-06  Chris Toshok  <toshok@ximian.com>
8401
8402         * Control.cs: make right_to_left and context_menu fields private.
8403
8404 2006-12-06  Chris Toshok  <toshok@ximian.com>
8405
8406         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
8407         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
8408         Control.child_controls private.  switch all uses over to
8409         Control.Controls.
8410
8411 2006-12-06  Chris Toshok  <toshok@ximian.com>
8412
8413         * System.Windows.Forms/GroupBox.cs,
8414         System.Windows.Forms/AccessibleObject.cs,
8415         System.Windows.Forms/ErrorProvider.cs,
8416         System.Windows.Forms/Control.cs,
8417         System.Windows.Forms/UpDownBase.cs,
8418         System.Windows.Forms/ScrollBar.cs,
8419         System.Windows.Forms/DateTimePicker.cs,
8420         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
8421         System.Windows.Forms/ToolTip.cs,
8422         System.Windows.Forms/RadioButton.cs,
8423         System.Windows.Forms/LinkLabel.cs,
8424         System.Windows.Forms/Splitter.cs,
8425         System.Windows.Forms/TextBoxBase.cs,
8426         System.Windows.Forms/ToolStripTextBox.cs,
8427         System.Windows.Forms/ContainerControl.cs,
8428         System.Windows.Forms/ThemeWin32Classic.cs,
8429         System.Windows.Forms/SizeGrip.cs,
8430         System.Windows.Forms/ToolStripDropDown.cs,
8431         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
8432         private.  switch all uses over to Control.Parent.
8433
8434 2006-12-06  Chris Toshok  <toshok@ximian.com>
8435
8436         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
8437         Control does this before calling emitting these events.
8438
8439         * TabControl.cs: same.
8440
8441         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
8442         Control.client_rect.
8443
8444         * ButtonBase.cs: use the ClientSize property instead of the
8445         client_size field.
8446
8447         * ScrollableControl.cs: same.
8448
8449         * Control.cs: another pass at making properties private.  also,
8450         move the initialization of tab_stop to the ctor.
8451
8452 2006-12-05  Andreia Gaita <avidigal@novell.com>
8453
8454         * TabControl.cs: Let the selected index be set freely if the 
8455         control handle is not yet created.
8456
8457 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8458
8459         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
8460         internal until I can rewrite DefaultLayout.
8461         * ToolStrip.cs: Fix build error and some general cleaning.
8462         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
8463         Fix build errors caused by making some of Control's fields private.
8464
8465 2006-12-05  Jackson Harper  <jackson@ximian.com>
8466
8467         * TextControl.cs: Redo Insert a little so that it use IndexOf
8468         instead of Split, this prevents it from messing up on things like
8469         \n\n\n. Also more effecient since the split array doesn't need to
8470         be created.
8471         * TextBoxBase.cs: AppendText doesnt handle multiline and non
8472         multiline text differently, this is the first of many fixes that
8473         will make multiline/non-multiline the same thing as far as the
8474         TextBoxBase is concerned.
8475         - Don't split the text and insert lines, this can lose some line
8476         endings (like is the last line a soft or hard break). Instead use
8477         the new Insert.
8478         - Fix an off by one when combining all the lines in the Text
8479         getter.
8480         - Remove separate multiline handling from the Text getter/setter.
8481
8482 2006-12-05  Chris Toshok  <toshok@ximian.com>
8483
8484         * ButtonBase.cs: a few changes:
8485
8486         - don't reinitialize internal Control fields in the ctor when they
8487         have the same values as Control sets them.
8488
8489         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
8490         this before calling those methods.
8491
8492         - we don't need to call Refresh for anything.  use Invalidate
8493         instead.
8494
8495         - OnEnabledChanged doesn't need to redraw at all - Control.cs
8496         calls Refresh in its OnEnabledChanged.
8497         
8498         - several of the events we were registered for in the ctor to
8499         redraw ourselves already include calls to Invalidate in the
8500         property setters that raise the events.  remove the extra
8501         invalidation.
8502
8503         - reformat a switch statement that was 83274658 columns wide.
8504         
8505 2006-12-05  Mike Kestner  <mkestner@novell.com>
8506
8507         * ComboBox.cs: fix a unit test regression from a TextBox
8508         SelectionLength return of -1 when there's no selection.  
8509
8510 2006-12-05  Chris Toshok  <toshok@ximian.com>
8511
8512         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
8513         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
8514         cleaning up some of the internal Control fields being used by
8515         subclasses.
8516
8517 2006-12-05  Mike Kestner  <mkestner@novell.com>
8518
8519         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
8520         listbox after AddImplicit calls since it defaults to hidden. Add a 
8521         hack to preserve requested heights across DropDownStyle changes.
8522
8523 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
8524
8525         * PropertyGrid.cs: Hide FindFirstItem method from public API.
8526
8527 2006-12-05  Chris Toshok  <toshok@ximian.com>
8528
8529         * DataGridView.cs: fix compiler warnings.
8530
8531         * PrintControllerWithStatusDialog.cs: same.
8532
8533         * ToolBar.cs: same.
8534
8535         * FolderBrowserDialog.cs: same.
8536
8537         * Splitter.cs: same.
8538
8539         * DataGridViewComboBoxCell.cs: same.
8540
8541         * XplatUIWin32.cs: same.
8542
8543         * PictureBox.cs: same.
8544
8545         * Win32DnD.cs: same.
8546
8547         * PageSetupDialog.cs: same.
8548
8549         * FileDialog.cs: same.
8550
8551         * PrintDialog.cs: same.
8552
8553         * DataGridTextBoxColumn.cs: same.
8554
8555         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
8556
8557 2006-12-05  Chris Toshok  <toshok@ximian.com>
8558
8559         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
8560         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
8561         System.ComponentModel.EventHandlerList work.
8562
8563 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
8564
8565         * DrawTreeNodeEventArgs.cs: Added.
8566
8567 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8568         
8569         * InternalWindowManager.cs: Remove an unused field.
8570         
8571 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8572
8573         * InternalWindowManager.cs:
8574         - Save the point where the title bar is clicked.
8575         
8576         * MdiWindowManager.cs:
8577         - Only allow moving of the window as long as the 
8578         clicked point on the title bar does not get out of
8579         MdiClient's rectangle. Fixes #79982.
8580         
8581         * MdiClient.cs:
8582         - Added Horizontal/VerticalScrollbarVisible.
8583         - Simplified the scrollbar sizing algorithm.
8584         - Cache the difference in scrolled value in
8585         H/VBarValueChanged and move the calculation out
8586         of the for loop.
8587
8588 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8589
8590         * Control.cs: Make the Console.WriteLine in WndProc 
8591         write more info.
8592
8593 2006-12-05  Chris Toshok  <toshok@ximian.com>
8594
8595         * ToolStripManager.cs, ToolStripButton.cs,
8596         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
8597         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
8598         ToolStripSplitButton.cs, ToolStripSeparator.cs,
8599         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
8600         ToolStripProgressBar.cs, ToolStripContainer.cs,
8601         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
8602         to using System.ComponentModel.EventHandlerList.
8603
8604 2006-12-04  Chris Toshok  <toshok@ximian.com>
8605
8606         * LinkLabel.cs: fix up compiler warnings.
8607
8608         * TableLayoutSettings.cs: same.
8609
8610         * TreeView.cs: same.
8611
8612         * ToolBar.cs: same.
8613
8614         * TabControl.cs: same.
8615
8616         * RichTextBox.cs: same.
8617
8618         * ListViewItem.cs: same.
8619
8620         * PropertyGrid.cs: same.
8621
8622         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
8623
8624         * ToolTip.cs same.
8625
8626         * TextRenderer.cs: fix up compiler warnings.
8627
8628         * Label.cs: same.
8629
8630         * Form.cs: corcompare fixes.
8631
8632         * PictureBox.cs: fix up compiler warnings.
8633
8634         * ImageListStreamer.cs: same.
8635
8636         * TrackBar.cs: corcompare fix.
8637
8638         * Control.cs: fix up compiler warnings.
8639
8640         * SplitterPanel.cs: same.
8641
8642         * NumericTextBox.cs: same.
8643
8644         * ImageList.cs: same.
8645
8646         * StatusStrip.cs: same.
8647
8648         * ProgressBar.cs: corcompare fix.
8649
8650         * ToolStripButton.cs: fix up compiler warnings.
8651
8652         * ToolStripStatusLabel.cs: same.
8653
8654         * ToolStripSplitButton.cs: same.
8655
8656         * ToolStripSeparator.cs: same.
8657
8658         * ToolStripProgressBar.cs: same.
8659
8660         * ToolStripDropDownMenu.cs: same
8661
8662         * ToolStripDropDown.cs: same.
8663
8664         * ToolStripDropDownButton.cs: same.
8665
8666         * ToolStrip.cs: same.
8667
8668         * ToolStripControlHost.cs: same.
8669
8670         * ToolStripContentPanel.cs: same.
8671
8672         * ToolStripDropDown.cs: same.
8673
8674         * ToolStripContainer.cs: same.
8675
8676         * ToolStripPanel.cs: same, and add "new" where we need it to work
8677         with the new ArrangedElementCollection.
8678
8679         * ToolStripItemCollection.cs: add "new" where we need it to work
8680         with the new ArrangedElementCollection.
8681
8682 2006-12-04  Andreia Gaita <avidigal@novell.com>
8683
8684         * TabControl.cs: Fix default tab selection to after TabControl
8685         gets focus and not before. Fixes #80128
8686
8687 2006-12-04  Chris Toshok  <toshok@ximian.com>
8688
8689         * DataGridTableStyle.cs: remove the gross calling of
8690         datagrid.Refresh from here.  It's a broken idea and it doesn't
8691         work anyway.
8692
8693         * DataGrid.cs: instead, just register/unregister from the
8694         DataGridTableStyle events in CurrentTableStyle.  we play it
8695         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
8696         even though some would most likely not require it.  Fixes bug
8697         #80115 (and one portion of #80117 as a side effect).
8698
8699 2006-12-04  Chris Toshok  <toshok@ximian.com>
8700
8701         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
8702         so the textbox (if any) goes away.  Fixes bug #80117.
8703
8704 2006-12-04  Chris Toshok  <toshok@ximian.com>
8705
8706         * DataGridColumnStyle.cs: set the column's readonly property
8707         initially based on the property descriptor's IsReadOnly.  Fixes
8708         bug #80044.
8709
8710 2006-12-04  Chris Toshok  <toshok@ximian.com>
8711
8712         * ComboBox.cs: wrap the dropdown style changing work in
8713         SuspendLayout/ResumeLayout.  Fixes bug #79968.
8714
8715 2006-12-04  Jackson Harper  <jackson@ximian.com>
8716
8717         * TextBoxBase.cs: Fix off by one, since these are one-based.
8718         * TextBox.cs: Select all the text when we get focus.  The TextBox
8719         does this but the RTB does not.
8720
8721 2006-12-04  Chris Toshok  <toshok@ximian.com>
8722
8723         * DataGridTextBoxColumn.cs: remove some spew.
8724
8725         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
8726         but some part of me is saying "it shouldn't be here.."  At any
8727         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
8728         setting the value.
8729
8730 2006-12-04  Chris Toshok  <toshok@ximian.com>
8731
8732         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
8733         to reassign the propertydescriptor.
8734
8735 2006-12-04  Jackson Harper  <jackson@ximian.com>
8736
8737         * TextBoxBase.cs:
8738         * TextControl.cs: Remove some unused variables.  Maybe this will
8739         patch things up between mike and I.
8740         - don't split lines less then one char wide, if the viewport is
8741         that small text won't be visible anyways.
8742         
8743 2006-12-04  Jackson Harper  <jackson@ximian.com>
8744
8745         * TextBoxBase.cs: Default selection length is -1, need to do some
8746         more testing on windows to see when this is used for the property.
8747         - Redid the Lines [] property to that we properly remove soft line
8748         breaks
8749         - added support for preserving carriage returns
8750         -  CanUndo is not a variable like 'is undo enabled' it just returns
8751         true if there is undo operations available.
8752         - AppendText doesn't need to grab the last tag itself anymore,
8753         this happens automatically when we move the cursor.
8754         * TextControl.cs: Add CompoundActions to the undo class. This
8755         allows combining the other operations into one big option.  ie a
8756         paste will combine { delete old, insert new, move cursor }
8757         - Add InsertString undo operation
8758         - New method for deleting multiline text
8759         - Add carriage returns to lines. So we can preserve carriage
8760         returns when text is 'roundtripped'
8761
8762 2006-12-04  Chris Toshok  <toshok@ximian.com>
8763
8764         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
8765         minimum 0.  Fixes the scrollbar exception in bug #80136.
8766
8767 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8768
8769         * MdiClient.cs: 
8770         * MdiWindowManager: Removed unused fields and methods.
8771         
8772 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8773         
8774         * StatusBar.cs: Update all panels when a AutoSize=Contents
8775         panel needs updating.
8776         
8777         * StatusBarPanel.cs: Remove twidth and only use initialize.
8778         Fixes #80031.
8779                 
8780 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8781
8782         * Form.cs: When a form's MdiParent is set add it directly
8783         on top of the z-order in stead of relying on MdiClient's
8784         ActivateChild to do it. Fixes #80135.
8785         
8786         * MdiClient.cs: 
8787         - Remove original_order, mdi_child_list is already doing
8788         the same thing.
8789         - Create mdi_child_list on construction in
8790         stead of first use (avoids a few null checks).
8791
8792         * MenuItem.cs: Use an already existing list of mdi children
8793         to get the correct order of children and remove the other
8794         redundant list.
8795
8796 2006-12-04  Chris Toshok  <toshok@ximian.com>
8797
8798         * PropertyGridView.cs: cached_splitter_location is only used in
8799         !DOUBLEBUFFER code.
8800
8801         * PropertyGrid.cs: implement the ComComponentNameChanged event
8802         using Events, hoping that would fix the warning.  Looks like a
8803         compiler bug instead (#80144).
8804
8805         * PropertyManager.cs: remove unused method.
8806
8807 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
8808
8809         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
8810         include parentesis to fix expression evaluation. Fixes #79634.
8811
8812 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
8813         
8814         * MenuAPI.cs:
8815         - Changes to fix behavior in Menu control, some reported in #80097
8816         and other detected during behavior refactory like a select event
8817         problems.
8818         - Remove unneded "if's" conditions.
8819         - Created an internal to flag when popup is active in control, we need 
8820         it because in .NET you can have menu active but without popup active
8821         when you active menu using popup without visible items.
8822         - Mimic win32 behavior for Select and Popup events.  
8823         - Dont open popup menu when you dont have visible subitems.
8824         - Do nothing when click on disabled menu item.
8825         - Some small changes to follow the coding style guidelines.
8826         - Unselect menu only when another control gives focus. Fixes #80097.
8827         - Remove unused code.
8828         
8829         * MenuItem.cs: internal VisibleItems method to check if menu
8830         theres visible subitems, it will be usefull to fix some 
8831         behavior in Menu control.
8832         
8833 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
8834         
8835         * Timer.cs: Tag property for 2.0 profile.
8836         
8837 2006-12-01  Chris Toshok  <toshok@ximian.com>
8838
8839         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
8840         
8841         * Win32DnD.cs: comment out some unused fields.
8842
8843         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
8844         some unused properties/methods.
8845
8846         * XplatUIX11.cs: fix MousePosition so we override the base class's
8847         property instead of conflicting with it.
8848
8849         * PictureBox.cs: comment out some unused fields
8850
8851         * OSXStructs.cs: make some struct fields public.
8852
8853         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
8854         MousePosition so we override the base class's property instead of
8855         conflicting with it.
8856
8857         * X11Dnd.cs: comment out some unused fields
8858
8859         * X11DesktopColors.cs: fix some struct field visibility to quiet
8860         the compiler.
8861
8862         * X11Dnd.cs: remove some debug code.
8863
8864         * ThemeClearlooks.cs: comment out unused field.
8865
8866         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
8867
8868         * ThemeGtk.cs: comment out some unused pinvokes.
8869
8870         * Timer.cs: remove some unused fields.
8871
8872         * ThemeClearlooks.cs: comment out unused field.
8873
8874         * UpDownBase.cs: comment out unused field.
8875
8876         * DataObject.cs: comment out unused field.
8877
8878         * DataGridBoolColumn.cs: reomve unused field.
8879
8880         * DataGrid.cs: remove unused field.
8881
8882         * Cursor.cs: remove old ToBitmap code.
8883
8884         * ControlPaint.cs: remove unused method.
8885
8886         * ScrollBar.cs: remove unused fields.
8887
8888         * ComboBox.cs: remove unused field, and chain up to
8889         AccessibleObject ctor.
8890
8891         * ListBox.cs: remove unused field.
8892
8893         * ButtonBase.cs: wrap a couple fields in NET_2_0.
8894
8895         * GridEntry.cs: remove unused fields.
8896
8897         * Binding.cs: remove unused fields.
8898
8899         * AxHost.cs: remove unused method.
8900
8901         * ContainerControl.cs: remove unused field.
8902
8903         * ScrollableControl.cs: remove unused fields.
8904
8905 2006-12-01  Chris Toshok  <toshok@ximian.com>
8906
8907         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
8908         the Where/WhereString stuff.  it's easy enough to CWL
8909         Environment.StackTrace.
8910
8911         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
8912         unused private fields.
8913
8914 2006-12-01  Jackson Harper  <jackson@ximian.com>
8915
8916         * TextControl.cs: Do not update the view while inserting multiline
8917         text. If we update the view we might wrap lines, before entering
8918         the new lines, which causes the new line insertion calculations to
8919         be totally fubared.
8920         - Remove an old TODO
8921         - Make debug output a little nicer
8922         
8923 2006-12-01  Chris Toshok  <toshok@ximian.com>
8924
8925         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
8926
8927 2006-12-01  Chris Toshok  <toshok@ximian.com>
8928
8929         [ fix the majority of the CS0108 warnings we've been suppressing ]
8930         
8931         * TreeView.cs: mark BackgroundImageChanged as 'new'.
8932
8933         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
8934         to "LayoutToolBar" to quiet mcs.
8935         
8936         * TabControl.cs: mark our ControlCollection class as 'new'.
8937
8938         * TextBoxBase.cs: mark some events as 'new'.
8939
8940         * Splitter.cs: TabStop is 'new'.
8941
8942         * ControlBindingsCollection.cs: mark a few methods as new since
8943         they change the visibility from protected to public.
8944
8945         * RadioButton.cs: DoubleClick -> base class, and remove unused
8946         HaveDoubleClick.
8947
8948         * MonthCalendar.cs: ImeMode property -> base class, and mark many
8949         events as new.
8950
8951         * NumericUpDown.cs: TextChanged -> base class.
8952
8953         * CheckedListBox.cs: mark our ObjectCollection class as new to
8954         quiet mcs.
8955
8956         * FolderBrowserDialog.cs: make HelpRequest event new and have it
8957         muck with the base class.
8958
8959         * StatusBar.cs: fix some mcs warnings about Update being the same
8960         name as a base class method.
8961
8962         * RichTextBox.cs: mark some events as new, and make them do things
8963         to the base class impl.
8964
8965         * UserControl.cs: mark TextChanged as new, and have it manipulate
8966         base.TextChanged.
8967
8968         * UpDownBase.cs: mark some things new.
8969
8970         * CheckBox.cs: mark DoubleClick "new", and add some text about
8971         what we need to look at.
8972
8973         * Panel.cs: make the events "new", and manipulate the base
8974         version.  these are just here for attributes.
8975
8976         * AccessibleObject.cs: make owner private.
8977
8978         * Control.cs: deal with AccessibleObject.owner being private.
8979         cache our own copy if we need it.
8980
8981         * Button.cs: add "new" to the DoubleClickEvent.
8982
8983         * ListBox.cs: no need to track our own has_focus here.  let
8984         Control.has_focus do it for us.  Also some other work to clear up
8985         warnings about not overriding base class methods of the same name.
8986         
8987         * ComboBox.cs: clear up some warnings about not override base
8988         class methods of the same name.
8989
8990 2006-12-01  Chris Toshok  <toshok@ximian.com>
8991
8992         * Form.cs: flag a few things as "new" to quiet some of the mcs
8993         warnings.
8994
8995         * AxHost.cs: same.
8996
8997         * PrintPreviewDialog.cs: same.
8998
8999         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
9000         now DGV isn't so horrible on the class status page.  also, move
9001         all events to using System.ComponentModel.EventHandlerList.  my
9002         wrists hurt.
9003
9004 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9005
9006         * MdiWindowManager.cs:
9007         - Set form to active mdi child if shown,
9008         and update the active mdi child to the next 
9009         remaining child in the z-order if the form is hidden.
9010
9011         * Form.cs: 
9012         - Track if the form has been visible and if its 
9013         visibility is beeing changed, so that the MdiClient
9014         can properly decide the ActiveMdiChild. The MdiClient 
9015         cannot track this since the form can change visibility 
9016         before MdiClient is created.
9017
9018         * MdiClient.cs:
9019         - Don't activate anything of the parent form is changing
9020         its visibility.
9021         - Rework ActiveMdiChild to only return visible mdi 
9022         children and take into account several other corner 
9023         cases.
9024
9025 2006-12-01  Chris Toshok  <toshok@ximian.com>
9026
9027         * IBindableComponent.cs: new 2.0 interface.
9028
9029 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
9030
9031         * DataGrid.cs: Font for caption area is bold by default.
9032
9033 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
9034
9035         * Menu.cs: Tag property for 2.0.
9036         
9037 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
9038
9039         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
9040         
9041 2006-12-01  Chris Toshok  <toshok@ximian.com>
9042
9043         * TreeView.cs: doh, the Begin* events should be
9044         TreeViewCancelEventHandler.
9045
9046 2006-12-01  Chris Toshok  <toshok@ximian.com>
9047
9048         * Form.cs: Form.ControlCollection already stores off the
9049         form_owner field.  don't access the base class's internal "owner"
9050         field.
9051
9052         * Control.cs: make all the fields in Control.ControlCollection
9053         private.  there's no need for any internal fields here.
9054
9055 2006-12-01  Chris Toshok  <toshok@ximian.com>
9056
9057         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
9058         OnHandleCreated.  Fixes bug #80109.
9059
9060 2006-12-01  Chris Toshok  <toshok@ximian.com>
9061
9062         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
9063         SplitContainer.cs, Control.cs, StatusStrip.cs,
9064         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
9065         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
9066         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
9067         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
9068         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
9069         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
9070         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
9071         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
9072         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
9073         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
9074
9075         do most of the work to convert our code over to use
9076         System.ComponentModel.Component.Events for
9077         adding/removing/dispatching events.
9078
9079
9080 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9081
9082         * DataGridView.cs: Fix an ArgumentNullException reported 
9083         twice today in IRC.
9084
9085 2006-11-30  Mike Kestner  <mkestner@novell.com>
9086
9087         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
9088         grabbed listbox.  Fixes #80036 and #80101.
9089
9090 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9091
9092         * Message.cs: Changed ToString() to match MS.
9093         
9094 2006-11-30  Jackson Harper  <jackson@ximian.com>
9095
9096         * TextBoxBase.cs: You can still change the selected text on a read
9097         only textbox.
9098         * TextControl.cs: Lower magic number for wrap calculations. This
9099         lets text get closer to the right (far) edge.
9100
9101 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
9102
9103         * Control.cs: Tweak 2.0 layout properties.
9104         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
9105         * TextRenderer.cs: Add a new overload.
9106         * ToolStrip*: Huge amount of changes and new features.
9107
9108 2006-11-30  Mike Kestner  <mkestner@novell.com>
9109
9110         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
9111         scroll range correct.  Fixes #79994.
9112
9113 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
9114
9115         * MdiWindowManager.cs: Update main form's text when
9116         a form is closed. (fixes #80038)
9117         
9118 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
9119
9120         * ToolBar.cs:
9121         - Fix an regression in ButtonSize.
9122         - Get ImeMode default value change to "Disable".
9123         - Get ShowTooltips default value change to true, default value is 
9124         "false" but after make a test in .NET we get "true" result as default.
9125         
9126 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
9127
9128         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
9129
9130 2006-11-29  Chris Toshok  <toshok@ximian.com>
9131
9132         * XplatUIWin32.cs (GetWindowTransparency): check return value of
9133         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
9134         SetWindowTransparency hasn't been called.
9135
9136 2006-11-29  Chris Toshok  <toshok@ximian.com>
9137
9138         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
9139         if it's supported.
9140         (set_AllowTransparency): reorder things a little so that the
9141         WS_EX_LAYERED style is removed properly.
9142
9143 2006-11-29  Chris Toshok  <toshok@ximian.com>
9144
9145         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
9146         
9147         * Form.cs: only call the XplatUI transparency method (get/set) if
9148         SupportsTransparency says it's supported. Otherwise fallback to
9149         doing nothing (in the set case) or returning the instance field we
9150         cache (in the get case).
9151
9152         * XplatUIStructs.cs: add TransparencySupport flag enum.
9153         
9154         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
9155         change to SupportsTransparency.
9156
9157         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
9158         TransparencySupport.None from SupportsTransparency.
9159
9160         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
9161         TransparencySupport.Set from SupportsTransparency.
9162
9163         * XplatUIWin32.cs: implement GetWindowTransparency calling
9164         GetLayeredWindowAttributes, and implement SupportsTransparency by
9165         checking whether or not both
9166         GetWindowTransparency/SetWindowTransparency are available
9167         entrypoints.  We need to do this since SetWindowTransparency is
9168         available as of win2k, but GetWindowTransparency requires winxp.
9169         yay win32 api.
9170
9171         * XplatUI.cs: Add GetWindowTransparency, and change
9172         SupportsTransparency to allow for either/both Get/Set.
9173
9174 2006-11-29  Chris Toshok  <toshok@ximian.com>
9175
9176         * DataGrid.cs: keep from going into an infinite loop redrawing a
9177         datagrid that has no datasource.  Fixes bug #80033.
9178
9179 2006-11-29  Chris Toshok  <toshok@ximian.com>
9180
9181         * MenuItem.cs: fix the NRE when we assign text (and therefore call
9182         Invalidate) before the mainmenu has been assigned to a control.
9183
9184 2006-11-29  Chris Toshok  <toshok@ximian.com>
9185
9186         * DataGrid.cs: detect when we should be double the double click
9187         row/column autosize stuff, although that codepath has yet to be
9188         written.  part of the work for bug #79891.
9189
9190 2006-11-29  Chris Toshok  <toshok@ximian.com>
9191
9192         * Binding.cs (SetControl): fix unit test.
9193
9194 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9195
9196         * PageSetupDialog.cs: Validate the margins and set them in
9197         PageSettings. 
9198         * NumericTextBox.cs: New class to mimic the behavior of the
9199         textboxes used in the printing dialogs.
9200
9201 2006-11-29  Andreia Gaita  <avidigal@novell.com>
9202         
9203         * Form.cs: Revert previous change (remove call UpdateBounds
9204         from form constructor), because it messes with the handle creation
9205         order, and that one needs lots and lots of love.
9206         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
9207         for valid printer and throw InvalidPrinterException if document
9208         is set but printer not valid), adding a MonoTODO. Once 
9209         handle creation is done properly, we can put this back in.
9210
9211 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9212
9213         * MenuItem.cs: Create a invalidate method for menu item, to be
9214         calling from set text, it make text changes to imadiate update
9215         on screen. Fixes #80013. 
9216         
9217 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9218
9219         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
9220         fixes bug #80070 and some other problem on toolbar buttons
9221         layout.
9222
9223 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
9224
9225         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
9226         with dotted brush.      Fixes #79564
9227         
9228 2006-11-28  Andreia Gaita  <avidigal@novell.com>
9229
9230         * Form.cs: Removed call to UpdateBounds on Form
9231         constructor, it was causing a call to CreateHandle
9232         before it was supposed to.
9233         * PrintControllerWithStatusDialog: Applied patch
9234         by Chris Toshok to hide controller when there are
9235         no printers available.
9236         PrintDialog.cs: initialize printer settings to 
9237         null - correct DefaultValues test #5
9238         * PrintPreviewControl.cs: Move PrintController
9239         initialization to GeneratePreview
9240         * PrintPreviewDialog.cs: 
9241         - Remove Preview generation     from Document_set(). It is 
9242         called on OnPaint
9243         - Throw InvalidPrinterException on CreateHandle if
9244         a Document is set but there are no printers or 
9245         printer is not valid.
9246         * ThemeWin32Classic: don't paint PrintPreviewControl
9247         if there is nothing to paint    
9248
9249 2006-11-28  Miguel de Icaza  <miguel@novell.com>
9250
9251         * Form.cs: Add another popular method.
9252
9253         * TabPage.cs: ditto.
9254
9255 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9256
9257         * MenuItem.cs: Fixed a warning.
9258         * InternalWindowManager: Fixed a warning.
9259
9260 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9261
9262         * MenuItem.cs:
9263         - When cloning a menu also clone MdiList and clone the 
9264           window menu items properly (as the forms and menuitems
9265           are kept in an internal hashtable, these need updating 
9266           as well)
9267         - Rewrote the window menu code, menu items are added in the
9268           order the forms were added to their parent, and they are
9269           updated every time the window menu is shown (before the
9270           list was only generated once, in the current order of the
9271           forms, and would never be updated). A checkmark is shown
9272           next to the item corresponding to the active mdi child.
9273
9274 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9275
9276         * XplatUIStructs.cs: 
9277         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
9278         
9279         * XplatUIWin32.cs: 
9280         - Added TME_NONCLIENT to TMEFlags.
9281         - Handles WM_NCMOUSEMOVE in GetMessage to 
9282           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
9283
9284         * MdiWindowManager:
9285         - Now merges mdi child menu to parent menu when maximized.
9286         - Recalculate NC areas of both mdi child and mdi parent. 
9287           Fixes #79757 (4).
9288           on window state and size changes.Fixes #79844 (3).
9289         - Handle WM_NCCALCSIZE to properly calculate borders.
9290
9291         * Form.cs:
9292         - Add/remove to the mdi containers list of mdi children 
9293           in the order they are added.
9294         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
9295           to the maximized mdi child.
9296         
9297         * InternalWindowManager.cs:
9298         - Only execute a click on the control buttons on the mouse up,
9299           not on the mouse down. Show the state of the button 
9300           (was only showing Normal state, never Pressed state). The
9301           pressed button now follows the mouse (if you click the Close 
9302           button and move the mouse over the Maximize button, the 
9303           Maximize button will be shown as pressed). Since Win32 does
9304           not generate WM_NCLBUTTONUP if you release the button outside
9305           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
9306           it as a mouse up.
9307         
9308         * ThemeWin32Classic.cs:
9309         - Draw a missing border around mdi child forms. Fixes #79844 (2).
9310
9311         * MdiClient.cs:
9312         - Added a list of forms which contains the order the forms are
9313           added to the mdi parent.
9314         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
9315         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
9316         - If the active form changes set the scrollbars to the top
9317           of the Z order, otherwise the form could hide them.
9318         - Scrollbars are now sized according to ClientSize, not 
9319           to Size, and they take into account the other scrollbar
9320           to determine maximum.
9321         
9322 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
9323         
9324         * XplatUI.cs:
9325         * XplatUIDriver.cs:
9326         * XplatUIX11.cs:
9327         * XplatUIWin32.cs:
9328         * XplatUIOSX.cs:
9329         - Added RequestAdditionalWM_NCMessages for windows to 
9330           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
9331           Currently only implemented in XplatUIWin32.
9332
9333 2006-11-27  Chris Toshok  <toshok@ximian.com>
9334
9335         * Hwnd.cs: only add the hwnd to the windows hash in
9336         set_WholeWindow and set_ClientWindow if whole_window/client_window
9337         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
9338
9339 2006-11-27  Mike Kestner  <mkestner@novell.com>
9340
9341         * ComboBox.cs: remove redundant OnDropDown call.  It is called
9342         from the ComboListBox.ShowWindow code. Fixes #79969.
9343
9344 2006-11-27  Chris Toshok  <toshok@ximian.com>
9345
9346         * Hwnd.cs: remove the setters for ExposePending and
9347         NCExposePending - noone uses them.
9348
9349 2006-11-27  Jackson Harper  <jackson@ximian.com>
9350
9351         * TextControl.cs: new param for ReplaceSelection which determines
9352         whether we select the new selection, or set the cursor to the end
9353         of the new selection.
9354         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
9355         pasting, select the new text.
9356         * RichTextBox.cs: Use new param for ReplaceSelection.
9357
9358 2006-11-27  Jackson Harper  <jackson@ximian.com>
9359
9360         * TextBoxBase.cs: Set the selection to the caret after the caret
9361         is moved, otherwise they get out of sync.
9362
9363 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9364
9365         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
9366         it fixes #80015
9367
9368 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
9369
9370         * ThemeWin32Classic.cs: 
9371         - Fix toolbar drop down arrow position.
9372         - Fix drop down appearance when ToolBar.Appearance is normal,
9373         it fixes #80018.
9374         
9375 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
9376
9377         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
9378         * Control.cs: Same.
9379         * UpDownBase.cs: Same.
9380         * ButtonBase.cs: Same.
9381         * ScrollBar.cs: Same.
9382         * TrackBar.cs: Same.
9383         * PictureBox.cs: Same.
9384         * UserControl.cs: Same.
9385         * Label.cs: Same.
9386         * ListControl.cs: Same.
9387         * TextBoxBase.cs: Same.
9388         * ListView.cs: Same.
9389         * RichTextBox.cs: Same.
9390         * TreeView.cs: Same.
9391
9392 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
9393
9394         * PrintDialog.cs:
9395         - Text label for where 
9396         - Text label comment was not shown
9397
9398 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
9399
9400         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
9401
9402 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9403
9404         * InternalWindowManager.cs: 
9405         - Handle WM_PARENTNOTIFY to activate the form
9406         if any child control is clicked.
9407         - The form is only sizable if not minimized.
9408
9409         * MdiWindowManager.cs:
9410         - Save the IconicBounds if the form is moved.
9411         - Rework SetWindowState, now the window bounds 
9412         are stored only if the old window state is Normal.
9413         
9414         * MdiClient.cs:
9415         - In SetWindowStates store the old window state if 
9416         the window is maximized and restore window state if
9417         the window looses focus.
9418         - Don't handle any scrollbar value changes if 
9419         initializing the scroll bars. Fixes #79771.
9420         - Reworked ArrangeIconicWindows. Current algorithm
9421         tests bounds agains all other minimized windows, if
9422         any intersections create new bounds (going left to 
9423         right, bottom to top) and then test again. When 
9424         successful the bounds are saved and never computed
9425         again. Fixes #79774.
9426
9427 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9428
9429         * InternalWindowManager.cs: Added HandleTitleBarUp.
9430
9431 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9432
9433         * NumericUpDown.cs: In .NET 1.1, user entered text is still
9434         hexadecimal in ParseUserEdit.
9435
9436         
9437 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
9438
9439         * MdiWindowManager.cs: 
9440         - Handle a click on the form's icon to show the 
9441         system menu (when maximized). Fixes #79775.
9442         - Change the existing click handler for the form's
9443         icon when not maximized to show on MouseUp.
9444         Fixes #79776.
9445
9446         * Form.cs: In OnResize only layout the mdi child's
9447         parent if it actually has a parent. Might not if
9448         the window is closing.
9449
9450
9451 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9452
9453         * MdiClient.cs: Ignore active MDI client for text of parent, if
9454         child has no text set.
9455
9456 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
9457
9458         * ToolBar.cs: Fixed ToString to match MS.
9459
9460 2006-11-22  Andreia Gaita  <avidigal@novell.com>
9461
9462         * NumericUpDown: 
9463         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
9464         update inner values on set. Fixes #79966.
9465         - Override OnLostFocus to update value on NET 2. Fixes #79950.
9466         - Fix hexadecimal parsing.
9467         
9468         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
9469         parent. Fixes #79957
9470
9471 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9472
9473         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
9474         the actual size has to be queried, since if height /
9475         width is negative Win32 changes it to 0. 
9476         Fixes #79999 on Windows.
9477         
9478         * XplatUIX11.cs: Set height / width to 0 if negative
9479         in SetWindowPos. Fixes #79999 on Linux.
9480         
9481 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9482
9483         * ThemeWin32Classic.cs: Fix text redenring when button is
9484         pressed.
9485
9486 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
9487
9488         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
9489         and later navigate by mouse. Fixes #79528.
9490
9491 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9492
9493         * ToolBar.cs: Set default value for TabStop to false in
9494         constructor, it fixes remaining behavior of bug #79863.
9495
9496 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9497
9498         * MdiWindowManager.cs:
9499         * InternalWindowManager.cs:
9500         - Moved a few methods specific to Mdi from 
9501         InternalWindowManager to MdiWindowManager.
9502         Fixes #79996.
9503         
9504 2006-11-21  Chris Toshok  <toshok@ximian.com>
9505
9506         * XplatUIOSX.cs: stub out InvalidateNC.
9507
9508         * XplatUIWin32.cs: implement InvalidateNC using the call I found
9509         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
9510
9511         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
9512
9513         * XplatUIDriver.cs: add InvalidateNC abstract method.
9514
9515         * XplatUI.cs: add InvalidateNC.
9516
9517 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
9518
9519         * ToolBar.cs: Invalidate complete button area when pressed status 
9520         was changed.
9521         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
9522         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
9523         by 1 when button is pressed.
9524
9525 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9526
9527         * ToolButton.cs: Invalidate middle of DropDown button when
9528         ToolBar theres DropDownArrows.
9529         * ThemeWin32Classic.cs: Change position of DropDown arrow and
9530         fix DropDown drawing operations.
9531
9532 2006-11-20  Chris Toshok  <toshok@ximian.com>
9533
9534         * NativeWindow.cs: fix the formatting of functions ('{' on the
9535         following line), and enable the thread exception dialog.
9536
9537         * Application.cs: remove the duplicate exception catching from
9538         here.
9539
9540 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9541
9542         * Toolbar.cs: Triggers button click event when click on icon
9543         of dropdown ToolBarButton. Fixes #79912.
9544         
9545 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9546
9547         * Theme.cs:
9548         * ThemeWin32Classic.cs:
9549         - Added a property WindowBorderFont to enable themeing
9550           of mdi child windows' Text.
9551           
9552 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9553
9554         * InternalWindowManager.cs:
9555         * Form.cs:
9556         * MdiClient.cs:
9557         * MdiWindowManager.cs: 
9558         - If mdi child is maximized, set mdi parent's
9559           text to "Parent - [Child]". Fixes #79770.
9560         - If there is any maximized mdi child windows, only the active 
9561           window (and any new windows) is maximized, the rest are normal.
9562         - On a WindowState change only save mdi child's window bounds 
9563           if the old window state was normal. Fixes #79774.
9564         - The scroll bars are now calculated on hopefully all
9565           necessary events. Fixed #79771 / #79844->6 / #79906.
9566         - MdiClient.SizeScrollBars() now takes into account docked 
9567           controls in the parent when calculating available space.
9568         - InternalWindowManager now always repaints the entire title
9569           area. Fixes #79844->1/4/5.
9570         - Added RequestNCRecalc on mdi child windowstate changes.
9571           Fixes #79772.
9572
9573 2006-11-20  Mike Kestner  <mkestner@novell.com>
9574
9575         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
9576         in the MouseUp handler of the listbox and move the return handling
9577         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
9578
9579 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
9580
9581         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
9582
9583 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9584
9585         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
9586           working in 1.2.x anymore. So, updated.
9587
9588 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
9589
9590         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
9591         NumberGroupSeparator of current culture instead of assuming en-US.
9592         Fixed bug #79967.
9593
9594 2006-11-17  Mike Kestner  <mkestner@novell.com>
9595
9596         * Control.cs: Add the concept of implicit bounds setting so that
9597         dock/undock round trips preserve explicitly set size/locations.
9598         Fixes #79313.
9599
9600 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
9601
9602         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
9603           can't handle those filters. (Fixes bug #79961)
9604
9605 2006-11-17  Chris Toshok  <toshok@ximian.com>
9606
9607         [ fixes the exit/crashes associated with #79835.  it's clearly
9608         suboptimal though, we need to figure out a better way to solve
9609         this. ]
9610         
9611         * PrintPreviewControl.cs: deal with the new invalid printer
9612         exceptions.
9613
9614         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
9615         and return false (so CommonDialog.ShowDialog doesn't actually show
9616         the form.)
9617
9618         * PrintDialog.cs: enable/disable the Ok button depending on
9619         whether or not the printer is valid.
9620
9621         * CommonDialog.cs (ShowDialog): only actually show the form if
9622         RunDialog returns true.
9623
9624 2006-11-17  Jackson Harper  <jackson@ximian.com>
9625
9626         * TextControl.cs: When soft splitting a line, mark it as a soft
9627         split line. Also carry over the current line break to the next
9628         line.
9629
9630 2006-11-17  Chris Toshok  <toshok@ximian.com>
9631
9632         * XplatUIX11.cs: when scrolling a window with an invalid area, we
9633         only want to shift the part of the invalid area that overlaps the
9634         area we're scrolling.  we also don't want to clear the invalid
9635         area unless the invalid area was entirely contained within the
9636         scrolling area.
9637
9638 2006-11-16  Chris Toshok  <toshok@ximian.com>
9639
9640         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
9641         also make sure to free the memory returned by XGetWindowProperty
9642         in GetText().
9643
9644         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
9645
9646 2006-11-16  Chris Toshok  <toshok@ximian.com>
9647
9648         * XplatUI.cs: add a new super secret way to get at the totally
9649         unsupported X11 backend.
9650
9651 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
9652
9653         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
9654
9655 2006-11-16  Jackson Harper  <jackson@ximian.com>
9656
9657         * TreeView.cs: Allow more explicit setting of top node position
9658         for scrollbars. Slower algo, but more accurate.
9659         - CollapseAll should maintain the current top node.
9660         * TextBoxBase.cs: When positioning the caret, use the line, pos
9661         method, since the x, y method does not grab the correct tag, and
9662         the caret height never gets set correctly. (Maybe I should just do
9663         away with the caret having its own height, and always use the
9664         carets current tag for height).
9665
9666 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
9667
9668         [Fixes 79778, 79923]
9669
9670         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
9671         Parent to the FosterParent instead.
9672
9673 2006-11-16  Jackson Harper  <jackson@ximian.com>
9674
9675         * TreeView.cs: Need to recalc the topnode when we expand or
9676         collapse. The scrolling methods can't handle this on their own,
9677         since they use differences between the last scroll position, and
9678         those difference get completely messed up since we are expanding
9679         nodes.  This problem should probably be fixed in the scrolling
9680         methods, so they can figure out exactly where they are, but this
9681         will slow things down a little.
9682         * ThemeWin32Classic.cs: Special case for groupboxes with empty
9683         strings, makes nunit-gui look a lot nicer.
9684
9685 2006-11-16  Chris Toshok  <toshok@ximian.com>
9686
9687         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
9688         the broken multithreaded event handling we have in here.  File
9689         this entry under "Why we should move to the new X11 backend".
9690
9691         Any thread can make it into UpdateMessageQueue, which gets events
9692         from the X socket - some of which could belong to hwnds being
9693         managed by a different thread.  We can also have multiple threads
9694         in UpdateMessageQueue at the same time, with each one reading from
9695         the X socket.  This leads to many problems, with the following
9696         solutions:
9697
9698         We can't use hwnd.Queue.Enqueue anywhere in here and must use
9699         EnqueueLocked.
9700
9701         The MotionNotify compression we do can't work across threads
9702         (without locking the entire queue, perhaps) since we call
9703         hwnd.Queue.Peek, so we just punt and don't compress motion events
9704         unless the owning thread is the one which got the X event.
9705
9706         ConfigureNotify is another fun one, since it modifies the hwnd's
9707         bounds and then enqueues the event.  We add a lock to Hwnd which
9708         is held when setting configure_pending to true (and enqueuing the
9709         event).
9710
9711         There is a race wrt the wake socket.  we need to make sure that
9712         only 1 thread is waiting on that socket, or else a thread could
9713         sleep waiting for data that never comes.  It's difficult (but not
9714         impossible) to make happen, because it seems to require something
9715         like the following:
9716
9717             1. Thread 1 polls on wake_receive
9718         
9719             2. poll returns saying there's data to be read on
9720                wake_receive.
9721         
9722             3. Thread 2 polls on wake_receive and immediately returns
9723                saying there's data to be read.
9724
9725             4. Thread 2 reads the wakeup byte from wake_receive
9726
9727             5. Thread 1 attempts to read the wakeup byte from
9728                wake_receive.
9729
9730             6. Thread 2 exits (due to a form closing, perhaps).
9731
9732             7. Thread 1 blocks forever.
9733         
9734         Fun, eh?
9735
9736         Fixing the Expose handling isn't done yet, and the races inherent
9737         in that piece of code are responsible for the drawing mistakes you
9738         see when generating expose events in a MT app (like NPlot).  This
9739         one is the likely to be the hardest to bandaid, and it doesn't
9740         appear to cause anything but drawing problems.  The other issues
9741         caused apps to exit or hang.
9742
9743         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
9744         called from a different thread than the one that should be calling
9745         these functions.
9746
9747         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
9748
9749 2006-11-15  Chris Toshok  <toshok@ximian.com>
9750
9751         * Application.cs: null out the context's MainForm when we exit
9752         RunLoop.  Fixes a newly checked in unit test as well as the last
9753         ODE from bug #79933.
9754
9755 2006-11-15  Chris Toshok  <toshok@ximian.com>
9756
9757         * Form.cs (set_Owner): allow a null value so we can clear the
9758         form's owner.
9759         (Dispose): set all our owned_form's Owner properties to null, and
9760         clear the owned_forms collection.
9761         (WM_CLOSE): clean up this a little bit.. still not right though.
9762
9763         * ApplicationContext.cs: OnMainFormClosed should only call
9764         ExitThreadCore if the main form isn't recreating.  Fixes unit
9765         test.
9766
9767 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
9768
9769         [Fixes 78346]
9770
9771         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
9772
9773 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
9774
9775         [Fixes 79433]
9776
9777         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
9778         keep popup window types from stealing focus from the main form
9779         on Windows.
9780
9781         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
9782
9783         * MenuAPI.cs: Set above flag to true.
9784
9785 2006-11-15  Chris Toshok  <toshok@ximian.com>
9786
9787         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
9788         the button being released is not in wParam.
9789
9790 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
9791
9792         * Form.cs: Add the released button to MouseEventArgs.Button
9793         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
9794         on Win32.
9795
9796 2006-11-15  Chris Toshok  <toshok@ximian.com>
9797
9798         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
9799         GetText().  untested because it's unused in our implementation.
9800         Control.Text always caches the text, even if
9801         ControlStyles.CacheText is not set.
9802
9803         fixes bug #79939.
9804
9805 2006-11-15  Chris Toshok  <toshok@ximian.com>
9806
9807         [ fixes #79933 ]
9808         
9809         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
9810         message.  no hiding, no disposing.
9811
9812         in the WM_CLOSE handler, hide the form if it's modal.
9813
9814 2006-11-15  Chris Toshok  <toshok@ximian.com>
9815
9816         * XplatUIX11.cs: use AddExpose instead of sending a message.
9817         fixes textbox border drawing.
9818
9819 2006-11-15  Chris Toshok  <toshok@ximian.com>
9820
9821         * PropertyGridView.cs: keep from crashing on mouse move/down when
9822         the property grid is empty.
9823
9824 2006-11-14  Jackson Harper  <jackson@ximian.com>
9825
9826         * TextControl.cs: Make PageUp and PageDown more like the MS
9827         versions.
9828         * TextBoxBase.cs: When we set the text property position the
9829         cursor at the beginning of the document.
9830
9831 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9832
9833         * Form.cs: if a mdi child's WindowState has changed
9834         before it's creation, it would display wrong control
9835         buttons.
9836         
9837 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
9838
9839         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
9840           (Fixes bug #79927)
9841
9842 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
9843
9844         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
9845         the window gets to paint its borders even if the window is
9846         getting smaller.
9847         
9848         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
9849         otherwise the old control buttons would still be painted 
9850         if the window gets bigger.
9851         
9852         * PaintEventArgs.cs: add an internal method so that the clip 
9853         rectangle can be changed.
9854         
9855 2006-11-13  Chris Toshok  <toshok@ximian.com>
9856
9857         [ fixes bug #79745 ]
9858         
9859         * NotifyIcon.cs: lots of cleanup.
9860
9861         * X11Structs.cs: add an enum for XEMBED messages.
9862
9863         * XplatUIX11.cs: reindent one of the giant switch statements, it
9864         was taking up an additional tab stop, and this file is already way
9865         too wide for my laptop's screen.
9866
9867         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
9868         we get it, resize the hwnd to the WMNormalHints max_width/height.
9869
9870 2006-11-13  Jackson Harper  <jackson@ximian.com>
9871
9872         * TextBoxBase.cs: Compute the value changes for the mouse wheel
9873         teh simple way.
9874
9875 2006-11-13  Chris Toshok  <toshok@ximian.com>
9876
9877         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
9878         #79898.  force a reference to the Region to stick around so the
9879         unmanaged object isn't collected (rendering our handle in the MSG
9880         stale).
9881
9882 2006-11-13  Chris Toshok  <toshok@ximian.com>
9883
9884         * XplatUIX11.cs: fix #79917 for window managers which support
9885
9886         using XStoreName on the raw utf8, and we need to convert to
9887         COMPOUND_TEXT if it's non-latin1.
9888
9889 2006-11-13  Chris Toshok  <toshok@ximian.com>
9890
9891         * Form.cs (set_DialogResult): we need to set closing to false if
9892         we're setting our result to None.  fixes bug #79908.
9893
9894 2006-11-13  Jackson Harper  <jackson@ximian.com>
9895
9896         * TextControl.cs: When formatting text, compute the adjusted tag
9897         lengths correctly, using FindTag for the end tag instead of trying
9898         to figure it out outselves.
9899         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
9900         the item, ItemHeight doesn't work, because trees with large
9901         imagelists use those for their height
9902         * TreeView.cs: ActualItemHeight factors in the image height
9903         - compute left edge of checkboxes correctly
9904         - when expanding/collapsing move the bottom down one pixel, so we
9905         aren't moving part of the node
9906
9907 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9908
9909         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
9910         stack in PaintEventStart so that it won't get disposed by the gc
9911         before reaching PaintEventEnd.
9912
9913 2006-11-13  Jackson Harper  <jackson@ximian.com>
9914
9915         * TextBoxBase.cs: Don't select the word if we are on a line with
9916         no text.
9917         - We don't need to position the caret on mouse up, since the mouse
9918         move handler should be doing this
9919         - When double clicking a blank line, the caret is advanced to the
9920         next line.
9921
9922 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
9923
9924         * TreeNodeCollection.cs: Avoid duplicating indexer code.
9925
9926 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
9927
9928         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
9929         Fixes part of bug #79910.
9930
9931 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
9932
9933         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
9934           (bug #79903). Some minor string updates to match ms.
9935
9936 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
9937
9938         * FileDialog.cs: Don't add an extension if the filename
9939           already ends with that extension.
9940
9941 2006-11-10  Jackson Harper  <jackson@ximian.com>
9942
9943         * TreeView.cs: Use the currently highlighted node for the
9944         BeforeSelect event.
9945         * TextBoxBase.cs: There is no need to expand selection on
9946         MouseMove.
9947         - CanUndo means 'is there any undo operations', not 'is undo
9948         allowed on this textcontrol. Fixed ClearUndo unit test.
9949
9950 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
9951
9952         * Button.cs: only perform click when button is Selectable (so as 
9953         not to activate default buttons when they're disabled)
9954         
9955         * Control.cs: Rewrite of the SelectNextControl and related 
9956         methods. HandleClick now selects next control if the current one
9957         is being disabled.
9958         
9959         * Form.cs: OnActivated selects next active control only if Load 
9960         has already occurred. If Load hasn't run, there's no point in 
9961         selecting here, Load might change the state of controls.
9962         
9963         * FocusTest.cs: Tests marked as working again for these fixes
9964
9965 2006-11-10  Chris Toshok  <toshok@ximian.com>
9966
9967         * XplatUIX11.cs: a couple of fixes.
9968
9969         - use XInternAtoms with almost all the atoms we need to register,
9970         instead of many, many calls to XInternAtom.  should help a bit on
9971         startup time, at the expense of making the code look a little
9972         worse.
9973
9974         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
9975         isn't reparented (which seems to be a clue that we're running fon
9976         compiz) and they have an Owner form.  This fixes the tool windows
9977         in paint.net when running under compiz.
9978
9979         - when setting the opacity of a window, support both the case
9980         where the window has been reparented and also when it hasn't been.
9981         Since compiz/beryl doesn't seem to reparent windows, and these are
9982         the only window managers which support translucency, I'm not sure
9983         why we need the hwnd.reparented case at all.. but leave it in.
9984         now we get translucent windows in paint.net under compiz/beryl.
9985
9986 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
9987
9988         * FileDialog.cs: Always return the value for FilterIndex that
9989           was set. Internally convert it to values that make sense.
9990
9991 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
9992         
9993         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
9994
9995 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
9996
9997         * Toolbar.cs: Change default value of DropDownArrows to true, the 
9998         signature still using false to make it compatible with MS but the 
9999         initial value is true. Fixes #79855.
10000
10001 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
10002
10003         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
10004           only available on Linux.
10005
10006 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
10007
10008         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
10009         reduce number of calls to redraw method during toolbar creation.
10010
10011 2006-11-09  Mike Kestner  <mkestner@novell.com>
10012
10013         * ListView.cs : raise SelectedIndexChanged when an item is selected
10014         programmatically via the Item.Selected property.  Gert's nice 
10015         ListViewSelectedIndexChanged test fixture now runs clean.
10016
10017 2006-11-09  Mike Kestner  <mkestner@novell.com>
10018
10019         * ListView.cs : raise SelectedIndexChanged when a selected item is
10020         removed from the item collection using Remove or RemoveAt.
10021
10022 2006-11-09  Mike Kestner  <mkestner@novell.com>
10023
10024         * ListView.cs : raise SelectedIndexChanged once per selected item
10025         for compat with MS.  Fixes #79849+.
10026
10027 2006-11-09  Chris Toshok  <toshok@ximian.com>
10028
10029         * TabControl.cs: initialize row_count to 0, and set it to 1 when
10030         we need to (if we have any tab pages).  Fixes unit test.
10031
10032 2006-11-09  Chris Toshok  <toshok@ximian.com>
10033
10034         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
10035         width is 0, not 3.  Fixes a unit test.
10036
10037 2006-11-09  Mike Kestner  <mkestner@novell.com>
10038
10039         * ListView.cs : use Implicit scrollbars so that focus isn't 
10040         stolen from the listview when they are clicked. Fixes #79850.
10041
10042 2006-11-09  Chris Toshok  <toshok@ximian.com>
10043
10044         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
10045         have a root item.  Fixes #79879.
10046
10047 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
10048
10049         * FileDialog.cs:
10050           - Fix ToString ()
10051           - An ArgumentException is now thrown if a wrong filter
10052             is applied (matches ms). The previous filter doesn't change
10053             anymore if an exception is thrown.
10054           - Changing the FileName property also affects FileNames
10055         * ColorDialog.cs: The length of the CustomColors array is always
10056           16. It doesn't matter if we use a smaller array or null to update
10057           or change the custom colors property.
10058         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
10059           for RootFolder if we get a undefined value.
10060
10061 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10062
10063         * StatusBarPanel.cs: 
10064         - Width is set to MinWidth if Width is smaller than
10065         MinWidth. Fixes #79842.
10066         - MinWidth now always overrides Width (MSDN says MinWidth
10067         is set to Width when AutoSize = None, but they do not 
10068         behave like that).
10069         - Style has now the the correct default value.
10070         
10071 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10072  
10073         * TrackBar.cs: 
10074         - The control is completely invalidated on 
10075         Got/LostFocus to draw the focus rectangle correctly.
10076         - When AutoSize then height is always 45 (width for 
10077         vertical controls).
10078         
10079         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
10080         on the mouse when moved and it doesn't move when grabbed
10081         until the mouse moves as well. Also fixed some wrong 
10082         calculations when clicking on the thumb (control thought
10083         click was outside of thumb and didn't grab it).
10084         Fixes some of the issues in #79718.
10085
10086 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
10087
10088         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
10089
10090 2006-11-08  Chris Toshok  <toshok@ximian.com>
10091
10092         * PropertyGridView.cs: only call ToggleValue if the item is not
10093         readonly.
10094
10095 2006-11-08  Jackson Harper  <jackson@ximian.com>
10096
10097         * TextBoxBase.cs: The RichTextBox and textbox have very different
10098         word selection methods.  Implement the textbox's simple word
10099         selection here, and let the RichTextBox override and provide it's
10100         own.
10101         - Don't do extra selection on mouseup
10102         * RichTextBox.cs: Use the documents word selection algorithm, I
10103         think ideally, this function will be pulled into the
10104         RichTextBox.cs code someday.
10105
10106 2006-11-08  Chris Toshok  <toshok@ximian.com>
10107
10108         * RootGridEntry.cs: new class to represent GridItemType.Root.
10109
10110         * CategoryGridEntry.cs: reformat, and add boilerplate.
10111         
10112         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
10113         returns the UI parent anyway, and we need special handling to
10114         implement the GetTarget method in the face of it.  Also, implement
10115         Select().
10116
10117         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
10118         a root grid item, and use that instead of PropertyGrid.grid_items.
10119         Also, make use of TypeConverters (and add limitted support for
10120         ICustomTypeDescriptors) when initially populating the grid.
10121         Arrays now show up more or less properly.
10122
10123 2006-11-08  Chris Toshok  <toshok@ximian.com>
10124
10125         * Application.cs: set the modal dialog to non modal after we close
10126         it.  Fixes bug #79866.
10127
10128 2006-11-08  Jackson Harper  <jackson@ximian.com>
10129
10130         * TextControl.cs: When combining lines carry over the line end
10131         style from the end line.
10132         - Invalidate the selected area when setting it, if it is visible.
10133         * TextBoxBase.cs: Only rich text box can do full line selects.
10134         - Make sure to set the cursor position when there is a click,
10135         otherwise two clicks in separate areas could cause a large chunk
10136         to be selected.
10137
10138 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10139
10140         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
10141         Fixes #79863.
10142
10143 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10144
10145         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
10146         time. Remove tooltips when ToolButton click events.  Fixes #79856.
10147
10148 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10149
10150         * MenuAPI.cs: Ignore right click for menu actions and fixes
10151         menu border when clicked.  Fixes #79846.
10152
10153 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10154
10155         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
10156         MouseState after create wParam for message, this fixes mouse button 
10157         equal none in mouse up events.
10158         
10159 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
10160
10161         * Control.cs : Focus() now calls Select to set the Container's
10162         Active Control and to give it focus. To avoid infinite recursion
10163         (because ActiveControl also calls Focus at one point), a check 
10164         is made in Focus with the help of a new internal variable
10165         is_focusing.
10166
10167 2006-11-07  Mike Kestner  <mkestner@novell.com>
10168
10169         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
10170         if there's a selection.  Fixes #79849.
10171
10172 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
10173
10174         * PropertyGrid.cs: Avoid fixed height of help description label.
10175         Fixes part of bug #79829.
10176
10177 2006-11-07  Chris Toshok  <toshok@ximian.com>
10178
10179         * XplatUIX11.cs: fix #79790 again, by using the
10180         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
10181
10182 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10183
10184         * ToolBar.cs: Fix left click checking.
10185
10186 2006-11-07  Chris Toshok  <toshok@ximian.com>
10187
10188         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
10189
10190 2006-11-07  Chris Toshok  <toshok@ximian.com>
10191
10192         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
10193         PropertyManager unit tests.
10194
10195         * PropertyManager.cs: make property_name internal.
10196
10197 2006-11-07  Chris Toshok  <toshok@ximian.com>
10198
10199         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
10200         pass a unit test.  Also, don't set image_index to anything in
10201         response to setting the ImageList property.
10202
10203 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
10204
10205         * ToolBar.cs: Ignore click events when mouse button is not a
10206         left button, only accepts other button for dropdown menus.  
10207         Fixes #79854.
10208
10209 2006-11-07  Chris Toshok  <toshok@ximian.com>
10210
10211         * DataGrid.cs: make the back and parent row buttons a little less
10212         ugly.
10213
10214 2006-11-07  Jackson Harper  <jackson@ximian.com>
10215
10216         * TextBoxBase.cs: When converting to Text don't put line breaks in
10217         for soft line breaks.
10218         * TextControl.cs: There is an initial "fake" line in the document,
10219         this is now a soft break line, so that an extra line feed doesn't
10220         get added to the end of documents.
10221
10222 2006-11-07  Chris Toshok  <toshok@ximian.com>
10223
10224         [ fix bug #79778 ]
10225         
10226         * CurrencyManager.cs: if the list is readonly, don't bother
10227         checking if IBindingList.AllowNew is true.
10228
10229         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
10230         for non-DataRowView datasources..  or rather, make it not crash.
10231         (DataGridPaintRelationRow): make sure we limit the row painting to
10232         the area not covered by the row header, and make our cell width at
10233         least large enough to cover the relation area.  This allows grids
10234         that have relations but no rows to render correctly.
10235         (DataGridPaintRowContents): same type of changes here.
10236         (SetDataSource): move back to always calling
10237         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
10238         navigating back through relations.
10239         (HitTest): handle the case where we have no cells but have
10240         relations.  Right now we generate a hit in cell 0 of whatever the
10241         row is, not sure if this is strictly correct, but it works for our
10242         purposes.
10243         
10244         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
10245         bother doing anything.
10246
10247 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
10248
10249         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
10250         early version of StatusStrip.  Not responsible for eaten
10251         application or firstborn children.
10252
10253 2006-11-06  Chris Toshok  <toshok@ximian.com>
10254
10255         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
10256         call GetTabRect with a -1 index.  Fixes #79847.
10257
10258 2006-11-06  Jackson Harper  <jackson@ximian.com>
10259
10260         * TreeNodeCollection.cs: Update scrollbars after clearing.
10261
10262 2006-11-06  Chris Toshok  <toshok@ximian.com>
10263
10264         * NumericUpDown.cs: fix the ToString method for some unit test
10265         love.
10266
10267 2006-11-06  Chris Toshok  <toshok@ximian.com>
10268
10269         * PropertyGrid.cs:
10270         - set the initial SelectedGridItem if we can.
10271
10272         - Exclude non-mergable properties only if we're merging > 1
10273         object.  Merging 1 object isn't really merging, obviously.
10274
10275         - Handle PropertySort.NoSort just like Alphabetical, which is
10276         wrong of course, but at least gets things on the screen.
10277         
10278         * PropertyGridView.cs:
10279         - Add method "FindFirstItem" which finds the first property grid
10280         item, so we can select it by default.
10281
10282         - make use of GridEntry.CanResetValue.
10283
10284         - Don't call RedrawBelowItemOnExpansion here anymore, the
10285         individual GridEntry's will do that.
10286
10287         - Remove the ITypeDescriptorContextImpl internal class.
10288         
10289         * GridEntry.cs:
10290         - this class needs to implement ITypeDescriptorContext, as it's
10291         what MS's PropertyDescriptorGridEntry does, which means we can
10292         remove the ITypeDescriptorContextImpl internal class from
10293         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
10294
10295         - keep a reference to our PropertyGridView, and move the call to
10296         RedrawBelowItemOnExpansion here from PGV.  This means
10297         programmaticly setting Expanded actually does something visible.
10298
10299         - add a CanResetValue() function which takes into account our
10300         possibly multiple "selected_objects" in the merged case.  Shifting
10301         PropertyGridView to use this method fixes another unreported
10302         crasher found running the test for #79829.
10303
10304         - when Top or Bounds is updated, make sure the PropertyGridTextBox
10305         is updated to reflect this.
10306
10307         * CategoryGridEntry.cs: the ctor takes the PGV now.
10308         
10309 2006-11-06  Jackson Harper  <jackson@ximian.com>
10310
10311         * TextControl.cs: These are 1 based.
10312         * TextBoxBase.cs: When setting the selected text, don't change the
10313         selected text tags, this is done by ReplaceText, just position the
10314         cursor at the end of the new text.
10315
10316 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10317
10318         * ListView.cs: Allow label edit only when, when LabelEdit is
10319           set to true.
10320
10321 2006-11-06  Jackson Harper  <jackson@ximian.com>
10322
10323         * TextControl.cs: If a suitable wrapping position isn't found,
10324         just wrap right in the middle of a word.
10325
10326 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
10327
10328         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
10329           bug #79820.
10330
10331 2006-11-06  Jackson Harper  <jackson@ximian.com>
10332
10333         * TreeView.cs: Can't use the VisibleCount property when setting
10334         scrollbar heights, because this doesn't take into account whether
10335         or not the horz scrollbar just came visible.
10336
10337 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
10338
10339         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
10340         activated.  Fixes #79369, #79832.
10341
10342 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
10343
10344         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
10345           had to remove support for links that point to a directory. FileInfo
10346           returns no usefull information (means, the directory they point to)
10347           for such links. Replaced some empty string ("") with String.Empty.
10348
10349 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10350
10351         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
10352         NullReferenceException when attempting to remove node that is not in
10353         collection. Throw NullReferenceException when null is passed to 
10354         Remove. Allow first element of the collection to be removed. Fixes
10355         bug #79831.  In GetEnumerator ().Current return null if positioned 
10356         before the first element of the collection. In GetEnumerator ().Reset,
10357         position before first element of the collection.
10358
10359 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
10360
10361         * PropertyGrid.cs: To match MS, remove default title and description
10362         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
10363         buttons.
10364
10365 2006-11-04  Chris Toshok  <toshok@ximian.com>
10366
10367         * Theme.cs: add a Clamp method, just for kicks.
10368
10369         * ThemeWin32Classic.cs: clamp all color components to [0..255].
10370
10371 2006-11-04  Chris Toshok  <toshok@ximian.com>
10372
10373         * Form.cs: if the form isn't visible, Close() does nothing.
10374
10375 2006-11-03  Chris Toshok  <toshok@ximian.com>
10376
10377         * Form.cs (Close): if the form is modal, don't Dispose of it, only
10378         Hide it.
10379         (WndProc): don't Dispose after handling the WM_CLOSE message.
10380
10381         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
10382         them as such, instead of using casts from Control to Form.  Also,
10383         don't Dispose of the modal dialog when we fall out of the loop -
10384         Close() it instead.
10385
10386         fixes bug #79813.
10387
10388 2006-11-03  Chris Toshok  <toshok@ximian.com>
10389
10390         * Control.cs (Dispose): only go through the dispose thing if we're
10391         @disposing, and we haven't already been disposed.  Fixes bug
10392         #79814.
10393
10394         * Form.cs: no reason to call "base.Dispose()" here instead of
10395         "Dispose()".
10396
10397 2006-11-03  Mike Kestner  <mkestner@novell.com>
10398
10399         * ComboBox.cs : use ToString instead of casts in AddItem for
10400         sorting functionality.  Fixes #79812.
10401
10402 2006-11-03  Chris Toshok  <toshok@ximian.com>
10403
10404         * Application.cs: pave the way for actually using the thread
10405         exception dialog.  it's ifdefed out at the moment.
10406
10407 2006-11-03  Chris Toshok  <toshok@ximian.com>
10408
10409         * ThreadExceptionDialog.cs: until we get a better layout, actually
10410         hide the details textbox and label when we shouldn't see them.
10411
10412 2006-11-03  Jackson Harper  <jackson@ximian.com>
10413
10414         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
10415         multiline textboxes anymore.  This method also determines the
10416         width/height of a textboxes canvas area.
10417         - Sorta a revert of the last patch.  For multiline just position
10418         the controls, then bail.  This way the scrollbar width won't be
10419         altered.
10420
10421 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
10422
10423         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
10424         it dont need.  Fixes #79537.
10425
10426 2006-11-02  Jackson Harper  <jackson@ximian.com>
10427
10428         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
10429         send the status after firing the DndOver event.
10430
10431 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10432
10433         * TrackBar.cs: Now orientation only switches height / width if
10434         the control's handle is created (Win32 does it like this). Also 
10435         fixed a typo in ToString() for a test to pass, changed the 
10436         exception thrown in set_LargeChange and set_SmallChange to 
10437         match Win32 behaviour, and added TrackBar tests to the unit 
10438         tests.
10439
10440 2006-11-02  Chris Toshok  <toshok@ximian.com>
10441
10442         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
10443         not _NET_WM_STATE_NO_TASKBAR.
10444
10445 2006-11-02  Jackson Harper  <jackson@ximian.com>
10446
10447         * TextControl.cs: Increment count by one, since in the update view
10448         count - 1 is used.
10449
10450 2006-11-02  Jackson Harper  <jackson@ximian.com>
10451
10452         * TextBoxBase.cs: Use client rectangle not bounds for checking if
10453         the mouse is in the client rectangle (duh).
10454
10455 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10456         
10457         * TrackBar.cs: Fixed trackbar jumping around when clicking
10458         on it - the trackbar was not detecting correctly at which
10459         side of the thumb the click was done. (fixes #79718)
10460
10461 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
10462
10463         * ListBox.cs: scroll visible area when change SelectedIndex to
10464         a non visible area.  Fixes #79481.
10465
10466 2006-11-01  Jackson Harper  <jackson@ximian.com>
10467
10468         * TextControl.cs: When replacing the selection move the selection
10469         start/end/anchor to the end of the new text.
10470
10471 2006-11-01  Jackson Harper  <jackson@ximian.com>
10472
10473         * XplatUIWin32.cs: When setting the parent change the controls
10474         visibility to it's visibility flag, not to it's old parents
10475         visibility (.Visible walks the parent chain).
10476
10477 2006-11-01  Chris Toshok  <toshok@ximian.com>
10478
10479         * XplatUIX11.cs: revert the #79790 fix, as the simple.
10480         XSetTransientForHint fix breaks paint .net's tool windows.  more
10481         work needed for that one.
10482
10483 2006-11-01  Chris Toshok  <toshok@ximian.com>
10484
10485         * ScrollBar.cs: throw ArgumentException instead of Exception in
10486         LargeChange/SmallChange setters.  fixes unit tests.
10487
10488 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10489
10490         * ContainerControl.cs: reverted rev.67183 (which was itself
10491         a reversion of rev.66853... eh).
10492         
10493         * Control.cs: Fixes Reflector hang by changing Focus() call
10494         to what it was before rev.66643 (calling Select() here sets 
10495         ActiveControl, which in some situations calls back Focus and 
10496         eventually does a stack overflow). Temp fix.    
10497         Changes to GetNextControl() to not look for children to select when
10498         parent cannot be selectable (so it looks for siblings instead)  
10499         
10500 2006-10-31  Mike Kestner  <mkestner@novell.com>
10501
10502         * CheckedListBox.cs : off by one error in returned index from
10503         ObjectCollection.Add.  Fixes #79758.
10504
10505 2006-10-31  Chris Toshok  <toshok@ximian.com>
10506
10507         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
10508         calls for the textbox/spinner, to keep from recursing to the point
10509         where we crash.  Fixes #79760.
10510
10511 2006-10-31  Chris Toshok  <toshok@ximian.com>
10512
10513         * ListControl.cs (set_SelectedValue): don't throw exceptions on
10514         null/"" value, just return.  matches ms's behavior and fixes some
10515         failing tests.
10516
10517 2006-10-31  Chris Toshok  <toshok@ximian.com>
10518
10519         * Control.cs (set_Capture): make a logic a little easier to
10520         follow.
10521
10522         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
10523         if it's being destroyed.  A necessary fix surely, but a bandaid
10524         also, to fix the stuck capture problem in bug #78413.
10525
10526 2006-10-31  Chris Toshok  <toshok@ximian.com>
10527
10528         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
10529         convention of clearing hwnd.ClientRect when we set the
10530         width/height (so it'll be recalculated by Hwnd).
10531
10532 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
10533
10534         * ContainerControl.cs: reversed Contains check from
10535         ActiveControl due to hanging problems. This fix
10536         partly regresses #79667 (button does not have
10537         initial focus), so this might be a symptom for 
10538         a larger parenting problem (set_ActiveControl
10539         is being called but the child control does
10540         not have the parent set yet?)   
10541         
10542 2006-10-31  Mike Kestner  <mkestner@novell.com>
10543
10544         * MenuAPI.cs : fix keynav when menu is click activated.
10545
10546 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
10547
10548         * ToolStrip*: Version 0.2.
10549
10550         * MenuStrip.cs: Version 0.1.
10551
10552         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
10553
10554 2006-10-30  Chris Toshok  <toshok@ximian.com>
10555
10556         [ fixes the oversized notify icon issue in bug #79745 ]
10557         
10558         * NotifyIcon.cs: scale the icon down to the size we're given by
10559         the XplatUI layer (this would be faster if we did it once instead
10560         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
10561         since it's never invoked.
10562
10563         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
10564         pixels high by default, so let's hardcode our systray icon to that
10565         size.  The SYSTEM_TRAY protocol should really have a way for
10566         client apps to query for the correct icon size.. but oh well.  A
10567         couple of patches to deal with the screwy client_window ==
10568         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
10569         instance, and also make sure we don't XSelectInput twice).
10570
10571 2006-10-30  Chris Toshok  <toshok@ximian.com>
10572
10573         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
10574         recreating forms.  Control recreation is the bane of my existence.
10575         Fix it in a way that keeps everyone happy.
10576
10577 2006-10-30  Chris Toshok  <toshok@ximian.com>
10578
10579         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
10580         just non-CHILD ones.  otherwise sometimes scrollbars end up with
10581         client_windows not being resized to the proper size (ReportBuilder
10582         shows this extremely well).
10583
10584 2006-10-30  Chris Toshok  <toshok@ximian.com>
10585
10586         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
10587         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
10588         showing up in the gnome taskbar.  Fixes bug #79790.
10589
10590 2006-10-30  Chris Toshok  <toshok@ximian.com>
10591
10592         * ApplicationContext.cs: guard against a NRE.
10593
10594         * Application.cs: null out the old MainForm for the context, so we
10595         don't try to use it again once it's disposed.  Fixes bug #79783.
10596
10597 2006-10-30  Chris Toshok  <toshok@ximian.com>
10598
10599         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
10600         BindingContext, set the data source directly, otherwise do the
10601         lazy approach - the actual ListManager will be created when we get
10602         a BindingContext. Fixes bug #79700.
10603
10604 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
10605
10606         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
10607           XplatUIX11.cs: Remove old 2 parameter SetVisible.
10608
10609         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
10610
10611 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
10612
10613         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
10614         of SetVisible that allows a window to be shown, but not activated.
10615         This is needed on Windows for MenuStrip, and can probably be used
10616         with MainMenu and ComboBox to fix the focus stealing issues on
10617         Windows.
10618
10619         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
10620
10621 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
10622
10623         * PictureBox.cs: Fix the output of the ToString method.
10624
10625 2006-10-29  Chris Toshok  <toshok@ximian.com>
10626
10627         * Control.cs (get_TopLevelControl): fix bug #79781.
10628
10629 2006-10-29  Chris Toshok  <toshok@ximian.com>
10630
10631         * ListControl.cs (set_DataSource): throw Exception here, not
10632         ArgumentException, to match MS behavior.
10633
10634 2006-10-29  Chris Toshok  <toshok@ximian.com>
10635
10636         * Form.cs: remove the try-catch's around calls to GetWindowState.
10637         We can just check the return value.
10638
10639         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
10640         Instead return -1.
10641
10642         * XplatUI.cs: Add note about additional return value for
10643         GetWindowState.
10644
10645 2006-10-29  Chris Toshok  <toshok@ximian.com>
10646
10647         * Control.cs (CreateHandle): when we create our handle, we also
10648         create the handles of our child controls.  Fixes one of the
10649         Control unit tests (CH11).
10650
10651 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
10652
10653         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
10654
10655 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
10656
10657         * ThemeClearlooks.cs: A little speedup.
10658
10659 2006-10-27  Chris Toshok  <toshok@ximian.com>
10660
10661         * Control.cs: implement Control.FromChildHandle in a way that
10662         matches the docs (and fixes the failed test.)
10663
10664 2006-10-27  Chris Toshok  <toshok@ximian.com>
10665
10666         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
10667         comments).
10668
10669         * DataGrid.cs: implement ResetForeColor such that the tests
10670         succeed.
10671         
10672 2006-10-27  Chris Toshok  <toshok@ximian.com>
10673
10674         * ToolBarButton.cs: setting text/tooltiptext to null results in it
10675         being set to "".  Fixes bug #79759.
10676
10677 2006-10-27  Jackson Harper  <jackson@ximian.com>
10678
10679         * TextControl.cs: We need to clear the entire selection area when
10680         setting the start, otherwise multiline selections are still
10681         visible.
10682
10683 2006-10-26  Chris Toshok  <toshok@ximian.com>
10684
10685         * PropertyGridView.cs: 
10686
10687         - ifdef all the code specific to the double
10688         buffer case, and provide some alternatives in the non-doublebuffer
10689         code, which makes heavy use of XplatUI.ScrollWindow to move things
10690         around without having to invalidate (and cause flicker).  There
10691         are still some drawing problems in the non-doublebuffered case, so
10692         DOUBLEBUFFER is defined by default.
10693
10694         - Fix the way dropdowns are handled.  now we explicitly watch for
10695         the events which might cause the dropdown to close, and break out
10696         of the nested event loop there.  This gets rid of all Capture
10697         code, at the expense of the Msg special casing.  Seems to work,
10698         though, and fixes bug #79743.
10699
10700 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
10701         * Control.cs: SetIsRecreating now recreates implicitly added
10702         child controls as well. Finally fixes #79629. The flag passed to 
10703         SetIsRecreating has also been removed since it wasn't used.
10704         
10705 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10706
10707         * PageSetupDialog.cs: Clean some code, fix some bits, 
10708         add some checks, and add a printer sub-dialog.
10709
10710 2006-10-26  Chris Toshok  <toshok@ximian.com>
10711
10712         * PropertyGrid.cs: make set_SelectedObject call
10713         set_SelectedObjects, and move the duplicate logic to the
10714         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
10715
10716         * PropertyGridView.cs: hide the textbox when we get a
10717         SelectedObjectsChanged event.
10718
10719         Fixes bug #79748.
10720
10721 2006-10-26  Chris Toshok  <toshok@ximian.com>
10722
10723         * PropertyGridView.cs: deal with the type converter not supporting
10724         GetStandardValues() or GetStandardValues() returning null, which
10725         is does in the default case.  Fixes #79742.
10726
10727 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
10728
10729         * CheckedListBox.cs: nunit no longer crashes when selecting 
10730         Project/Edit menu option
10731         
10732 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
10733
10734         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
10735         is no menu selected. fixes #79739
10736
10737 2006-10-25  Chris Toshok  <toshok@ximian.com>
10738
10739         * PropertyGridView.cs: factor out the splitter invalidation code
10740         into the SplitterPercent setter, and for kicks implement the
10741         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
10742         amount in either direction.
10743
10744 2006-10-25  Chris Toshok  <toshok@ximian.com>
10745
10746         * PropertyGridView.cs: do some cleanup of the brush used to draw
10747         text - read only fields should be grayed out.  not sure how to do
10748         this with the textbox, though.  but the textbox's should also be
10749         readonly now at least.  Also, hide/show the textbox when resizing
10750         the control.
10751         
10752         * CursorConverter.cs: use System.Reflection when getting the
10753         properties of Cursors, as TypeDescriptor.GetProperties isn't
10754         returning static properties.
10755
10756 2006-10-25  Chris Toshok  <toshok@ximian.com>
10757
10758         * PropertyGridView.cs: factor out the up/down handling, and reuse
10759         it for page up/down.  also add End/Home support.
10760
10761 2006-10-25  Chris Toshok  <toshok@ximian.com>
10762
10763         * PropertyGridView.cs:
10764
10765         - ensure the selected grid item is visible in the scrolled area,
10766         fixes bug #79572.
10767
10768         - fix Keys.Down handling when you're on the last item in the
10769         propertygrid.
10770
10771 2006-10-25  Mike Kestner  <mkestner@novell.com>
10772
10773         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
10774         clicks too.  Fixes #79725.
10775
10776 2006-10-24  Chris Toshok  <toshok@ximian.com>
10777
10778         * PropertyGrid.cs: use property.Converter instead of
10779         TypeDescriptor.GetConverter(property.PropertyType), so we catch
10780         TypeConverters declared on the property as well as on the
10781         PropertyType.  Fixes bug #79678.
10782
10783 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
10784
10785         * MimeIcon.cs, Mime.cs:
10786           Fallback to the default platform handler if no shared mime info
10787           stuff exists (fixes #79693).
10788
10789 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
10790         * ContainerControl.cs: Incorrect contains check in ActiveControl 
10791         from previous fix (duh).
10792
10793 2006-10-20  Chris Toshok  <toshok@ximian.com>
10794
10795         * PropertyGridView.cs: the dropdown should be MIN(number of items
10796         in list, 15).  Fixes #79551.
10797
10798 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
10799         Fixes #79384, #79394, #79652, #79667
10800         * Application.cs: 
10801         
10802         - Modal windows are now destroyed in the proper order for windows
10803         
10804         * ContainerControl.cs:
10805         
10806         - ActiveControl setter has more conditions on when to return:
10807                 - if we're reselecting the active control, but it actually
10808                 didn't have focus (window hidden or some such), it runs
10809                 - if the active control being selected doesn't actually 
10810                 exist in the container, it returns
10811         
10812         * Form.cs
10813         
10814         - The ShowDialog now gets the current form as the owner when
10815         invoking without parameters, and correctly activates the owner 
10816         when returning
10817         
10818         * MessageBox.cs
10819         
10820         - MessageBox now catches the Escape key to exit
10821
10822 2006-10-20  Chris Toshok  <toshok@ximian.com>
10823
10824         * PropertyGridView.cs: fix a number of issues (bug #78565, and
10825         most of bug #79676):
10826
10827         - you can navigate around the property grid with the arrow keys.
10828
10829         - the dropdown is sized properly when the pg has a vertical
10830         scrollbar.
10831
10832         - fix the indentation for subentries, and properly select the
10833         entire label rect.
10834
10835         - fix the gray bar's drawing (only draw it to the last element,
10836         not for the height of the control.  Also make sure we draw that
10837         last horizontal grid line.
10838
10839         - use the same mechanism the datagrid uses wrt the editing textbox
10840         when scrolling/resizing/etc.  Namely, we hide it first, do the
10841         operation, then show it again (if it's still visible).
10842         
10843         - aggressively remove a lot of unnecessary refreshes (and also
10844         calls to Invalidate(). call more limited variants, and only redraw
10845         what we need.)
10846         
10847         * PropertyGrid.cs:
10848
10849         - when we're populating the merged collection, fill in the UI
10850         parent with either the passed in item, or the category item we
10851         create.
10852
10853         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
10854
10855         * GridItem.cs: drop some fully qualified names.
10856         
10857         * GridEntry.cs: add a "UIParent", which is basically the parent
10858         treenode.
10859
10860         * GridItemCollection.cs: add an IndexOf method.
10861
10862 2006-10-20  Mike Kestner  <mkestner@novell.com>
10863
10864         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
10865         a working win32 NC invalidation mechanism, we can't invalidate
10866         menus.  [Fixes #79705]
10867
10868 2006-10-20  Mike Kestner  <mkestner@novell.com>
10869
10870         * ListBox.cs : don't update the VScrollbar if the list is empty,
10871         just hide it.  [Fixes #79692]
10872
10873 2006-10-20  Jackson Harper  <jackson@ximian.com>
10874
10875         * RichTextBox.cs: Handle some special chars better, and don't skip
10876         the entire group when we encounter a special char that we don't
10877         handle correctly.
10878
10879 2006-10-18  Chris Toshok  <toshok@ximian.com>
10880
10881         * PropertyGridView.cs: address a number of issues from bug #79676,
10882         mostly of the cosmetic variety.
10883
10884         - The highlight rectangle for indented items not extends all the
10885         way to the left.
10886
10887         - Indented items aren't indented so much.
10888
10889         - the dropdown is properly sized width-wise if the pg has a
10890         vertical scrollbar.
10891
10892 2006-10-18  Chris Toshok  <toshok@ximian.com>
10893
10894         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
10895         systray stuff is rather convoluted to begin with.
10896
10897         systray icons are a single window for some reason (that I haven't
10898         figured out yet), and for them, client_window == whole_window.
10899         Given the way the tests are structured elsewhere to determine
10900         which paints are pending (client vs. nc), that situation will
10901         always yield PAINT, not NCPAINT.  So, if we have a pending
10902         nc_expose and no pending expose, remove the hwnd from the paint
10903         queue, and also set nc_expose_pending to false, to keep us from
10904         blocking further expose's adding the hwnd to the paint queue.
10905
10906         phew.  like i said, a rather convoluted change.  Fixes the
10907         notifyicon repaint issues in bug #79645.
10908
10909 2006-10-18  Chris Toshok  <toshok@ximian.com>
10910
10911         * Form.cs: when getting the backcolor of the form, don't get
10912         base.BackColor, as this allows parents to influence the background
10913         color.  This breaks mdi forms.  Instead, if the background_color
10914         is empty, return the default.
10915
10916 2006-10-18  Chris Toshok  <toshok@ximian.com>
10917
10918         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
10919         to being private instead of internal static.
10920
10921         * Control.cs: remove all the stupid ParentWaitingOnRecreation
10922         crap, it wasn't working for more deeply nested controls anyway,
10923         and we already have the is_recreating flag - use that instead.
10924         Before calling DestroyHandle in RecreateHandle, recurse through
10925         the control tree setting it to true.  this returns the recreate
10926         code to much of its original simplicity, while now guaranteeing we
10927         actually recreate everything we're supposed to.  This change gets
10928         fyireporting actually showing mdi children.
10929
10930 2006-10-17  Chris Toshok  <toshok@ximian.com>
10931
10932         * Form.cs: remove some debug spew, and collapse some duplicate
10933         code at the end of SetClientSizeCore.
10934
10935         * XplatUIX11.cs: 
10936         - add some more debug spew here too wrt Destroy handling.
10937         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
10938         in Control's handling of WM_DESTROY.
10939         - Remove the handling of zombie window DestroyNotifies from the
10940         event loop - we don't need it.  Now the only DestroyNotifies we
10941         actually handle are ones generated by X.
10942         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
10943         match gtk's (functioning) handling of this. This keep metacity
10944         from leaving droppings in the form of wm borders with no window
10945         contents all over the place.
10946
10947         * Control.cs:
10948         - add a bunch of debug spew wrt control recreation.
10949         - fix a bug where we weren't tracking Visible properly on
10950         recreated hwnds.
10951         - fixed the WM_PAINT double buffer handling to support re-entrant
10952         calls (yes, i know it's gross, but it's happening to us).
10953
10954 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
10955         * ThemeWin32Classic.cs: changed drawing of selected days
10956         to make them look better.
10957
10958 2006-10-16  Chris Toshok  <toshok@ximian.com>
10959
10960         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
10961         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
10962
10963         * XplatUIX11.cs: move away from using hwnd.client_dc and
10964         hwnd.non_client_dc and on to a stack of dc's (and in window's
10965         case, PAINTSTRUCT's), so we can deal with nested Paint calls
10966         without puking or not disposing of Graphics objects.
10967
10968         * XplatUIOSX.cs: same.
10969
10970         * XplatUIWin32.cs: same.
10971
10972 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
10973
10974         * FileDialog.cs: Don't call on_directory_changed inside
10975           OnSelectedIndexChanged (it changes the SelectedIndex too).
10976           Instead move it to OnSelectionChangeCommitted.
10977
10978 2006-10-13  Chris Toshok  <toshok@ximian.com>
10979
10980         * XplatUIX11.cs: more Destroy work.  the current code does the
10981         following things, in order:
10982
10983         1. Enumerates all handles of all controls at or below the one
10984         being destroyed, in pre-order.  As it is doing this, it marks the
10985         handles as zombie and clears all references to them.
10986         
10987         2. calls XDestroyWindow on the window passed in.
10988
10989         3. SendMessage's WM_DESTROY to all he handles in the accumulated
10990         list.
10991
10992 2006-10-13  Chris Toshok  <toshok@ximian.com>
10993
10994         * XplatUIX11.cs: set hwnd.zombie to true before calling
10995         SendMessage (WM_DESTROY).  this keeps us from marking the new
10996         window a zombie, and also keeps us from calling sendmessage at
10997         all.
10998
10999 2006-10-13  Jackson Harper  <jackson@ximian.com>
11000
11001         * TextControl.cs: Do not show the caret and selection at the same
11002         time.  Reduces ugliness by 35%.
11003
11004 2006-10-13  Chris Toshok  <toshok@ximian.com>
11005
11006         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
11007         zombie after we do the recursive call, so we actually do call
11008         SendMessage on the children controls.
11009         (GetMessage): if we find a pending paint event for a zombie hwnd,
11010         remove the hwnd from the paint queue, or else it will always be
11011         there (and we'll effectively loop infinitely)
11012
11013 2006-10-13  Mike Kestner  <mkestner@novell.com>
11014
11015         * MenuItem.cs : add Selected format under keynav too.
11016         Fixes #79528.
11017
11018 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
11019
11020         * PropertyGrid.cs: Fixed some NRE's and small difference between our
11021         implementation and that of MS.
11022
11023 2006-10-13  Chris Toshok  <toshok@ximian.com>
11024
11025         * Control.cs (OnInvalidated) only futz with the invalid_region if
11026         the control is double buffered.  this fixes the apparent hang in
11027         the ListView unit tests.  Someone needs to make the
11028         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
11029
11030 2006-10-13  Chris Toshok  <toshok@ximian.com>
11031
11032         * PropertyGridView.cs:
11033
11034         - do a little refactoring so that only one place calls
11035         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
11036         else call that.  Also make it Refresh, since there are redraw bugs
11037         otherwise (we should take a look at that...)
11038
11039         - do a little more refactoring work to share the body of code
11040         involved with the drop down.  it was duplicated in the code
11041         dealing with the listbox handling and in the code dealing with the
11042         UITypeEditors.
11043
11044         - add a Capture to the dropdown form's control once it's
11045         displayed, and add a MouseDown handler that checks to make sure
11046         the position is inside the control.  If it's not, close the
11047         dropdown.  This fixes #78190.
11048
11049         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
11050         if the value is different than the initial value.
11051         
11052 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
11053
11054         * Control.cs: see #78650
11055         - Fixed GetNextControl for several cases:
11056                 - Changed FindFlatForward to return 
11057                 correct sibling control when more than one
11058                 control has same TabIndex as the currently 
11059                 focused one.
11060                 - Changed FindFlatBackward to loop children
11061                 from last to first and apply same logic as in
11062                 FindFlatForward
11063                 - Changed FindControlForward to search for
11064                 children when control is not a container
11065                 but has children, or search for siblings if
11066                 control is a container...
11067                 - Changed FindControlBackward   to continue
11068                 searching for child controls when hitting 
11069                 Panel-like parents
11070                 
11071         - Fixed Focus method to update ActiveControl
11072         (FocusTest.FocusSetsActive failure)
11073         
11074         * TabControl.cs:
11075         - Focus rectangle now refreshes when gaining
11076         or losing focus
11077         - Removed grab for Tab key on IsInputKey that 
11078         was keeping tab navigation from working (#78650)
11079
11080 2006-10-13  Chris Toshok  <toshok@ximian.com>
11081
11082         * PropertyGridView.cs:
11083         - Rewrite SetPropertyValue to loop over SelectedGridItem's
11084         SelectedObjects.
11085
11086         - Deal with GridItem.Value == null a few places.
11087
11088         * PropertyGrid.cs: 
11089         - replace the PopulateGridItemCollection with a pair of methods
11090         which compute the intersection of all the properties in the
11091         SelectedObjects array.  Fixes #79615.
11092
11093         - Throw ArgumentException from set_SelectedObjects if there's a
11094         null in the array.
11095
11096         - Add GetTarget method which can be used to traverse up the
11097         GridItem.Parent chain.  It depends on the assumption that
11098         selected_objects for different GridEntries are always in the same
11099         order (a safe assumption).  Use this method and loop over all the
11100         selected objects in the entry when calling RemoveValueChanged and
11101         AddValueChanged.
11102         
11103         * GridEntry.cs: Make this handle multiple selected objects.
11104         .Value returns null if not all the selected objects share the same
11105         value.
11106
11107 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
11108         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
11109           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
11110           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
11111           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
11112           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
11113         add additional functionality.
11114
11115 2006-10-12  Mike Kestner  <mkestner@novell.com>
11116
11117         * ErrorProvider.cs : new ToolTipWindow ctor sig.
11118         * HelpProvider.cs : new ToolTipWindow ctor sig.
11119         * ToolTip.cs : remove ToolTip param from Window sig since it is
11120         not used.
11121         * ToolBar.cs : add tooltip support.  Fixes #79565.
11122
11123 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11124
11125         * ComboBox.cs: move the events in set_SelectedIndex to 
11126         after the call to HighlightIndex in order to avoid 
11127         possible recursion and subsequent problems with the call
11128         to HighlightIndex and include a range check in 
11129         set_HighlightIndex. Fixes #79588
11130         
11131 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11132
11133         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
11134         to ui thread's settings instead of sunday. 
11135         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
11136
11137 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
11138
11139         * DateTimePicker.cs
11140         * MonthCalendar.cs
11141         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
11142         and implement missing functionality (selecting different parts 
11143         of the date and edit them individually with the keyboard).
11144         
11145 2006-10-11  Chris Toshok  <toshok@ximian.com>
11146
11147         * Control.cs (OnInvalidated): fix NRE relating to last change.
11148
11149 2006-10-11  Chris Toshok  <toshok@ximian.com>
11150
11151         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
11152         atoms in _NET_WM_STATE here if the window is maximized.  We need
11153         to do this because we're *replacing* the existing _NET_WM_STATE
11154         property, so those atoms will be lost otherwise, and any further
11155         call to GetWindowState will return Normal for a window which is
11156         actually maximized.  Fixes #79338.
11157
11158 2006-10-11  Jackson Harper  <jackson@ximian.com>
11159
11160         * TextControl.cs: Special case for setting selection end to
11161         selection start, we basically kill the anchor.
11162         - some todo comments.
11163
11164 2006-10-11  Chris Toshok  <toshok@ximian.com>
11165
11166         * Control.cs: switch to using an "invalid_region" to track which
11167         parts of the image buffer need updating.  This is more code than
11168         the simple fix from r66532.  That version just attempted to always
11169         fill the entire buffer on redraw, which turns out to be
11170         inefficient when invalidating small rectangles.  This version
11171         simply adds the invalid rectangle to the invalid region.  When we
11172         get any WM_PAINT message we see if it can be filled using the
11173         image buffer, and if it can't (if the paint event's clip rectangle
11174         is visible in the invalid region) we first fill the image buffer.
11175         So, the image buffer is still a cache, we just fill it lazily.
11176
11177         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
11178         need it any longer.
11179
11180 2006-10-11  Chris Toshok  <toshok@ximian.com>
11181
11182         * XplatUIX11.cs (SetWindowPos): we need to update both position as
11183         well as size after calling XMoveResizeWindow.  This keeps us from
11184         ignoring future SetWindowPos calls.  Fixes the disappearing
11185         DateTimePicker in the ToolBarDockExample from bug #72499.
11186
11187 2006-10-11  Chris Toshok  <toshok@ximian.com>
11188
11189         * TextBoxBase.cs: reorder things a bit when it comes to
11190         resizing-causing-recalculation.  we were recalculating the
11191         document when our position was changed, which shouldn't happen.
11192         We only care about size changes.  Clear up some more redundant
11193         recalculation calls while I'm at it.  This makes the toolbar dock
11194         example snappy when you're just dragging toolbars around (since it
11195         causes a relayout whenever you move one.)
11196
11197 2006-10-11  Chris Toshok  <toshok@ximian.com>
11198
11199         * ToolBarButton.cs (get_Rectangle): this only returns
11200         Rectangle.Empty if Visible == false, or Parent == null.
11201         Parent.Visible doesn't matter.
11202
11203 2006-10-10  Chris Toshok  <toshok@ximian.com>
11204
11205         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
11206         by .net 1.1, so switch to an internal method instead.
11207
11208 2006-10-10  Chris Toshok  <toshok@ximian.com>
11209
11210         * Control.cs (WM_PAINT): when a control is double buffered we draw
11211         initially to the ImageBuffer and then copy from there.  But when a
11212         parent control which has child controls is double buffered, the
11213         initial drawing doesn't encompass the entire ClientRectangle of
11214         the parent control, so we end up with uninitialized bits (this is
11215         easily seen by dragging the top toolbar in
11216         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
11217         manually set the ClipRectangle of the paint_event (only the one we
11218         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
11219         of the nastiness in bug #72499.
11220
11221         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
11222         which we use in Control.cs's WM_PAINT handling.
11223
11224 2006-10-10  Jackson Harper  <jackson@ximian.com>
11225
11226         * TextBoxBase.cs: Finish off the autoscrolling stuff.
11227
11228 2006-10-10  Chris Toshok  <toshok@ximian.com>
11229
11230         * Cursor.cs: Apply a slightly different patch to the one suggested
11231         in #79609.
11232
11233 2006-10-10  Jackson Harper  <jackson@ximian.com>
11234
11235         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
11236         not the parent form.
11237         * TextControl.cs: use difference in old line count vs new count to
11238         calculate how many lines were added, this takes into account soft
11239         line breaks properly.
11240
11241 2006-10-10  Chris Toshok  <toshok@ximian.com>
11242
11243         * LinkLabel.cs: don't call MeasureCharacterRanges against a
11244         rectangle located at 0,0 and the size of the text.  Use
11245         ClientRectangle instead.  This fixes rendering of non-left aligned
11246         link labels.
11247
11248 2006-10-10  Jackson Harper  <jackson@ximian.com>
11249
11250         * TextBoxBase.cs: When we set the selection start position the
11251         caret.
11252         * TextControl.cs: Need to update the caret when we decrement it to
11253         zero.
11254         - Make sure that the selection_visible flag gets reset to false if
11255         the selection isn't visible.  Before this you could get it set to
11256         visible by changing the selection start, then changing the end to
11257         equal the start.
11258
11259 2006-10-09  Jackson Harper  <jackson@ximian.com>
11260
11261         * TreeView.cs: Don't update scrollbars when we aren't visible.
11262         * TreeNodeCollection.cs: Only need to update scrollbars if being
11263         added to an expanded visible node or the root node.
11264
11265 2006-10-09  Chris Toshok  <toshok@ximian.com>
11266
11267         * XplatUIX11.cs (SendMessage): fix NRE.
11268
11269 2006-10-09  Jackson Harper  <jackson@ximian.com>
11270
11271         * TextBoxBase.cs: Implement horizontal autoscrolling.
11272         * TextControl.cs: Add a movement types that allows moving forward
11273         and backwards without wrapping.
11274
11275 2006-10-09  Mike Kestner  <mkestner@novell.com>
11276
11277         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
11278         with focus "expansion" of labels.  Fixes #79532 and then some.
11279         * ThemeWin32Classic.cs : add LineLimit to ListView label format
11280         when wrapping.
11281
11282 2006-10-09  Jackson Harper  <jackson@ximian.com>
11283
11284         * TextBoxBase.cs: Set the default max values to MaxValue since
11285         we use the scrollbar for autoscrolling and the default value is
11286         100.  If we don't do this the caret won't keep up with typing
11287         after about 18 characters.
11288         * TextControl.cs: Make sure the selection is offset by the
11289         viewport x.  This fixes selection when using auto scrolling.
11290
11291 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
11292         
11293         * Form.cs: The active control should be selected after the 
11294         OnLoad so that any child control initialization that affects
11295         the selection is done. Fixes #79406
11296
11297 2006-10-06  Chris Toshok  <toshok@ximian.com>
11298
11299         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
11300         to have no evil effects.
11301
11302         - Stop selecting StructureNotifyMask on non-toplevel windows.
11303
11304           The only way children should be resized is by using the SWF api,
11305           and we already send WM_WINDOWPOSCHANGED messages in those cases.
11306           Toplevel windows can be interacted with via the window manager,
11307           and so we keep the input mask there.
11308
11309           The other event StructureNotifyMask gives us (that we care
11310           about) is DestroyNotify.  The code is already structured such
11311           that it assumes we won't be getting a DestroyNotify event for
11312           the window we pass to XDestroyWindow (which is what
11313           StructureNotifyMask is supposed to guarantee.)  So, that code
11314           shouldn't be affected by this either.
11315
11316         - Stop selecting VisibilityChangeMask altogether.
11317
11318           We weren't doing anything with the resulting events anyway.
11319         
11320         This vastly reduces the number of X requests and events we see
11321         when resizing/laying out a large ui.
11322
11323 2006-10-06  Chris Toshok  <toshok@ximian.com>
11324
11325         * ScrollableControl.cs (DisplayRectangle): we need to take into
11326         account the DockPadding regardless of whether or not auto_scroll
11327         == true.  rework this slightly to this effect, and fix bug #79606,
11328         and part of #72499 (you can now see the drag handles and drag
11329         toolbars around).
11330
11331 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
11332
11333         * ListViewItem.cs: Collections of selected and checked items are now
11334         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
11335         we mark the collection "dirty".
11336         * ListView.cs: Marked collections readonly. Modified UpdateSelection
11337         to only clear SelectedItems when a new item is selected and MultiSelect
11338         is enabled. CheckedItems and SelectedItems now subscribe to Changed
11339         event of ListViewItemCollection, and mark its list dirty whenever
11340         that event is fire. This allows us to return selected/checked items 
11341         in the same order as they are in the Items collection. This matches
11342         the MS behavior.
11343
11344 2006-10-06  Chris Toshok  <toshok@ximian.com>
11345
11346         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
11347         right mouse clicks.  Fixes bug #79593.
11348
11349 2006-10-06  Chris Toshok  <toshok@ximian.com>
11350
11351         * Splitter.cs: doh, fix splitters that don't want to cancel the
11352         movement when you drag them.  Also, impose the limits on the
11353         values we send to the SplitterMovingEvent.  Fixes #79598.
11354
11355 2006-10-06  Jackson Harper  <jackson@ximian.com>
11356
11357         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
11358         since we use this for auto scrolling also.
11359
11360 2006-10-05  Chris Toshok  <toshok@ximian.com>
11361
11362         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
11363         beginning to think that most datagrid column types don't need this
11364         method.  Fixes bug #79392.
11365
11366 2006-10-05  Chris Toshok  <toshok@ximian.com>
11367
11368         * DataGrid.cs: move back to a more lazy scheme for creating the
11369         CurrencyManager, so we aren't updating it every time you set
11370         either DataSource or DataMember.  Also, don't call
11371         RecreateDataGridRows if the currency manager hasn't changed.
11372
11373 2006-10-05  Chris Toshok  <toshok@ximian.com>
11374
11375         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
11376         emitted, SelectedIndex should already be updated.  Fixes bug
11377         #78929.
11378
11379 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
11380
11381         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
11382           ToolStripTextBox.cs: Initial commit.
11383         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
11384
11385 2006-10-05  Jackson Harper  <jackson@ximian.com>
11386
11387         * TabControl.cs: We need to invalidate the tab control area when
11388         new ones are added (duh).
11389
11390 2006-10-03  Chris Toshok  <toshok@ximian.com>
11391
11392         * Form.cs (ProcessDialogKey): if the focused control is in this
11393         form and is a button, call its PerformClick method here.  Fixes
11394         #79534.
11395
11396 2006-10-04  Jackson Harper  <jackson@ximian.com>
11397
11398         * TabPage.cs: Ignore setting of Visible, and add an internal
11399         method for setting the controls visibility.  TabPage's Visible
11400         property is a little strange on MS, this seems to make us
11401         compatible, and fixes cases where people set all the tab pages to
11402         visible.
11403         * TabControl.cs: Use the new internal setting on tab pages
11404         visibility.
11405
11406 2006-10-03  Mike Kestner  <mkestner@novell.com>
11407
11408         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
11409
11410 2006-10-03  Mike Kestner  <mkestner@novell.com>
11411
11412         * ListView.cs : use is_visible instead of Visible to check if 
11413         scrollbars should be placed/sized.  Also some max_wrap_width
11414         love for LargeIcon view.  [Fixes #79533]
11415
11416 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
11417
11418         * TextControl.cs :
11419           Make set_TextAlign() do actually update the align. Fixed #78403.
11420
11421 2006-10-03  Chris Toshok  <toshok@ximian.com>
11422
11423         * DataGrid.cs: fix a crash when switching datasources if the
11424         vertical scrollbar is at someplace other than Value = 0.  Also,
11425         reduce the number of recalculation passes we do in SetDataSource
11426         from 2 to 1.
11427
11428 2006-10-03  Jackson Harper  <jackson@ximian.com>
11429
11430         * TextBoxBase.cs: Move the if value the same bail check up, we
11431         don't want to empty the document if it is already empty, this
11432         seems to severly mess up the caret.  TODO: I should probably fix
11433         the empty statement to update teh caret somehow.
11434
11435 2006-10-03  Chris Toshok  <toshok@ximian.com>
11436
11437         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
11438         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
11439         reflection, an internal row type, properties on said type, etc.)
11440         will work with our datagrid.  Fixes #79531.
11441
11442 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
11443
11444         * FileDialog.cs: Don't crash if a path is not accessible
11445           (System.UnauthorizedAccessException). Fixes #79569.
11446         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
11447           a ':' too. Return unknown icon for those paths/files.
11448
11449 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
11450
11451         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
11452         GetContainerControl returns null.
11453
11454 2006-10-02  Chris Toshok  <toshok@ximian.com>
11455
11456         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
11457         call to XGetWindowAttributes instead of "handle".  fixes an X
11458         error using notifyicon after the NotifyIconWindow to Form base
11459         class switch.
11460
11461 2006-10-02  Chris Toshok  <toshok@ximian.com>
11462
11463         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
11464         server grab and looping we need to do to get down to the most
11465         deeply nested child window.
11466         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
11467         QueryPointer again after the WarpPointer so we can generate a
11468         proper (fake) MotionNotify event to be enqueued in the destination
11469         window's queue.
11470         (GetCursorPos): call QueryPointer.
11471
11472         Fixes #79556.
11473
11474 2006-10-02  Jackson Harper  <jackson@ximian.com>
11475
11476         * NotifyIcon.cs: Derive the notify icon from a form, so things
11477         like FindForm work on it.
11478         - Swallow the WM_CONTEXTMENU message, since that is generated on
11479         mouse down, and context menu is a mouse up kinda guy.  I believe
11480         the correct fix here is probably to make the notify icon entirely
11481         NC area, but this seems to work fine for anyone not manipulating
11482         WndProc.
11483
11484 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
11485
11486         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
11487           ToolStripItemCollection.cs, ToolStripLabel.cs,
11488           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
11489           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
11490           Initial implementation.
11491         * TextRenderer.cs: Provide padding to MeasureText.
11492
11493 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
11494
11495         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
11496         of ButtonBaseAccessibleObject. Fix bug #79552.
11497
11498 2006-10-02  Jackson Harper  <jackson@ximian.com>
11499
11500         * MdiWindowManager.cs: When maximizing use the containers client
11501         rect, not it's bounds, so nc area is accounted correctly.
11502         - Use the parent form's size for the menu position, since the
11503         client isn't always the full form size.
11504
11505 2006-10-01  Chris Toshok  <toshok@ximian.com>
11506
11507         * ScrollableControl.cs: make sure neither right_edge or
11508         bottom_edge are < 0, since they're used as LargeChange for the
11509         horiz/vert scrollbars respectively.  Fixes #79539.
11510
11511 2006-10-01  Chris Toshok  <toshok@ximian.com>
11512
11513         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
11514         the xplatuix11 code can cause us to destroy/recreate our handle.
11515
11516         * XplatUIX11.cs
11517         (SystrayAdd):
11518         - this code can be invoked many times for the same Hwnd.  Make
11519           sure we only destroy the client window once (the first time this
11520           method is called).  This fixes bug #79544.
11521         - Remove the call to the improperly bound XSync.  why we had two
11522           bindings to this, I will never know, but this call resulted in
11523           events being discarded from the queue(!).
11524         - correct a misunderstanding of _XEMBED_INFO - the second atom is
11525           not our current state but the state we wish to be in.  So, 0 if
11526           we don't want to be mapped.  Change it to 1.
11527         (SystrayRemove): The XEMBED spec makes mention of the fact that
11528         gtk doesn't support the reparent of client windows away from the
11529         embedder.  Looking at gtksocket-x11.c seems to agree with this.
11530         The only avenue we have for removing systray icons is to destroy
11531         them.  We don't want the handle to go away for good, though, so
11532         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
11533         #79545.
11534         
11535 2006-10-01  Chris Toshok  <toshok@ximian.com>
11536
11537         * Form.cs (WndProc): inline the native_enabled variable usage into
11538         the cases in which it's used.  Fixes #79536.
11539
11540 2006-09-29  Mike Kestner  <mkestner@novell.com>
11541
11542         * ListView.cs : toggle the selection state for ctrl clicks in 
11543         multiselect mode. [Fixes #79417]
11544
11545 2006-09-29  Mike Kestner  <mkestner@novell.com>
11546
11547         * ListView.cs : kill CanMultiSelect and refactor the selection
11548         code to support multiselection in the absence of mod keys. Steal
11549         arrow/home/end keys by overriding InternalPreProcessMessage to
11550         restore regressed keynav behavior.
11551         [Fixes #79416]
11552
11553 2006-09-29  Jackson Harper  <jackson@ximian.com>
11554
11555         * MdiClient.cs: Repaint the titlebars when the active window is
11556         changed.
11557
11558 2006-09-29  Chris Toshok  <toshok@ximian.com>
11559
11560         * Application.cs: when entering a runloop with a modal, make sure
11561         the hwnd is enabled.  Fixes #79480.
11562
11563 2006-09-29  Chris Toshok  <toshok@ximian.com>
11564
11565         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
11566         when ListManager.CanAddRows == false, bump us back one.
11567
11568         * DataGridColumnStyle.cs (ParentReadOnly): remove the
11569         listmanager.CanAddRows check.  This makes ArrayLists uneditable
11570         using a datagrid, which is not right.
11571         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
11572         is an IEditable, but call property_descriptor.SetValue regardless.
11573         fixes #79435.
11574
11575 2006-09-29  Chris Toshok  <toshok@ximian.com>
11576
11577         * DataGridBoolColumn.cs: we need to test equality in the face of
11578         possible null values (as is the case with the default NullValue).
11579         This patch keeps us from crashing in that case.
11580
11581 2006-09-29  Jackson Harper  <jackson@ximian.com>
11582
11583         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
11584         here, since it will get called for every node collection in the
11585         tree. This is now done in the treeview once the sorting is
11586         finished.
11587         * TreeView.cs: Recalculate the visible order, and update the
11588         scrollbars after sorting, set the top nope to the root so that the
11589         recalc actually works.
11590
11591 2006-09-29  Chris Toshok  <toshok@ximian.com>
11592
11593         * LinkLabel.cs: more handling of the default link collection in
11594         the face of LinkArea manipulation.  The default link collection
11595         contains 1 element (start=0,length=-1).  If the user sets LinkArea
11596         to anything and the links collection is the default, clear it.
11597         Then only add the link if its nonempty.  Fixes #79518.
11598
11599 2006-09-29  Chris Toshok  <toshok@ximian.com>
11600
11601         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
11602         piece correctly when we hit a '\n'.  Fixes #79517.
11603
11604 2006-09-29  Chris Toshok  <toshok@ximian.com>
11605
11606         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
11607         change the binding of gdk_init_check to take two IntPtr's, and
11608         pass IntPtr.Zero for both of them.  Fixes #79520.
11609
11610 2006-09-29  Mike Kestner  <mkestner@novell.com>
11611
11612         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
11613         [Fixes #78779]
11614
11615 2006-09-28  Jackson Harper  <jackson@ximian.com>
11616
11617         * XplatUIX11.cs: When translating NC messages make sure we go from
11618         whole window to screen, not client window to screen.
11619         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
11620         method doesn't exist
11621         - Skip over controls that aren't forms when arranging.
11622
11623 2006-09-28  Jackson Harper  <jackson@ximian.com>
11624
11625         * XplatUIWin32.cs: Clip the rect to the parent window.
11626         * XplatUIStructs.cs: Add clipping modes struct.
11627         * InternalWindowManager.cs: New private method that factors title
11628         bar heights in when calculating the pos of an NC mouse message.
11629         - Use SendMessage to force a paint when the form's size is changed
11630         instead of painting the decorations immediately.
11631         - Don't let the NC button click messages get to DefWndProc,
11632         because they will attempt to handle windowing themself, and this
11633         messes up z-order (it will put them in front of the scrollbars).
11634         * XplatUIX11.cs: Make sure that we don't reset window managers if
11635         we already have one (ie the window is an MDI window).
11636
11637 2006-09-28  Chris Toshok  <toshok@ximian.com>
11638
11639         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
11640         menu code really needs going over.
11641
11642 2006-09-27  Chris Toshok  <toshok@ximian.com>
11643
11644         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
11645         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
11646         window is maximizable.  So, we need to make sure that even if we
11647         clear the border/wm frame of those functions, they're still
11648         available (basically, we remove the decoration without removing
11649         the function).  Half the fix for #79338.
11650
11651 2006-09-27  Chris Toshok  <toshok@ximian.com>
11652
11653         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
11654         Fixes bug #79515.
11655
11656 2006-09-27  Chris Toshok  <toshok@ximian.com>
11657
11658         * Splitter.cs: reorder things a bit so that we don't actually
11659         draw/move the splitter until after calling OnSplitterMoving.  This
11660         lets users cancel/disallow the movement by explicitly setting
11661         event.SplitX/SplitY.  Fixes #79372.
11662
11663 2006-09-27  Jackson Harper  <jackson@ximian.com>
11664
11665         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
11666         because it is most likely on a window being destroyed, and that
11667         will give us an X11 error.
11668
11669 2006-09-27  Chris Toshok  <toshok@ximian.com>
11670
11671         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
11672         the dropdown button now toggles between showing and hiding the
11673         dropdown.  Also, get rid of dropdown_form_showing and just use
11674         dropdown_form.Visible.  We still don't do a grab, but I'll leave
11675         that part to someone who has handled Capture-fu before.
11676
11677 2006-09-27  Chris Toshok  <toshok@ximian.com>
11678
11679         * DataGrid.cs: return false if alt isn't pressed when '0' is
11680         pressed.  this keeps the '0' key from being swallowed, and fixes
11681         bug #79350.
11682
11683 2006-09-27  Chris Toshok  <toshok@ximian.com>
11684
11685         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
11686         Calling Refresh (in response to a scrollbar event) screws up the
11687         scrollbar painting.  Fixes bug #78923.
11688
11689 2006-09-27  Chris Toshok  <toshok@ximian.com>
11690
11691         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
11692         then insert into hashtable" blocks threadsafe.
11693
11694 2006-09-27  Chris Toshok  <toshok@ximian.com>
11695
11696         * MessageBox.cs (CreateParams): the styles should be |'ed with our
11697         baseclass's, since otherwise the
11698         ControlBox/MinimizeBox/MaximizeBox assignments above have no
11699         effect.  This gets the close button back in messageboxes.
11700
11701 2006-09-27  Chris Toshok  <toshok@ximian.com>
11702
11703         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
11704         flag, not just != 0.  this makes flags that are actually multiple
11705         bits (like WS_CAPTION) work.  fixes bug #79508.
11706
11707 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
11708
11709         * PageSetupDialog.cs: add support for getting and settings the 
11710         paper size, source and orientation.
11711
11712 2006-09-26  Chris Toshok  <toshok@ximian.com>
11713
11714         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
11715         and caption == "", we need to remove the resize handles as well as
11716         the title bar.
11717
11718         * Control.cs (set_Text): turns out that setting Text on a form
11719         should change the WM styles on the window, since if ControlBox ==
11720         false, the only way to get a window border is to have a non-""
11721         Text property.  check winforms/forms/text.cs for an example.  so,
11722         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
11723         update both window styles and title.  This fixes a lot of dialogs
11724         (including the preferences dialog in MonoCalendar.)
11725
11726 2006-09-26  Chris Toshok  <toshok@ximian.com>
11727
11728         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
11729         control isn't a Form), call Win32ShowWindow to hide the window,
11730         but don't update the control Visible property.  When we reparent
11731         back to a parent control, call SetVisible in order for the
11732         window's visibility to be reinstated.
11733
11734         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
11735         the FosterParent.
11736
11737         * Control.cs (ControlCollection.Remove): remove that value.Hide()
11738         call for good, since it breaks MonoCalendar (and other things I'm
11739         sure.) Also, set all_controls to null *after* the owner calls,
11740         which end up regenerating it.
11741         (ChangeParent): allow new_parent to be == null, passing
11742         IntPtr.Zero down to XplatUI.
11743
11744         this fixes #79294 the right way.
11745
11746 2006-09-26  Mike Kestner  <mkestner@novell.com>
11747
11748         * GridEntry.cs : internal SetParent method.
11749         * PropertyGrid.cs : attach to property changed on the proper
11750         target if we have a hierarchical grid with subobjects. Setup
11751         GridItem.Parent for hierarchical items.
11752         * PropertyGridView.cs : Set value on the correct target for
11753         hierarchical grids. [Fixes #78903]
11754
11755 2006-09-26  Chris Toshok  <toshok@ximian.com>
11756
11757         * Control.cs (ChildNeedsRecreating): this should return true if
11758         either we're being recreated and the child is in our list, or our
11759         parent is waiting for our recreation.
11760
11761 2006-09-26  Chris Toshok  <toshok@ximian.com>
11762
11763         * Control.cs (ControlCollection.Remove): reinstate the
11764         value.Hide() call as suggested in bug #79294.
11765
11766 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
11767
11768         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
11769         coordinates (versus a relative move).
11770
11771 2006-09-26  Chris Toshok  <toshok@ximian.com>
11772
11773         * Control.cs: rework child recreation a little bit.  It turns out
11774         that we race between the DestroyNotify the WM_DESTROY message.  If
11775         the parent gets its DestroyNotify before the child gets the
11776         WM_DESTROY message, the child ends up not recreating (since the
11777         parent finishes its recreation on DestroyNotify, and the child
11778         checks ParentIsRecreating.)
11779
11780         So, instead we store off a list of all the child controls which
11781         need to be recreated when the parent control starts to recreate
11782         itself.  Then, when child controls get their WM_DESTROY message we
11783         check to see if they're in the parent's pending recreation list,
11784         and if so, we recreate.  This removes all dependency on ordering
11785         from the code and fixes the initial MonoCalendar upgrade dialog.
11786         
11787 2006-09-26  Jackson Harper  <jackson@ximian.com>
11788
11789         * TextControl.cs: Use the Line to get the length of the line,
11790         since soft line breaks can change the end line.
11791
11792 2006-09-26  Chris Toshok  <toshok@ximian.com>
11793
11794         * Control.cs (ControlCollection.AddImplicit): don't add the
11795         control again if it's already in one of our lists.  This keeps us
11796         from adding controls over and over again for comboboxes when their
11797         handle gets recreated (as the combobox adds implicit controls in
11798         OnHandleCreated).  Fixes the X11 errors in bug #79480.
11799
11800 2006-09-26  Jackson Harper  <jackson@ximian.com>
11801
11802         * TextControl.cs: When deleting characters make sure that any
11803         orphaned zero lengthed tags get deleted.
11804         - Fix ToString for zero lengthed tags.
11805
11806 2006-09-25  Jackson Harper  <jackson@ximian.com>
11807
11808         * TextControl.cs: When getting a tag at the location there can be
11809         multiple tags at the same spot, these are 0-lengthed tags that
11810         appear when extra formatting has been stuck in a location.  We
11811         need to pull out the last of these 0 lengthed tags.
11812
11813 2006-09-25  Jackson Harper  <jackson@ximian.com>
11814
11815         * TextControl.cs: Fix print out in debug method.
11816         * TextBoxBase.cs: When text is set bail if we are setting to the
11817         previous value.
11818         
11819 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
11820
11821         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
11822           It is now possible to change the selected index in a FontXXXListBox
11823           with the up and down arrow keys from the FontXXXTextBoxes.
11824           Also, send the FontXXXTextBox mouse wheel event to the corresponding
11825           FontXXXListBoxes to match ms.
11826
11827 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
11828
11829         * SystemInformation.cs: Return a clone of the theme's MenuFont because
11830         anyone can dispose it, anytime. All other properties returns enums, 
11831         structs or basic types so they don't need such tricks.
11832
11833 2006-09-22  Jackson Harper  <jackson@ximian.com>
11834
11835         * XplatUI.cs:
11836         * XplatUIWin32.cs:
11837         * Clipboard.cs:
11838         * DataFormats.cs:
11839         * XplatUIOSX.cs:
11840         * XplatUIDriver.cs: Update interface to add a primary selection
11841         flag, so the driver can use the primary selection buffer if
11842         needed.
11843         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
11844
11845         * RichTextBox.cs: We need to supply the data object to paste now
11846         (so we can choose to supply CLIPBOARD or PRIMARY).
11847         * TextBoxBase.cs: Supply data object to paste (see above).
11848         - Middle click uses the primary selection data object.
11849         
11850 2006-09-21  Chris Toshok  <toshok@ximian.com>
11851
11852         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
11853         of SetWMStyles.  It's still a rat's nest and is largely
11854         order-dependent which I dislike immensely.  This also fixes the X
11855         button disappearing from toplevel forms.
11856
11857 2006-09-21  Mike Kestner <mkestner@novell.com>
11858
11859         * ListBox.cs: move Jordi's click/dblclick raising code to the
11860         mouse up handler.
11861
11862 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
11863
11864         * ListBox.cs: Fixes 79450
11865
11866 2006-09-21  Mike Kestner <mkestner@novell.com>
11867
11868         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
11869         to deal with people updating the TreeNodeCollection after the tree
11870         is disposed.  "Fixes" 79330.
11871
11872 2006-09-20  Jackson Harper <jackson@ximian.com>
11873
11874         * TextControl.cs: Push the cursor record onto the undo stack
11875         before the delete action. This fixes 78651.
11876
11877 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
11878
11879         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
11880         CreateParams. Fixes 79329.
11881
11882 2006-09-19  Chris Toshok  <toshok@ximian.com>
11883
11884         * XplatUIX11.cs: a couple of blanket code massage passes to clean
11885         things up a bit.  First, get rid of the NetAtoms array (and the NA
11886         enum), and just embed the atoms as static fields.  Also, add a
11887         couple of functions (StyleSet and ExStyleSet) to clean up all the
11888         bitmask testing of styles.
11889
11890         * X11Structs.cs: remove the NA enum, not needed anymore.
11891         
11892 2006-09-19  Chris Toshok  <toshok@ximian.com>
11893
11894         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
11895         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
11896         added cleanup to get MessageBox titles appearing again, which were
11897         broken by my earlier fix for caption-less/ControlBox-less windows.
11898
11899 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
11900
11901         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
11902           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
11903           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
11904           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
11905           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
11906           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
11907           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
11908           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
11909           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
11910           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
11911           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
11912             Inital import.
11913         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
11914           ToolStripButton.cs: Stubs needed for above.
11915         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
11916
11917 2006-09-15  Chris Toshok  <toshok@ximian.com>
11918
11919         * XplatUIX11.cs:
11920         - make the MessageQueues hashtable Synchronized.
11921         
11922         - SendMessage: if the Hwnd is owned by a different thread, use the
11923         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
11924         thread.  Fixes bug #79201.
11925
11926 2006-09-15  Chris Toshok  <toshok@ximian.com>
11927
11928         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
11929         ControlBox == false, we disallow maximize/minimize/close.  If the
11930         form Caption is "" we also disallow move (and get rid of the Title
11931         decoration).  Unfortunately, regardless of how things are set,
11932         we're stuck with the Title and WM menu.
11933
11934 2006-09-15  Chris Toshok  <toshok@ximian.com>
11935
11936         * Application.cs: add locking around the static message_filters
11937         ArrayList, part of #79196.
11938
11939 2006-09-15  Chris Toshok  <toshok@ximian.com>
11940
11941         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
11942         Form.ControlBox == false, the window has no titlebar nor resize
11943         handles.  fixes bug #79368.
11944
11945 2006-09-15  Chris Toshok  <toshok@ximian.com>
11946
11947         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
11948         >= 0.  Fixes bug #79370.
11949
11950 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
11951         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
11952         * Control.cs:
11953             Add properties: LayoutEngine, Margin, DefaultMargin.
11954             Add method: GetPreferredSize.
11955             Move layout logic from PerformLayout to layout engines. 
11956
11957 2006-09-13  Chris Toshok  <toshok@ximian.com>
11958
11959         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
11960         fix for #79326 broke #78718, so this change addresses that.
11961
11962         - in SendWMDestroyMessages remove the call to
11963         CleanupCachedWindows, since we might be recreating the control and
11964         need to maintain the references to right Hwnd handles.  Also, set
11965         the zombie flag to true for each of the children in the hierarchy
11966         instead of calling hwnd.Dispose.  This will cause GetMessage to
11967         ignore all events for the window except for DestroyNotify.
11968
11969         - In GetMessage, ignore messages except for DestroyNotify for
11970         zombie hwnds.
11971         
11972         * Control.cs: revert the is_recreating fix from the last
11973         ChangeLog.  It's definitely "right", but it breaks switching from
11974         an MDI form to a non-MDI form.  Will need to revisit that.
11975
11976         * Hwnd.cs: add a zombie flag, which means "the
11977         client_window/whole_window handles are invalid, but we're waiting
11978         for the DestroyNotify event to come in for them".  Set the flag to
11979         false explicitly if setting WholeWindow/ClientWindow, and also
11980         when Disposing.
11981         
11982 2006-09-13  Chris Toshok  <toshok@ximian.com>
11983
11984         * XplatUIX11.cs: rework window destruction slightly.
11985
11986         - when destroying the windows associated with a control, we don't
11987         need 2 separate XDestroyWindow calls.  Just the one for the
11988         whole_window (or for client_window if whole_window is somehow
11989         IntPtr.Zero -- can this happen?) is enough.
11990
11991         - reworked SendWMDestroyMessages slightly, so we always dispose
11992         the child control hwnd's after sending the messages.
11993         
11994         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
11995         the two places it was used (one was even using hwnd.Handle and the
11996         other hwnd.client_window.  ugh), adding another call in
11997         SendWMDestroyMessages.  We need this new call because now the
11998         DestroyNotify events in the queue will be ignored for the child
11999         controls (as their hwnd's were disposed, and the window id's
12000         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
12001
12002         - this fixes bug #79326.
12003
12004 2006-09-13  Chris Toshok  <toshok@ximian.com>
12005
12006         * Control.cs: don't always set is_recreating to false at the end
12007         of RecreateHandle, since sometimes we're not done (and won't be
12008         until WndProc handles the WM_DESTROY message).  Also, set
12009         is_recreating to false in the WM_DESTROY handling code.  Part of
12010         the fix for bug #79326.
12011
12012 2006-09-13  Miguel de Icaza  <miguel@novell.com>
12013
12014         * X11DesktopColors.cs: Start the droppage of debugging messages.
12015
12016         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
12017
12018 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
12019
12020         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
12021
12022 2006-09-12  Chris Toshok  <toshok@ximian.com>
12023
12024         * DataGrid.cs (get_ListManager): if the list_manager is null, try
12025         to create it using SetDataSource.  Fixes bug #79151.
12026
12027 2006-09-11  Chris Toshok  <toshok@ximian.com>
12028
12029         * XEventQueue.cs: add a DispatchIdle property.
12030
12031         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
12032         either the queue is null, or the queue has DispatchIdle set to
12033         true.
12034         (DoEvents): set queue.DispatchIdle to false around the
12035         peek/translate/dispatch message loop in this method.  This keeps
12036         Application.Doevents from emitting idle events.  Part of the fix
12037         for #78823.
12038
12039 2006-09-11  Chris Toshok  <toshok@ximian.com>
12040
12041         * DataGrid.cs (set_DataSource): make this work for both the
12042         winforms/datagrid test and ReportBuilder.  It seems as though when
12043         we've created a ListManager (or maybe it's if we have a
12044         BindingContext?), when we set the DataSource it clears the
12045         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
12046         #79333.
12047
12048 2006-09-11  Chris Toshok  <toshok@ximian.com>
12049
12050         * XplatUIX11.cs: deal with queue being null, which happens in all
12051         the Clipboard functions.  Fixes one of the two problems mentioned
12052         in #78612.
12053
12054 2006-09-11  Chris Toshok  <toshok@ximian.com>
12055
12056         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
12057         button on various spots (including outside the menu) works closer
12058         to MS, and doesn't crash.  Fixes #79343.
12059
12060 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
12061
12062         * ListView.cs: Do not initialize item_sorter in init. To match MS,
12063         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
12064         and the internal comparer is set. When a new ListViewItemSorter is set,
12065         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
12066         was specified. No further processing is necessary if SortOrder is set
12067         to it's current value. If Sorting is modified to None, and View is
12068         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
12069         (either custom or our internal ItemComparer) to null, on 1.0 profile
12070         only set item_sorter to null if its our internal IComparer. If Sorting
12071         is modified to Ascending or Descending, then use our internal IComparer
12072         if none is set, and if the current IComparer is our internal one then:
12073         on 2.0 profile always replace it with one for new Sorting, and on 1.0
12074         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
12075         Enum.IsDefined to verify whether a valid View value is specified in
12076         its setter. Automatically sort listview items when listview is
12077         created. In Sort, do nothing if ListView is not yet created, or if
12078         no item_sorter is set (no Sorting was set, Sorting was explicitly set
12079         to None or ListViewItemSorter was set to null). Added Sort overload
12080         taking a bool to indicate whether the ListView should be redrawn when
12081         items are sorted (we use this in ListViewItemCollection to avoid double
12082         redraws). Modified our internal IComparer to take the sort order into
12083         account. In Add and AddRange methods of ListViewItemCollection, also
12084         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
12085         view), but use overload with noredraw option to avoid double redraw.
12086         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
12087         true when View is Tile, and do the same when attempting to set View to
12088         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
12089         for selected/checked indices, as it involves overhead when sorting is
12090         done while these collections are not used all that often. Instead
12091         we'll build the indices on demand. Modified IList implementation of
12092         CheckedIndexCollection to use public methods if object is int.
12093         Modified CheckedListViewItemCollection to hide checked items if
12094         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
12095         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
12096         IList implementation in SelectedIndexCollection to use public methods
12097         if object is int. Modified SelectedListViewItemCollection to hide
12098         selected items if listview is not yet created.
12099         * ListViewItem.cs: CheckedIndices list no longer needs to be
12100         maintained separately (see ListView changes). Also clone font, fixes
12101         test failure.
12102
12103 2006-09-11  Mike Kestner  <mkestner@novell.com>
12104
12105         * ComboBox.cs: if we are updating the contents of the currently
12106         selected index, refresh the control or the textbox selection.
12107         [Fixes #79066]
12108
12109 2006-09-11  Mike Kestner  <mkestner@novell.com>
12110
12111         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
12112         the 'specified' logic has been moved there.  This seems like a bug 
12113         in Control.cs, since our current SetBoundsCore completely ignores 
12114         the specified parameter.  Peter's commit seems to indicate that is 
12115         the way the MS control implementation works.  [Fixes #79325]
12116
12117 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
12118
12119         * XplatUI.cs: Set default_class_name to be composed
12120         of current domain id. This allows MWF to be loaded in multiple
12121         domains on Win32.
12122
12123 2006-09-09  Miguel de Icaza  <miguel@novell.com>
12124
12125         * X11Keyboard.cs: If we are unable to obtain the input method, do
12126         not call CreateXic to create the input context.   Should fix
12127         #78944/79276.
12128
12129 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
12130
12131         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
12132           Simplified gnome support by adding more pinvokes to get the
12133           icon for a file or mime type.
12134
12135 2006-09-08  Jackson Harper  <jackson@ximian.com>
12136
12137         * MenuAPI.cs: Deslect popup context menu items before closing the
12138         window, so that you don't see the previously selected item
12139         selected when you reopen the menu.
12140         * TextControl.cs: Update the cursor position even if we don't have
12141         focus.  This fixes typing in things like the ComboBox.  I'm not
12142         totally sure we should always set the visibility if we don't have
12143         focus, but couldn't find any corner cases where the cursor showed
12144         up when it shouldn't.
12145
12146 2006-09-08  Chris Toshok  <toshok@ximian.com>
12147
12148         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
12149         our arrays are length 256.  & 0xff before indexing.  Fixes the
12150         crash in bug #78077.
12151         
12152 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12153
12154         * ThemeWin32Classic.cs: 
12155         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
12156         is true. Handle that check box too.
12157
12158 2006-09-07  Chris Toshok  <toshok@ximian.com>
12159
12160         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
12161         79244.
12162
12163 2006-09-07  Chris Toshok  <toshok@ximian.com>
12164
12165         * Control.cs: in set_BackColor only do the work if
12166         background_color != value.
12167
12168         * XplatUIX11.cs: move the clearing of invalid areas (both client
12169         and nc) to the same block of code where we set (nc_)expose_pending
12170         to false.  That is, move it from PaintEventEnd to PaintEventStart,
12171         so things that cause invalidates from within OnPaint will trigger
12172         another call to OnPaint.  Fixes bug #79262.
12173
12174 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
12175
12176         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
12177         * FileDialog.cs: Fix typo
12178
12179 2006-09-07  Jackson Harper  <jackson@ximian.com>
12180
12181         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
12182         for tab pages if they have any.
12183
12184 2006-09-06  Mike Kestner  <mkestner@novell.com>
12185
12186         * Splitter.cs: use the "current" rect when finishing drag handle
12187         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
12188
12189 2006-09-06  Mike Kestner  <mkestner@novell.com>
12190
12191         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
12192         support offset splitters. [Fixes #79298]
12193
12194 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
12195
12196         * Mime.cs: Fixed a bug that could override the global mime type
12197           result.
12198
12199 2006-09-05  Jackson Harper  <jackson@ximian.com>
12200
12201         * TabControl.cs: Better calculation method for setting the slider
12202         pos. Prevents crashes on really wide tabs.
12203         - Draw Image on tab pages if an image list is used.
12204
12205 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12206
12207         * MonthCalendar.cs: When Font changes, the Size should be
12208         updated to fit the new font's space requirements.
12209
12210 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
12211
12212         * ListBox.cs: If the items are cleared with Items.Clear set
12213           top_index to 0.
12214
12215 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12216
12217         * MonthCalendar.cs: Handle arrow keys as input keys. Also
12218         fire DateChanged event instead of DateSelected event when
12219         the date was changed by keyboard interaction.
12220
12221 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12222
12223         * DateTimePicker.cs: Handle DateChanged for the associated
12224         month_calendar control, and set month_calendar.Font from 
12225         OnFontChanged method, as well as resize the height of the
12226         control when needed. Make PreferredHeight proportional.
12227
12228 2006-09-01  Chris Toshok  <toshok@ximian.com>
12229
12230         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
12231         properties.
12232
12233         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
12234
12235 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
12236
12237         * FileDialog.cs: Set ClientSize instead of window size, to allow space
12238           for decorations (Fixes #79219)
12239
12240 2006-09-01  Mike Kestner  <mkestner@novell.com>
12241
12242         * ComboBox.cs: first stab at sorting plus some selection handling
12243         fixes to bring us more in line with MS behavior.  Also switches back
12244         to index based selection.  Alternative patches for index-based 
12245         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
12246         and latency@gmx.de on bug 78848.  I assume they were similar to this
12247         code I've had simmering in my tree forever.
12248         [Fixes #78848]
12249
12250 2006-09-01  Chris Toshok  <toshok@ximian.com>
12251
12252         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
12253         when setting list position guard against ending up with a -1 index
12254         (the other part of the fix for #78812).  Should probably make sure
12255         we don't need the analogous fix in the ItemDeleted case.
12256
12257         * DataGrid.cs:
12258         - in SetDataSource, work around the fact that the way
12259         OnBindingContextChanged is invoked will cause us to re-enter this
12260         method.  I'll remove the hack once I investigate
12261         OnBindingContextChanged.
12262
12263         - fix the logic in set_DataSource and set_DataMember (basically
12264         what to do if the other of the two is null.)
12265         
12266         - in OnListManagerItemChanged, we need to take into account the
12267         edit row when deciding whether or not to call RecreateDataGridRows
12268         (part of the fix for #78812).
12269
12270 2006-09-01  Jackson Harper  <jackson@ximian.com>
12271
12272         * Splitter.cs: Don't do anything if there is no control to affect
12273         (prevents us from crashing in weird tet cases).
12274         * TreeView.cs: Bounding box for the mouse movement reverting
12275         focus/selection back to previously selected node.  This matches
12276         MS, and makes the tree a lot more useable.
12277         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
12278         use clipping so they are not drawn.  This fixes when the control
12279         is set to have a transparent background, or if it was over an
12280         image.
12281
12282 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
12283
12284         * MimeIcon.cs: Improved handling for reading default icons when
12285           using gnome (2.16 made it necessary). Check and read svg icons
12286           first, then 48x48 and then 32x32 icons.
12287
12288 2006-08-31  Chris Toshok  <toshok@ximian.com>
12289
12290         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
12291         visible.
12292
12293         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
12294         ProcessKeyPreview.  Fixes part of #77806.
12295
12296         * DataGrid.cs: big patch.
12297
12298         - revert the queueing up of DataSource/DataMember if inside
12299         BeginInit/EndInit calls.  That's not the way the datagrid achieves
12300         its delayed databinding.  Instead, call SetDataSource in
12301         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
12302         #78811.
12303
12304         - Also, it wasn't mentioned in #78811, but the test case exhibits
12305         behavior that was lacking in our datagrid implementation - Columns
12306         that have mapping names that don't exist in the datasource's
12307         properties aren't shown.  Yuck.  To fix this I added the bound
12308         field to the column style, and basically any calculation to figure
12309         out anything about columns uses a loop to find the bound columns.
12310         still need to investigate if I can cache an array of the bound
12311         columns or if the indices must be the same.
12312
12313         - When setting CurrentCell, we no longer abort if the cell being
12314         edited was in the add row.  This fixes the other part of #77806.
12315
12316         - The new code also fixes #78807.
12317         
12318         * ThemeWin32Classic.cs: perpetrate the same disgusting
12319         column.bound field hack, and only render bound fields.
12320
12321 2006-08-31  Chris Toshok  <toshok@ximian.com>
12322
12323         * DataGridColumnStyle.cs: add bound field.  this field is true if
12324         the datasource has a property corresponding to the mapping name.
12325
12326         * DataGridTableStyle.cs: set the bound field on the column styles
12327         depending on whether or not we have a column for that property.
12328
12329 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
12330
12331         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
12332           splitter control (fixes #79228)
12333
12334 2006-08-31  Chris Toshok  <toshok@ximian.com>
12335
12336         * DataGridColumnStyle.cs: we need to delay the assignment of
12337         property descriptor until the last possible moment due to the lazy
12338         databinding stuff in the datagrid.  Also, fix the exceptions
12339         thrown by CheckValidDataSource to match MS.
12340
12341 2006-08-31  Jackson Harper  <jackson@ximian.com>
12342
12343         * Form.cs: When activated select the active control, if there is
12344         no active control, we select the first control.
12345         * XplatUIX11.cs: If there is no focus control when we get a
12346         FocusIn event, find the toplevel form and activate it.  This
12347         occurs when you popup a window, it becomes the focus window, then
12348         you close that window, giving focus back to the main window.
12349
12350 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12351
12352         * MonthCalendar.cs: 
12353         * ThemeWin32Classic.cs: Cache Font in bold style, as well
12354         as StringFormat with Center alignments in MonthCalendar,
12355         instead of creating new ones when drawing the control. 
12356         Also, draw the month name in bold style.
12357
12358 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12359
12360         * Control.cs:
12361           - PerformLayout(): It would seem MS performs the fill even if the 
12362             control is not visible (part of #79218 fix)
12363           - ResetBackColor(): Use the setter to reset the color, to allow
12364             overriders to catch the change.
12365         * Form.cs:
12366           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
12367           - CreateHandle(): dito (part of $79218 fix)
12368           - Don't set an icon if we have a dialog
12369         * ScrollableControl.cs:
12370           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
12371           - ScrollIntoView(): No need to scroll if control is already visible
12372             (resolves fixme and fixes #79218)
12373
12374 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12375
12376         * MonthCalendar.cs: Change proportions in SingleMonthSize
12377         to match the aspect of the original control.
12378
12379 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
12380
12381         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
12382           get updated when they get maximized.
12383
12384 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
12385
12386         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
12387
12388 2006-08-29  Chris Toshok  <toshok@ximian.com>
12389
12390         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
12391
12392 2006-08-29  Jackson Harper  <jackson@ximian.com>
12393
12394         * TreeView.cs: Need to track selected node and highlighted node,
12395         they aren't always the same thing, when the mouse is down on a
12396         node it is hilighted, but not selected yet.
12397         - Do the HideSelection stuff right
12398         - Need to focus on rbutton mouse down. And redraw selection when
12399         right click is mouse upped.
12400
12401 2006-08-29  Mike Kestner  <mkestner@novell.com>
12402
12403         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
12404         when SubItems.Count < Columns.Count.  [Fixes #79167]
12405
12406 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
12407
12408         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
12409
12410 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
12411
12412         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
12413           from X. Only send based on ConfigureNotify if we don't have the
12414           correct location in hwnd (if the window manager moved us)
12415
12416 2006-08-28  Mike Kestner  <mkestner@novell.com>
12417
12418         * ListView.cs: remove a TODO. 
12419         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
12420         [Fixes ListView part of #79166]
12421
12422 2006-08-28  Mike Kestner  <mkestner@novell.com>
12423
12424         * ListView.cs: move wheel handler to parent since it is focused
12425         instead of the item_control now.  [Fixes #79177]
12426
12427 2006-08-28  Mike Kestner  <mkestner@novell.com>
12428
12429         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
12430         when the control is focused. [Fixes #79171]
12431
12432 2006-08-28  Mike Kestner  <mkestner@novell.com>
12433
12434         * ListView.cs: size the item and header controls for empty and
12435         unscrollable views.
12436         * ThemeWin32Classic.cs: draw disabled backgrounds.
12437         [Fixes #79187]
12438
12439 2006-08-28  Chris Toshok  <toshok@ximian.com>
12440
12441         * Form.cs: remove unused "active_form" static field.
12442
12443         * Hwnd.cs: lock around accesses to static windows collection.
12444
12445         * Application.cs: lock threads in Exit ().
12446
12447 2006-08-28  Chris Toshok  <toshok@ximian.com>
12448
12449         * NativeWindow.cs: lock around accesses to window_collection.
12450         
12451 2006-08-28  Chris Toshok  <toshok@ximian.com>
12452
12453         * Control.cs: err, fix this the right way, by locking on controls
12454         when using it.  not by making it synchronized.
12455
12456 2006-08-28  Chris Toshok  <toshok@ximian.com>
12457
12458         * Control.cs: make the static "controls" field synchronized, as it
12459         gets updated from multiple threads.
12460
12461 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12462
12463         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
12464           Prevent other threads from exiting when calling thread sets quit state.
12465         * XEventQueue.cs: Added PostQuitState property
12466
12467 2006-08-27  Chris Toshok  <toshok@ximian.com>
12468
12469         * AsyncMethodData.cs: add a slot for the window handle.
12470
12471         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
12472         window (the destination control's window, not the foster window).
12473
12474         * Control.cs (BeginInvokeInternal): store the window's handle in
12475         the AsyncMethodData.
12476         
12477
12478 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
12479
12480         * XplatUIX11.cs:
12481           - PostQuitMessage: Removed resetting S.D display handle, we might have
12482             another loop started after calling PostQuitMessage (Fixes #79119)
12483           - Created destructor to reset S.D handle
12484
12485 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
12486
12487         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
12488
12489 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12490
12491         * TextControl.cs (Insert): Update the caret position even if we don't
12492           have a handle yet, just don't call the driver in that case.
12493         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
12494           to the end of the new selection text (Fixes #79184)
12495
12496 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12497
12498         * Form.cs (Activate): Only activate if the handle is created)
12499         * Control.c:
12500           - Mark window as invisible when it's disposed
12501           - Check if window handle is created when setting window visible, 
12502             instead of relying just on the is_created variable
12503           - Check if object is disposed when creating the control (Fixes #79155)
12504
12505 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12506
12507         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
12508           when allowing layout again. Otherwise we re-generate the anchoring 
12509           distance to the border again and actually alter what the user wanted
12510           This is ugly, it'd be better if we used DisplayRectangle instead of
12511           ClientRectangle for Control.UpdateDistances, but that causes us to
12512           have other problems (initial anchoring positons would be wrong)
12513           (Fixes #78835)
12514
12515 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12516
12517         * Control.cs:
12518           - The size and location setters shouldn't go directly to 
12519             SetBoundsCore, but to SetBounds, which triggers layout on the
12520             parent, then calls SetBoundsCore. (Related to fix for #78835)
12521           - SetBounds: Moved actual location update code into this function
12522             from SetBoundsCore, to match MS. Added call to PerformLayout if
12523             we have a parent (to trigger resizing of anchored parents if the 
12524             child size has changed (see testcase for #78835) 
12525         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
12526           new control code
12527         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
12528
12529 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12530
12531         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
12532           System.Drawing when a toplevel window gets closed; there might
12533           be other toplevel windows belonging to the same app (Fixes #78052)
12534
12535 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
12536
12537         * FileDialog.cs: After reading FileDialog settings from mwf_config
12538           use Desktop prefix only if a real folder doesn't exist anymore.
12539         * FontDialog.cs: Added char sets.
12540           It is now possible to select the font, size or style with the
12541           textboxes.
12542
12543 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
12544
12545         * PrintPreviewDialog.cs: Use assembly name constants.
12546
12547 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12548
12549         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
12550           scrollbar from whacking it's buttons)
12551
12552 2006-08-24  Chris Toshok  <toshok@ximian.com>
12553
12554         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
12555         in this patch (aggregating setting Left/Top/Width/Height to
12556         setting Bounds on the scrollbars), but the crux of the fix is in
12557         Recalculate, where we scroll by the remaining scroll_position if
12558         we're hiding a scrollbar.  The 2*$5 reward in the comment is
12559         serious.
12560
12561 2006-08-24  Jackson Harper  <jackson@ximian.com>
12562
12563         * MdiClient.cs:
12564         * MdiWindowManager.cs: If the form is made a non-mdi window we
12565         need to remove the form closed event so that closing forms works
12566         correctly.
12567
12568 2006-08-24  Jackson Harper  <jackson@ximian.com>
12569
12570         * Control.cs: Make IsRecreating internal so that the driver can
12571         check it
12572         - Temporarily remove the Hide when controls are removed, its
12573         making a whole bunch of things not work because visibility isn't
12574         getting reset elsewhere correctly
12575         * Form.cs: Need to do a full handle recreation when the mdi parent
12576         is set.
12577         * XplatUIX11.cs: If we are recreating handles don't dispose the
12578         HWNDs.  What was happening is the handles were being recreated in
12579         SendWMDestroyMessages, but then flow continued on in that method
12580         and destroyed the new handles.
12581
12582 2006-08-23  Jackson Harper  <jackson@ximian.com>
12583
12584         * Form.cs: MdiClient is always at the back of the bus
12585         * Control.cs: When the order of items in the collection is changed
12586         we need to reset the all_controls array
12587         - do the same sorta setup thats done when adding a control when a
12588         control is set on the collection.
12589
12590 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
12591
12592         * TextBoxBase.cs (get_Text): Return an empty array if our document
12593           is empty (fixes #79052)
12594
12595 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12596
12597         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
12598           on WM_SYSCHAR messages (fixes #79053)
12599
12600 2006-08-23  Chris Toshok  <toshok@ximian.com>
12601
12602         * DataGrid.cs: fix flickering when scrolling vertically.
12603
12604 2006-08-23  Chris Toshok  <toshok@ximian.com>
12605
12606         * DataGrid.cs (EndEdit): only invalidate the row header when we
12607         need to.
12608
12609 2006-08-23  Chris Toshok  <toshok@ximian.com>
12610
12611         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
12612         methods.  fixes the flicker when scrolling around.
12613
12614 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12615
12616         * FileDialog.cs: Making sure the control is created before we get a 
12617           chance to use it with BeginInvoke (Fixes #79096)
12618
12619 2006-08-23  Chris Toshok  <toshok@ximian.com>
12620
12621         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
12622         width to use when painting the rows.
12623
12624 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12625
12626         * TextBoxBase.cs:
12627           - Throw ArgumentException if a negative value is passed to SelectionLength
12628           - Update the selection end if start is moved. end needs to be always
12629             after start. (Fixes #79095)
12630           - Track selection length; MS keeps the selection length even if start
12631             is changed; reset on all other operations affection selection
12632
12633 2006-08-22  Jackson Harper  <jackson@ximian.com>
12634
12635         * TreeView.cs: Make sure both scrollbars get displayed and sized
12636         correctly when the other bar is visible.
12637         - Use the original clip rectangle for checking if the area between
12638         the two scrollbars is visible, not the viewport adjusted clipping
12639         rectangle.
12640
12641 2006-08-22  Jackson Harper  <jackson@ximian.com>
12642
12643         * Binding.cs: We don't use IsBinding because it requires the
12644         control to be created, which really shouldn't be necessary just to
12645         set a property on the control.
12646
12647 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12648
12649         * ComboBox.cs: Some CB.ObjectCollection methods must throw
12650         ArgumentNullReferenceException when the argument is null.
12651
12652 2006-08-21  Jackson Harper  <jackson@ximian.com>
12653
12654         * Timer.cs: Track the thread that the timer is started in (NOT
12655         CREATED), this way messages for it will only be triggered on its
12656         queue.
12657         * XEventQueue.cs: Track the timers here, this makes timers per
12658         thread, like MS.
12659         * XplatUIX11.cs: The timers are moved to the XEventQueue.
12660
12661 2006-08-19  Chris Toshok  <toshok@ximian.com>
12662
12663         * XplatUIX11.cs: after further communication with pdb, we get the
12664         best of both worlds.  SetZOrder working for un-Mapped windows, and
12665         no X errors for un-mapped windows.
12666
12667 2006-08-19  Chris Toshok  <toshok@ximian.com>
12668
12669         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
12670         as it was causing pdn toolbars to not have the correct stacking.
12671
12672 2006-08-18  Mike Kestner  <mkestner@novell.com> 
12673
12674         * ListView.cs : guard against negative ClientArea.Width in scrollbar
12675         calculation.  Not sure why control should ever be setting a negative
12676         width though.  Fixes #78931.
12677
12678 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12679
12680         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
12681         null items in ObjectCollection class.
12682         * ListBox.cs.: Likewise.
12683
12684 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
12685
12686         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
12687           as the base method in ThemeWin32Classic should work fine.
12688           Fixed bug #78607.
12689
12690 2006-08-18  Jackson Harper  <jackson@ximian.com>
12691
12692         * Binding.cs: When validating if the value entered doesn't convert
12693         properly reset to the old value.
12694         * RadioButton.cs: Don't fire click when we get focus.
12695
12696 2006-08-18  Jackson Harper  <jackson@ximian.com>
12697
12698         * FileDialog.cs: Paint the selection on the directory combobox the
12699         same way as on MS. 
12700
12701 2006-08-17  Jackson Harper  <jackson@ximian.com>
12702
12703         * ErrorProvider.cs: Don't allow the error control to be selected.
12704         * Control.cs: Don't send the SetFocus messages, the control
12705         activation will do this, and if we do it blindly here validation
12706         does not work.
12707
12708 2006-08-17  Jackson Harper  <jackson@ximian.com>
12709
12710         * Control.cs:
12711         * ContainerControl.cs: Make validation events fire in the correct
12712         order.  TODO: For some reason the first validation event is not
12713         getting fired.
12714
12715 2006-08-17  Mike Kestner  <mkestner@novell.com> 
12716
12717         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
12718
12719 2006-08-17  Mike Kestner  <mkestner@novell.com> 
12720
12721         * ComboBox.cs : implement scroll wheel support for popped-down
12722         state. Fixes #78945. 
12723
12724 2006-08-17  Jackson Harper  <jackson@ximian.com>
12725
12726         * TreeView.cs: Specify treeview actions (old patch that didn't get
12727         committed for some reason).
12728         - Don't let the mouse wheel scroll us too far.  Just want to make
12729         the bottom node visible, not scroll it all the ways to the top.
12730
12731 2006-08-17  Jackson Harper  <jackson@ximian.com>
12732
12733         * XplatUIX11.cs: Mouse wheel events go to the focused window.
12734
12735 2006-08-17  Mike Kestner  <mkestner@novell.com> 
12736
12737         * ComboBox.cs : don't do mouseover selection in simple mode.
12738
12739 2006-08-16  Jackson Harper  <jackson@ximian.com>
12740
12741         * Form.cs: Fire the closing events for all the mdi child windows
12742         when a window is closed.  If the cancel args are set to true, the
12743         main window still gets the event fired, but it doesn't not close.
12744         * MdiWindowManager.cs: Do this closing cleanup in a Closed
12745         handler, instead of when the button is clicked, so cancelling the
12746         close works correctly.
12747         * ComboBox.cs: Send the mouse down to the scrollbar.
12748
12749 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12750
12751         * ListBox.cs: When passing 'null' to SelectedItem,
12752         set SelectedIndex to -1, to unselect items. This is the
12753         observed behaviour in .Net.
12754
12755 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
12756
12757         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
12758           MS flags saying there won't be any. (fixes #78800)
12759         * Control.cs (HandleClick): Made virtual
12760
12761 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
12762
12763         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
12764           cultures. Fixed bug #78399.
12765
12766 2006-08-16  Jackson Harper  <jackson@ximian.com>
12767
12768         * Form.cs: Use the MdiClients MdiChildren property to access
12769         MdiChildren instead of creating the array from the child controls.
12770         * MdiClient.cs: Maintain a separate array of the mdi children, so
12771         that insertion order is maintained when the Z-order is changed.
12772
12773 2006-08-16  Mike Kestner  <mkestner@novell.com> 
12774
12775         * ListView.cs : add an ItemComparer and default to it for sorting.
12776         Fixes #79076, but sorting needs a complete overhaul to be compat with
12777         MS.
12778
12779 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
12780
12781         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
12782
12783 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
12784
12785         * Hwnd.cs (Mapped): Properly traverse the tree
12786
12787 2006-08-15  Chris Toshok  <toshok@ximian.com>
12788
12789         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
12790         pass manager.Current.GetType() to ParseData.  It has to be the
12791         property type.  So, hold off doing the ParseData until we're in
12792         SetPropertyValue where we know the type.  This fixes the crash in
12793         #78821 but the textbox is still empty.
12794
12795 2006-08-15  Chris Toshok  <toshok@ximian.com>
12796
12797         * DataGrid.cs:
12798         - when we're scrolling, only call Edit() again if the
12799         current cell is still unobscured. Fixes bug #78927.
12800         - when handling mousedown on a cell, ensure the cell is visible
12801         before calling Edit.
12802         - remove the properties from DataGridRow, and remove the
12803         DataGridParentRow class altogether.
12804         
12805
12806 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
12807
12808         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
12809           fire OnTextChanged by ourselves. There's no point calling base,
12810           we don't set the base value anywhere else. Fixes #78773.
12811
12812 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12813
12814         * ListBox.cs: Call CollectionChanged when modifying
12815         an item from Items indexer, to update the actual items
12816         in the list box.
12817
12818 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12819
12820         * PrintDialog.cs: Small fixes for focus and a pair of checks,
12821         to match .Net behaviour.
12822
12823 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
12824
12825         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
12826
12827 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
12828
12829         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
12830
12831 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
12832
12833         * MessageBox.cs: Prevent potential NRE exception.
12834         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
12835
12836 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
12837
12838         * MessageBox.cs: Calculate the owner of a messagebox, also make
12839           it topmost. Fixes #78753
12840
12841 2006-08-14  Chris Toshok  <toshok@ximian.com>
12842
12843         * XplatUIX11.cs: A couple of fixes so that metacity will let us
12844         programmatically move windows.  first, set the PPosition hint as
12845         well as the USPosition hint.  Second include some code from pdb
12846         that sets the window type to NORMAL when we set the transient for
12847         hint.  This is because, in the absence of a window type, metacity
12848         thinks any window with TransientFor set is a dialog, and refuses
12849         to let us move it programmatically.  fascists.
12850
12851 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
12852
12853         * XplatUIX11.cs: When setting normal hints, take into consideration
12854           an different hints previously set so we don't delete them (fixes #78866)
12855
12856 2006-08-12  Chris Toshok  <toshok@ximian.com>
12857
12858         * ToolBarButton.cs: make Layout return a boolean, if something to
12859         do with the button's layout changed.
12860
12861         * ToolBar.cs:
12862         - add another parameter to Redraw, @force, which all existing
12863           calls set to true.
12864         - make the Layout function return a boolean which is true if the
12865           layout has actually changed.  Redraw now uses this (and @force)
12866           to determine when to invalidate.  At present the only place
12867           where @force can be false is the call from OnResize, when
12868           background_image == null.  So, resizing a toolbar when the
12869           layout doesn't change results in no drawing.
12870
12871 2006-08-12  Chris Toshok  <toshok@ximian.com>
12872
12873         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
12874         the VScrollBar and HScrollbar reversed.  oops.
12875
12876         * DataGrid.cs: fix the logic that assigns sizes to the implicit
12877         scrollbars.  we were assigning them twice (once in
12878         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
12879         therefore causing two scrollbar resizes (and redraws?) to happen
12880         per grid resize.
12881
12882 2006-08-12  Chris Toshok  <toshok@ximian.com>
12883
12884         * ToolBarButton.cs: redraw the entire button if the theme tells us
12885         to.
12886
12887         * Theme.cs: add ToolBarInvalidateEntireButton.
12888
12889         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
12890         buttons, just the border.
12891
12892         * ThemeNice.cs: redraw the entire toolbar button since we need to
12893         draw the highlight image.
12894
12895         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
12896         we need to redraw the entire button (not just the border).
12897
12898 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
12899
12900         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
12901           for vertical bars. Fixes the mismatches shown by #78513
12902
12903 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
12904
12905         * FileDialog.cs: If a saved/remembered path doesn't exist
12906           anymore, fall back to "Desktop".
12907
12908 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
12909
12910         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
12911           parent. It's apparently legal to not have one
12912         * XplatUIX11.cs:
12913           - SetZOrder: Don't try to set Z-Order on an unmapped window
12914           - CreateWindow: 0,0 are legal coordinates for a window. don't move
12915             it unless the coordinates are negative
12916
12917 2006-08-10  Mike Kestner  <mkestner@novell.com>
12918
12919         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
12920         when setting to null per msdn docs.  Fixes #78854.
12921
12922 2006-08-10  Chris Toshok  <toshok@ximian.com>
12923
12924         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
12925         flickering by setting a clip rectangle on the Graphics when we
12926         need to redraw just a particular menuitem.  Also, rename "OnClick"
12927         to "OnMouseDown" to reflect what it actually is.
12928         
12929         * Form.cs: track the OnMouseDown change.
12930
12931 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
12932
12933         * CommonDialog.cs: Properly inherit the CreateParams from the form
12934           and only change what we need. Fixes #78865
12935
12936 2006-08-10  Chris Toshok  <toshok@ximian.com>
12937
12938         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
12939         flickering in flat mode (and most of the flickering in general) by
12940         only invalidating the button border (and not the entire rectangle)
12941         when the state changes.  A couple of cases still flicker:
12942         ToggleButtons, and the dropdown arrow case when the user mouse
12943         ups.
12944
12945 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
12946
12947         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
12948           for german keyboards. Numlock state shouldn't affect the behaviour
12949           of the Del key. Fixes bug #78291.
12950
12951 2006-08-10  Chris Toshok  <toshok@ximian.com>
12952
12953         * ListControl.cs: remove the items.Clear line from BindDataItems,
12954         as this is the first thing done by both subclasses in their
12955         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
12956         passed -1, refresh the list.  This gets databinding working when
12957         the datasource is set on the list before the datasource is
12958         populated (as in wf-apps/ReportBuilder.)
12959
12960         * ComboBox.cs: remove the argument to BindDataItems.  This call
12961         should really go away, and be initiated by the ListControl code.
12962
12963         * ListBox.cs: same.
12964
12965 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
12966
12967         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
12968           if no data is in the document when the control is displayed
12969
12970 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
12971
12972         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
12973           yes (fixes #78806)
12974         * TextControl.cs: 
12975           - PositionCaret: Allow positioning of caret but don't call methods 
12976             requiring a handle if the window isn't created yet
12977           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
12978           - owner_HandleCreated: Don't position the caret, just update it's 
12979             location. User might have already set a different position
12980
12981 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
12982
12983         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
12984           windows. Screws up the returned coordinates for child windows. 
12985           Fixes #78825. I'm hoping this doesn't break something, since the
12986           code was explicitly put in 8 months ago, but no bug was attached.
12987           Menus still seem to work properly.
12988
12989 2006-08-08  Chris Toshok  <toshok@ximian.com>
12990
12991         * DataGrid.cs: make BeginInit/EndInit actually do what they're
12992         supposed to do - delay data binding until the EndInit call.  Also,
12993         make the table style collection's CollectionChangeAction.Refresh
12994         work properly.
12995
12996         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
12997         (with action = Refresh) when a consituent table's MappingName is
12998         changed.
12999
13000 2006-08-08  Chris Toshok  <toshok@ximian.com>
13001
13002         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
13003         Invalidate, since changing the text can change the size of the all
13004         toolbar buttons.
13005
13006 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13007
13008         * Form.cs (AddOwnedForm): Still need to add the form to our listif
13009           we don't have it yet
13010
13011 2006-08-08  Chris Toshok  <toshok@ximian.com>
13012
13013         * PrintControllerWithStatusDialog.cs: don't .Close() the status
13014         dialog, as this causes X errors later on, since we actually
13015         destroy the window.  Instead, .Hide() it.
13016
13017 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
13018
13019         * ComboBox.cs: Added focus reflection for popup window
13020         * XplatUIX11.cs: 
13021           - Removed transient setting for non-app windows for now, not sure it
13022             was needed
13023           - Fixed logic checking if we have captions when deciding 
13024             override_redirect, WS_CAPTION is two bits and a 0 check was not
13025             sufficient
13026           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
13027             complicated
13028         * Form.cs: 
13029           - AddOwnedForm: Don't just add the form to the list, call the property
13030             to ensure the driver is informed about the ownership as well
13031           - CreateHandle: Set the TopMost status in the driver if we have an owner
13032         * XplatUI.cs: Fixed debug statement
13033
13034 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
13035         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13036           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
13037           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
13038           TrackBarRenderer.cs: Make constructor private.
13039         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
13040         * ProfessionalColorTable.cs: Make properties virtual.
13041
13042 2006-08-06  Duncan Mak  <duncan@novell.com>
13043
13044         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
13045         is not changing.
13046
13047 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13048         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
13049           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
13050           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
13051           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
13052           Initial import of new 2.0 classes.
13053
13054 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13055         * Application.cs: Add 2.0 VisualStyles properties.
13056
13057 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
13058         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
13059           XplatUIX11.cs: Create property to allow access to existing private
13060           variable "themes_enabled"
13061
13062 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13063
13064         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
13065         file size, as otherwise our class libraries fail using windows. Fixes
13066         bug #78759.
13067
13068 2006-08-04  Jackson Harper  <jackson@ximian.com>
13069
13070         * Form.cs:
13071         * XplatUIX11.cs: Move the toolwindow window manager creation into
13072         the X11 driver, this way on win32 we can let windows create/handle
13073         the toolwindows.
13074
13075 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13076
13077         * PrintDialog.cs: Remove some redundant checks, add some others,
13078         clean some code, and move the focus to the text boxes when the
13079         values are incorrect.
13080
13081 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
13082
13083         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
13084
13085 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13086
13087         * NumericUpDown.cs: Setting the Minimum and Maximum is now
13088           handled correctly. Fixes bug #79001.
13089
13090 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13091
13092         * PrintDialog.cs: The "Copies" numeric up down must have
13093         set the Minimum property to 1; only if the value is bigger
13094         than 1, activate "Collate" check box. This is the behaviour of .Net.
13095         Also modify the Document elements only if it is not null.
13096
13097 2006-08-03  Jackson Harper  <jackson@ximian.com>
13098
13099         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
13100         length. (We have a larger array then actual node count).
13101                 
13102 2006-08-03  Jackson Harper  <jackson@ximian.com>
13103
13104         * ComboBox.cs: Don't show selection by default.
13105         - The SelectAll isn't needed here, since the focus code should do
13106         that
13107         - DDL style lists to manual selection drawing, so when they
13108         get/lose focus they have to invalidate.
13109
13110 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
13111
13112         * TextBoxBase.cs: Don't always show all selections by default.
13113
13114 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
13115         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
13116           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
13117           Fixed various typos.
13118
13119 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
13120
13121         * Control.cs: Removing the controls in a ControlCollection with
13122           Clear now hides the controls as expected. Fixes bug #78804. 
13123
13124 2006-08-03  Jackson Harper  <jackson@ximian.com>
13125
13126         * Control.cs: Revert previous focus patch, it breaks reflector.
13127
13128 2006-08-03  Jackson Harper  <jackson@ximian.com>
13129
13130         * ComboBox.cs: Cleanup selection and focus with the combobox.
13131         This also eliminates some duplicated keyboard code, since now
13132         everything is handled by the main class.
13133         - Make list selection work on mouse up instead of down, to match
13134         MS.
13135
13136 2006-08-02  Jackson Harper  <jackson@ximian.com>
13137
13138         * Control.cs: Setting focus needs to go through the whole
13139         selection mechanism.
13140
13141 2006-08-02  Chris Toshok  <toshok@ximian.com>
13142
13143         * PrintPreviewDialog.cs: change MinimumSize to use
13144         base.MinimumSize so it works.
13145
13146 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
13147
13148         * TextControl.cs:
13149           - UpdateCaret: Added sanity check in case caret isn't defined yet
13150           - Line.Delete: Now updating selection and caret markers if we're
13151             transfering a node (Properly fixes #78323)
13152           - SetSelectionEnd: Added sanity check
13153         * TextBoxBase.cs: Removed broken attempt to fix #78323
13154
13155 2006-08-01  Chris Toshok  <toshok@ximian.com>
13156
13157         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
13158         Close() call is handled in Form, not here.
13159
13160 2006-08-01  Chris Toshok  <toshok@ximian.com>
13161
13162         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
13163         layout/rendering.
13164
13165         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
13166         for sizes < 100% zoom.  The code now aggressively attempts to keep
13167         from calling document.Print (), and tries not to use the scaling
13168         g.DrawImage whenever possible (it still does if you scale to >
13169         100%, since usually that involves huge images).
13170
13171         * PrintPreviewControl.cs: hook up the close button.
13172
13173 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
13174         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
13175           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
13176           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
13177           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
13178           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
13179           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
13180           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
13181           Removed [Serializable] for 2.0 Event Handlers.
13182
13183 2006-07-31  Jackson Harper  <jackson@ximian.com>
13184
13185         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
13186         * TextControl.cs: Uncomment out the body of this method.
13187
13188 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
13189
13190         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
13191           standard cursors.
13192
13193 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13194
13195         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
13196           that embed TextBox and need selections visible even if textbox is not
13197           focused to enforce that behaviour.
13198         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
13199           selection drawing
13200
13201 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13202
13203         * TextControl.cs:
13204           - Added new SetSelectionStart/SetSelectionEnd overloads
13205           - Fixed viewport width assignment to be accurate
13206           - Adjusted alignment line shift calculations to allow cursor on right
13207             aligned lines to be always visible at the right border (like MS)
13208         * TextBoxBase.cs:
13209           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
13210           - TextBoxBase_SizeChanged: recalculating canvas on size changes
13211           - CalculateScrollBars: Use ViewPort size instead of window size, to
13212             properly consider space occupied by the border and scrollbars 
13213             (Fixes #78661)
13214           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
13215             calculations; no longer leaves artifacts
13216           - CaretMoved: Adjusted window scrolling to match MS and fixed several
13217             calculation bugs (Still missing right/center align calculations)
13218
13219 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
13220
13221         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
13222           use of both scroll rect and clip rect, as they do the same.
13223
13224 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
13225
13226         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
13227           in the event handler (fixes #78912)
13228
13229 2006-07-31  Chris Toshok  <toshok@ximian.com>
13230
13231         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
13232         grid.ListManager.Count, since grid.ListManager might be null.
13233         This of course begs the question "why are we drawing rows for a
13234         grid with no list manager (and therefor no rows)?"  Fixes the
13235         crash in bug #78929.
13236
13237 2006-07-31  Chris Toshok  <toshok@ximian.com>
13238
13239         * RelatedPropertyManager.cs: Don't always chain up to the parent
13240         ctor.  instead, call SetDataSource if the parent's position is !=
13241         -1.  Fixes the crash in #78822.
13242
13243 2006-07-31  Chris Toshok  <toshok@ximian.com>
13244
13245         * DataGrid.cs (get_ListManager): use field instead of property
13246         accessors for datasource and datamember.
13247         (RowsCount): make internal again.
13248         (OnMouseDown): end edits before resizing columns/rows.
13249         (OnMouseUp): restart edits after resizing columns/rows.
13250
13251 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
13252
13253         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
13254           This fixes the situation where the last set cursor is displayed
13255           whenever the mouse is over scrollbars.
13256
13257 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13258
13259         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
13260         Document properties, as well as initial values.
13261
13262 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
13263
13264         * XplatUIWin32.cs (SetBorderStyle): Setting both border
13265           and ClientEdge results in a 3-pixel border, which is
13266           wrong.
13267
13268 2006-07-28  Jackson Harper  <jackson@ximian.com>
13269
13270         * TreeNodeCollection.cs: Fix the clear method.
13271         - Fix the Shrink also
13272
13273 2006-07-27  Jackson Harper  <jackson@ximian.com>
13274
13275         * TreeView.cs: Make sure the visible order is computed when we
13276         attempt to size the scrollbars (for trees that mess with the
13277         scrolling when they shouldn't.
13278         - Make sure to give the scrollbars valid values.
13279
13280 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13281
13282         * XplatUIX11.cs: Move motion compression code to where it
13283           has less performance impact
13284
13285 2006-07-26  Jackson Harper  <jackson@ximian.com>
13286
13287         * UpDownBase.cs: When the control is selected make the child
13288         controls non selectable, so that a click on them won't do a
13289         focus/unfocus cycle.
13290         - Don't give focus to the text box when the spinner is selected.
13291         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
13292
13293 2006-07-26  Chris Toshok  <toshok@ximian.com>
13294
13295         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
13296         satisfied with this solution.  If the bitmaps are small, we should
13297         just cache them in the PrintPreviewDialog and draw them here.
13298         Also, the layout is broken for the 2-up and 3-up cases.
13299
13300         * Theme.cs: add PrintPReviewControlPaint.
13301
13302         * PrintPreviewDialog.cs: first pass implementation.
13303
13304         * PrintPreviewControl.cs: first pass implementation.  No
13305         scrollbars yet.
13306
13307         * PrintDialog.cs: only validate fields if that particular portion
13308         of the UI is enabled.  Also, set the document's controller to a
13309         PrintControllerWithStatusDialog wrapping the document's print
13310         controller.
13311
13312         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
13313         bring up a SaveFileDialog (i hope we don't want to match the
13314         behavior of the crappy windows file entry) and set the
13315         PrinterSettings.PrintFileName accordingly.
13316
13317 2006-07-26  Jackson Harper  <jackson@ximian.com>
13318
13319         * ContainerControl.cs: Add a field that disables auto selecting
13320         the next control in a container when the container is activated.
13321         * UpDownBase.cs: Don't select the text box when the up down is
13322         selected.
13323
13324 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
13325
13326         * XEventQueue.cs: Added methods for peeking (used for compression
13327           of successive events)
13328         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
13329           mouse move events (fixes #78732)
13330
13331 2006-07-25  Jackson Harper  <jackson@ximian.com>
13332
13333         * UpDownBase.cs: Use an internal class for the textbox so that we
13334         can control focus.  the updown control should always have focus,
13335         if either the text area or the buttons are clicked.
13336         - Send the key messages to the textbox, since it never actually
13337         has focus
13338         - Activate and decativate the textbox caret.
13339
13340 2006-07-24  Jackson Harper  <jackson@ximian.com>
13341
13342         * Control.cs: Use the directed select when selecting a control,
13343         this way the container controls override will get called and the
13344         whole ActiveControl chain will get triggered.  TODO: probably need
13345         to make sure this gets done everywhere instead of the old
13346         Select(Control).
13347         * ContainerControl.cs: Implement the directed Select method to
13348         find and activate the correct child control.    
13349         
13350 2006-07-22  Mike Kestner  <mkestner@novell.com>
13351
13352         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
13353         menu handling code so that clicks without a grab work too.
13354         [Fixes #78914]
13355
13356 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
13357
13358         * FileDialog.cs: Enable the BackButton when dirstack has one element.
13359           Added some small optimizations.
13360
13361 2006-07-21  Matt Hargett  <matt@use.net>
13362
13363         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
13364
13365 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
13366
13367         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
13368           tests pass and match MS in some strange border cases.
13369
13370 2006-07-21  Chris Toshok  <toshok@ximian.com>
13371
13372         * ThemeWin32Classic.cs: handle drawing of the relation links and
13373         parent row buttons.
13374
13375         * Theme.cs: change args to DataGridPaintParentRow.
13376
13377         * DataGrid.cs: Don't use controls for the relation links and
13378         parent buttons, so we have to handle all their interactions in
13379         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
13380         when we're navigating through child tables, so we can reinstate
13381         selection, expanded state, current cell, etc.
13382
13383 2006-07-20  Chris Toshok  <toshok@ximian.com>
13384
13385         * ToolBar.cs: When we redraw a button, for whatever reason,
13386         there's no reason to redraw the entire toolbar.  Also, don't call
13387         Control.Refresh from within Redraw, as it's much heavier than
13388         Invalidate (which is really what we want).
13389
13390 2006-07-20  Chris Toshok  <toshok@ximian.com>
13391
13392         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
13393         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
13394         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
13395         traces from within a debug IBindingList datasource
13396         (in mono/winforms/datagrid) for *days*, I've finally gotten things
13397         to work in a similar fashion.
13398
13399 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13400
13401         * ListBox.cs: Don't call Sort () when setting 
13402         the Sorted property to false (avoid an unnecessary sort).
13403
13404 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13405
13406         * ListControl.cs: DataSource should throw an ArgumentException
13407         instead of a normal exception when the argument is not of the 
13408         correct type.
13409
13410 2006-07-20  Mike Kestner  <mkestner@novell.com>
13411
13412         * Control.cs: add InternalPreProcessMessage to allow us to steal
13413         key events before MWF gets its paws on them.  Adapted from a
13414         suggestion by eno.
13415         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
13416         up/down/left/right navigation. Override the new internal control
13417         method to steal the events since they never make it to WndProc.
13418         * ToolBarButton.cs: don't worry about pushed when setting hilight
13419         since the drawing code prefers pushed to hilight. Invalidate on 
13420         Hilight changes. Fixes #78547 and #78525.
13421
13422 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13423
13424         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
13425           the canvas size. Fixes #78868
13426
13427 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
13428
13429         * Splitter.cs: Track requested split position until first layout
13430           is performed. Fixes #78871
13431
13432 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
13433
13434         * Application.cs: Removed code that forces 1.x for the version
13435           number if the version started with 0. Not sure why that code was
13436           there and I couldn't find any bugs that indicated we needed it.
13437           Fixes #78869
13438
13439 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
13440
13441         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
13442           ResetDefaults(), just write some output to the console until it's
13443           implemented. Fixes bug #78907 for now. Eliminated two warnings.
13444
13445 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
13446
13447         * PropertyGridView.cs: set StartPosition of drop down forms
13448         so they appear in correct initial spot.  Fixes #78190.
13449
13450 2006-07-19  Mike Kestner  <mkestner@novell.com>
13451
13452         * ThemeWin32Classic.cs: use parent background color when drawing
13453         flat toolbars.  Restructure the conditionals to make sure non-flat
13454         non-Divider toolbars are filled too.  Fixes #78837.
13455
13456 2006-07-19  Mike Kestner  <mkestner@novell.com>
13457
13458         * ListBox.cs: Sort on collection changes even if the handle
13459         isn't created yet.  Fixes #78813.
13460
13461 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13462
13463         * ListControl.cs: DisplayMember should never be null,
13464         and now we assign String.Empty when null is passed to it (this
13465         is the .Net way).
13466
13467 2006-07-17  Mike Kestner  <mkestner@novell.com>
13468
13469         * ListViewItem.cs: restructure Font and subitem Font handling 
13470         to hold a specific font and refer back to owner on null.
13471         Fixes #78761.
13472
13473 2006-07-17  Mike Kestner  <mkestner@novell.com>
13474
13475         * ToolBar.cs: bandaid for side-effect of previous patch which was
13476         discarding explicit heights for non-AutoSize toolbars.  Need to
13477         extend my format tester to deal with AutoSize=false. Fixes #78864.
13478
13479 2006-07-15  Jackson Harper  <jackson@ximian.com>
13480
13481         * LabelEditTextBox.cs:
13482         * TreeView.cs: Use a new LabelEdit class for node editing, this
13483         class automatically 'closes' itself when it gets the enter key or
13484         loses focus.
13485         - Use the client rectangle when setting the trees scrollbars, so
13486         border style is taken into account.
13487         
13488 2006-07-14  Jackson Harper  <jackson@ximian.com>
13489
13490         * TreeNode.cs:
13491         * TreeView.cs: Make the editing work similar to MSs, firing the
13492         events correctly and ending edits correctly.
13493
13494 2006-07-14  Mike Kestner  <mkestner@novell.com>
13495
13496         * ToolBarButton.cs:
13497         * ToolBar.cs: layout restructuring and redraw enhancements to support
13498         formatting changes gracefully, like setting TextAlign, ImageList, 
13499         ButtonSize, and Appearance.  Handles explicit button sizing quirks
13500         of the MS controls.  Things like flat toolbars ignoring button size
13501         but becoming constant sized at the largest button's size.  Normal
13502         toolbars with an image set cannot be shrunk smaller than the image,
13503         but text can be clipped/ignored.
13504         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
13505         is zero.  Seems like DrawString should be smart enough to not put
13506         anything on screen though. Also trim labels and ellipsize at the char
13507         boundary, not word.
13508         Fixes #78711 and #78483.
13509
13510 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13511
13512         * FolderBrowserDialog.cs: Disable "New Folder" button and
13513           "New Folder" contextmenu menuitem if a folder like "My Computer"
13514           is selected.
13515
13516 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13517
13518         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
13519         * FolderBrowserDialog.cs:
13520           - Use MWFConfig to store and read size and position settings
13521           - Added code to create a new folder (button or context menu).
13522             Use TreeView labeledit to change the name of the new folder.
13523
13524 2006-07-14  Jackson Harper  <jackson@ximian.com>
13525
13526         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
13527         when the tree is scrolled we end editing.
13528
13529 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
13530
13531         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
13532           Down arrows
13533
13534 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
13535
13536         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
13537         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
13538         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
13539         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
13540         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
13541         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
13542         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
13543         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
13544         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
13545         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
13546         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
13547         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
13548         ListViewItemSelectionChangedEventHandler.cs,
13549         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
13550         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
13551         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
13552         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
13553         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
13554         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
13555         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
13556         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
13557         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
13558         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
13559         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
13560         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
13561         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
13562         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
13563         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
13564         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
13565         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
13566         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
13567         WebBrowserNavigatingEventHandler.cs, 
13568         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
13569
13570 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
13571
13572         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
13573         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
13574         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
13575         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
13576         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
13577         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
13578         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
13579         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
13580         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
13581         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
13582         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
13583         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
13584         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
13585         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
13586         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
13587         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
13588         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
13589         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
13590         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
13591         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
13592         ListViewItemStates.cs, MaskFormat.cs: Added
13593
13594 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
13595
13596         * PropertyGridView.cs: Fix keyboard navigation of drop down.
13597         Patch from eno for bug 78558.
13598         
13599 2006-07-13  Jackson Harper  <jackson@ximian.com>
13600
13601         * TreeView.cs: When an edit is finished make sure that the
13602         selected node is visible.
13603         - When setting the top/bottom use the scrollbars is_visible, so
13604         everything will be set correctly even if the tree isn't visible
13605         yet.
13606
13607 2006-07-13  Jackson Harper  <jackson@ximian.com>
13608
13609         * ComboBox.cs: Revert the item->index part of my previous patch.
13610         * TreeView.cs: Use LostFocus instead of Leave for detecting when
13611         the edit box has lost focus (duh).
13612         - Just make the edit box not visible when we get return, that will
13613         take the focus, which will call EndEdit
13614         * TreeNode.cs When we start editing, notify the treeview.
13615
13616 2006-07-12  Jackson Harper  <jackson@ximian.com>
13617
13618         * ComboBox.cs: Clear out old items before setting the item list.
13619         This prevents databound controls from having their items added
13620         twice.
13621         - Switch the combobox to use indices whereever possible instead of
13622         using Item's.  This allows usto navigate through lists that have
13623         more then one item with the same string value (ie a, b, b, a).
13624         - Scroll the listboxes scrollbar when a non visible item is
13625         highlighted
13626         - Allow keypress to cycle through all the possible values. For
13627         example if you have b1, b2, b3 and hold down the B key all the
13628         values will be cycled through.
13629         
13630 2006-07-12  Jackson Harper  <jackson@ximian.com>
13631
13632         * TextBoxBase.cs:
13633         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
13634         this using the internal methods.
13635         * Control.cs: Add OnGotFocusInternal.  A new method that allows
13636         controls to "override" OnGotFocus and change focus behavior if
13637         needed.
13638         - Same thing for LostFocus
13639         * ComboBox.cs: Pass off focus to the text control properly.
13640
13641 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
13642
13643         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
13644         * FolderBrowserDialog.cs: Almost a complete rewrite.
13645           - Better support for Environment.Specialfolders
13646           - Added support for MWFVFS
13647           - Made setting SelectedPath work
13648
13649 2006-07-12  Jackson Harper  <jackson@ximian.com>
13650
13651         * Control.cs: Optimze getting all the controls.
13652
13653 2006-07-11  Jackson Harper  <jackson@ximian.com>
13654
13655         * ContainerControl.cs: Override SETFOCUS in the container control,
13656         so that it is not selected on mouse click.
13657
13658 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
13659
13660         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
13661           Hopefully we will have a better way once all of focus is complete.
13662
13663 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
13664
13665         * ThemeWin32Classic.cs: Commented out some debug code and fixed
13666           a compile error with csc.
13667
13668 2006-07-11  Jackson Harper  <jackson@ximian.com>
13669
13670         * Control.cs: When hiding a control only select the next control
13671         if the current control was focused.
13672         - Don't handle enter/leave when setting/killing focus, this is
13673         done by the container control.
13674         - Remove is_selected, it's not needed anymore.
13675         - Add utility methods for selecting a child control, and for
13676         firing the Enter/Leave events.
13677         * ContainerControl.cs: When a control is activated fire the
13678         enter/leave events.
13679         - Don't wrap when processing the tab key, so that focus can be
13680         moved outside of the container.
13681         - Use the correct active control
13682
13683 2006-07-11  Jackson Harper  <jackson@ximian.com>
13684
13685         * ComboBox.cs: Remove some debug code that was blinding me.
13686         * UpDownBase.cs: These controls actually aren't implicit, they are
13687         visible to the user.
13688
13689 2006-07-10  Chris Toshok  <toshok@ximian.com>
13690
13691         * DataGrid.cs: move back to the is_adding boolean field.  god i
13692         hate this is_editing/is_adding/is_changing stuff.
13693
13694 2006-07-10  Chris Toshok  <toshok@ximian.com>
13695
13696         * DataGridTableStyle.cs: just check if the property type is bool.
13697         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
13698         Don't use CanRenderType.
13699
13700         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
13701         if our text == NullText.  Remove CanRenderType.
13702
13703         * DataGridBoolColumn.cs: nuke CanRenderType.
13704
13705         * DataGrid.cs: reenable some code to end the current edit inside
13706         of set_CurrentCell.  This fixes the other 1.1.16 regression.
13707         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
13708         Also, remove the visible_row_count arg from CalcRowHeaders, since
13709         we don't need to worry about the actual height of the area.
13710
13711 2006-07-10  Chris Toshok  <toshok@ximian.com>
13712
13713         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
13714         mode, just return.
13715
13716         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
13717         the real sense of the IsInEditOrNavigateMode property (true =
13718         navigate, false = edit).  Also, update OnKeyPress to reflect this.
13719
13720         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
13721         column style exists, we still need to set its property descriptor
13722         to match up with our list manager.
13723
13724 2006-07-10  Chris Toshok  <toshok@ximian.com>
13725
13726         * ThemeWin32Classic.cs: implement the new row/header painting
13727         approach.  The parent row painting will likely go away and
13728         replaced with label controls, but the rest seems to work ok (and
13729         efficiently).
13730
13731         * Theme.cs: change the way we draw datagrid rows.  we don't draw
13732         the row headers as a block now.  Instead we draw them in the
13733         normal draw-row loop.  Add some calls for drawing parent rows and
13734         relation rows.
13735
13736         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
13737         a default table style.  Set the defaults from ThemeEngine.Current,
13738         not SystemColors.  Fix lots of misc issues with property setters.
13739
13740         * DataGrid.cs: move loads of style information out of this class
13741         as it's being duplicated with DataGridTableStyle.  keep track of a
13742         special DataGridTableStyle for the properties we used to mirror
13743         here.  Switch all the style properties to access this table style
13744         instead of instance fields of this class.  Also add a internal
13745         class to represent parent rows (more needs to be stored here, like
13746         the selection state from the parent table, as well as the
13747         expansion state.)  Also, for datasources with relations, do the
13748         right thing for collapse/expand, and add support for the
13749         navigation/parent row buttons.
13750
13751         Lastly, fix the crash in the 1.1.16 build.
13752
13753         * GridTableStylesCollection.cs: make the explicit interface
13754         implementations call the class's methods as opposed to duplicating
13755         them.
13756
13757         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
13758         0 so the text doesn't jump around when we move the cursor.
13759
13760 2006-07-10  Jackson Harper  <jackson@ximian.com>
13761
13762         * TextBoxBase.cs:
13763         * ListBox.cs: Match MS's ToString (this makes debugging focus
13764         stuff infinitely easier).
13765
13766 2006-07-10  Jackson Harper  <jackson@ximian.com>
13767
13768         * Control.cs (SelectNextControl): When checking the control's
13769         parent use this instead of ctrl.parent so that null can be passed
13770         to SelectNextControl. (I have unit tests for this).
13771         - Remove unused var.
13772
13773 2006-07-10  Chris Toshok  <toshok@ximian.com>
13774
13775         * CurrencyManager.cs: correct one regression, the removal of the
13776         finalType field.  Also, add a MonoTODO on CanAddRows, implement
13777         Refresh() correctly, and fix some event emission in
13778         ListChangedHandler.
13779
13780 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
13781
13782         * FileDialog.cs: Don't use brackets for new folders if they exist
13783           under *nix. Instead use -(number of existing folders +1).
13784
13785 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
13786
13787         * FileDialog.cs:
13788           - Fixed really nasty bug #78771
13789           - Don't block the whole GUI when reading directories with a lot of
13790             entries. Use an other thread instead and call BeginInvoke to
13791             update the ListView in MWFFileView
13792
13793 2006-07-07  Chris Toshok  <toshok@ximian.com>
13794
13795         * Control.cs (Dispose): release any Capture when disposing.
13796
13797 2006-07-07  Chris Toshok  <toshok@ximian.com>
13798
13799         * LinkLabel.cs (Select): if we chain up to the parent, set
13800         focused_index to -1 so we'll search for the first available link
13801         the next time the user tabs into us.  Also, if the direction is
13802         backward and focused_index == -1, start the search from the last
13803         element.
13804
13805 2006-07-07  Chris Toshok  <toshok@ximian.com>
13806
13807         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
13808         is beyond the end of the text, don't do anything.
13809         (CreateLinkPieces): set our ControlStyles.Selectable based on
13810         whether or not we have any links.
13811         (Link.Invalidate): use a loop instead of foreach.
13812         (Link.set_Start): null out owner.sorted_links so it'll be
13813         recreated by CreateLinkPieces.
13814
13815 2006-07-06  Chris Toshok  <toshok@ximian.com>
13816
13817         * LinkLabel.cs: revert the SetStyle change.
13818
13819 2006-07-06  Chris Toshok  <toshok@ximian.com>
13820
13821         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
13822         (OnEnableChanged): s/Refresh/Invalidate
13823         (OnGotFocus): if we have a focused index already, refocus it (so
13824         if we mouse out/in to the window it'll focus the right link).
13825         (OnKeyDown): move the tab handling out of here.
13826         (OnLostFocus): don't set focused_index to -1, so we can refocus it
13827         when we lose focus.
13828         (OnMouseDown): don't Capture here - Control handles it.  Also,
13829         focus the active link.
13830         (OnMouseUp): don't deal with Capture.
13831         (OnPaintBackgroundInternal): remove.
13832         (OnTextAlignChanged): CreateLinkPieces before calling the
13833         superclass's method.
13834         (OnTextChanged): call CreateLinkPieces before calling superclass's
13835         method.
13836         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
13837         move around.
13838         (Select): implement this, moving the selection between different
13839         links, and call parent.SelectNextControl if we don't have another
13840         link to focus in the given direction.
13841         (CreateLinkPieces): call Invalidate instead of Refresh.
13842         
13843 2006-07-06  Chris Toshok  <toshok@ximian.com>
13844
13845         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
13846         new LinkLabel internals.
13847
13848         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
13849         over pieces looking for active/focused/etc links.  also, deal with
13850         runs of text (and links) with embedded \n's in them, and use
13851         MeasureCharacterRanges instead of MeasureString to figure out the
13852         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
13853         two-step.
13854
13855 2006-07-04  Jackson Harper  <jackson@ximian.com>
13856
13857         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
13858         XKB or key auto repeat, do it manually.  Without key auto repeat,
13859         when a key is held down we get key press, key release, key press,
13860         key release, ... with auto repeat we get key press, key press, key
13861         press ..., and then a release when the key is actually released.
13862
13863 2006-07-03  Jackson Harper  <jackson@ximian.com>
13864
13865         * TabControl.cs:
13866         * ThemeWin32Classic.cs: Tabs do not obey normal background color
13867         rules, they are always control color regardless of the background
13868         color.
13869
13870 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
13871
13872         * FileDialog.cs: Added internal class MWFConfig.
13873           Removed Registry support and replaced it with support for the new
13874           MWFConfig class. See MWFConfig comments for more information.
13875
13876 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
13877
13878         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
13879           rectangle. Added some patches from eno from bug #78490 and fixed
13880           the arrow position for small up and down CPDrawScrollButtons.
13881
13882 2006-06-30  Jackson Harper  <jackson@ximian.com>
13883
13884         * InternalWindowManager.cs: Remove some debug code.
13885         * Form.cs: When an MdiParent is set to null, the window is
13886         "detatched" and becomes a normal window.
13887         * MdiClient.cs: Don't bring the new child form to the front until
13888         it is activated (setting it as active does this), this makes the
13889         previously active forms titlebar get redrawn as inactive.
13890
13891 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
13892
13893         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
13894           with later controls
13895
13896 2006-06-29  Mike Kestner  <mkestner@novell.com>
13897
13898         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
13899         arrow in keynav state.  Fixes #78682.
13900
13901 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
13902
13903         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
13904           order (fixes #78393)
13905
13906 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
13907
13908         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
13909           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
13910           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
13911           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
13912           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
13913           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
13914           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
13915           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
13916           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
13917           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
13918           enumerations (FlagsAttribute, SerializableAttribute, added/removed
13919           values)
13920
13921 2006-06-28  Mike Kestner  <mkestner@novell.com>
13922
13923         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
13924
13925 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
13926
13927         * PropertyGrid.cs,
13928           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
13929           item lines from other area (It also makes BackColor consistent and
13930           compatible with .NET). Fixed bug #78564.
13931
13932 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
13933
13934         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
13935         Patch from Eno for #78555.
13936
13937 2006-06-27  Chris Toshok  <toshok@ximian.com>
13938
13939         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
13940
13941         * DataGridColumnStyle.cs: same.
13942
13943         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
13944         
13945         * DataGridDrawingLogic.cs: nuke.
13946
13947 2006-06-27  Chris Toshok  <toshok@ximian.com>
13948
13949         * DataGridTableStyle.cs: clean up the constructors, and build the
13950         list of child relations for this table.  I have no idea if this is
13951         where we should be doing it (it probably isn't), but since we're
13952         already iterating over the properties..
13953
13954         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
13955         struct and array for keeping track of row information, similar to
13956         what's shown in a hack on
13957         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
13958
13959         * Theme.cs: be consistent about the naming of DataGrid methods,
13960         prefering ColumnWidths and RowHeights over columnsWidths and
13961         RowsHeights.
13962
13963         * ThemeWin32Classic.cs: same, and also add support for variable
13964         sized rows (and the +/- expansion icons for related rows).
13965
13966 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
13967
13968         * TextBoxBase.cs: Applied Eno's patch from #78660
13969
13970 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
13971
13972         * Form.cs (ScaleCore): We don't want to scale our form if it's
13973           state is minimized or maximized, but we still need to scale our
13974           child windows. Also, added try/finally block to ensure layout
13975           gets reset (Fixes #78697)
13976
13977 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
13978
13979         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
13980
13981 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
13982
13983         * Form.cs: Fixed c+p error and added check to resize form if minimum
13984           size is bigger than current size (Fixes #78709)
13985
13986 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
13987
13988         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
13989
13990 2006-06-26  Mike Kestner  <mkestner@novell.com>
13991
13992         * ComboBox.cs: only do Keypress handling in the combo when there  
13993         are items in the collection. Fixes #78710.
13994
13995 2006-06-26  Chris Toshok  <toshok@ximian.com>
13996
13997         * Binding.cs: make this work bi-directionally.  also, clear up
13998         other mixups between Push/Pull Data (e.g. we're supposed to pull
13999         data when validating).
14000
14001         * BindingManagerBase.cs: trim some fully qualified collection
14002         types.
14003
14004         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
14005
14006 2006-06-23  Chris Toshok  <toshok@ximian.com>
14007
14008         * PropertyManager.cs: It appears (according to the unit tests)
14009         that PropertyManager doesn't use
14010         PropertyDescriptor.AddValueChanged to track propery value changes
14011         in its datasource, but uses the same scheme as Binding, where it
14012         looks for a <Property>Changed event and binds to it.
14013
14014         Also, according to the docs, IsSuspended always returns false for
14015         a property manager with a non-null datasource.
14016
14017 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
14018
14019         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
14020           need to update the actual DialogResult. (Fixes #78613)
14021
14022 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
14023
14024         * Form.cs (ShowDialog): Release any captures before running the
14025           new message pump (fixes #78680)
14026
14027 2006-06-22  Mike Kestner  <mkestner@novell.com>
14028
14029         * ListView.cs: Layout column widths properly in details mode even 
14030         if HeaderStyle.None is set.  Fixes #78691.
14031
14032 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
14033
14034         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
14035
14036 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
14037
14038         * Control.cs (ContainsFocus): Using new driver method to get focused
14039           window, instead of trying to use internal tracking var, which can
14040           recursion issues (Fixes #78685)
14041         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
14042           XplatUIWin32.cs: Added GetFocus method to return focused window
14043
14044 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14045
14046         * ColorDialog.cs: when the mouse button is pressed inside the color
14047         matrix, don't let the cursor move out of it until the button is
14048         released, which is the behavior on windows. Changed 'colours' by
14049         'colors' to use the same word consistently.
14050
14051 2006-06-21  Chris Toshok  <toshok@ximian.com>
14052
14053         * DataGrid.cs: add in some basic navigation stuff (navigating to a
14054         child relation and back, using a stack).  Also, remove
14055         GetDataSource and the code that calls it - it's not needed.  Also,
14056         track CurrencyManager.ListName's removal.
14057
14058 2006-06-21  Chris Toshok  <toshok@ximian.com>
14059
14060         * CurrencyManager.cs: push some of the original type checking from
14061         BindingContext.CreateBindingManager to here, and remove some of
14062         the finalType stuff.  Need more tests to make sure I've got the
14063         ListName part right, and we might need more in SetDataSource.
14064
14065         * PropertyManager.cs: add a ctor that takes just the datasource,
14066         and no property name.  Make SetDataSource work with a null
14067         property_name, and make Current return the data_source if the
14068         property descriptor is null.  this makes 'string foo = "hi";
14069         BindingContext[foo].Current' return "hi" as it should.
14070
14071         * RelatedCurrencyManager.cs: make this code more generic - there's
14072         no reason the parent manager has to be CurrencyManager, and
14073         there's no reason to pass the DataRelation.  It suffices to use a
14074         BindingManagerBase and PropetyDescriptor.
14075
14076         * RelatedPropertyManager.cs: make a similar change here.
14077         
14078         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
14079         flower I knew it could be.
14080
14081 2006-06-20  Chris Toshok  <toshok@ximian.com>
14082
14083         * PropertyManager.cs: the PropertyChangedHandler is invoked when
14084         data in the source has changed and we need to update the control,
14085         so s/PullData/PushData.
14086
14087         * CurrencyManager.cs: Refresh is meant to update the control from
14088         data in the datasource.  So, s/PullData/PushData.
14089
14090         * BindingContext.cs: add more ugliness (we weren't handling the
14091         case where data_source = DataTable and data_member = column_name).
14092
14093         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
14094         from the perspective of the datasource.  PullData pulls from the
14095         control, PushData pushes to the control.
14096
14097 2006-06-20  Chris Toshok  <toshok@ximian.com>
14098
14099         * BindingContext.cs: rewrite the CreateBindingManager code to
14100         handle navigation paths more or less properly.  This could
14101         definitely stand some more work, in particular to push the
14102         recursion up to the toplevel.  But that relies on fixes in other
14103         places (System.Data comes to mind).
14104
14105         Also, move to a flat hashtable (and encode the twolevel nature of
14106         the dictionary into the hash key).  This lets us implement the
14107         IEnumerable.GetEnumerator method.
14108
14109         * RelatedCurrencyManager.cs: new class.  Update our view based on
14110         our relation and our parent CurrencyManager's position.
14111
14112         * CurrencyManager.cs: split out some logic from the ctor into
14113         SetView, so it can be called from the new RelatedCurrencyManager
14114         subclass.
14115
14116         * RelatedPropertyManager.cs: new class.  Update our datasource
14117         based on the position of our parent CurrencyManager.
14118
14119         * PropertyManager.cs: split out some logic from the ctor into
14120         SetDataSource, so it can be called from the new RelatedDataSource
14121         subclass.  Also, make the Current getter return the value
14122         of the PropertyDescriptor, not the data_source.
14123
14124         * Binding.cs: no need to duplicate the string splitting code here.
14125
14126 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14127
14128         * Control.cs:
14129           - set_Enabled: OnEnabledChanged is not called if the inherited state 
14130             of the control is not altered, even though  we might be changing the
14131             internal state of the control (#78458)
14132           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
14133             OnEnabledChanged, to allow easy altering of any child window state
14134           - OnEnabledChanged: Added code to enable/disable driver window state
14135           - OnParentEnabledChanged: Instead of firing the event, call 
14136             OnEnabledChanged, which will fire the event and also a) set driver
14137             window state and pass the enabled state to any grandchildren (#78458)
14138
14139 2006-06-19  Jackson Harper  <jackson@ximian.com>
14140
14141         * InternalWindowManager.cs: We don't set the cursor explicitly
14142         thats done via the response to NCHITTESTs.
14143         - Don't need to adjust for titlebar heights anymore, the
14144         coordinates are coming in the correct coordinates now (see peters
14145         last patch).
14146
14147
14148 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
14149
14150         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
14151           being translated relative to whole window, instead of client window.
14152           That caused broken offsets on mouseclick (and caused gas for our
14153           InternalWindowManager)
14154
14155 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14156
14157         * TextControl.cs:
14158           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
14159           - Undo(): Added replay of cursor move on DeleteChars action; added
14160             calling Undo() again if a recorded cursor move is invalid (to
14161             ensure that some action is performed on Undo)
14162         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
14163
14164 2006-06-16  Jackson Harper  <jackson@ximian.com>
14165
14166         * MdiClient.cs: Instead of just sizing maximized windows when
14167         there is a resize we also have to adjust the Y of minimized
14168         windows, so they stay pinned to the bottom of the mdi container.
14169         - Eliminate separate tracking of the active control, we can just
14170         get this from the controls collection.
14171         - Paint the decorations for the newly activated titlebar so we get
14172         a pretty blue bar.
14173         * InternalWindowManager.cs:
14174         * ThemeWin32Classic.cs: Minimized windows get all three buttons
14175         even if they are a tool window.
14176         
14177 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
14178
14179         * TextControl.cs (Undo): Handle non-existent cursor locations in the
14180           undo buffer, these can happen when text was deleted and the cursor
14181           was recorded first. Since we will also have a recorded cursor
14182           after the delete this is not an issue. (Fixes #78651)
14183
14184 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
14185
14186         * AccessibleObject.cs: Remove dependence on Control.is_selected;
14187           instead properly track control states internally (allows us to
14188           remove is_selected from Control)
14189
14190 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14191
14192         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
14193         whose width is not a multiple of 8.
14194
14195 2006-06-13  Jackson Harper  <jackson@ximian.com>
14196
14197         * MdiClient.cs:  Only maximize the next child if the current one
14198         is maximized.
14199
14200 2006-06-13  Chris Toshok  <toshok@ximian.com>
14201
14202         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
14203         modified.  Also, guard against grid or grid_drawing being null in
14204         Invalidate.
14205
14206         * DataGrid.cs: Reformat tons of getters/setters.  In the
14207         DataMember setter, just call SetNewDataSource instead of
14208         duplicating some of its functionality.  In SetNewDataSource, don't
14209         check ListManager for null, since the property getter creates the
14210         object if needed.
14211
14212         * DataGridTableStyle.cs: don't set TableStyle or call
14213         SetDataGridInternal on the column here, it's done in
14214         GridColumnStylesCollection.Add.
14215
14216         * GridColumnStylesCollection.cs: fix all the explicit interface
14217         implementations to just call our methods.  Nuke AddInternal() and
14218         move the body of it to Add().  Also, add a call to
14219         column.SetDataGridInternal to Add().
14220
14221         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
14222         base()+duplicate code.  Also, use the Format property instead of
14223         format to generate an Invalidate ala MS.  Lastly, create the
14224         textbox here, unconditionally.
14225         (set_Format): call Invalidate.
14226         (get_TextBox): no need to call EnsureTextBox.
14227         (Commit): remove the message box.
14228         (Edit) remove the call to EnsureTextBox.
14229         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
14230         (EnterNullValue): no need to check textbox for null.
14231         (HideEditBox): no need to check textbox for null.
14232         (SetDataGridInColumn): add the textbox to the grid's controls.
14233         (EnsureTextBox): nuke.
14234         
14235 2006-06-13  Jackson Harper  <jackson@ximian.com>
14236
14237         * MdiWindowManager.cs: Hook up to the maximized menus paint event
14238         and redraw the buttons when needed. Unhook when the window is
14239         unmaximized.
14240         * MainMenu.cs: Add an internal Paint event, the mdi window manager
14241         needs this so that it can redraw its buttons when the menu is
14242         repainted.
14243         * InternalWindowManager.cs:
14244         * Form.cs: The method order has changed for DrawMaximizedButtons,
14245         so that it can be a PaintEventHandler.
14246         
14247 2006-06-13  Jackson Harper  <jackson@ximian.com>
14248
14249         * MdiClient.cs: When we close a maximized mdi window, the next mdi
14250         window is activated and maximized, even if it wasn't before.
14251         - When  a new window is activated repaint the decorations of the
14252         old one, so that it no longer has the Active "look" (the blue
14253         titlebar).
14254         * InternalWindowManager.cs: Open up CreateButtons to base classes
14255         so they can recreate the buttons on state changes.
14256         - If a window is maximized give it all three buttons
14257         * MdiWindowManager.cs: Create the titlebar buttons when the state
14258         is changed, this is needed because a toolwindow will not have all
14259         three buttons until it is maximized.
14260
14261 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
14262
14263         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
14264           Fixed bug #78609.
14265
14266 2006-06-12  Jackson Harper  <jackson@ximian.com>
14267
14268         * KeysConverter.cs: Make sure we handle the Ctrl special case
14269         if its the only key.
14270         
14271 2006-06-12  Jackson Harper  <jackson@ximian.com>
14272
14273         * Theme.cs: Add a method to get the size of a managed window
14274         toolbar button.
14275         * InternalWindowManager.cs: Remove the ButtonSize property, this
14276         should be retrieved from the theme.
14277         * MdiWindowManager.cs: Get the button size from the theme
14278         * ThemeWin32Classic.cs: Make the method to get the managed window
14279         titlebar button size public.
14280         - Handle the different button sizes of maximized toolwindows
14281         (should match any maximized window).
14282         - Get the titlebar height from the theme, not the WM (which gets
14283         it from the theme).
14284
14285 2006-06-12  Jackson Harper  <jackson@ximian.com>
14286
14287         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
14288         event down to the mdi window manager.
14289         - Expose some extra stuff to base classes
14290         - Make sure to end the Capture on an NC Mouse up, so that we can
14291         get double clicks properly, and the sizing doens't stick.
14292         - When doing PointToClient contain it in the workable desktop
14293         area, this prevents windows from changing size when the cursor is
14294         pulled outside of the working area while sizing.
14295         * MdiWindowManager.cs: When we get a double click maximize the
14296         window.
14297         - Reset the cursor after handling mode changes.
14298
14299 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
14300
14301         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
14302           current desktop, instead of just assuming a 0, 0 origin. This
14303           is needed for our internal window manager, to know the top
14304           margin of the desktop
14305
14306 2006-06-12  Chris Toshok  <toshok@ximian.com>
14307
14308         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
14309         we need this to get rid of the selected background in the bool
14310         column.
14311         (CancelEditing): move the ConcedeFocus call to above the Abort
14312         call.  Also, set is_changing to false and invalidate the row
14313         header if we were changing before.
14314         (ProcessKeyPreviewInternal): remove, since noone outside this
14315         class calls it anymore.  Roll the code into ProcessKeyPreview.
14316         (EndEdit): remove the internal version.
14317         (InvalidateCurrentRowHeader): make private.
14318
14319         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
14320         Keys.Escape handling (and with it the last call to
14321         DataGrid.EndEdit from outside the class.)
14322
14323
14324 2006-06-12  Chris Toshok  <toshok@ximian.com>
14325
14326         * DataGridTextBox.cs (.ctor): isedit defaults to false.
14327         (OnKeyPress): set isedit to true.
14328         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
14329         already handled by the grid.
14330
14331         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
14332         right.  ugh.
14333         (set_DataSource): SetDataSource always returns true, so stop
14334         putting it in an if statement.
14335         (EndEdit): get rid of some {}'s
14336         (ProcessGridKey): return true in case Keys.Escape.
14337         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
14338         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
14339         PositionChanged, stopped connecting to CurrentChanged.
14340         (GetDataSource): simplify this a bunch.
14341         (SetDataSource): change return type from bool to void.
14342         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
14343         to this, and make sure we don't set ListManager.Position inside
14344         set_CurrentCell.
14345         (OnListManagerItemChanged): if we're passed an actual index,
14346         redraw that row.
14347
14348         * CurrencyManager.cs (set_Position): don't call PullData here.
14349
14350 2006-06-09  Jackson Harper  <jackson@ximian.com>
14351
14352         * TreeNode.cs:  Recalculate the visible order before doing the
14353         Expand/Collapse Below calls, because those calls generate an
14354         expose.
14355         - Reduce calls to the TreeView property, which is mildly expensive
14356         by using a local var.
14357         * Form.cs: Layout the MDI child windows when creating the parent
14358         form.
14359         - Don't use the internal constructor anymore
14360         * MdiClient.cs: use the parent form width/height (if available)
14361         when laying out the child windows, we do this because the
14362         mdiclient isn't docked yet when the initial layout is done.
14363         - Don't need an internal constructor anymore.
14364
14365 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14366
14367         * FileDialog.cs: handle access errors when trying to create a folder
14368         or changing to a directory. No need to initialize out parameters.
14369
14370 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14371
14372         * FileDialog.cs: Append a number when creating a new folder if the
14373           folder already exists (use parenthesis instead of square brackets)
14374
14375 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14376
14377         * FileDialog.cs:
14378           - Disabled registry support for windows and added better registry
14379             error checking for other systems (need to investigate why it
14380             works perfectly on my system)
14381           - If a folder already exist show an error MessageBox instead of
14382             trying to create an indexed name.
14383           - Fixed a non intentional typo.
14384
14385 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14386
14387         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
14388
14389 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14390
14391         * FileDialog.cs: When creating a new folder don't crash if the
14392           folder already exists.
14393
14394 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14395
14396         * FileDialog.cs: Allmost a complete rewrite.
14397           - added a "virtual" file system that handles the differences
14398             between unix and windows file systems (especially the directory
14399             structure). Moved most of the directory and file handling code
14400             into the vfs.
14401             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
14402             UnixFileSystem and FSEntry.
14403           - Recently used folder/directory, size, location and used file names
14404             (file name ComboBox) are now stored in the registry and get read
14405             before the dialog shows up (fixes part 6 of bug #78446).
14406           - Creation of new folders/directories is now possible (context menu
14407             or ToolBar). Added TextEntryDialog for this that fills in the gap
14408             until ListView.LabelEdit works.
14409           - Fixed cursor handling (bug #78527) and focus handling for
14410             PopupButtonPanel
14411           - Various "Search in" ComboBox enhancements. The content of the
14412             dropdown listbox now almost matches ms.
14413           - Changed the behaviour when the user switches to SpecialFolder
14414             Recent to show the ListView in View.Details.
14415           - Beside using the ToolBar to change the View property of the
14416             file ListView it is now possible to use the context menu too.
14417
14418 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
14419
14420         * ComboBox.cs: Don't create a new ObjectCollection when an item
14421           gets inserted. Just insert the item in the existing object_items
14422           ArrayList.
14423
14424 2006-06-08  Jackson Harper  <jackson@ximian.com>
14425
14426         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
14427         that the treeview and root node checks are done also, this fixes a
14428         regression i caused in the unit tests.
14429
14430 2006-06-07  Wade Berrier <wberrier@novell.com> 
14431
14432         * RichTextBox.cs: More ISO8859-1 -> unicode
14433
14434 2006-06-07  Mike Kestner  <mkestner@novell.com>
14435
14436         * ComboBox.cs : use items to hold highlight/selection so that
14437         collection insertions don't require synchronization.
14438
14439 2006-06-07  Jackson Harper  <jackson@ximian.com>
14440
14441         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
14442         routine.  We now always keep the sized edge at the cursor instead
14443         of computing movement and adjusting rects.  There is one buglet
14444         with this method though when the cursor is moved over area that
14445         the window can not expand too (such as the toolbars on the desktop).
14446
14447 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14448
14449         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
14450         here. Fixes crash on startup in AlbumSurfer.
14451
14452 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
14453
14454         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
14455           values
14456
14457 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14458
14459         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
14460         statement to avoid calling XNextEvent which will block if another thread
14461         took the event that we were expecting. Fixes bug #78605.
14462
14463 2006-06-07  Mike Kestner  <mkestner@novell.com>
14464
14465         * ListView.cs : isolated checkbox clicking from the selection logic.
14466         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
14467
14468 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14469
14470         * Form.cs: Check that the value passed to Form.DialogResult
14471         is a valid enum value.
14472
14473 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14474
14475         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
14476         Computer'. Clicking it in the network view goes to 'My Computer'.
14477         Added CIFS filesystem type. Display the mount point of filesystems.
14478         Avoid duplicate mount points (happens for me with CIFS);
14479
14480 2006-06-06  Jackson Harper  <jackson@ximian.com>
14481
14482         * InternalWindowManager.cs: Draw the maximized windows buttons
14483         when resizing.
14484
14485 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14486
14487         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
14488         all other dialogs. Fixes bug #78585.
14489
14490 2006-06-06  Mike Kestner  <mkestner@novell.com>
14491
14492         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
14493         Only invalidate checkbox on checkstate changes to avoid flicker.
14494         * ListBox.cs : avoid unselect/select when clicking selected item.
14495         avoid reselection flicker for already multiselected items.
14496         Fixes #78382.
14497
14498 2006-06-06  Jackson Harper  <jackson@ximian.com>
14499
14500         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
14501         the parent form so that the menu is removed if needed.
14502
14503 2006-06-06  Mike Kestner  <mkestner@novell.com>
14504
14505         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
14506         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
14507
14508 2006-06-06  Mike Kestner  <mkestner@novell.com>
14509
14510         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
14511
14512
14513 2006-06-06  Jackson Harper  <jackson@ximian.com>
14514
14515         * Control.cs: Use the property (instead of the field) to get the
14516         default cursor so it is instantiated correctly.
14517         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
14518         resizes so we need to manually repaint the window decorations here.
14519         - Set the titlebar button locations as soon as they are created,
14520         otherwise they are not set correctly on win32.
14521         
14522 2006-06-06  Chris Toshok  <toshok@ximian.com>
14523
14524         * CurrencyManager.cs (set_Position): call PullData before
14525         OnCurrentChanged.
14526         (AddNew): after calling IBindingList.AddNew, update our
14527         listposition, and call OnCurrentChanged/OnPositionChanged (without
14528         calling PullData).
14529         (OnCurrentChanged): remove the call to PullData from here.
14530         (OnItemChanged): remove the call to PushData from here.
14531         (OnPositionChanged): change the test from == null to != null to
14532         match the other methods.
14533         (ListChangedHandler): the grossest part of the patch.  Implement
14534         this such that it passes the unit tests in CurrencyManagerTest and
14535         the output more or less matches that of MS's implementation.
14536  
14537 2006-06-06  Mike Kestner  <mkestner@novell.com>
14538
14539         * ListView.cs : only update check state on single click.
14540         * ThemeWin32Classic.cs : fix focus drawing for details view without
14541         fullrowselect.  Fixes #78454.
14542         * XplatUIX11.cs : fix for double click emission.
14543
14544 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
14545
14546         * PropertyGridView.cs : Applied Atsushi's patch to fix
14547         font dialog bug  (#78197).
14548
14549 2006-06-05  Jackson Harper  <jackson@ximian.com>
14550
14551         * TreeNode.cs: Compute the next node for expanding/collapsing
14552         correctly. We now factor in nodes without a NextNode
14553         correctly. (Fixes somes cases in nunit-gui).
14554         * InternalWindowManager.cs: Set the bounds when updating the
14555         virtual position of a tool window.
14556         
14557 2006-06-05  Chris Toshok  <toshok@ximian.com>
14558
14559         * DataGrid.cs: rename cached_currencymgr to list_manager.
14560         (set_CurrentCell): move SetCurrentCell code here, and clean it up
14561         some.
14562         (CurrentRow, CurrentColumn): single accessors so we can make the
14563         cursor movement code a lot easier to understand.
14564         (CurrentRowIndex): implement this in terms of CurrentRow.
14565         (BeginEdit): clean this up a bit.
14566         (CancelEditing): sort out the is_editing/is_changing/is_adding
14567         stuff a little.
14568         (EndEdit): minor changes.
14569         (OnKeyDown): add a comment about a (most likely) unnecessary
14570         check.
14571         (OnMouseDown): cancel editing when we click on a row header.  And
14572         use the CurrentRow setter, not CurrentCell.
14573         (ProcessDialogKey): directly call ProcessGridKey.
14574         (UpdateSelectionAfterCursorMove): factor out this common block of
14575         code (it's used everywhere that we move the cursor by updating row
14576         or column).
14577         (ProcessGridKey): pretty substantial overhaul.  Use the
14578         CurrentRow/CurrentColumn properties to make the code a lot more
14579         readable.  Only use the CurrentCell property when we have to
14580         modify both row and column at once.  Tab behavior is still broken,
14581         and Delete is untested.
14582         (Select): if we have no selected rows, set selection_start to
14583         @row.
14584         (EditCurrentCell): rename EditCell this.  It was only ever invoked
14585         with CurrentCell as the arg, so drop the arg and rename it.
14586
14587         * DataGridColumnStyle.cs: clean up the constructors a little, and
14588         drop CommonConstructor().
14589
14590         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
14591         actually get notified when the user hits it.
14592         (ProcessKeyMessage): *substantially* simplify this method.
14593         There's no reason (that I can see) for the textbox to be making
14594         calls into the datagrid at all.  Remove all of them but the ones
14595         for Enter handling.  those will take some more work.
14596
14597         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
14598         calling HideEditBox.
14599         (HideEditBox): if we have an active textbox, render it invisible
14600         without causing a re-layout of the datagrid.
14601
14602 2006-06-05  Mike Kestner  <mkestner@novell.com>
14603
14604         * ListView.cs : fix NRE crasher when focuseditem is cleared by
14605         collection changes by resetting it to Items[0].  Fixes #78587.
14606
14607 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14608
14609         * MessageBox.cs: if the height of the text is larger than the icon_size,
14610         use that. Fixes bug #78575.
14611
14612 2006-06-05  Jackson Harper  <jackson@ximian.com>
14613
14614         * TreeView.cs: Fix line drawing when scrolling.  To do this each
14615         node is basically responsible for drawing its entire horizontal
14616         area.  When drawing a node it draws its parent node lines if
14617         needed.
14618         - Adjust the clip area to the viewport rectangle
14619         - Fix Left/Right key handling to match MS. (It expand/collapses
14620         and moves to parents/first child but does not move selection to
14621         sibling nodes).
14622         - Fix SetTop to work with new bound calculation code
14623         - When scrollbars are no longer needed we need to reset scrolling
14624         vars and recalculate the visible order so the redraw is correct
14625         * TreeNode.cs: We can't expand/collapse nodes with no children.
14626
14627 2006-06-03  John Luke  <john.luke@gmail.com> 
14628
14629         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
14630         so the colors work without dev packages
14631         
14632 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
14633
14634         * Control.cs 
14635           - Select: Implemented to just use activate. Seems to match MS 
14636             behaviour closest. Documented to only do actual control walking 
14637             based on it's parameters if in a container control so I moved 
14638             the code there.
14639           - Removed selection check logic from our internal Select() method
14640         * ContainerControl.cs:
14641           - Select: Moved selection logic from Control here, since MS documents
14642             that containers obey the bool arguments. No longer calling base
14643
14644 2006-06-02  Jackson Harper  <jackson@ximian.com>
14645
14646         * TreeView.cs: If the selected node isn't changed when we get
14647         focus update the previously selected node so that we see the
14648         selection box.
14649
14650 2006-06-02  Mike Kestner  <mkestner@novell.com>
14651
14652         * ComboBox.cs: restructure grab and general mouse event handling.
14653         Make the composite control raise mouse events like it was a single
14654         control for leaves/enters/motion/up/down events.  fix dropdown list
14655         coordinate mangling and refactor it into the scrollbar subclass to
14656         reduce code duplication.  Fixes #78282 #78361 and #78457.
14657
14658 2006-06-02  Mike Kestner  <mkestner@novell.com>
14659
14660         * ScrollBar.cs: remove Capture setting/clearing, as it happens
14661         automatically in the Control.WndProc.
14662
14663 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14664
14665         * FileDialog.cs: fix crash when running SharpChess, which sets the
14666         FilterIndex to 2 with only one Filter.
14667
14668 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14669
14670         * ToolBar.cs: add SizeSpecified property.
14671         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
14672         try to figure out our real size, otherwise fallback to what the
14673         container says.
14674
14675 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
14676
14677         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
14678         * Control.cs (WndProc): MS always calls the DefWndProc to pass
14679           up the event
14680
14681 2006-06-01  Mike Kestner  <mkestner@novell.com>
14682
14683         * ListView.cs: revamp the focus management in ListView.  It still
14684         causes churn of LostFocus/GotFocus emissions on clicks, but it's
14685         better than not handling focus at all.  Will revisit when pdb feels
14686         the general focus handling is solid.  Fixes #78526.
14687
14688 2006-06-01  Jackson Harper  <jackson@ximian.com>
14689
14690         * TreeView.cs: Set the default border style in the constructor.
14691         - Move painting to use OnPaintInternal instead of capturing
14692         WM_PAINT, this is the correct way of doing things
14693         - UpdateBelow shouldn't invalidate the scrollbar area
14694         - Cap the top on update below in case the node was above the top
14695         of the viewport rectangle.
14696         - ExpandBelow and Collapse below need to obey Begin/End Update.
14697         * TreeNode.cs: Make is_expanded internal so the treenode
14698         collection can change it without firing the whole event chain.
14699         * TreeNodeCollection.cs: When clearing all the child nodes make
14700         sure to recalc the visible order.
14701         - Improve algo for remove the top node
14702
14703 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
14704
14705         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
14706           SendMessage directly calling window procedures, which in turn might
14707           call SetFocus()
14708
14709 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
14710
14711         * Control.cs: Don't handle WM_SETFOCUS if the same window already
14712           has focus (works around X11 sending a FocusIn after our SetFocus)
14713         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
14714
14715 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
14716
14717         * Mime.cs: Fix for the NET_2_0 build.
14718           NameValueCollection needs StringComparer now.
14719
14720 2006-05-31  Chris Toshok  <toshok@ximian.com>
14721
14722         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
14723         return (via an out parameter) the starting X of the column.
14724         (UpdateVisibleColumn): track change to FromPixelToColumn.
14725         (HitTest): add a ColumnResize case here.
14726         (DrawResizeLine): new function, probably poorly named.
14727
14728         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
14729         only need to keep one reference.
14730         (set_ListManager): same.
14731         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
14732         Also, add support for HitTestType.ColumnResize.
14733         (OnMouseMove): add column resize behavior here, and change the
14734         cursor to the correct one as we move around the datagrid.
14735         (OnMouseUp): terminate the column resize if we're resizing.
14736         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
14737         for the current cell.
14738         (ConnectListManagerEvents): use cached_currencymgr.
14739         (DisconnectListManagerEvents): fill this in, using
14740         cached_currencymgr.
14741         (SetCurrentCell): remove cached_currencymgr_events handling.
14742         (SetDataMember): only call DisconnectListManagerEvents if
14743         cached_currencymgr is != null.
14744         (SetDataSource): same.
14745         (OnListManagerCurrentChanged): cached_currencymgr_events ->
14746         cached_currencymgr.
14747
14748 2006-05-31  Jackson Harper  <jackson@ximian.com>
14749
14750         * BindingManagerBase.cs: Remove somedebug code that creeped into
14751         SVN.
14752         * TreeNode.cs: We get the indent level dynamically right now, so
14753         don't track it as a member.
14754         * TreeNodeCollection.cs: Make sure all nodes added to the list
14755         have parents, treeviews/topnodes setup properly.
14756         - Don't attempt to track indent level.
14757
14758 2006-05-30  Jackson Harper  <jackson@ximian.com>
14759
14760         * BindingContext.cs: Create the currency manager tables here.
14761         This allows us to more easily create null tables (when bad data
14762         members are used), and more easily create related currency
14763         managers.
14764         * CurrencyManager.cs: All the table creation stuff is done by the
14765         binding context now.
14766         - Current should throw an exception if listposition is -1.
14767         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
14768         been bound yet.
14769
14770 2006-05-30  Mike Kestner  <mkestner@novell.com>
14771
14772         * ListView.cs: allow reexpansion of zero-width column headers.
14773         Fixes #78528.
14774
14775 2006-05-28  Chris Toshok  <toshok@ximian.com>
14776
14777         * CurrencyManager.cs (get_Current): after the late binding
14778         listposition = -1 fix, we need to guard against it here and return
14779         null, otherwise we raise an exception (which is swallowed
14780         elsewhere, and breaks datagrid databinding.)
14781
14782 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
14783
14784         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
14785           than WM_SYSKEY, don't throw if get something unexpected (#78507)
14786
14787 2006-05-26  Jackson Harper  <jackson@ximian.com>
14788
14789         * ControlPaint.cs:
14790         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
14791         values, it's faster and it's all we care about (we don't care if
14792         the names aren't equal).
14793         * KeyboardLayouts.cs: Eliminate some dead code.
14794         - Lazy init things
14795         * X11Keyboard.cs: Lazy init keyboard detection.
14796         - Cleanup access modifiers a little.
14797
14798 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
14799
14800         * XplatUIX11.cs: Once again, attempting to get layout just right.
14801
14802 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
14803
14804         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
14805           the sizes of each link section, that will result in sizes that
14806           match DrawString's layout (Fixes #78391)
14807
14808 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
14809
14810         * FileDialog.cs: If AddExtension property is true autocomplete the
14811           extensions in SaveFileDialog correctly. Fixes bug #78453.
14812           Set MyNetwork and MyComputer to "C:\" for windows. This should
14813           fix part 8 of bug #78446 for now.
14814
14815 2006-05-26  Chris Toshok  <toshok@ximian.com>
14816
14817         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
14818         invalidate the current row header if we need to, but presumably
14819         we'll invalidate the row corrsponding to the bounds or
14820         editingControl.
14821         (GridHScrolled): switch back to this method, as it's part of the
14822         public api.  *sigh*.
14823         (GridVScrolled): same.
14824         (OnMouseWheel): hack up something that more or less works.  Call
14825         GridHScrolled/GridVScrolled directly, instead of duplicating much
14826         of their code here.
14827         (EnsureCellVisibility): reinstate a bunch of this code, since we
14828         can't just set the scrollbar Value and expect to do all the work
14829         in the ValueChanged handler.  Also, Call Update() after scrolling
14830         in one direction so the other XplatX11.ScrollWindow call has the
14831         proper stuff in the proper places.
14832         (EditCell): set is_editing to true before calling .Edit.
14833
14834         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
14835         don't bother comparing first.
14836         (OnKeyPress): call grid.ColumnStartedEditing before calling
14837         base.OnKeyPress.  this will set is_changing and invalidate the row
14838         header if necessary.
14839         (ProcessKeyMessage): for WM_CHAR messages, call
14840         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
14841         and WM_KEYDOWN.
14842         
14843         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
14844         it's done in the DataGrid.
14845         (NextState): call grid.ColumnStartedEditing, which takes care of
14846         invalidating the row header (and setting is_changing).
14847
14848         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
14849         here.  it's done in the DataGrid.
14850
14851 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14852
14853         * Control.cs: allow changing the cursor when the mouse position is
14854         out of bounds but Capture is set.
14855         * LinkLabel.cs: handle the case when the mouse button is pressed on the
14856         linklabel but released somewhere else.
14857
14858 2006-05-25  Jackson Harper  <jackson@ximian.com>
14859
14860         * TreeView.cs: When we get focus if there is no selected node make
14861         it the top node
14862         - Remove some uneeded setup code from Draw.
14863         * TreeNodeCollection.cs: If the tree doesn't have a top node when
14864         a new node is inserted make the new node the top.
14865         * XplatUIX11.cs:
14866         * Timer.cs: Use Utc time so that no local time zone stuff needs to
14867         be used (should be faster).
14868         
14869 2006-05-25  Chris Toshok  <toshok@ximian.com>
14870
14871         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
14872         problem with the last commit.
14873
14874 2006-05-25  Chris Toshok  <toshok@ximian.com>
14875
14876         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
14877         need the invalidate call here, while scrolling right-to-left via
14878         the left arrow key (i.e. moving the editing cell while scrolling).
14879
14880         * DataGrid.cs (.ctor): remove the initialization of
14881         ctrl_pressed/shift_pressed.  We no longer track them using key
14882         up/down handlers, but by using Control.ModifierKeys.  Also, switch
14883         to using ValueChanged handlers on the scrollbars instead of
14884         Scrolled event handlers.  This simplifies a bunch of the scrolling
14885         code.
14886         (GridHValueChanged): rename from GridHScrolled, and change it to
14887         work with the new event args.
14888         (GridVValueChanged): same.
14889         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
14890         (OnMouseWheel): actually scroll the datagrid.  Don't change the
14891         selected cell.
14892         (ProcessGridKey): correct all the keyboard navigation stuff I
14893         could find.  Ctrl up/down/left/right/home/end work now.
14894         (EnsureCellVisibility): correct method name spelling.  Also,
14895         simplify this a touch by not explicitly calling the
14896         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
14897         scrollbar value.
14898         (OnKeyUpDG): no need for this method now.
14899         
14900 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14901
14902         * LinkLabel.cs: display the OverrideCursor when hovering the label.
14903         Fixes bug #78392.
14904
14905 2006-05-25  Chris Toshok  <toshok@ximian.com>
14906
14907         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
14908         r61019.
14909
14910 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
14911
14912         * Application.cs: Moved setting of is_modal and closing to before
14913           we create the control, to allow the event handlers called as a
14914           result of creation affect closing. Also removed Gonzalo's previous
14915           change to setting DialogResult, the behaviour has been moved to 
14916           Form.ShowDialog()
14917         * Form.cs: 
14918           - ShowDialog(): Removed explicit creation of the form, let RunLoop
14919             handle it instead
14920           - ShowDialog(): If no dialog result is set, we need to return Cancel
14921           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
14922             the close is cancelled
14923
14924 2006-05-25  Jackson Harper  <jackson@ximian.com>
14925
14926         * StatusBar.cs: We only need to update the sizes of the other
14927         panels when we have auto size contents.  Also we are only updating
14928         the contents of the panel, not the borders, so compensate for the
14929         border width (TODO: get this width from the theme somehow).
14930         * TreeView.cs: Scrollable is true by default
14931         - Use invalidate instead of refresh where needed
14932         - Factor the scrollable value into scrollbar updating
14933         - Update the scrollbars if the Scrollable property is altered
14934         - Update the selected node if its ImageIndex is changed
14935         - Handle null nodes in UpdateNode (mainly so we don't have to
14936         check if selected is null when updating it
14937         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
14938         are factored into the visible count
14939         - Use VisibleCount for clarity in the code
14940         - When the font is changed we need to recurse through all the
14941         nodes and invalidate their sizes
14942         
14943 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14944
14945         * Application.cs: set the DialogResult to fixed when the main form is
14946         hidden or destroyed while being modal.
14947
14948 2006-05-25  Miguel de Icaza  <miguel@novell.com>
14949
14950         * Theme.cs: Use Tangoified messagebox icons. 
14951
14952         (GetSizedResourceImage): Also cope with width = 0 and do not
14953         trigger a warning in that case (0 means "give me your icon from
14954         the resouce, no special size needed).
14955
14956 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
14957
14958         * Application.cs: Leave runloop if the the main modal form is 
14959           hidden (fixes #78484)
14960
14961 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
14962
14963         * BindingContext.cs : reject null datasource in Contains() and
14964           Item[].
14965         * CurrencyManager.cs : check data_member validity when data_source
14966           is dataset. When it is late binding, the initial position is -1.
14967
14968 2006-05-24  Jackson Harper  <jackson@ximian.com>
14969
14970         * TreeNodeCollection.cs: Dont't recalculate the visible order on
14971         inserted nodes that aren't visible.  This changes the
14972         max_visible_order which confuses scrollbar settings.
14973         - Use the enumerator to get the prev node instead of duplicating
14974         code.
14975         * TreeView.cs: Use new method for setting scrollbar values
14976         - Don't set the bounds every time the scrollbar is updated
14977         - When updating below the root node use an invalidate instead of a
14978         refresh to prevent the child controls (scrollbars) from being
14979         refreshed. (UpdateBelow still needs to be reworked anyways).
14980         - Reenable SetBottom now that visible orders are set correctly,
14981         added some debug code incase we ever get bad values there again.
14982         - Set the scrollbar max to 2 less then the max value, this
14983         compensates for the max value being one above the node count, and
14984         for scrollbars adding one extra "notch".
14985         - When drawing image nodes if there is an imagelist we draw the
14986         first image in the list if the supplied image index is out of the
14987         image list's bounds.
14988         
14989 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
14990
14991         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
14992           we receive a size change from the WM (Fixes #78503)
14993
14994 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
14995
14996         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
14997           rectangle (Fixes #78501)
14998
14999 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
15000
15001         * ButtonBase.cs: 
15002           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
15003             as a bitfield.
15004           - Fixed MouseMove to no longer switch pressed state unless the left
15005             mouse button is pressed. Atsushi provided the original patch (#78485)
15006           
15007 2006-05-24  Jackson Harper  <jackson@ximian.com>
15008
15009         * ScrollBar.cs: New internal methods that allow us to change a
15010         couple values on the scrollbar (the most common case is maximum
15011         and large change) without getting multiple invalidates.
15012
15013 2006-05-24  Chris Toshok  <toshok@ximian.com>
15014
15015         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
15016         (Edit): save off the original state in oldState, and set
15017         grid.is_editing to true.
15018         (OnKeyDown): abort editing if escape is pressed.  also, call
15019         NextState if space is pressed.
15020         (OnMouseDown): call NextState.
15021         (NextState): factor out shared code from OnKeyDown and OnMouseDown
15022         here.  Also, only invalidate the row header once (on the initial
15023         is_changing switch) to save on redraws.
15024
15025 2006-05-24  Chris Toshok  <toshok@ximian.com>
15026
15027         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
15028         if the value in the cell is different than it was before.  This
15029         keeps us from triggering a layout when we move around a datarid
15030         with a highlighted cell.
15031         (Edit): suspend layout when creating/positining the text box, and
15032         resume passing false so we don't ever actually re-layout.
15033         (ReleaseHostedControl): same.
15034         (EnsureTextBox): reformat slightly, and set WordWrap to false.
15035
15036         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
15037         control-key sequences should go to the datagrid - remove that
15038         lock.  Also, modify the conditions under which we move between
15039         cells when moving the cursor within a cell, and remove the "this"
15040         and "base" from field accesses.  We weren't even consistent, given
15041         they all were in the base class.
15042
15043 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
15044
15045         * Binding.cs : (.ctor)
15046           An obvious NRE fix for BindingTest.CtorNullTest().
15047
15048 2006-05-23  Chris Toshok  <toshok@ximian.com>
15049
15050         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
15051         them between lines.  This fixes some quirks editing cells in the
15052         datagrid.
15053
15054 2006-05-23  Jackson Harper  <jackson@ximian.com>
15055
15056         * TreeView.cs: Use begin/end update when doing expand/collapse all
15057         so that we don't get flicker on the scrollbar.
15058
15059 2006-05-23  Jackson Harper  <jackson@ximian.com>
15060
15061         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
15062         treenode calculations to be independant of the painting code. To
15063         do this nodes track a visible order which is calculated by the
15064         treeview.
15065         - Call new methods for expanding/collapsing nodes.  These methods
15066         use scrollwindow so we don't have to update everything below the
15067         node.
15068         * TreeView.cs: Refactored drawing and scrolling code.  We don't
15069         need to update nodes when drawing anymore or calculate scrollbar
15070         stuff.
15071         - Added new methods for expanding/collapsing nodes. These methods
15072         use ScrollWindow so as to not have to redraw all the nodes below.
15073         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
15074         we add/remove nodes or sort.
15075         - Handle removing the selected and the top node properly.
15076
15077 2006-05-23  Chris Toshok  <toshok@ximian.com>
15078
15079         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
15080         maybe this should actually happen in the datagrid code?
15081         (EndEdit): no need to invalidate anything, given that
15082         ReleaseHostedControl causes the datagrid to relayout, which
15083         invalidates everything anyway.
15084
15085         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
15086         in SetCurrentCell).
15087         (set_SelectionBackColor): call InvalidateSelection instead of
15088         Refresh.
15089         (set_SelectionForeColor): same.
15090         (BeginEdit): Flesh this out a bit.
15091         (CancelEditing): only do any of this if we're editing/adding.
15092         (EndEdit): same.
15093         (OnMouseDown): there's no need to cancel editing here, it's done
15094         in SetCurrentCell.
15095         (SetCurrentCell): only invalidate the current row header if it's a
15096         different row than the new one.
15097         (ShiftSelection): fix this to work like MS does.
15098         (ResetSelection): factor out the invalidation of selected_rows to
15099         InvalidateSelection.
15100         (SetDataSource): cancel any editing that's going on.
15101
15102         * DataGridColumnStyle.cs
15103         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
15104         call the non-interface version.
15105
15106         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
15107         header rectangle with the clip rectangle so we don't redraw the
15108         entire header for just a small area.  Gets rid of the last flicker
15109         when horizontally scrolling.
15110         (DataGridPaintRow): same.
15111
15112 2006-05-23  Mike Kestner  <mkestner@novell.com>
15113
15114         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
15115         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
15116         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
15117         Critical bug report.
15118
15119 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15120
15121         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
15122           and this fixes #78493
15123
15124 2006-05-23  Miguel de Icaza  <miguel@novell.com>
15125
15126         * Theme.cs (GetSizedResourceImage): Scale images if the proper
15127         size is not found.  
15128         
15129         * FileDialog.cs: Do not change the background for the side bar as
15130         it wont work nicely with the theme, and also reduces the artifacts
15131         in rendering the icons (which I want to fix too).
15132
15133         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
15134         resources, not resgen resources. 
15135
15136         (PlatformDefaultHandler): Pull images using the new API.
15137
15138 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
15139
15140         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
15141           a reference to the hwnd and will not remove it unless there are
15142           no pending exposures (fixes #78341)
15143         * XplatUI.cs: Improved debug
15144
15145 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
15146
15147         * MenuAPI.cs : don't handle OnClick event when it was not the left
15148           button. Fixed bug #78487.
15149
15150 2006-05-23  Mike Kestner  <mkestner@novell.com>
15151
15152         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
15153         prefer submenus to the top menu for item lookup, to avoid popping down
15154         top-row items.
15155
15156 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
15157
15158         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
15159           Graphics.FillRectangle as the visual results are really bad (even
15160           on win). We now draw perfect arrows (and perfect shadows when the
15161           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
15162           Pen.DashPattern to draw the dots of each line.
15163
15164 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
15165
15166         * FileDialog.cs: Update the filename combobox when navigating through
15167           the ListView with the cursor keys. Fixes part 7 of bug #78446.
15168
15169 2006-05-22  Mike Kestner  <mkestner@novell.com>
15170
15171         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
15172         Fixes #78463.
15173
15174 2006-05-22  Mike Kestner  <mkestner@novell.com>
15175
15176         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
15177         requests. Fix a misspelled parameter and a copy paste exception error
15178         in Select.
15179
15180 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
15181
15182         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
15183           to get the same width/height (5/13) on X11 as the default font has on
15184           win32. This means that our DefaultFont emSize is smaller than the 
15185           the MS SWF equivalent (even thought the width/height stays the same)
15186
15187 2006-05-20  Jackson Harper  <jackson@ximian.com>
15188
15189         * MdiClient.cs:
15190         * MdiWindowManager.cs:
15191         * InternalWindowManager.cs: Make sure to use the border width from
15192         the theme.
15193
15194 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
15195
15196         * PrintDialog.cs: Implements printer details
15197
15198 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
15199
15200         * FileDialog.cs: Added focus handling for PopupButtonPanel.
15201           Fixes part 1 and 2 of bug #78446
15202
15203 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
15204
15205         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
15206           instead of sticking to the first ever calculated value
15207
15208 2006-05-19  Mike Kestner  <mkestner@novell.com>
15209
15210         * ComboBox.cs: fix mouse motion selection to use MousePosition and
15211         PointToClient, since Capture is set. Fixes #78344.
15212
15213 2006-05-19  Mike Kestner  <mkestner@novell.com>
15214
15215         * ListView.cs: match MS behavior in Details view where items are not
15216         drawn if Columns.Count == 0. 
15217         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
15218         Use a separate pen to draw the check, since changing the width affects
15219         the box as well.  Fixes #78454.
15220
15221 2006-05-18  Miguel de Icaza  <miguel@novell.com>
15222
15223         * ListView.cs: ArgumentOutOfRangeException, single versions of the
15224         exception should throw the name of the invalid argument.
15225
15226         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
15227         there are no files listed. 
15228
15229 2006-05-18  Jackson Harper  <jackson@ximian.com>
15230
15231         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
15232         up.
15233
15234 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15235
15236         * Control.cs: Brought back our old UpdateZOrder method as a private
15237           function and switched our calls from UpdateZOrder to the new one.
15238           This fixes the Paint.Net canvas disappearing bug.
15239
15240 2006-05-18  Jackson Harper  <jackson@ximian.com>
15241
15242         * Theme.cs:
15243         * ThemeWin32Classic.cs:
15244         * InternalWindowManager.cs: Move the drawing into the theme,
15245         expose everything the theme should need from the window manager.
15246
15247 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15248
15249         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
15250           from the call to NativeWindow to avoid walking up the parent chain
15251           further than needed (speeds up setting cursors and avoids setting
15252           the wrong cursor if a parent has another cursor defined)
15253         * Cursor.cs: When loading an icon as cursor, MS uses the center of
15254           the icon as hotspot, not what's contained as hotspot in the icon
15255           file. This fixes the perceived drawing offset seen with Paint.Net
15256         
15257 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
15258
15259         * XplatUIX11.cs: 
15260           - Store the calculated rectangle in Hwnd object and use it when 
15261             setting the client size
15262           - Force Toolwindows to always be type Dock, to ensure they're on top
15263
15264 2006-05-18  Mike Kestner  <mkestner@novell.com>
15265
15266         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
15267         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
15268         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
15269         Substantial refactoring to remove confusing nested classes. Coding
15270         standard and Get+Set->property refactorings.  Shift to index based
15271         highlighting in ComboListBox instead of constantly using IndexOf and
15272         Items[]. Add invalidations on resize for DropDownList to fix ugliness
15273         in FileDialog growth.  Draw borders manually since Simple mode needs
15274         to look like two independent controls.  Make listbox border
15275         conditional to DropDownStyle.  Improved OwnerDraw support.
15276
15277 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
15278
15279         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
15280         Don't set the disposed graphics to null, so we can throw the "right"
15281         exception if the graphics is reused later (added a flag to avoid 
15282         double disposing). Some behaviours are different under 2.0 and are
15283         filled under bug #78448.
15284
15285 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
15286
15287         * Control.cs: When double-buffering is enabled, we need to reset
15288           our graphics context between paint calls. Otherwise, any 
15289           transformations and other alterations on the context will 
15290           become cumulative (#77734)
15291
15292 2006-05-18  Mike Kestner  <mkestner@novell.com>
15293
15294         * ListView.cs: do focused item selection like MS on clicks. 
15295         Rework focus handling for ItemControl so LostFocus invalidates as
15296         well.
15297         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
15298         the ListView ItemControl has focus.
15299
15300 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
15301
15302         * XplatUIX11.cs: If client_window ends up being width or height zero
15303           due to border settings, move it off window inside whole_window (#78433)
15304
15305 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15306
15307         * Mime.cs: Shrink the mime file cache correctly.
15308
15309 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
15310
15311         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
15312
15313 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15314
15315         * XplatUIX11.cs (AddExpose): More sanity checks
15316
15317 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15318
15319         * XplatUIX11.cs:
15320           - AddExpose: Don't add expose ranges outside the size of our
15321             window
15322           - Cast opacity values to Int32 to avoid crashes with certain
15323             values
15324           - Added disabled code paths that protect against illegal cross-
15325             thread painting (Developers.exe)
15326
15327 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15328
15329         * ProgressBar.cs: Invalidate the control when it's resized
15330           since block size is based on control size. (#78388)
15331
15332 2006-05-16  Miguel de Icaza  <miguel@novell.com>
15333
15334         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
15335         of setting the incoming argument to the "reset" value, we set the
15336         this.datamember to string.empty (before we were invalidating the
15337         incoming data).   
15338
15339         Fixes 78420
15340
15341 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15342
15343         * Form.cs: Only apply transparency settings after the form
15344           is created. (Fixes #77800)
15345
15346 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
15347
15348         * ApplicationContext.cs: Grab the HandleDestroyed event so
15349           we know when to fire OnMainFormClosed 
15350
15351 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15352
15353         * Application.cs: Introduced sub-class to allow tracking of
15354           threads and centralized triggering of the event mess for
15355           ThreadExit, AppExit, etc..  (#76156)
15356
15357 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
15358
15359         * MimeIcon.cs:
15360           - Do not return a null icon index value for a mime subclass.
15361             Instead try the main mime type class too.
15362           - Seems that some newer distributions don't have a link to some
15363             gnome default icons anymore. So check the default gnome dir too.
15364           
15365
15366 2006-05-16  Jackson Harper  <jackson@ximian.com>
15367
15368         * MdiClient.cs: Don't paint the parent background image if we have
15369         our own background image.
15370
15371 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
15372
15373         * Control.cs:
15374           - PerformLayout: Do not shrink space filled by DockStyle.Fill
15375             controls, all filled controls are supposed to overlap (#78080)
15376           - UpdateZOrder is supposed to update the control's z-order in the
15377             parent's z-order chain. Fixed to behave like that
15378           - BringToFront: Removed obsolete code
15379           - SendToBack: Simplyfied
15380           - SetChildIndex: Trigger layout calculations when Z-order changes
15381             since layout is done by z-order
15382
15383 2006-05-16  Chris Toshok  <toshok@ximian.com>
15384
15385         [ fixes bug #78410 ]
15386         * DataGrid.cs (set_AlternatingBackColor): use
15387         grid_drawing.InvalidateCells instead of Refresh().
15388         (set_BackColor): call grid_drawing.InvalidateCells.
15389         (set_BackgroundColor): use Invalidate instead of Refresh.
15390
15391         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
15392         invalidate the cell area.
15393
15394 2006-05-15  Chris Toshok  <toshok@ximian.com>
15395
15396         [ fixes bug #78011 ]
15397         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
15398         on to DataGridPaintRow.
15399         (DataGridPaintRow): take a clip argument, and only draw the cells
15400         which intersect it.  same with the not_usedarea.
15401
15402         * Theme.cs (DataGridPaintRow) add @clip parameter.
15403
15404         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
15405         XplatUI.ScrollWindow.
15406         (ScrollToRow): same.
15407
15408         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
15409         with last column which was causing a gray swath to appear with the
15410         XplatUI.ScrollWindow code.
15411
15412 2006-05-15  Chris Toshok  <toshok@ximian.com>
15413
15414         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
15415         use XplatUI.ScrollWindow.
15416         (VerticalScrollEvent): use XplatUI.ScrollWindow.
15417
15418 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
15419
15420         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
15421
15422 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15423
15424         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
15425           file since there are no equivalent X11 cursors
15426
15427 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15428
15429         * MonthCalendar.cs : DateTimePicker should reflect selected date
15430           on mouse*up*, not mouse*down*. Fixed originally reported part of
15431           bug #76474.
15432
15433 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15434
15435         * TabControl.cs : When argument index is equal or more than tab
15436           count, just ignore. Fixed bug #78395.
15437
15438 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
15439
15440         * Control.cs: Dispose all child controls when control is diposed (#78394)
15441
15442 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15443
15444         * ColorDialog.cs: Finally it is possible to select the color with
15445           the text boxes
15446
15447 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15448
15449         * PrintDialog.cs: Fix typo
15450
15451 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
15452
15453         * PrintDialog.cs: PrintDialog is not resizable
15454         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
15455           color. Made some ToolBar drawing methods protected virtual.
15456
15457 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
15458
15459         * PrintDialog.cs: Implementation of the PrintDialog
15460
15461 2006-05-12  Chris Toshok  <toshok@ximian.com>
15462
15463         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
15464         thumb, instead use MoveThumb.  This has the side effect of making
15465         most of the other thumb moving machinery use MoveThumb as well.
15466         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
15467         need to actually invalidate the rectangle where the new thumb will
15468         go.
15469         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
15470         We force an Update() after, so it's not as fast as it could be,
15471         but at least there's zero flicker and no droppings.
15472         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
15473         (UpdateThumbPos): add another argument (dirty), which says whether
15474         or not to calculate/add dirty regions which we later invalidate.
15475         For cases where we know we're going to use MoveThumb, we pass
15476         false for this.  Otherwise, pass true.
15477
15478 2006-05-12  Jackson Harper  <jackson@ximian.com>
15479
15480         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
15481         the status bar.
15482         
15483 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
15484
15485         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
15486           and GetClipRegion methods and UserClipWontExposeParent property.
15487         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
15488           overriding UserClipWontExposeParent property, setting to false, since
15489           Win32 handles the required expose messages to draw our clipped parent
15490           areas internally
15491         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
15492           PaintEventStart to set the user clip region if set.
15493         * Control.cs: 
15494           - Now internally tracking the Region for the control since we need to
15495             store it if the handle is not yet created and only set it when it
15496             becomes created. Before setting the region forced handle creation
15497           - Added code to draw the parents underneath a user-clipped region
15498         * Hwnd.cs: Added UserClip property
15499
15500 2006-05-12  Chris Toshok  <toshok@ximian.com>
15501
15502         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
15503         (set_Maximum): same.
15504         (set_Minimum): same.
15505         (set_SmallChange): same.
15506         (OnMouseUpSB): remove the call to refresh when releasing the
15507         thumb.  We shouldn't need it.
15508         
15509 2006-05-12  Miguel de Icaza  <miguel@novell.com>
15510
15511         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
15512         AutoSize set to None, we do not need to relayout everything, we
15513         just need to invalidate the current region.
15514
15515         (Draw): Do not draw the entire ClientArea, just redraw the
15516         clip area being passed.
15517
15518         * MdiClient.cs: Make MdiClient constructor with the Form argument
15519         internal. 
15520
15521 2006-05-12  Jackson Harper  <jackson@ximian.com>
15522
15523         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
15524         parents background image,  but strangely not their own.
15525         - (DrawStatusBarPanel): Take into account horizontal alignment
15526         when drawing the strings and icons.
15527
15528 2006-05-12  Mike Kestner  <mkestner@novell.com>
15529
15530         * ListBox.cs: avoid invalidations for focus when the collection is
15531         empty. 
15532
15533 2006-05-12  Chris Toshok  <toshok@ximian.com>
15534
15535         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
15536         invalidate the entire thumb area.  Call InvalidateDirty which
15537         limits the redraw to the thumb itself and surrounding pixels.
15538
15539         * XplatUIX11.cs (ScrollWindow): optimize copying.
15540         
15541 2006-05-12  Chris Toshok  <toshok@ximian.com>
15542
15543         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
15544         Figure out the positioning/layout in a single pass instead of
15545         multiple recursive invocations.  Speeds up the initial display of
15546         the data grid.  Also, make many things private that were
15547         originally public but unused outside this class.
15548
15549 2006-05-11  Jackson Harper  <jackson@ximian.com>
15550
15551         * MdiClient.cs: Improved layout code.
15552
15553 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
15554
15555         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
15556           not SelectedObject.
15557
15558 2006-05-11  Chris Toshok  <toshok@ximian.com>
15559
15560         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
15561         union of that will always be {0,0,width,height}.
15562
15563 2006-05-11  Jackson Harper  <jackson@ximian.com>
15564
15565         * Form.cs: Match MS's DefaultSize for forms (they must have
15566         changed the size in sp2).
15567
15568 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15569
15570         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
15571
15572 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
15573
15574         * TextControl.cs : Fixed bug #78109. This incorrect position
15575           comparison caused crash on automatic line split.
15576         * TextBoxBase.cs : reduce duplicate code.
15577
15578 2006-05-10  Jackson Harper  <jackson@ximian.com>
15579
15580         * MdiClient.cs: Active form is only sent to the back when using
15581         the Next form functionality, when a form is clicked the current
15582         active shouldn't be sent to the back.
15583         - Layout the mdi windows when the container is first made visible.
15584         * Form.cs: Give the MdiClient a ref to the containing form when we
15585         create it.
15586         
15587 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15588
15589         * LinkLabel.cs : link_font could be uninitialized, so populate one
15590           before actual use. Fixed bug #78340.
15591
15592 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
15593
15594         * XplatUIX11.cs : clipboard format native value is IntPtr.
15595           Fixed bug #78283.
15596
15597 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15598
15599         * Control.cs: 
15600           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
15601             which is passed up the parent chain by DefWndProc
15602           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
15603             to DefWndProc (#77956)
15604         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
15605
15606 2006-05-10  Jackson Harper  <jackson@ximian.com>
15607
15608         * MdiClient.cs: We need to remove the controls from the mdi
15609         collection, when we close the window.
15610         * MdiWindowManager.cs: Special handling of closing mdi windows.
15611         * InternalWindowManager.cs: Make the close method virtual so the
15612         mdi window manager can handle it specially.
15613
15614 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
15615
15616         * DataGrid.cs:
15617           - Recalculate grid when the data source has changed
15618           - Matches styles provided by user from all data sources types
15619         * DataGridTableStyle.cs: For columns that provided by the user set the
15620         with the preferred value is there was unassigned.
15621         * CurrencyManager.cs: throw OnItemChanged event
15622
15623 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
15624
15625         * PictureBox.cs: Don't animate until handle is created. Start animation
15626           when handle is created.
15627
15628 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15629
15630         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
15631           current codebase.
15632         * XEventQueue.cs: We don't need to provide the extra info
15633
15634 2006-05-10  Jackson Harper  <jackson@ximian.com>
15635
15636         * MdiClient.cs: If the mdi clients parent form has a background
15637         image set, we draw that background image for the mdi area's
15638         background.
15639
15640 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
15641
15642         * TextBoxBase.cs: Set IBeam cursor (#78347)
15643
15644 2006-05-10  Mike Kestner  <mkestner@novell.com>
15645
15646         * ToolBar.cs: fix some text padding issues with ButtonSize
15647         calculation. Update the default size to match MS documentation.
15648         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
15649         button size. Fixes #78296.
15650
15651 2006-05-10  Mike Kestner  <mkestner@novell.com>
15652
15653         * ListBox.cs: use is_visible for scrollbar positioning in case the
15654         control isn't on screen yet.  Fix off by one with Right vs Width
15655         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
15656         
15657 2006-05-10  Jackson Harper  <jackson@ximian.com>
15658
15659         * X11Dnd.cs: Drop to a control with another control on top of it.
15660         * ToolBar.cs: Work on a copy of the buttons list, so that it can
15661         be modified in click handlers. TODO: Look for similar problems in
15662         other controls.
15663
15664 2006-05-09  Jackson Harper  <jackson@ximian.com>
15665
15666         * Form.cs: Window managers need the old window state when setting
15667         window state now.
15668         * InternalWindowManager.cs: Allow the base mdi window manager to
15669         handle more of the MDI only stuff (like maximize buttons).
15670         * MdiWindowManager.cs: Fix some snafus in changing the window
15671         state.  Add all the menu functionality, for both popup and
15672         maximized menus.
15673         * MdiClient.cs: When a new form is selected the currently
15674         activated form is sent to the back, this matches MS.
15675         - Implement a new method to activate the next mdi child window.
15676
15677 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
15678
15679         * Control.cs: 
15680           - Added new InternalCapture method to allow controls to prevent
15681             the capture behaviour on the click handlers
15682           - Switched to use InternalCapture
15683         * ComboBox.cs:
15684           - Using InternalCapture to prevent mouse captures from being released
15685             on mouse button release (Fixes #78100)
15686         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
15687           returns Form borders if a caption is present. (Fixes #78310)
15688
15689 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
15690
15691         * TreeNode.cs: Changed serialization .ctor to not require every field
15692           to be present. (#78265)
15693         * OwnerDrawPropertyBag.cs: Added serialization .ctor
15694
15695 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
15696
15697         * MimeIcon.cs: for is faster than foreach for strings.
15698
15699 2006-05-05  Mike Kestner  <mkestner@novell.com>
15700
15701         * CheckedListBox.cs: update check handling code to not use selected.
15702         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
15703         behavior for visual feedback, motion response, shift/ctrl handling,
15704         and properly deal with all 4 selection modes. Updates to bounds
15705         handling logic.  Add scroll wheel support. [Fixes #77842]
15706
15707 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
15708
15709         * ListView.cs:
15710           - Moved adding of Implicit controls into .ctor. That way, subsequent
15711             creation of the controls will not cause them to think they are 
15712             toplevel windows (fixes #78200 header problem)
15713           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
15714           - Switched visibility setting of header control to use internal field
15715             to avoid triggering handle creation
15716           - Now checking if handle is created before causing a refresh when items
15717             are added (This makes us now match handle creation time with MS)
15718         * Splitter.cs: Removed loading of private splitter cursor, switched to
15719           Cursors version now that that is loading the right ones
15720         * Cursors.cs: Load proper splitter cursors from resources
15721         * Cursor.cs: Added second method of loading resource cursors for the 
15722           VS.Net users amongst us
15723
15724 2006-05-05  Mike Kestner  <mkestner@novell.com>
15725
15726         * ListView.cs: give header_control a minimum size based on the
15727         ListView size.
15728
15729 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
15730
15731         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
15732           window seems to do that with metacity, so set that type. (#78120)
15733
15734 2006-05-05  Mike Kestner  <mkestner@novell.com>
15735
15736         * ListViewItem.cs: fix Details mode checkbox layout bug.
15737         * ThemeWin32Classic.cs: draw a ListView column header for unused space
15738         at the end of the header, if it exists. [Fixes for #78200]
15739
15740 2006-05-04  Jackson Harper  <jackson@ximian.com>
15741
15742         * MdiClient.cs: Add a helper property to get the container form.
15743         * MdiWindowManager.cs: We have to make sure to use the menu origin
15744         when drawing the icons and buttons, this fixes maximized window
15745         icons/buttons on win32.
15746         * InternalWindowManager.cs: Reset the restore captions when a
15747         window goes from Maximized to Minimized and vice versa. Move the
15748         DrawMaximizedButtons into the MdiWindowManager source, tool
15749         windows can't be maximized. NOTE: This could use a little
15750         refactoring if time ever permits.
15751         
15752 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15753
15754         * TextBox.cs: Add MWFCategoryAttributes
15755         * TextBoxBase.cs: Add MWFCategoryAttributes
15756         * Form.cs: Add MWFCategoryAttributes
15757
15758 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15759
15760         * Control.cs: Add MWFCategoryAttributes
15761         * ScrollableControl.cs: Add MWFCategoryAttributes
15762
15763 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
15764
15765         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
15766           Divider is true. Fix a little glitch in PropertyToolBar
15767           drawing code
15768
15769 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
15770
15771         * Control.cs:
15772           - Dispose: Call base.Dispose, this causes the disposed event
15773             to be fired (and probably other, more important stuff)
15774           - SetVisibleCore: Set is_visible to true after creating the
15775             window so that the window still gets created invisible (if
15776             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
15777             to generate a WM_ACTIVE message
15778         * Form.cs: Call Dispose when we want to destroy the window, instead of
15779           just destroying the handle (Dispose will do that for us)
15780         * XplatUIX11.cs:
15781           - RootWindow also needs a queue, so we can properly process the
15782             property change events from RootWindow (like Activate)
15783           - Generatic synthetic WM_ACTIVE message when the active window is
15784             being destroyed
15785
15786 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
15787
15788         * LinkLabel.cs: Trigger a recalc of our label dimensions when
15789           bounds are changed
15790
15791 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
15792
15793         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
15794           for determining width and height (image might not be assigned if
15795           we're drawing an imagelist)
15796
15797 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
15798
15799         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
15800         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
15801           height from system
15802         * Theme.cs: No longer returns hardcoded menu height, instead calls
15803           new driver method
15804         * Form.cs (OnLoad): Scaling happens before triggering Load events 
15805           on MS (# 78257)
15806
15807 2006-05-01  Mike Kestner  <mkestner@novell.com>
15808
15809         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
15810
15811 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
15812
15813         * TextBoxBase.cs: Removed Fixme
15814         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
15815
15816 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
15817
15818         * XplatUIX11.cs:
15819           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
15820             the rectangle relative to the parent, considering borders. We
15821             don't really want that.
15822           - ScrollWindow: Fixed warning to be more understandable
15823         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
15824           scrollbars and scroll only the visible area
15825         * RichTextBox.cs: Removed debug output
15826
15827 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
15828
15829         * NumericUpDown.cs (Text): Just use base
15830         * UpDownBase.cs: Ensure txtView is created before using it
15831
15832 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
15833
15834         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
15835           casting to IntPtr to avoid 64bit overflow errors
15836
15837 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
15838
15839         * Control.cs:
15840           - AllowDrop: Don't force handle creation.
15841           - CreateHandle: Added call to tell driver if we're allowed to drop
15842
15843 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
15844
15845         * FileDialog.cs: Remember the last directory not only for the
15846           current instance but also for new FileDialog instances.
15847
15848 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
15849         
15850         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
15851           broke sending async messages
15852
15853 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
15854
15855         * XplatUIX11.cs:
15856           - ScrollWindow: Fixed method. We finally generate expose events again
15857             for scrolled areas. This was causing 'garbage' when scrolling
15858             textbox and other controls that used ScrollWindow
15859           - Switched from using the regular queue for paint events to the MS 
15860             model of 'generating' paint events when the queue is empty.
15861             We use the new XQueueEvent.Paint subclass to store which windows
15862             need painting.
15863           - AddExpose now takes the x/y/width/height of the exposed area
15864             and inserts the window into the paint queue if not already there
15865           - InvalidateWholeWindow: Switched to use new AddExpose method
15866           - UpdateMessageQueue: Added which queue to monitor for paint events
15867           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
15868             the unlikely case nothing above handles it. We reset the expose
15869             pending states to get them off the queue.
15870           - GetMessage: Now pulls a paint event if no other events are in the
15871             queue
15872           - Invalidate: Switched to new AddExpose method
15873           - PeekMessage: Updated to understand pending paint events
15874           - UpdateWindow: Fixed logic bug. We were only updating if the window
15875             didn't need updating. Also switched to sending WM_PAINT directly,
15876             like MS does.
15877         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
15878           and random access Remove(). The random access is needed to handle
15879           UpdateWindow() where a WM_PAINT is sent directly without accessing
15880           the queue.
15881         * ScrollBar.cs: Added Update() calls to cause immediate updates to
15882           allow for better feedback when scrolling. Scrollbars are small and
15883           the immediate update should make it 'feel' more responsive without
15884           slowing things down. ScrollBar still needs it's invaliate logic
15885           updated to not always invalidate the whole bar on certain changes.
15886
15887 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15888
15889         * Control.cs:
15890         (BackColor): if the control does not support a transparent background,
15891         return the default backcolor when the parent backcolor is transparent.
15892
15893 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
15894
15895         * Application.cs: Updated to new StartLoop/GetMessage API
15896         * RichTextBox.cs: Provide some output on RTF parsing errors
15897         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
15898           new queue_id argument to GetMessage and PeekMessage to allow faster
15899           handling of per-thread queues in drivers.
15900         * Hwnd.cs: Added Queue tracking and property
15901         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
15902         * XEventQueue.cs: Added thread trackingA
15903         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
15904         * XplatUIX11.cs:
15905           - Implemented new per-thread queue
15906           - GetMessage: Fixed return/break behaviour on several cases. We were
15907             returning stale messages in some cases, instead of just processing
15908             the next message
15909
15910 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
15911
15912         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
15913
15914 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
15915
15916         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
15917           fixed off-by-one comparisons between Width/Height and Right/Bottom.
15918
15919 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
15920
15921         * PropertyGridView.cs: Fix drop down width.
15922
15923 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
15924
15925         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
15926           a mess in DrawToolBar, so I removed one of them.
15927
15928 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
15929
15930         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
15931           needed (clip). Otherwise we get artifacts.
15932
15933 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
15934
15935         * FixedSizeTextBox.cs: Added constructor to allow specifying which
15936           dimension is fixed
15937         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
15938           and switched FixedSizeTextBox to only be fixed vertical (#78116)
15939         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
15940           if it matches the scale base font (avoids unneeded scaling)
15941
15942 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
15943
15944         * X11DesktopColors.cs: One gtk_init_check should be enough
15945
15946 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
15947
15948         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
15949           match MS behaviour
15950
15951 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
15952
15953         * TextBoxBase.cs: 
15954           - Generate OnTextChanged for Backspace even if we're only deleting
15955             the current selection
15956           - When setting the Text property, only select all text if the
15957             control does not have focus when it is being set. Otherwise
15958             just place the cursor at the beginning of the control
15959
15960 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
15961
15962         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
15963           Added a little helper to draw PropertyGrid ToolBar with a different
15964           border and a different BackColor.
15965         * PropertyGrid.cs: Some background parts didn't get painted with the
15966           correct background color. Added a class that helps us to draw the
15967           correct border for PropertyGridView and a class that helps us to
15968           draw ToolBars with a different backcolor
15969         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
15970
15971 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
15972
15973         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
15974         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
15975
15976 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
15977
15978         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
15979           into the palette entries. Also, since we're working on a copy
15980           we needed to copy the palette back onto the bitmap.
15981         * Cursor.cs: Same fix as XplatUIWin32.cs.
15982
15983 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
15984
15985         * ImageListStreamer.cs: Need to read the var (or we're off)
15986
15987 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
15988
15989         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
15990           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
15991           TextBoxBase.cs: Unused var fixes
15992         * AxHost.cs: Small 2.0 fix
15993         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
15994           as it seems that is what at least Metacity expects. This will make
15995           icons show up on 64bit platforms. We still have some 64bit size
15996           issues, though, since the startup app window size still won't match.
15997
15998 2006-04-25  Mike Kestner  <mkestner@novell.com>
15999
16000         * *.cs: cleanup newly reported exception var unused warnings.
16001
16002 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16003
16004         * ThemeWin32Classic.cs: Button image alignment now matches exactly
16005           ms
16006
16007 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16008
16009         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
16010           image. The image position is always the same, no matter if the
16011           button is pressed or not.
16012
16013 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
16014
16015         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
16016           selection and set the correct filename for SaveFileDialog.
16017           Patch by Emery Conrad.
16018
16019 2006-04-24  Mike Kestner  <mkestner@novell.com>
16020
16021         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
16022         check for item.X outside the ClientRect instead of item.Y. Fixes
16023         #78151.
16024
16025 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16026
16027         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
16028         trust that value blindly and do some sanity check. Fixes bug #77814.
16029
16030 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16031
16032         * ImageListStreamer.cs: save the mask as a 1bpp image.
16033
16034 2006-04-21  Mike Kestner  <mkestner@novell.com>
16035
16036         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
16037         pass Checked and Indeterminate to the Theme Engine. Improve
16038         encapsulation with ListBox.
16039         * ListBox.cs: Keep a StringFormat instead of calculating it every item
16040         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
16041         nested types.  Move all CheckState functionality to CheckedListBox.
16042         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
16043         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
16044         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
16045         single base list. Fix scrollbar sizing and placement to mirror MS.
16046         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
16047         used.
16048         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
16049         for CheckedListBox by using new DrawItemState info.  Center the
16050         checkboxes on the items. Use new StringFormat property.
16051
16052 2006-04-18  Jackson Harper  <jackson@ximian.com>
16053
16054         * Form.cs: MdiChildren don't do default locations the same way as
16055         regular forms.  This prevents a crash when trying to position the
16056         mdi windows.
16057
16058 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
16059
16060         * PropertyGridTextBox.cs: Formatting, copyright
16061         * PropertiesTab.cs: Formatting
16062         * PropertyGrid.cs: Formatting
16063         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
16064           click toggling of values
16065           
16066 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
16067
16068         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
16069         * Control.cs (.ctor): verify_thread_handle is static, don't reset
16070           every time a control is created
16071         * Application.cs: Removed obsolete EnableRTLMirroring method
16072
16073 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
16074
16075         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
16076         SelectedIndex to -1. Fixes bug #78121.
16077
16078 2006-04-17  Jackson Harper  <jackson@ximian.com>
16079
16080         * Binding.cs: Handle null values for Current and BindingContext.
16081         This occurs when binding is a little delayed.
16082         * CurrencyManager.cs: return null for Current when there are no
16083         items in the list.
16084         - Hookup to the listchanged event on the DataView and update
16085         bindings when the list is changed.  This fixes late binding of
16086         controls.
16087
16088 2006-04-17  Jackson Harper  <jackson@ximian.com>
16089
16090         * X11Dnd.cs:
16091         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
16092         Ringenbach.
16093
16094 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
16095
16096         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
16097           place
16098         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
16099           with the correct ButtonState
16100
16101 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
16102
16103         * XplatUIX11.cs: Improved distinguishing between window types to
16104           tell the WM a type closer to what the app wants (Fixes #78107)
16105
16106 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16107
16108         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
16109           GrabHandle
16110
16111 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
16112
16113         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
16114           drawing code to reflect the size grip changes
16115
16116 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16117
16118         * ImageListStreamer.cs: fix handling of the mask that follows the main
16119         bitmap when deserializing and serialize it properly. The generated mask
16120         should better be a 1bpp image, but I'll do that later.
16121
16122 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16123
16124         * FileDialog.cs: Show something in the DirComboBox on *nix if the
16125           path doesn't fit into some of our Current.Places
16126
16127 2006-04-13  Jackson Harper  <jackson@ximian.com>
16128
16129         * ComboBox.cs: Use borders instead of drawing our own decorations,
16130         try to obey correct rules for heights.
16131         * Theme.cs:
16132         * ThemeNice.cs:
16133         * ThemeClearLooks.cs:
16134         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
16135         this is now handled by borders.
16136         - Remove unused DrawListBoxDecorationSize method.
16137         
16138 2006-04-13  Mike Kestner  <mkestner@novell.com>
16139
16140         * MenuAPI.cs: null guarding for the disbled click check fixes crash
16141         reported by Alex.
16142
16143 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
16144
16145         * ThemeWin32Classic.cs: 
16146           - Fixed CPDrawStringDisabled
16147           - Corrected drawing of disabled menu items
16148           - Fixed drawing of disabled radio buttons (bug #78095)
16149           - Draw check in a disabled CheckBox with color ControlDark 
16150
16151 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16152
16153         * Form.cs: Use the provided width when calculating the menu size;
16154           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
16155           and ClientSize.Width won't be updated yet
16156         * Application.cs: Use Visible instead of Show() to make form visible,
16157           this way we create the handle later and menusize is considered
16158
16159 2006-04-12  Mike Kestner  <mkestner@novell.com>
16160
16161         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
16162         reporting.
16163
16164 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16165
16166         * TextBox.cs: Implemented context menu
16167
16168 2006-04-12  Mike Kestner  <mkestner@novell.com>
16169
16170         * ListView.cs: implement box selection. fixes #77838.
16171         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
16172
16173 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16174
16175         * XplatUIX11.cs: Added setting of window type when transient window
16176           is created (metacity would move it otherwise)
16177         * X11Structs.cs: Added WINDOW_TYPE atoms
16178         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
16179           background (the control is Opaque but still wants transparent
16180           backgrounds)
16181
16182 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16183
16184         * Control.cs: Added OnPaintBackgroundInternal to allow controls
16185           that set Opaque but don't mean it (like all ButtonBase-derived
16186           controls) to still draw their background
16187         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
16188           the background
16189
16190 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
16191
16192         * Control.cs (PaintControlBackground): Set the graphics object
16193           on our PaintEvent to null to prevent it from being disposed
16194           when the PaintEvent gets disposed
16195
16196 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
16197
16198         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
16199         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
16200
16201 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
16202
16203         * Control.cs: 
16204           - Added transparency check to BackColor property. Transparent
16205             backgrounds are only allowed if the control styles permit it
16206           - Added recursive painting of parent control background and
16207             foreground if a control with a transparent backcolor is drawn
16208             (Thanks to Tim Ringenback for providing his 'hack' as a base
16209              for this patch) Fixes #77985 and #78026.
16210           - Added Opaque style check before calling OnPaintBackground, no
16211             need to draw the background if the control is opaque
16212           - Removed ControlAccessibleObject owner variable (inherited from
16213             base, no need to define again)
16214           - Added some documentation links explaining the drawing events
16215             and styles
16216
16217 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16218
16219         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
16220           that the affected control is the located at the left border of our
16221           parent (Fixes #77936)
16222
16223 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16224
16225         * TextBoxBase.cs: When rendering disabled or readonly controls,
16226           draw the background with 'Control' instead of 'Window' color as
16227           long as the user hasn't specifically set a color
16228
16229 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
16230
16231         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
16232           since that won't be updated if the user types text (only if it's
16233           programatically set)
16234
16235 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16236
16237         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
16238           layout changes do to app-triggered resizes will have the proper
16239           display rectangle for layout
16240
16241 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
16242
16243         * ThemeWin32Classic.cs:
16244           - Make use of the SystemBrushes and SystemPens wherever possible
16245           - Corrected some highlight colors
16246           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
16247             drawing
16248         * Theme.cs: Added Empty field to CPColor struct
16249
16250 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
16251
16252         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
16253           is displayed when calculating the display rectangle. Thanks to Mike
16254           for teaching me the err of my ways.
16255
16256 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
16257
16258         * ScrollableControl.cs:
16259           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
16260             (instead of 0,0) and we now return the real width/height instead of
16261             just the clientrectangle, adjusted for padding. The rectangle is
16262             now cached and created by the new CalculateDisplayRectangle method.
16263           - Created new CalculateDisplayRectange method, which basically does
16264             what get_DisplayRectangle() did originally, but now using the 
16265             right edge instead of DisplayRectangle to determine the size of
16266             our scrollbars
16267           - get_Canvas(): Fixed it to properly calculate canvas for 
16268             right/bottom controls which seem to be placed to the right/bottom
16269             of any controls that have a fixed location
16270           - Removed TODO that's taken care of
16271           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
16272             and SetDisplayRectLocation according to new MSDN2 docs
16273           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
16274             event when that is called, this is added for compatibility
16275           - ScrollControlIntoView(): Implemented.
16276           - Switched scrollbars to be implicit, they shouldn't be selectable
16277         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
16278           call it when the active control is set/changed
16279         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
16280         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
16281           implicit_control variable (used for native Win32 message generation)
16282         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
16283           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
16284         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
16285         * XplatUIStructs.cs: Added ScrollBarCommands enum
16286
16287 2006-04-10  Jackson Harper  <jackson@ximian.com>
16288
16289         * ButtonBase.cs:
16290         * CheckedListBox.cs:
16291         * ComboBox.cs:
16292         * DataGrid.cs:
16293         * DataGridView.cs:
16294         * Form.cs:
16295         * GroupBox.cs:
16296         * ListBox.cs:
16297         * PrintPreviewControl.cs:
16298         * ProgressBar.cs:
16299         * PropertyGrid.cs:
16300         * Splitter.cs:
16301         * StatusBar.cs:
16302         * TrackBar.cs:
16303         * UpDownBase.cs: Fixup base event overrides.
16304         
16305 2006-04-06  Mike Kestner  <mkestner@novell.com>
16306
16307         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
16308         all user-initiated value changes to min <= value <= max-thumbsz+1.
16309         (set_Value): check for vert/horiz when calculating new thumb position.
16310         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
16311         like MS does.
16312         (OnMouseMoveSB): refactor the thumb dragging code and refine
16313         invalidation logic to reduce flicker.
16314         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
16315         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
16316         (UpdateThumbPosition): small code readability cleanup
16317
16318 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
16319
16320         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
16321           different
16322
16323 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16324
16325         * ThemeNice.cs: Use a better graphics effect when a button is pressed
16326
16327 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
16328
16329         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
16330         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
16331           This dramatically reduces the number of Pen.Dispose calls. 
16332           Where possible call ResPool methods only once instead of calling it
16333           over and over again (for example for the same color).
16334
16335 2006-04-06  Mike Kestner  <mkestner@novell.com>
16336
16337         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
16338         Also remove an unused private field on the collection. Fixes #77972.
16339
16340 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16341
16342         * ThemeNice.cs: Added ToolBar drawing code
16343
16344 2006-04-06  Mike Kestner  <mkestner@novell.com>
16345
16346         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
16347         I'm assuming that means we need to look up the toplevel for the
16348         provided control. Fixes the crash trace in #77911 but exposes another
16349         crash in some strange reflection usage in NDocGui.
16350
16351 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
16352
16353         * ThemeNice.cs: Gave it a little silver touch and added Images
16354           method
16355         * FontDialog.cs: FontDialog is not resizable
16356         * FileDialg.cs: Added SizeGripStyle.Show
16357
16358 2006-04-05  Jackson Harper  <jackson@ximian.com>
16359
16360         * KeyboardLayouts.cs: Remove warning.
16361
16362 2006-04-05  Jackson Harper  <jackson@ximian.com>
16363
16364         * Control.cs: Enable OnPaintInternal so we can use it for drawing
16365         all of our controls instead of Paint +=.
16366         * ListBox.cs:
16367         * ListView.cs:
16368         * MenuAPI.cs:
16369         * MessageBox.cs:
16370         * NotifyIcon.cs:
16371         * ProgressBar.cs:
16372         * ScrollBar.cs:
16373         * Splitter.cs:
16374         * StatusBar.cs:
16375         * TabControl.cs:
16376         * TextBoxBase.cs:
16377         * ToolBar.cs:
16378         * TrackBar.cs:
16379         * UpDownBase.cs:
16380         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
16381         use OnPaintInternal. Remove Width/Height and Visible checks in
16382         paint handler, this is done at a higher level now.
16383         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
16384         * PaintEventArgs.cs: Add a handled flag so controls that don't
16385         want anymore painting after OnPaintInternal can make sure OnPaint
16386         isn't called.
16387
16388 2006-04-05  Mike Kestner  <mkestner@novell.com>
16389
16390         * Form.cs: fix the menu WndProc hacks to respect the native enabled
16391         state of the form, so that we don't process events when Modal dialogs
16392         are up. Fixes #77922.
16393
16394 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
16395
16396         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
16397           checking is done.
16398
16399 2006-04-05  Mike Kestner  <mkestner@novell.com>
16400
16401         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
16402
16403 2006-04-05  Mike Kestner  <mkestner@novell.com>
16404
16405         * ListView.cs (HeaderMouseMove): null guarding for the over column
16406         when setting up the drag_to_index.  Fixes #78015.
16407
16408 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
16409
16410         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
16411           in the taskbar. Transient windows seem to accomplish that.
16412
16413 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
16414
16415         * Form.cs:
16416           - Re-enabled CreateParams.X/Y code for FormStartPosition
16417           - Added code for manual placement when creating the Control
16418           - Incomplete patch to treat MDI forms differently when
16419             setting the ClientSizeCore. (Still need to figure out handling
16420             x/y coords there)
16421         * XplatUIX11.cs:
16422           - When we're explicitly setting the X/Y position of a non-Child
16423             window, let the WM know. Metacity really wants this.
16424
16425 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16426
16427         * ThemeNice.cs: Added CPDrawButton
16428
16429 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16430
16431         * ThemeNice.cs: Changed the color for focused buttons and activated
16432           the arrows for small scroll buttons.
16433
16434 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
16435
16436         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
16437           anymore. Changed some method modifiers to protected (virtual)
16438         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
16439           changes
16440         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
16441           Updated drawing of menus, buttons and progressbars; added
16442           CPDrawBorder3D 
16443
16444 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16445
16446         * ImageListStreamer.cs: implemented serialization/deserialization
16447         of the images.
16448
16449 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
16450
16451         * ThemeWin32Classic.cs:
16452           - Removed all the DrawFrameControl stuff; CPDrawButton,
16453             CPDrawCheckBox and CPDrawRadioButton are now handled directly
16454             inside the methods
16455           - Updated and corrected the drawing code of CPDrawButton,
16456             CPDrawCheckBox and CPDrawRadioButton to better match ms
16457           - Updated theme checkbox and radiobutton code to use the CP*
16458             methods
16459
16460 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16461
16462         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
16463           bug is fixed
16464
16465 2006-03-31  Jackson Harper  <jackson@ximian.com>
16466
16467         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
16468         sometimes.
16469         * UpDownBase.cs: Don't CreateGraphics manually, use a
16470         Refresh. Ideally we would invalidate the correct areas here.
16471
16472 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
16473
16474         * XplatUIX11.cs: 
16475           - We now track the mapping state of windows. If a window (or 
16476             one of it's parents) is not mapped we no longer permit
16477             WM_PAINT messages to be generated since we'd otherwise get 
16478             lots of BadMatch X errors. Jackson did all the work figuring
16479             out the problem.
16480           - Destroying the caret if the window it's contained in is 
16481             destroyed. Can't use regular DestroyCaret method since it
16482             might fall into a drawing function (trying to remove the
16483             caret) and with that generate new BadMatch errors. Again,
16484             Jackson tracked this down.
16485           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
16486             make sure we send the messages to all windows. (The old code
16487             would send the WM_DESTROY to the window, and then all child
16488             windows would be 'gone' because the WM_DESTROY handle lookup
16489             would no longer find the destroyed window)
16490         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
16491         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
16492
16493 2006-03-31  Jackson Harper  <jackson@ximian.com>
16494
16495         * ScrollableControl.cs: Dont recalc if we are not visible.
16496
16497 2006-03-31  Mike Kestner  <mkestner@novell.com>
16498
16499         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
16500         the visibility branch.
16501
16502 2006-03-31  Jackson Harper  <jackson@ximian.com>
16503
16504         * ScrollBar.cs: Cap values when incrementing/decrementing.
16505
16506 2006-03-31  Mike Kestner  <mkestner@novell.com>
16507
16508         * MenuAPI.cs: setup menu.tracker for popup/context menus.
16509         * ToolTip.cs: guard against timer expirations with no active control.
16510         Not sure why it happened.
16511
16512 2006-03-31  Mike Kestner  <mkestner@novell.com>
16513
16514         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
16515         text.
16516         * ToolTip.cs: Position the tooltip based on where the cursor is at
16517         popup time, not at MouseEnter time.  Add a Down state so that we don't
16518         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
16519         positioning offset. Lookup DisplaySize at positioning time, since it
16520         can theoretically change during invocation.
16521         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
16522         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
16523
16524 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16525
16526         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
16527           Fixes behaviour when the Text property of the box is String.Empty
16528
16529 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
16530
16531         * XplatUIX11.cs: Only send mouseleave for our client windows, not
16532           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
16533           a window)
16534
16535 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16536
16537         * FileDialog.cs: Visual enhancement for the popup buttons in 
16538           PopupButtonPanel
16539
16540 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
16541
16542         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
16543           code
16544
16545 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
16546
16547         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
16548           highlighted menu items to match ms
16549
16550 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
16551
16552         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
16553
16554 2006-03-30  Mike Kestner  <mkestner@novell.com>
16555
16556         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
16557         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
16558         go active to account for HotLight to Selected transition.
16559         * MenuItem.cs: add internal Selected prop. Fill out the Status
16560         property by calculating it from item info. Add HotLight,
16561         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
16562
16563 2006-03-30  Mike Kestner  <mkestner@novell.com>
16564
16565         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
16566
16567 2006-03-29  Jackson Harper  <jackson@ximian.com>
16568
16569         * Form.cs: Implement TODO.
16570
16571 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
16572
16573         * PrintPreviewDialog.cs: Implemented missing methods and events; still
16574           missing proper dialog setup in the constructor
16575
16576 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
16577
16578         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
16579         * Control.cs:
16580           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
16581           - Fixed ResetBindings and removed TODO
16582           - Added check for cross-thread calls to get_Handle()
16583           - Added Marshaller attribute for set_Font to satisfy class status
16584         * FontDialog.cs: Removed TODOs that seemed implemented
16585         * UpDownBase.cs: Removed unneeded TODO and Fixme
16586         * MessageBox.cs: Implemented support for Default button and removed TODO
16587         * FileDialog.cs: Removed obsolete TODO
16588         * DomainUpDown.cs: Removed obsolete TODO
16589         * ButtonBase.cs: Removed obsolete TODO
16590         * XplatUIWin32.cs: Removed obsolete TODO
16591         * Form.cs:
16592           - Removed obsolete TODO
16593           - Calling CheckAcceptButton when the acceptbutton is changed to allow
16594             internal status updates
16595           - Making sure the active control is selected when the control is created
16596         * CurrencyManager.cs: Removed obsolete TODO
16597
16598 2006-03-29  Mike Kestner  <mkestner@novell.com>
16599
16600         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
16601         of PrintPreviewDialog and RichTextBox.
16602
16603 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
16604
16605         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
16606           DarkDark, Light and LightLight colors for a specific color
16607         * ThemeWin32Classic.cs:
16608           - Use Button drawing code to draw RadioButtons and CheckBoxes with
16609             Appearance = Button 
16610           - Make use of the new ResPool helper CPColor
16611           - Draw ProgressBar and StatusBar with correct 3D borders
16612
16613 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
16614
16615         * ColorDialog.cs: Return selected color. Fixes bug #77940.
16616
16617 2006-03-28  Mike Kestner  <mkestner@novell.com>
16618
16619         * ListView.cs: fix Icon layout to plan for scrollbar widths when
16620         calculating col/row counts.
16621
16622 2006-03-28  Mike Kestner  <mkestner@novell.com>
16623
16624         * ColumnHeader.cs:
16625         * ListView.cs:
16626         * ListViewItem.cs:
16627         * Menu.cs: 
16628         switch to explicit interface method implementation for some methods
16629         corcompare identifies as inconsistent with MS.
16630
16631 2006-03-28  Mike Kestner  <mkestner@novell.com>
16632
16633         * MainMenu.cs: 
16634         * Menu.cs:
16635         add a few missing methods from the class status output.
16636
16637 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
16638
16639         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
16640           correct.
16641
16642 2006-03-28  Mike Kestner  <mkestner@novell.com>
16643
16644         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
16645
16646 2006-03-27  Mike Kestner  <mkestner@novell.com>
16647
16648         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
16649         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
16650
16651 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
16652
16653         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
16654
16655 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16656
16657         * ThemeWin32Classic.cs:
16658           - GroupBox: Inserted a little gap between the text and the lines
16659             on the right side
16660           - Made the code in CPDrawBorder3D more readable
16661           - Corrected the drawing location of the up and down arrows in 
16662             CPDrawScrollButton
16663
16664 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16665
16666         * ControlPaint.cs: Corrected line widths in DrawBorder for
16667           ButtonBorderStyle Inset and Outset
16668
16669 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16670
16671         * ThemeWin32Classic.cs:
16672           - Rewrote the totally broken CPDrawBorder3D method. That was
16673             one of the main problems for the terrific ThemeWin32Classic
16674             look
16675           - Updated and corrected Button drawing
16676           - Correct the dimensions of the SizeGrip to match ms ones
16677           - Removed a small drawing glitch in DrawComboBoxEditDecorations
16678         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
16679           Border3DStyle.Sunken to match ms.
16680
16681 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
16682
16683         * ThemeWin32Classic.cs: First small part of the "de-uglify
16684           ThemeWin32Classic" effort, SizeGrip
16685
16686 2006-03-24  Jackson Harper  <jackson@ximian.com>
16687
16688         * XplatUIX11.cs: Give a max idle time of one second, this matches
16689         MS and forces an Idle event every second when there are no other
16690         events in the queue.
16691
16692 2006-03-24  Mike Kestner  <mkestner@novell.com>
16693
16694         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
16695         * ListView.Item.cs: fix layout issues with null image lists and images
16696         smaller than checkbox size.
16697         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
16698         mode like MS does.  It's weird, but consistent.  ;-)
16699         Fixes #77890.
16700
16701 2006-03-24  Mike Kestner  <mkestner@novell.com>
16702
16703         * ListView.cs: Scroll wheel support for the item control.  Fixes
16704         #77839.
16705
16706 2006-03-23  Jackson Harper  <jackson@ximian.com>
16707
16708         * ScrollableControl.cs: Special case negative sized areas, not
16709         zero.
16710         * MonthCalendar.cs: Save the rect of the clicked date so we can
16711         use it for invalidation.
16712         - Try to cut down on the number of invalidates
16713         - Invalidate the rect the mouse is over and was over when moving
16714         the mouse, so we get the focus box following the cursor.
16715
16716 2006-03-23  Mike Kestner  <mkestner@novell.com>
16717
16718         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
16719         focus rectangle drawing. Fixes #77835.
16720
16721 2006-03-23  Mike Kestner  <mkestner@novell.com>
16722
16723         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
16724         the if and else if and reverting back to the original == check on the
16725         None conditional.
16726
16727 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
16728
16729         * FontDialog.cs: Update the example panel if the selected index of
16730           the fontListBox changes.
16731
16732 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
16733
16734         * FileDialog.cs: Make FileDialog remember which directory it was in
16735           last in the same execution.
16736
16737 2006-03-22  Mike Kestner  <mkestner@novell.com>
16738
16739         * FileDialog.cs: make the DropDownMenu on the toolbar display
16740         RadioChecks since they are mutually exclusive and that's what MS does.
16741
16742 2006-03-22  Mike Kestner  <mkestner@novell.com>
16743
16744         * Theme.cs: add Color param to CPDrawMenuGlyph.
16745         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
16746         checks and radio marks and arrows are visible on highlighted items.
16747         * ControlPaint.cs: update to use new Theme signature.
16748
16749 2006-03-22  Mike Kestner  <mkestner@novell.com>
16750
16751         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
16752         is active. Fixes #77870.
16753
16754 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
16755
16756         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
16757           to be focused/selected after startup
16758
16759 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
16760
16761         * ColorDialog.cs: 
16762           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
16763             CustomColors and ShowHelp properties
16764           - Some internal rewrites to get better results when using the
16765             ColorMatrix
16766
16767 2006-03-22  Mike Kestner  <mkestner@novell.com>
16768
16769         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
16770         HoverSelection.  Fixes #77836.
16771
16772 2006-03-22  Mike Kestner  <mkestner@novell.com>
16773
16774         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
16775         ToggleButtons.  (De)Sensitize the Back button around a stack count of
16776         1, not 0.  Update ButtonSize based on a pixel count of the win32
16777         control.  Adjust the toolbar size/location for new button size.
16778
16779 2006-03-22  Jackson Harper  <jackson@ximian.com>
16780
16781         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
16782         true.
16783         * ScrollBar.cs: When doing increments and decrements we need to
16784         set the Value property so that ValueChanged gets raised. A
16785         possible optimization here would be to make an internal SetValue
16786         that doesn't invalidate immediately.
16787         * ToolTip.cs: Tooltips get added to their container (when
16788         supplied) so they get disposed when the container is disposed.
16789         - Don't create tooltips for String.Empty. This prevents all these
16790         little 2-3 pixel windows from showing up when running nunit-gui
16791         and driving me mad.
16792         * Form.cs: Don't set topmost when setting the owner if the handles
16793         haven't been created yet.  The topmost set will happen when the
16794         handles are created.
16795
16796 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
16797
16798         * XplatUIX11.cs:
16799           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
16800           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
16801             visible (to allow them to recalculate their sizes)
16802
16803 2006-03-21  Mike Kestner  <mkestner@novell.com>
16804
16805         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
16806         methods. Removed a ton of redundant code.  Still not really happy with
16807         the border rendering, but I think that's mainly because of the
16808         ControlDarkDark being black instead of a dark grey. Depending on how 
16809         close we want to be, we might want to revisit those color choices.
16810         Among the new features added during the refactor were DropDownArrow
16811         pressed rendering, Disabled image rendering.  Proper flat appearance
16812         boundary rendering.  Removed the Divider and Wrapping dividers since I
16813         can't figure out any combination of themes and conditions to make the
16814         MS control draw a horizontal line on a toolbar despite what the
16815         Divider property docs indicate.
16816         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
16817         conditions and incorrect layout.  Updated to coding standard.
16818         * ToolBarButton.cs: refactored layout and positioning code from
16819         ToolBar to here.  Invalidate wherever possible instead of forcing
16820         redraws of the whole toolbar. 
16821         (Known remaining issues: explicit ButtonSize smaller than provided
16822         images.)
16823
16824 2006-03-21  Mike Kestner  <mkestner@novell.com>
16825
16826         * ContextMenu.cs (Show): use the position parameter instead of just
16827         showing at the MousePosition.
16828
16829 2006-03-21  Jackson Harper  <jackson@ximian.com>
16830
16831         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
16832         control handle this.
16833         * TreeNodeCollection.cs: If we are clearing the root node we need
16834         to reset top_node so calcs can still happen.
16835         * ThemeWin32Classic.cs: This is a Flags so we need to check
16836         properly.
16837         
16838 2006-03-21  Jackson Harper  <jackson@ximian.com>
16839
16840         * DataGrid.cs: Create columns when the binding context has been
16841         changed.
16842         * X11Structs.cs: Keysyms are uints.
16843         - Add size to fix build.
16844
16845 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
16846
16847         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
16848           XplatUIOSX.cs: 
16849           - Added ResetMouseHover method to allow controls to retrigger
16850             hovering if they need it more than once
16851           - Implemented MouseHoverTime and MouseHoverSize properties
16852         * Timer.cs: Start() must reset the interval
16853         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
16854           properties
16855
16856 2006-03-21  Jackson Harper  <jackson@ximian.com>
16857
16858         * X11Keyboard.cs: improved layout detection. Move the nonchar
16859         tables into this file.
16860         * KeyboardLayouts.cs: Move the tables into resource files.
16861
16862 2006-03-21  Mike Kestner  <mkestner@novell.com>
16863
16864         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
16865
16866 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
16867
16868         * Mime.cs: Various speed optimizations. Looking up mime types
16869           is now 2 times faster than before
16870
16871 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
16872
16873         * CreateParams.cs: Added internal menu field
16874         * Control.cs: 
16875           - Switched call order for UpdateBounds; now we always call
16876             the one that also takes ClientSize, and we're calculating the 
16877             client size via driver method in the others. The previous
16878             method of tracking client size by difference wasn't working
16879             for forms where even the starting client size wouldn't match
16880             the overall form size (due to borders) (Part of fix for #77729)
16881           - CreateParams(): Do not use parent.Handle unless the handle is
16882             already created. Causes havoc with Nexxia and throws off our
16883             creation of controls
16884         * XplatUIX11.cs:
16885           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
16886           - Switched handling of ConfigureNotify over to new PerformNCCalc 
16887             method (consolidates code)
16888           - Changed RequestNCRecalc to use new PerformNCCalc method
16889           - Added calls to RequestNCRecalc when menus and borders are changed
16890             to allow app to set NC size. (Part of fix for #77729) This matches
16891             when MS send a WM_NCRECALC on Win32 windows.
16892           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
16893             (Part of fix for #77729). This matches what MS does, they also
16894             send that message when the form is made visible.
16895           - XException.GetMessage: Improved usability of X errors by including
16896             a translation of the window into Hwnd and Control class
16897           - Improved debug info for window creation, reparenting and destruction
16898           - Created helper method WindowIsMapped() [Currently not used]
16899         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
16900         * Form.cs:
16901           - CreateParams: Now setting our menu on the new internal menu field
16902           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
16903             avoid calculating the same property twice
16904         * Hwnd.cs:
16905           - Improved usability of ToString() for debugging purposes
16906           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
16907             determine the height of the menu, instead of just the font. This
16908             required to also create a graphics context and to keep a bmp 
16909             around (for performance reasons)
16910
16911 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
16912
16913         * MenuAPI.cs: Added OnMouseUp method
16914         * Form.cs:
16915           - Now remembering the requested client size, avoids size errors
16916           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
16917             instead of base if the menu is active. This is required due to
16918             control now capturing and releasing on down/up and it would
16919             prematurely release our menu capture
16920
16921 2006-03-17  Jackson Harper  <jackson@ximian.com>
16922
16923         * KeyboardLayouts.cs: Add the czech layouts.
16924
16925 2006-03-16  Jackson Harper  <jackson@ximian.com>
16926
16927         * Control.cs: Use the viewport space when sizing not the controls
16928         client size, so things like ScrollableControl that effect the
16929         viewport size (when scrollbars are added) are computed correctly.
16930         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
16931         of ManagerEntrys.
16932         - Handle creating BindingManagers for null data sources.
16933         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
16934         source, otherwise when rows are added they are added to the 'fake'
16935         datasource and we will crash when trying to set the position in
16936         those rows.
16937         - Use Implicit scrollbars on the datagrid so they arent
16938         selectable.
16939         
16940 2006-03-16  Jackson Harper  <jackson@ximian.com>
16941
16942         * Binding.cs:
16943         * InternalWindowManager.cs:
16944         * MdiWindowManager.cs:
16945         * X11Keyboard.cs: I really want Mike to love me again (fix
16946         compiler warnings).
16947
16948 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
16949
16950         * DataGrid.cs:
16951           - OnMouseDown: Switch to editing mode when clicking on the cell
16952                          even if we're clicking on the cell that's currently 
16953                          selected
16954           - ProcessGridKey: Left/Right now wrap like MS.Net does
16955           - ProcessGridKey: Tab now knows to add a new row when tab is
16956                             pressed in the cell of the last column of the 
16957                             last row
16958           - ProcessGridKey: Enter now adds another row  if pressed in the last
16959                             row and selectes the new row, same column cell
16960           - ProcessGridKey: Home/End navigate columns, not rows, like 
16961                             originally implemented
16962           - Broke ProcessKeyPreview code out into an extra Internal method
16963             so it can be called from the edit code
16964         * DataGridTextBox.cs (ProcessKeyMessage):
16965           - Switched to accept Tab keypresses
16966           - Added F2 handling to allow jumping to the end of the edited cell
16967           - Added logic to allow moving caret left/right inside edited cell
16968             and making the edited cell jump when the caret hits cell borders
16969           - Tab and Enter are now passed to the datagrid after being handled
16970         * TextBoxBase.cs:
16971           - Removed capture code now that Control handles it
16972           - set_SelectionStart now ensures caret is visible
16973
16974 2006-03-16  Jackson Harper  <jackson@ximian.com>
16975
16976         * TrackBar.cs: Debackwards the increment/decrement for handling
16977         mouse clicks on the bar with vertical trackbars.
16978         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
16979         bottom to match MS.
16980
16981 2006-03-16  Mike Kestner  <mkestner@novell.com>
16982
16983         * ListView.cs: make shift/ctrl keyboard and mouse selection 
16984         consistent with the MS control. Fix a bug in
16985         SelectedListViewItemCollection.Clear that was pissing me off for the
16986         better part of a day because the collection was being altered
16987         underneath us as we walked the list.
16988
16989 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
16990
16991         * Control.cs: Not sure how we could miss this so long, but it seems
16992           that MS.Net has Capture set all the way from before calling 
16993           OnMouseDown through sending the mouse events until after
16994           OnMouseUp. This will fix DataGrid's selection being set to end
16995           at the location of the MouseUp.
16996
16997 2006-03-15  Jackson Harper  <jackson@ximian.com>
16998
16999         * BindingContext.cs: Check the binding after its added so that it
17000           can initialize the binding managers and hookup to events.
17001         * Binding.cs: Data members seem to sometimes include rows/cols in
17002           the format Row.Column we now take this into account.
17003           - Hookup to the position changed event so we can update the
17004           control when the position has changed in the data set.
17005         * CurrencyManager.cs: Take into account the row/col naming
17006           convention when creating dataset tables.
17007         * BindingContext.cs: Using a newer better way of storing
17008           datasource/datamember pairs.  Hopefully this better matches MS for
17009           looking up binding managers.
17010
17011
17012 2006-03-15  Jackson Harper  <jackson@ximian.com>
17013
17014         * BindingContext.cs: The currency manager needs the data member
17015         name, if the member is a data set we use the name to find the
17016         correct table.
17017         * CurrencyManager.cs: When creating the list prefer an IList over
17018         an IListSource.
17019         - Attempt to create a DataTable from a DataSet (TODO: might need
17020         some better error checking here, although MS doesn't seem to have much)
17021         - If we have a DataTable create a view and use it as our list.
17022
17023 2006-03-15  Mike Kestner  <mkestner@novell.com>
17024
17025         * ListView.cs: keep a matrix of the icon mode layout to facilitate
17026         keyboard navigation. Support Up/Down/Left/Right selection correctly
17027         for all 4 View modes.
17028         * ListViewItem.cs: add internal row/col fields for icon layouts.
17029
17030 2006-03-15  Jackson Harper  <jackson@ximian.com>
17031
17032         * TabControl.cs: Redraw the tabs when we resize so their newly
17033         calculated sizes are drawn on screen.
17034         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
17035         composite characters.
17036         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
17037         - filter events so that composite characters can be created
17038         patches by peter
17039         * X11Structs.cs: Add XIMProperties enum.
17040
17041 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17042
17043         * Control.cs (BringToFront, SendToBack): Don't use window or handle
17044           unless it's created
17045
17046 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17047
17048         * Control.cs (PerformLayout): We don't need to consider visiblity
17049           for anchoring, only for docking. This fixes 'whacky' alignment
17050           in listbox and other controls that use implicit scrollbars after
17051           the previous PerformLayout patch
17052         * ListBox.cs: Switched to use implicit scrollbars
17053           
17054 2006-03-14  Mike Kestner  <mkestner@novell.com>
17055
17056         * ToolBar.cs: 
17057         * VScrollBar.cs:
17058         - chain up the "new event" overrides to base and use
17059         OnEvent to raise them.  Part of fix for bug #76509.
17060
17061 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
17062
17063         * FileDialog.cs: Do not select an item in the parent directory
17064           on backspace
17065
17066 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
17067
17068         * Control.cs (PerformLayout): It would seem that we considered
17069           invisible windows for our layout. Not quite the right thing
17070           to do. Now we don't any longer, thereby fixing bug #76889.
17071
17072 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
17073
17074         * Control.cs (CanFocus): I goofed. A control can have focus 
17075           even though it's not selectable. Made it match MS docs.
17076
17077 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17078
17079         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
17080           center by default (fixes #76895)
17081         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
17082           all uses of Border3DSides.All with the explicit ORd together
17083           Left|Right|Top|Bottom because I assume that nobody was aware 
17084           that All also implies a center fill. Most places I checked had
17085           a fill right above.
17086         * ProgressBarStyle.cs: Added
17087
17088 2006-03-13  Mike Kestner  <mkestner@novell.com>
17089
17090         * ListView.cs: fix breakage in drag shadow header positioning 
17091         from Peter's csc compilation fix.
17092
17093 2006-03-13  Mike Kestner  <mkestner@novell.com>
17094
17095         * ListView.cs: fix NRE produced by backspacing twice in a focused
17096         FileDialog.
17097
17098 2006-03-13  Mike Kestner  <mkestner@novell.com>
17099
17100         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
17101
17102 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17103
17104         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
17105           be changed
17106         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
17107           the allowed size before making programmatic size changes
17108
17109 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
17110
17111         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
17112           set, metacity is broken and will still use the emty sizes in 
17113           the struct. (Fix for #77089)
17114
17115 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
17116
17117         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
17118           WindowExStyles and marked both enums as Flags
17119         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
17120           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
17121           to match WindowStyles split
17122         * XplatUIX11.cs:
17123           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
17124           - Updated to match WindowStyles split
17125         * XplatUIWin32.cs:
17126           - Fixed FosterParent creation, was using ExStyle on the Style field
17127             (This should help with Popup focus issues)
17128           - Updated to match WindowStyles split
17129
17130 2006-03-13  Jackson Harper  <jackson@ximian.com>
17131
17132         * MdiWindowManager.cs: Use the system menu height. Fixes some
17133         strange sizing issues.
17134
17135 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17136
17137         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
17138         * TextBoxBase.cs:
17139           - Scroll to caret after inserting text (#77672)
17140           - Make scroll range one pixel higher, fixes off-by-one error (and
17141             makes underlines visible on the last line)
17142
17143 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
17144
17145         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
17146           the keyboard state from being stuck with keys in 'pressed' state when
17147           focus is switched away via keyboard
17148         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
17149           reset the keyboard if no X11 KeyUp events are expected to come
17150         * X11Structs.cs: Switched type of Visible to bool to match driver
17151
17152 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
17153
17154         * TextControl.cs:
17155           - Switched caret to be just 1 pixel wide, matches MS and looks less
17156             clunky
17157           - Moved caret display 1 pixel down from the top of the control
17158             to improve view
17159           - InsertCharAtCharet: Update the selection start if moving the caret
17160             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
17161           - No longer always creating the caret when the caret methods are
17162             called. Only the actual ShowCaret/HideCaret will do that now
17163           - Only setting caret visible if the owner control has focus
17164           - UpdateView: Added invalidation-shortcut logic for center and right 
17165             aligned text. Previously we'd update all according to the left
17166             logic which caused drawing errors. Also fixed height of invalidated
17167             areas, now properly invalidating the whole area (was off-by-one)
17168           - owner_HandleCreated: Always generate the document when the
17169             handle is created; this ensures that 
17170         * TextBoxBase.cs:
17171           - Fixed situation where caret would disappear under the right
17172             window border, also improved scrolling behaviour on left-
17173             aligned textboxes
17174           - Fixed right-aligned textboxes to have a border to the
17175             right instead of the caret being under the right border
17176         * XplatUIX11.cs:
17177           - Switched from 'nested' to simple visible/not visible tracking 
17178             for caret (part of fix for #77671)
17179           - No longer passing through translated FocusIn/FocusOut messages
17180             since we were notifying too often and the wrong windows. Instead
17181             we just notify our focussed window of receiving or loosing focus
17182         * XplatUIWin32.cs: Switched from 'nested' show/hide 
17183           counting for caret to simple visible yes/no behaviour (part of 
17184           fix for #77671)
17185
17186 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17187
17188         * Mime.cs: Remove debug code...
17189
17190 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
17191
17192         * MimeGenerated.cs: Removed
17193         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
17194           and subclasses) from /usr/(local/)share/mime and
17195           $HOME/.local/share/mime.
17196
17197 2006-03-10  Jackson Harper  <jackson@ximian.com>
17198
17199         * MdiWindowManager.cs: Recalc the NC area when a window is
17200         maximized/restored so that the menu area is drawn on forms that
17201         don't have a menu.
17202
17203 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17204
17205         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17206           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
17207           us to force a WM_NCCALCRESIZE message being sent. This is needed
17208           for MDI maximizing.
17209
17210 2006-03-10  Jackson Harper  <jackson@ximian.com>
17211
17212         * Form.cs: We need to use the ActiveMenu when calculating menu
17213         height.
17214         - Fix nullref when the window manager hasn't been created yet.
17215         * Control.cs: Fix nullref when we try to bring a control to the
17216         front that has no parent.
17217         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
17218         height.
17219         - Add a dummy item to the maximized menu so it always has the
17220         correct height. Otherwise when there are no menus we don't get our
17221         icon and buttons.
17222         
17223
17224 2006-03-10  Jackson Harper  <jackson@ximian.com>
17225
17226         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
17227         stuff.
17228         * Form.cs: Make the window_state internal so the window managers
17229         can track it.
17230         - When an MDI child is maximized let its window manager create the
17231         main menu (so it can add its icon).
17232         - Notify the window managers of state changes
17233         - Let the window manager paint its buttons and handle button
17234         clicks on the menu when it is maximized.
17235         * InternalWindowManager.cs: Move the prev_bounds into the mdi
17236         window manager, since tool windows don't use it, only mdi windows.
17237         - Tell the main form that we don't want it to handle NCPAINT
17238         itself to avoid extra painting.
17239         - Handle clicks on a maximized windows menu.
17240         - Handle window state changes
17241         - Handle minimize/maximize clicks correctly by setting the window state.
17242         * MdiWindowManager.cs: Add an icon menu that (the menu you get
17243         when clicking on the forms icon).
17244         - New method to create a forms maximized menu. This is its normal
17245         menu + an icon.
17246         - Handle window state changes.
17247         - Handle sizing of maximized windows.  Maximized windows are just
17248         drawn bigger then the parent visible area. All controls are still
17249         there, they are just outside the visible area (this matches windows).
17250         * MdiClient.cs: No scrollbars when a child window is maximized.
17251         - Let the children windows figure out how big they should be when
17252         sizing maximized windows.
17253         - Implement a version of ArrangeIconicWindows somewhat similar to
17254         Windows version.  There are some little differences, but I don't
17255         think any app will rely on the layout of minimized mdi windows.
17256
17257 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17258
17259         * Padding.cs: Several fixes to allow compiling with csc 2.0
17260
17261 2006-03-09  Jackson Harper  <jackson@ximian.com>
17262
17263         * Menu.cs:
17264         * MenuItem.cs: Cheap hack so we can add items to the list without
17265         the events being raised.  This allows adding mdi items during
17266         drawing. TODO: Should probably find a better time to add the items.
17267
17268 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17269
17270         * ThemeWin32Classic.cs:
17271           - CheckBox_DrawText: Added logic to not wrap if not enough space
17272             is available (Fix for bug #77727)
17273           - RadioButton_DrawText: Added logic not to wrap if not enough
17274             space is available (Fix for bug #77727). Also removed some
17275             duplicate code, DrawString always drawing the regular text
17276             before hitting the if statement.
17277
17278 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
17279
17280         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
17281
17282 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
17283
17284         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
17285         * ContainerControl.cs: Partial implementation of some 2.0 scaling
17286           methods. Moved the new 2.0 properties into alphabetical order with
17287           other properties and added MonoTODO tags
17288
17289 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17290
17291         * AutoScaleMode.cs: Added. Fix build.
17292
17293 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17294
17295         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
17296           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
17297           and was requiring premature handle creation for calls from above
17298         * Form.cs, Control.cs: Removed handle arguments from calls to
17299           CalculateClientRect()
17300
17301 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17302
17303         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
17304           drag_column.column_rect is MarshalByRef and can't be used that way
17305
17306 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17307
17308         * AxHost.cs: Added deserialization constructor for 
17309           AxHost+State (fixes 77743)
17310
17311 2006-03-09  Mike Kestner  <mkestner@novell.com>
17312
17313         * ListView.cs: 
17314         - Added column drag reordering for details view.
17315         - fixed behavior when mouse is dragged off column and
17316         AllowColumnReorder is false.
17317         * ColumnHeader.cs: clone the format too in Clone.
17318         * Theme.cs: add DrawListViewHeaderDragDetails method.
17319         * ThemeWin32Classic.cs:
17320         - impl new method for drawing drag column shadows and targets.
17321         - support column offset for details mode in DrawListViewItem.
17322
17323 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17324
17325         * TextControl.cs: Reset the char_count when the document is cleared
17326           (Fixes bug reported on mono-winforms mailing list)
17327
17328 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
17329
17330         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
17331           of calling base we simply process the key ourselves, since both
17332           DefWindowProc and the handled method would set m.Result. 
17333           (Fixes #77732)
17334
17335 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
17336
17337         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
17338           method also moves the window; instead implemented a copy of
17339           Control.ScaleCore (Part of fix for #77456)
17340         * TextBoxBase.cs: 
17341           - Created new CreateGraphicsInternal method to allow providing
17342             a graphics context when no handle is created without triggering
17343             handle creation. (Part of fix for #77456)
17344           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17345         * TextControl.cs: 
17346           - Switched Constructor to require TextBoxBase instead of Control (to
17347             allow uncast access to CreateGraphicsInternal)
17348           - Safeguarded use of owner.Handle property. No longer accessing it
17349             unless the handle is already created.
17350           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
17351           - Now triggering a recalc when owning control becomes visible
17352         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
17353           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
17354           premature handle creation (Part of fix for #77456)
17355         * Control.cs:
17356           - We now only destroy our double-buffering buffers when the
17357             control is resized or disposed, but not when visibility
17358             changes. (The code even re-created them twice every time)
17359           - Now requiring a redraw of the buffer on visibility changes
17360             (fixes bug 77654 part 2)
17361           - Not passing OnParentVisibleChanged up unless the control
17362             is visible
17363           - CanFocus: Fixed to match MS documentation
17364           - Focus: Fixed to return actual focus state and to check if
17365             setting focus is legal before setting it
17366
17367 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
17368
17369         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
17370           when to draw focus rectangle by looking at parent focus and
17371           selected state instead. This fixes TabPages on Linux sometimes
17372           having none or multiple focus rectangles.
17373         * XplatUIX11.cs (SetFocus): 
17374           - Don't set the focus if the same window already has focus
17375           - Use SendMessage instead of PostMessage (like it's Win32
17376             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
17377             to match MS behaviour
17378         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
17379           are not selectable.
17380
17381 2006-03-07  Jackson Harper  <jackson@ximian.com>
17382
17383         * PictureBox.cs: Revert line I accidently committed last week.
17384
17385 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17386
17387         * Control.cs: 
17388           - Added new IsRecreating and ParentIsRecreating properties to
17389             allow testing if RecreateHandle has been called on ourselves
17390             or one of our parents
17391           - WndProc(WM_DESTROY): If our control handle is being recreated
17392             we immediately need to create the handle when receiving the
17393             destroy, that way our child windows find a valid parent handle
17394             when they themselves are being recreated upon WM_DESTROY receipt
17395             (fix for bug #77654 part 1)
17396         * XplatUIX11.cs:
17397           - DestroyWindow: WM_DESTROY must be sent to our own window before
17398             notifying any child windows. MS documents that child windows
17399             are still valid when WM_DESTROY is received. (Control now relies on
17400             this behaviour)
17401           - Added some fine-grain debug options
17402
17403 2006-03-06  Jackson Harper  <jackson@ximian.com>
17404
17405         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
17406         box and base calculations off this.
17407         * MdiChildContext.cs:
17408         * MdiWindowManager.cs: Don't need to ensure scrollbars here
17409         anymore.
17410         
17411 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
17412
17413         * Splitter.cs: In situations where the affected control is added
17414           to the parent's control list after the splitter, we would not
17415           populate affected. Now we try populating it on mousedown, if
17416           it's not already set, and force it to be re-set whenever our
17417           parent changes.
17418
17419 2006-03-03  Matt Hargett  <matt@use.net>
17420
17421         * Control.cs: implement Control.Padding
17422         * Padding.cs: -Padding.All returns -1 when constructing with the
17423         implicit default ctor
17424         -Padding.ToString() matches MS.NET
17425         * ContainerControl.cs: implement
17426         ContainerControl.AutoScaleDimensions
17427         * ListControl.cs: implement ListControl.FormattingEnabled
17428         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
17429         * ButtonBase.cs:
17430         * TabPage.cs: Implement UseVisualStyleBackColor.
17431         * PictureBox.cs: Implement PictureBox.InitialImage.
17432
17433 2006-03-03  Mike Kestner  <mkestner@novell.com>
17434
17435         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
17436         event declarations to proxy to base event.
17437         * ListViewItem.cs: update to use ItemControl.
17438         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
17439         * ThemeWin32Classic.cs: update to new ListView theme API and fix
17440         column header label rendering for 0 width columns.
17441
17442 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
17443
17444         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
17445           that causes the control to be created. Fixes #77476.
17446
17447 2006-03-02  Jackson Harper  <jackson@ximian.com>
17448
17449         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
17450         expose_pending.
17451
17452 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
17453
17454         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
17455           passed in for the EventArgs (fixes #77690)
17456
17457 2006-03-01  Jackson Harper  <jackson@ximian.com>
17458
17459         * ScrollBar.cs: Refresh afterbeing resized.
17460
17461 2006-02-28  Mike Kestner  <mkestner@novell.com>
17462
17463         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
17464         Clean up a tracker compile warning.
17465         * MenuItem.cs: add internal PerformPopup method.
17466         [Fixes #77457]
17467
17468 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17469
17470         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
17471           implicit expose) when the text is set to null
17472
17473 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
17474
17475         * RichTextBox.cs (FlushText): When newline is true, we always
17476           need to split the line, even if no text is on it and we may
17477           never eat newlines. (Fixes #77669)
17478
17479 2006-02-28  Mike Kestner  <mkestner@novell.com>
17480
17481         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
17482         and set Selected instead.
17483         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
17484         collections.
17485
17486 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
17487
17488         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
17489
17490 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
17491
17492         * FontDialog.cs:
17493           - Got rid of the panel. All controls are now directly added to
17494             the dialog form
17495           - It is now possible to set a font with the Font property
17496           - MinSize and MaxSize property do now what they should
17497           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
17498           - Searching and selecting a font with the font textbox works now,
17499             the same applies to the style and size textbox
17500           - Draw the correct 3D border in the example panel
17501           - Fixed a little mem leak (unused fonts didn't get disposed)
17502           - Many other internal updates/rewrites...
17503           - Fix typo
17504
17505 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17506
17507         * TextControl.cs: 
17508           - InsertRTFFromStream: Added 'number of characters inserted' argument
17509           - set_SelectedRTF: Now using the number of characters to calculate
17510             the new location for the selection and cursor (x/y cannot be used
17511             due to potentially already wrapped text)
17512
17513 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
17514
17515         * TextControl.cs: Added property and implemented means to allow 
17516           disabling recalculation of a document (can be used to speed up
17517           multiple inserts and is needed to make RTF inserts predictable, see
17518           bug #77659)
17519         * RichTextBox.cs: Using the new NoRecalc property of Document to
17520           keep x/y insert locations predictable. Also makes it faster inserting
17521           large chunks of RTF
17522
17523 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
17524
17525         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
17526           it's easier for a child control to handle the other messages without
17527           having to duplicate the special functionality
17528         * TextBoxBase.cs
17529           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
17530             code to handle processing the key ourselves, in order to get 
17531             access to the result of KeyEventArgs.Handled. We now only call 
17532             ProcessKey if they key hasn't been handled already. Fixes #77526.
17533           - set_Text: If null or empty string is given, just clear the 
17534             document. Fixes part of #77526
17535
17536 2006-02-27  Jackson Harper  <jackson@ximian.com>
17537
17538         * SizeGrip.cs: Paint the background color before painting the grip
17539         so things look right.
17540         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
17541
17542 2006-02-27  Mike Kestner  <mkestner@novell.com>
17543
17544         * ListView.cs:
17545           - Restructure layout and invalidation model to remove a ton of
17546           flicker from the control and speed up performance in general.
17547           - Add manual column resize, flickers like crazy, but I already have
17548           some ideas on how I'll fix that. (#76822)
17549           - Merge the three Icon-based views into a single layout method.
17550           - Move item selection interaction logic from the item since 
17551           interaction with the collections is more appropriate to the view.
17552           - Deselection on non-item clicks.
17553         * ListViewItem.cs:
17554           - Encapsulate most of the layout. Add some internal props to trigger
17555           layout.  Move to a model where Items invalidate themselves instead
17556           of just invalidating the whole control every time something changes.
17557           - Invalidate on Text/Caption changes.
17558           - switch to an offset based layout model to avoid having to absolute
17559           position every element on item moves.
17560           - correct checkbox layout to conform to MS layout.
17561         * ThemeWin32Classic.cs:
17562           - refactor some column header drawing code.
17563           - fix string justification for column headers (#76821)
17564           - make SmallIcon labels top justified for compat with MS impl.
17565         * ThemeClearlooks.cs:
17566           - adjust to new ListViewItem internal checkbox bounds api.
17567
17568 2006-02-27  Jackson Harper  <jackson@ximian.com>
17569
17570         * Control.cs:  Change where implicit controls fall in the zorder.
17571         They are now on top of all children.
17572         - Synced AddImplicit code with Add
17573         - Removed unused enumerator.
17574         * SizeGrip.cs: Remove the TODO as its been TODONE.
17575
17576 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
17577
17578         * TextControl.cs(Insert): Combine the last lines unless the insertion
17579           string ends with \n\n, otherwise we leave one line too many (Fixes
17580           something I noticed with the testapp for #77526; the bug itself was
17581           already fixed in the previous checkin)
17582
17583 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
17584
17585         * RichTextBox.cs:
17586           - SelectionColor and SelectionFont methods no longer set absolute
17587             styles. Instead, the keep font or color respectively (This 
17588             resolves a long-standing FIXME in the code)
17589           - When flushing RTF text, the insert code now considers text trailing
17590             behind the insertion point (Fixes the bug where when replacing
17591             the selected text via SelectedRTF the remainder of the line behind 
17592             the selection would stay on the first insertion line)
17593         * TextBoxBase.cs:
17594           - AppendText now updates the selection points after inserting text
17595           - AppendText now ensures that the last tag (sometimes 0-length) of
17596             the document is used for the style information (Fixes part of 
17597             bug #77220)
17598         * TextControl.cs:
17599           - Created new FontDefiniton class to allow describing partial style
17600             changes
17601           - StreamLine() now takes a lines argument, to allow it to decide
17602             whether an encountered zero-length tag is the last in the document
17603             (which must be kept to not loose the font/color contained in it,
17604             for later appends)
17605           - Created Combine() and Split() methods for Marker structs, to 
17606             support marker updates due to reformatted documents (soft line
17607             wraps)
17608           - Implemented Document.CaretTag setter
17609           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
17610             of the last line (Not the cause, but also exposed by bug #77220)
17611           - Added LineTag argument to InsertString method, to allow callers
17612             to force a certain tag to be used (required to force use of the
17613             trailing zero-length tag of a document)
17614           - Now updating markers in Combine(), to avoid stale tag markers
17615           - Added some method descriptions to aid maintenance
17616           - Implemented new FormatText concept, allowing additive/subtractive
17617             formatting by only specifying the components that are to be 
17618             changed. This was needed for resolving the RTB.SelectedColor/
17619             RTB.SelectedFont fixmes
17620           - Added Break() support method to allow breaking up linetags (used
17621             for partial formatting)
17622           - Added GenerateTextFormat() method. It is used for partial 
17623             formatting and allows to generate a full font/color from given
17624             attributes and an existing tag.
17625
17626 2006-02-26  Jackson Harper  <jackson@ximian.com>
17627
17628         * XplatUIX11.cs:  Use the correct caption height.
17629         - Translate hittest coordinates to screen coords to match MS.
17630         * XplatUIWin32.cs: When we create MDI windows we need to reset
17631         some of the style flags, so we get a nice blank window, and can
17632         draw all the decorations ourselves.
17633         - Set a clipping rectangle on the non client paint event, the
17634         window manager drawing code needs one.
17635         * Form.cs: The window manager needs to know when the window state
17636         has been updated.
17637         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
17638         don't need to factor in border and title sizes in these
17639         methods. TODO: Remove the args and fix the call points.
17640         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
17641         properly.
17642         - Let the driver set the cursors.
17643         - Improve active window handling
17644         - Correct sizes for title bars and buttons.
17645         - Match MS drawing better
17646         * MdiWindowManager.cs: We don't need to handle border style
17647         updates specially anymore.
17648         - Check for scrollbars when windows are done moving
17649         - Handle Active properly.
17650         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
17651         correctly. I am spewing the exception though, so we don't hide the
17652         bugs.
17653         
17654 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
17655
17656         * DataGridViewRowPostPaintEventArgs.cs,
17657           DataGridViewCellPaintingEventArgs.cs,
17658           DataGridViewRowCollection.cs,
17659           DataGridViewRowPrePaintEventArgs.cs,
17660           DataGridViewCell.cs: Clear a few warnings and implement a few
17661           exceptions that should be thrown.
17662
17663 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
17664
17665         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
17666           'inheriting' our parent's (non-default) cursor. (Part of
17667            the fix for #77479)
17668
17669 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
17670
17671         * XplatUIX11.cs: Fixed cast to make csc happy
17672
17673 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
17674
17675         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
17676           it's for the client area (part of fix for #77479 and needed
17677           for MDI window cursor handling)
17678         * XplatUIX11.cs
17679           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
17680             the appropriate default cursors and also passing the message
17681             up the parent chain 
17682           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
17683             for non-client areas
17684
17685 2006-02-15  Jackson Harper  <jackson@ximian.com>
17686
17687         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
17688         is a real MDI window
17689
17690 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
17691
17692         * X11DesktopColors.cs: Instead of checking the desktop session
17693           string for "KDE" check if it starts with "KDE"
17694
17695 2006-02-10  Jackson Harper  <jackson@ximian.com>
17696
17697         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
17698         systems).
17699
17700 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
17701
17702         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
17703           errors
17704         * ColorDialog.cs:
17705           - Got rid of the panel. All controls are now directly added to
17706             the dialog form
17707           - Changed to mono coding style
17708
17709 2006-02-10  Jackson Harper  <jackson@ximian.com>
17710
17711         * InternalWindowManager.cs: We don't need the set visibility to
17712         false hack anymore now that peter has written beautiful shutdown
17713         code.
17714
17715 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
17716
17717         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
17718           where already explicitly destroyed
17719
17720 2006-02-10  Jackson Harper  <jackson@ximian.com>
17721
17722         * MdiClient.cs: Handle the case where windows are too high or to
17723         the left and we need scrollbars.
17724
17725 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
17726
17727         * MimeIcon.cs: Added some icons
17728         * FileDialog.cs:
17729           - Fixed bug #77477
17730           - Got rid of the panel. All controls are now directly added to
17731             the dialog form
17732           - Changed to mono coding style
17733           - On Linux "My Computer" and "My Network" will now show some
17734             more usefull information. A new class, MasterMount, gathers
17735             this information from /proc/mount. Updated MWFFileView to make
17736             use of this information
17737           - Fixed a bug that caused FileDialog to crash when
17738             ".recently_used" file had a zero size
17739           - FilterIndex does now what it should
17740           - Some Refactoring
17741         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
17742             FileDialog changes
17743
17744 2006-02-09  Jackson Harper  <jackson@ximian.com>
17745
17746         * ComboBox.cs: Don't touch if null.
17747
17748 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
17749
17750         * Cursor.cs: 64bit safeness fix
17751         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
17752
17753 2006-02-09  Jackson Harper  <jackson@ximian.com>
17754
17755         * Form.cs: If a form is made into an MDI form update the styles so
17756         all the props can get set correctly.
17757         - Kill the mdi_container when we dont need it anymore.
17758         * InternalWindowManager.cs: Add missing NOT
17759
17760 2006-02-08  Jackson Harper  <jackson@ximian.com>
17761
17762         * InternalWindowManager.cs: Respek clipping when drawing MDi
17763         decorations.
17764
17765 2006-02-08  Jackson Harper  <jackson@ximian.com>
17766
17767         * Hwnd.cs: Add bits to track non client expose events.
17768         * XplatUIX11.cs: Track non client expose events on the hwnd. This
17769         gives us a proper invalid rect and will allow for some nice
17770         optimizations with NC client drawing
17771         - MDI windows are children windows, so move their style handling
17772         into the child window block.
17773         * InternalWindowManager.cs: Remove a state reset that was
17774         getting invoked at the wrong time. Fixes managed windows getting
17775         into a 'stuck' captured state.
17776
17777 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
17778
17779         * TextControl.cs (Document.ctor): Now initializing 
17780           selection_anchor. Fixes #77493
17781
17782 2006-02-07  Jackson Harper  <jackson@ximian.com>
17783
17784         * TrackBar.cs: The increment/decrements were backwards.
17785
17786 2006-02-07  Mike Kestner  <mkestner@novell.com>
17787
17788         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
17789         to the instance itself.
17790
17791 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
17792
17793         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
17794           on ulongs and pointers, the size differs between 32bit and 64bit
17795           systems. 
17796
17797 2006-02-07  Mike Kestner  <mkestner@novell.com>
17798
17799         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
17800         for 64 bit platforms to work around a metacity bug. 
17801
17802 2006-02-07  Jackson Harper  <jackson@ximian.com>
17803
17804         * TrackBar.cs: Process the input keys we need, and hookup to
17805         KeyDown instead of using WndProc, so we get key messages.
17806
17807 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
17808
17809         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
17810           machine we're on. 
17811         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
17812           we need to translate the XdndVersion atoms array before sending it
17813
17814 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
17815
17816         * XplatUIX11.cs: 
17817           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
17818             number of bits for the property, not the number of bytes. The
17819             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
17820             but would not crash since it specified 8 bits instead of 4 bits)
17821           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
17822             defined as XID -> long in the C headers)
17823           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
17824             references since those are now IntPtr to begin with
17825           - Switched all Atom.XXX 'int' casts to IntPtr casts
17826           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
17827           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
17828           - Added XChangeActivePointerGrab DllImport (for X11DnD)
17829         * X11Structs.cs:
17830           - Changed 'int' type for Atoms in XEvent structures to IntPtr
17831           - Changed atom in HoverStruct to be IntPtr
17832         * X11DnD.cs:
17833           - Removed local DllImports, switched code to use those from XplatUIX11
17834           - Removed/fixed casts related to the switch of Atom to be a IntPtr
17835
17836 2006-02-06  Mike Kestner  <mkestner@novell.com>
17837
17838         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
17839         method signatures in the import region.  There may still be some
17840         lingering struct marshaling issues, as I didn't drill down into those.
17841         Yet.
17842
17843 2006-02-06  Jackson Harper  <jackson@ximian.com>
17844
17845         * ComboBox.cs: Dont manually set the top_item, this is computed
17846         when the scrollbar position is set.
17847
17848 2006-02-06  Mike Kestner  <mkestner@novell.com>
17849
17850         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
17851         startup crashes on amd64.  There's other fixes needed.  All pinvoke
17852         usage of Atom needs to be mapped to IntPtr for example.  And there are
17853         likely other int/long issues to be addressed.
17854
17855 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
17856
17857         * FileDialog.cs: One more...
17858
17859 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
17860
17861         * FileDialog.cs: Next try
17862
17863 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
17864
17865         * FileDialog.cs: First part of fix for #77464
17866
17867 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
17868
17869         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
17870           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
17871           AcceptButton border drawing.
17872
17873 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
17874
17875         * Form.cs: Moved positioning of form after auto scaling is applied,
17876           otherwise it would possibly use wrong form size.
17877
17878 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
17879
17880         * Control.cs (RecreateHandle): No need to re-create any child
17881           controls, the child windows will get destroyed automatically by
17882           the windowing system or driver, and re-created when the handle
17883           is being accessed the first time. Fixes #77456
17884         * Form.cs: No longer setting the form to closing if the handle is 
17885           being recreated. This seems like the right thing to do, don't
17886           have a bug or testcase for this, though.
17887
17888 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
17889
17890         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
17891           controls to avoid unwanted side effects
17892
17893 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
17894
17895         * Control.cs: 
17896           - ScaleCore needs to scale the bounds, not the ClientSize of the 
17897             control. Fixes #77416.
17898           - DefaultSize is 0,0 for control
17899         * TextBoxBase.cs: 
17900           - DefaultSize is 100, 20
17901           - SetBoundsCore: Now enforcing the height, no matter if the provided
17902             height is more or less than the preferred one, as long as AutoSize
17903             is on
17904         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
17905
17906 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
17907
17908         * Control.cs:
17909           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
17910             call unless both performLayout is true *and* we have a pending
17911             layout change
17912           - ResumeLayout: MS does not completely nest Suspend and Resume,
17913             they bottom out at 0, fixed our code to match that.
17914           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
17915             SetBoundsCore, we were updating even when we shouldn't. This fixes
17916             swf-anchors mis-anchoring when resizing the app fast and lots.
17917           - UpdateDistances: Now only setting the left and top distance if 
17918             we have a parent and are not suspended, this is based on
17919             a suggestion by Don Edvaldson in bug #77355.
17920           - OnVisibleChanged: Fixed logic when to create the control. We may
17921             not create the control if we have no parent or if it's not visible;
17922             switched to using Visible property instead of is_visible field 
17923             since the property also considers parent states. This fixes a bug
17924             when starting Paint.Net
17925
17926 2006-02-02  Jackson Harper  <jackson@ximian.com>
17927
17928         * Form.cs: If the forms handle hasn't been created yet don't call
17929         into xplatui to make it top most, just set the topmost flag on the
17930         form in CreateParams
17931         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
17932
17933 2006-02-01  Jackson Harper  <jackson@ximian.com>
17934
17935         * ScrollableControl.cs: Refactored the Recalculate method a
17936         little, this wasn't handling all the variants of bottom and right
17937         bars needed to be added and added/removed based on their
17938         counterparts being added/removed (which changes the drawable
17939         size). Also we special case client widths and heights of 0 and
17940         don't add the scrollbar for those.
17941
17942 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
17943
17944         * XplatUIX11.cs: 
17945           - Added method to get AbsoluteGeometry(); currently unused, but might
17946             be used in the future, if we try again to figure out toplevel
17947             coordinates with some more crappy window managers
17948           - Added FrameExtents() method to retrieve the WM set decoration size
17949           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
17950             to deal with at least KDE, FVWM and metacity (Fixes #77092)
17951         * Hwnd.cs: 
17952           - Added whacky_wm tracking var for metacity
17953           - Added logic to have default menu height if the actual menu height
17954             has not yet been calculated (part of fix for #77426)
17955         * Form.cs: Keep track whether client size has been set and re-set 
17956           it if a menu is added/removed afterwards (Fixes #77426)
17957
17958 2006-01-31  Jackson Harper  <jackson@ximian.com>
17959
17960         * Control.cs: When a new Site is set on the component attempt to
17961         pull the AmbientProperties from it.
17962
17963 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
17964
17965         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
17966           in the background of the owning form. Fixes #77332
17967
17968 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
17969
17970         * MimeIcon.cs: Fix for #77409
17971
17972 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
17973
17974         * XplatUIX11GTK.cs: Initial import
17975
17976 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
17977
17978         * FixedSizeTextBox: fixes class signature
17979
17980 2006-01-30  Jackson Harper  <jackson@ximian.com>
17981
17982         * FixedSizeTextBox.cs: New internal class that represents a
17983         textBox that will not be scaled.
17984         * TreeView.cs:
17985         * ComboBox.cs:
17986         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
17987         standard TextBox.
17988                 
17989 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
17990
17991         * XplatUIX11.cs: Retrieve default screen number instead of
17992           assuming 0. Attempted fix for #77318
17993
17994 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
17995
17996         * XplatUIWin32.cs: 
17997           - GetWindowPos: When a window is parented by FosterParent, use 
17998             the desktop instead of FosterParent as the base to get coordinates
17999           - CreateWindow: Don't make FosterParent the parent window for Popups
18000             if we don't want a taskbar entry, Popups automatically don't get one
18001         * Hwnd.cs: Need to call remove to actually remove the key from the
18002           hash table
18003
18004 2006-01-30  Mike Kestner  <mkestner@novell.com>
18005
18006         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
18007
18008 2006-01-30  Jackson Harper  <jackson@ximian.com>
18009
18010         * TreeView.cs:
18011         * TreeNode.cs: Raise events no matter how the treenode is
18012         checked. Patch by Don Edvalson.
18013
18014 2006-01-30  Jackson Harper  <jackson@ximian.com>
18015
18016         * TreeNode.cs: Signature fix.
18017
18018 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
18019
18020         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
18021
18022 2006-01-20  Mike Kestner  <mkestner@novell.com>
18023
18024         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
18025         event forwarding when menus are active.
18026         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
18027         Most of the patch is pdb's with a little rework.
18028
18029 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18030
18031         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
18032           Removed GetMenuDC and ReleaseMenuDC methods; replaced
18033           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
18034         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
18035         * InternalWindowManager.cs: Added use of PaintEventStart/End to
18036           handling of WM_NCPAINT message, now passing the PaintEventArgs to
18037           the PaintWindowDecorations method
18038         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
18039         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
18040         * MenuAPI.cs: Made tracker window invisible
18041         * XplatUIWin32.cs:
18042           - Removed GetMenuDC and ReleaseMenuDC methods
18043           - Implemented the client=false path for PaintEventStart and
18044             PaintEventEnd
18045
18046 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18047
18048         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
18049         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
18050           styles
18051         * Form.cs: 
18052           - MaximizeBox, MinimizeBox: Recreate the handle when setting
18053             the style
18054           - CreateParams: Reworked the styles to match MS look'n'feel,
18055             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
18056             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
18057
18058 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
18059
18060         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
18061           window is not mapped, since otherwise every form that's being 
18062           created is considered minimized, which is wrong.
18063         * Form.cs: Catching the exception and returning our internal value
18064           instead
18065
18066 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
18067
18068         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
18069           SetWindowMinMax() to have means to tell the driver about the minimum,
18070           maximum and maximized state window sizes. (Part of the fix for #76485)
18071         * Form.cs:
18072           - Implemented tracking of minimum and maximum window size, now calling
18073             new SetWindowMinMax() driver method to tell the driver (Part of the
18074             fix for #76485)
18075           - Finished handling of WM_GETMINMAXINFO method, now setting all values
18076             (Completes fix for #76485)
18077           - Calling new SetWindowMinMax driver method when the handle for a 
18078             form is created, to make sure the driver knows about it even if
18079             the values have been set before the window was created
18080           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
18081             to avoid messing up our anchoring calculations (partial fix
18082             for #77355)
18083         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
18084         * XplatUIX11.cs:
18085           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
18086           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
18087             (and presumably other freedesktop.org compliant WMs). Left the
18088             assumption unmapped=minimized, needed for SetVisible to work.
18089           - Now setting the window state when creating windows
18090           - Fixed SetVisible to consider/set the window state when mapping
18091             a Form. We cannot set the state before it's mapped, and we cannot
18092             use Form.WindowState once it's mapped (since it would ask the
18093             driver and get 'normal'. Therefore, we grab the state before
18094             mapping, map, and then set state.
18095           - Implmemented SetWindowMinMax method; Metacity does not seem to
18096             honor the ZoomHints, though.
18097         * XplatUIWin32.cs:
18098           - Removed MINMAXINFO (moved to XplatUIStructs)
18099           - Added SetWindowMinMax stub (on Win32 the only way to set that
18100             information is in response to the WM_GETMINMAXINFO message, which
18101             is handled in Form.cs)
18102           - Added logic to SetVisible to set the proper window state when a 
18103             form is made visible (fixes #75720)
18104
18105 2006-01-26  Jackson Harper  <jackson@ximian.com>
18106
18107         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
18108         same way we handle them with Invoke.
18109
18110 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
18111
18112         * Form.cs:
18113           - Added tracking of window state so CreateParams can return
18114             the appropriate style
18115           - Moved setting of WS_CAPTION style in CreateParams to allow
18116             styles without caption
18117         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
18118           control if the TextBox property is accessed. Fixes #77345
18119         * Control.cs:
18120           - get_Created: now uses is_disposed and is_created to determine
18121             return value (suggested by Jackson)
18122           - CreateHandle: No longer exits if the handle is being recreated
18123           - RecreateHandle: If the handle is not yet created call the 
18124             appropriate method to create either control or handle. If the
18125             control is already created CreateHandle will simply exit instead
18126             of just creating the handle
18127         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
18128           now SendMessage WM_DESTROY directly to the control when DestroyWindow
18129           is called.
18130         * XplatUIX11.cs: 
18131           - When DestroyWindow is called, instead of waiting for the 
18132             DestroyNotification from X11, we directly post it to the WndProc
18133             and immediately dispose the hwnd object.
18134             Same applies to DestroyChildWindows, and this obsoletes the
18135             expose_pending tracking. Contrary to Win32 behaviour we destroy our
18136             child windows before our own, to avoid X11 errors.
18137           - Removed the direct sending of WM_PAINT on UpdateWindow
18138         * XplatUIWin32.cs:
18139           - Reworked DoEvents and GetMessage to allow access to internal queue
18140             even when trying non-blocking access to the queue.  Fixes #77335. 
18141             Based on a patch suggestion by Don Edvalson. The new private
18142             GetMessage can now also be used as a backend for a PeekMessage
18143             frontend version.
18144         * XplatUI.cs: Improved debug output for CreateWindow
18145
18146 2006-01-25  Jackson Harper  <jackson@ximian.com>
18147
18148         * Help.cs: Allow param to be null. Patch by Don Edvalson.
18149
18150 2006-01-24  Jackson Harper  <jackson@ximian.com>
18151
18152         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
18153         when we have a MaxDropItems lower then the selected index.
18154
18155 2006-01-24  Jackson Harper  <jackson@ximian.com>
18156
18157         * Control.cs: Don't allow selection of non visible controls, allow
18158         selection of controls without parents.
18159
18160 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18161
18162         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
18163         * DataGridDrawingLogic.cs: Add editing row only when is necessary
18164
18165 2006-01-23  Jackson Harper  <jackson@ximian.com>
18166
18167         * UpDownBase.cs: Make the textbox handle all the selection and
18168         tabbing. This fixes tabing to updown controls.
18169
18170 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
18171
18172         * TextBoxBase.cs: fixes exception thown the object was null
18173
18174 2006-01-23  Jackson Harper  <jackson@ximian.com>
18175
18176         * ButtonBase.cs: Just use the base CreateParams. They set
18177         visibility and enabled correctly.
18178         * ComboBox.cs:
18179         * TrackBar.cs:
18180         * MonthCalendar.cs: Lets let the base set as much of the
18181         createparams as possible so we don't have duplicate code all over
18182         the place.
18183
18184 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
18185
18186         * ThemeGtk.cs: Added TrackBar and some experimental code to
18187           get double buffering back
18188
18189 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
18190
18191         * DataGrid.cs: Allows row number set internally higher than the last
18192         when creating a new row. Restores the editing functionality.
18193
18194 2006-01-20  Mike Kestner  <mkestner@novell.com>
18195
18196         * MimeIcon.cs: delay Image creation until the icons are accessed
18197         instead of creating 190 scaled images on GnomeHandler startup.
18198
18199 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
18200
18201         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
18202           first call base before processing the event. Fixes #77279
18203
18204 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
18205
18206         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
18207           that the stride for the GDI bitmap would match the stride of
18208           a DIB or a Cursor.
18209
18210 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
18211
18212         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
18213
18214 2006-01-19  Jackson Harper  <jackson@ximian.com>
18215
18216         * ComboBox.cs: Hookup the text controls keydown event so we get
18217         those when the text control has the focus.
18218
18219 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18220
18221         * Label.cs: Now using the base events instead of defining new ones;
18222           this allows us to just call the base properties without having to
18223           duplicate all base property logic 
18224
18225 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18226
18227         * Label.cs: A label by default is not a tabstop (Fixes one of our
18228           failing nunit tests)
18229
18230 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
18231
18232         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
18233         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
18234
18235 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
18236
18237         * Cursor.cs: Reimplemented creating cursor bitmaps without using
18238           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
18239           This fixes #77218
18240         * XplatUIWin32.cs: 
18241           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
18242             constructor creates images that can't be saved. Part of the fix
18243             for #76103
18244           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
18245           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
18246             bug fix for handling window state in forms properly)
18247
18248 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18249
18250         * ThemeGtk.cs: Simplify ScrollBar drawing
18251
18252 2006-01-18  Jackson Harper  <jackson@ximian.com>
18253
18254         * Splitter.cs: Set the default dock style for the splitter control
18255         in the constructor.
18256
18257 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18258
18259         * ThemeGtk.cs: Corrected StateType and ShadowType for
18260           gtk_paint_box
18261
18262 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18263
18264         * Control.cs: Make use of Theme.DoubleBufferingSupported
18265         * ThemeGtk.cs:
18266           - Added drawing for flat style buttons
18267           - Added ScrollBar drawing
18268
18269 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
18270
18271         * ThemeClearlooks.cs: Removed some unneeded code.
18272         * ThemeGtk.cs: First part of ThemeGtk enhancements.
18273
18274 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18275
18276         * LinkLabel.cs: We need to update the hover drawing when
18277           leaving the control as well.
18278
18279 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
18280
18281         * DataGrid.cs: Clicking on non empty areas in the columns
18282            area was giving an exception
18283
18284 2006-01-17  Jackson Harper  <jackson@ximian.com>
18285
18286         * ThemeWin32Classic.cs:
18287         * ListView.cs: Do not draw/clip the headers when the header style
18288         is None.
18289
18290 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18291
18292         * DataGrid.cs: Fixes 77260
18293         
18294 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
18295
18296         * DataGrid.cs: Clicking on a column on a empty grid was giving
18297           an exception
18298
18299 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
18300
18301         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
18302           or any keypress will crash the grid.
18303
18304 2006-01-17  Mike Kestner  <mkestner@novell.com>
18305
18306         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
18307         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
18308         invisible/previously-visible items.
18309         [Fixes #76909]
18310
18311 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
18312
18313         * ThemeClearlooks.cs:
18314         - Added CL_Draw_Button method; now other theme controls that are 
18315           not derived from button or do not have a button can draw buttons
18316           too
18317         - Updated ComboBox drawing
18318         - Beautified RadioButton drawing
18319         - Corrected drawing of bottom and left tabs
18320         - Beautified DateTimePicker and MonthCalendar
18321         - Added CPDrawButton and CPDrawRadioButton
18322
18323 2006-01-16  Jackson Harper  <jackson@ximian.com>
18324
18325         * ComboBox.cs: Set the initial value of the scrollbar to the
18326         current index. Reduce the numbers of refreshs and IndexOfs called.
18327
18328 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
18329
18330         * FileDialog.cs: When the file listview is focused hitting the
18331           backspace key moves the fileview to the parent directory
18332
18333 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18334
18335         * Form.cs: 
18336           - Added RecreateHandle call when changing taskbar visibility to 
18337             trigger reparenting in Win32 driver (Fixes #75719)
18338           - If a window has minimize or maximize buttons, it cannot have
18339             a help button
18340         * XplatUIWin32.cs:
18341           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
18342             the toplevel form with FosterParent (A toolwindow not on the
18343             taskbar) (Fixes #75719)
18344           - Made FosterParent a toolwindow
18345
18346 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18347
18348         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
18349
18350 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18351
18352         * ToolTip.cs: If SetToolTip is called from a control and the mouse
18353           is currently over that control, make sure that tooltip_window.Text
18354           gets updated
18355
18356 2006-01-13  Mike Kestner  <mkestner@novell.com>
18357
18358         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
18359
18360 2006-01-13  Jackson Harper  <jackson@ximian.com>
18361
18362         * TreeView.cs: On MS GetNodeAt never actually factors in the X
18363         value passed.  Also redraw the selected node when we recieve
18364         focus, so tabbing between trees works correctly.
18365
18366 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
18367
18368         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
18369           ~/.gconf/%gconf-tree.xml, so use
18370           .gconf/desktop/gnome/interface/%gconf.xml
18371
18372 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18373
18374         * TextControl.cs: Draw text in gray if control is disabled
18375
18376 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
18377
18378         * TreeView.cs: Draw the focus rectangle outside the highlight, to
18379           make sure it's always visible. Fixes #76680.
18380
18381 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
18382
18383         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
18384
18385 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
18386
18387         * PageSetupDialog.cs: Added.
18388         * PrintDialog.cs: Attributes.
18389         * PrintPreviewControl.cs: Updates.
18390         * PrintPreviewDialog.cs: Updates.
18391         
18392 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18393
18394         * Control.cs: Undid my selection check fix, since it's not needed
18395         * TextBoxBase.cs:
18396           - Now considering the presence of hscroll/vscroll when sizing
18397             vscroll/hscroll respectively. Fixed bug #77077
18398           - Added Left/Up/Down/Right to IsInputKey list to prevent
18399             ContainerControl from stealing them. This fixes what I broke
18400             with my last checkin.
18401
18402 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
18403
18404         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
18405           I finally understand how the property can be set without a setter :-)
18406
18407 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18408
18409         * Application.cs:
18410           - Switched RunLoop to use static Message.Create to create a 
18411             Message object
18412           - Added PreProcessMessage call in runloop for keyboard events; this
18413             is part of the fix for #77219, I overlooked this originally in the
18414             MSDN doc for PreProcessMessage
18415         * Control.cs:
18416           - Removed call to PreProcessMessage from handling of keyboard 
18417             messages; it's supposed to be done in the message pump
18418           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
18419             per MSDN documentation.
18420           - IsInputChar: All chars are input chars by default; removed the 
18421             parent calling chain, MS does not document that
18422           - PreProcessMessage: If IsInputChar is true, we want to return false
18423             to allow dispatching of the message
18424           - When selecting the next control, now also check that we're not
18425             selecting ourselves again and therefore return a false positive.
18426         * TextBoxBase.cs:
18427           - Tried to match return values for IsInputKey and ProcessDialogKey
18428             to what MS returns; moved processing of our special keys outside
18429             ProcessDialogKey since MS does not seem to return true on those.
18430           - Moved code that previously was in ProcessDialogKey into new private
18431             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
18432           - Reworked handling of WM_CHAR to not have to duplicate code from
18433             Control.cs anymore, instead we simply call down to base.
18434            
18435 2006-01-12  Jackson Harper  <jackson@ximian.com>
18436
18437         * ComboBox.cs: We always need to refresh the text area when
18438         EndUpdate is called. Fixes the combobox in the file dialog.
18439         * Control.cs: Don't create the creator_thread until the controls
18440         handle is created.  Also in InvokeRequired we check if the
18441         creator_thread is null. This gives the effect of InvokeRequired
18442         returning true if the controls handle is not created yet, and
18443         matches MS.
18444
18445 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18446
18447         * XplatUI.cs:
18448           - Added StartLoop() driver method. This is used to allow drivers to
18449             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
18450             loop for a particular thread
18451           - Added EndLoop() driver method. This is called once the message
18452             pump for the thread is shut down
18453           - Added SupportsTransparency method to allow the driver to indicate
18454             opacity support for windows
18455         * Form.cs:
18456           - Removed TODO attribute, completed AllowTransparency property
18457           - Added documented logic to Opacity
18458         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
18459           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
18460           versions of CompatibleTextRendering
18461         * X11Structs.cs: Added opacity atom to our atom enumeration
18462         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
18463           of a form might be set before it's reparented by the WM, and we need
18464           the opacity value without calling up to Form)
18465         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
18466           SupportsTransparency() driver methods
18467         * Application.cs: Now calling StartLoop and EndLoop driver methods
18468         * XplatUIX11.cs:
18469           - Added opacity atom registration
18470           - Added StartLoop()/EndLoop() methods. They're empty right now but
18471             will need to get implemented when we switch to a per-thread queue
18472           - Implemented SupportsTransparency() method
18473           - Implemented SetWindowTransparency() method
18474           - Added support for setting the opacity value when a window is
18475             reparented (since the opacity needs to be set on the WM frame)
18476         * XplatUIOSX.cs, XplatUIWin32.cs:
18477           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
18478
18479 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18480
18481         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
18482
18483 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
18484
18485         * FileDialog.cs: Added ToolTip for MWFFileView
18486         * MimeIcon.cs: Rewrote GnomeHandler.
18487           - Get currently used gnome icon theme from
18488             ($HOME)/.gconf/%gconf-tree.xml
18489           - Make use of inherited icon themes
18490           - Support SVG icon themes like Tango via librsvg
18491
18492 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18493
18494         Revert's Jackson's revert which broke 2.0 builds.   Fix both
18495         builds. 
18496         
18497         * Application.cs: Move the use_compatible_text_rendering outside
18498         the NET_2_0 define.  If we ever need to use the
18499         use_compatible_text_rendering on the individual controls they will
18500         access the variable from the common shared code paths.
18501
18502 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
18503
18504         * XplatUI.cs:
18505           - Added more granular debug options
18506           - Added method to print both window text and id
18507           - Switched debug output to use new Window() debug method
18508           - Added IsEnabled() driver method
18509           - Added EnableWindow() driver method
18510         * Form.cs:
18511           - Removed end_modal; no longer needed, new loop handles termination
18512             via 'closing' variable
18513           - If form is modal, setting DialogResult will now initiate loop
18514             termination via 'closing' variable
18515           - Added support for is_enabled/WS_DISABLED to CreateParams
18516           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
18517             does all the work
18518           - Removed code that's now in RunLoop from ShowDialog()
18519           - Added various documented sanity checks to ShowDialog()
18520           - Added handling of WM_DESTROY message; we set 'closing' on getting
18521             the message to indicate the message pump to terminate
18522           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
18523             send by the Application.ExitThread method. (We send the message
18524             to destroy the window after all other events have been
18525             processed through the queue, instead of destroying the handle 
18526             directly)
18527           - Moved code from Close() method to WM_CLOSE handler; added logic
18528             to only send close-related events if the form is not displayed
18529             modal
18530         * Splitter.cs (..ctor): Fixed typo in resource name
18531         * Control.cs:
18532           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
18533             brush now
18534           - set_Cursor: Now only setting calling into XplatUI if the handle for
18535             the control is already created; this avoids implict handle creation
18536             or crashes if it's not created
18537           - set_Enabled: Now setting the enabled state via the new driver method
18538             instead of just tracking it
18539           - CreateParams: Added logic to set WS_DISABLED based on enabled state
18540           - CreateControl: Reordered event firing and method calls to more
18541             closely fire events in the order MS does. Now setting the
18542             enabled state in the driver when creating the control.
18543           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
18544             match MS order
18545         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
18546           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
18547         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
18548         * Hwnd.cs:
18549           - Added tracking of window enabled state (get_Enabled/set_Enabled)
18550           - Added EnabledHwnd property to easily allow a driver to find the
18551             handle of the first enabled window in the parent chain (this is
18552             used by drivers to pass up input events of disabled windows)
18553         * XplatUIDriver.cs: Added IsEnabled() method
18554         * Application.cs:
18555           - Removed crude and obsolete exiting tracking variable
18556           - Removed internal ModalRun(); replaced by RunLoop()
18557           - Implemented private CloseForms() method to allow closing all 
18558             windows owned by a particular (or all) threads
18559           - Exit() now properly closes all windows without forcing the message
18560             pump to quit
18561           - Removed obsolete InternalExit() method
18562           - Changed Run() methods to use new RunLoop() message pump
18563           - Implemented new RunLoop() method for both modal and non-modal forms
18564         * CommonDialog.cs:
18565           - get_CreateParams: Added setting of WS_DISABLED
18566           - Simplified ShowDialog(); now all the work is done in RunLoop(),
18567             invoked via Form.ShowDialog()
18568         * NativeWindow.cs: We don't remove the window from the collection when
18569           the handle is destroyed; there might still be messages for it in the
18570           queue (mainly the resulting WM_DESTROY); instead it will be removed
18571           when Control calls InvalidateHandle in the WM_DESTROY handler
18572         * XplatUIX11.cs:
18573           - CreateWindow: Added logic to handle the WS_DISABLED window style
18574           - EnableWindow: Implemented based on Hwnd.Enabled
18575           - GetMessage: Reset PostQuitState so the method can be called again
18576           - Implemented support for disabled windows (passing messages to the
18577             first enabled parent) in handling all input messages
18578           - Added optimizations for handling Expose events
18579           - Implemeted new driver method IsEnabled()
18580           - Now always resetting paint pending tracking vars when we start paint
18581           - Re-implemented UpdateWindow via just sending a WM_PAINT message
18582         * XplatUIOSX.cs: Added IsEnabled method stub
18583         * XplatUIWin32.cs: Implemented new IsEnabled() method
18584
18585 2006-01-11  Jackson Harper  <jackson@ximian.com>
18586
18587         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18588         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
18589         variables a little.
18590         * ColorDialog.cs: Clear out the old form before adding the new
18591         panel.  
18592
18593 2006-01-11  Jackson Harper  <jackson@ximian.com>
18594
18595         * X11Dnd.cs: Make sure to add all the text formats when adding
18596         strings to the data object.
18597         * TreeNodeCollection.cs: When adding to a sorted tree we need to
18598         do some redrawing too.  Also change the UpdateNode to an
18599         UpdateBelow so the newly added node gets painted.
18600         
18601 2006-01-11  Miguel de Icaza  <miguel@novell.com>
18602
18603         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
18604         LinkLabel.cs, PropertyGrid.cs: Implement the
18605         UseCompatibleTextRendering property for 2.x
18606
18607         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
18608
18609 2006-01-11  Jackson Harper  <jackson@ximian.com>
18610
18611         * TreeView.cs: Use the property for setting the selected node so
18612         the correct events get raised.
18613         * TreeNode.cs: Update the tree when the fore/back colours of a
18614         node are set.
18615
18616 2006-01-10  Jackson Harper  <jackson@ximian.com>
18617
18618         * TreeView.cs: Allow setting SelectedNode to null.
18619
18620 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18621
18622         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
18623
18624 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18625
18626         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
18627
18628 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18629
18630         * PrintDialog.cs: Added attributes and set default property values.
18631
18632 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18633
18634         * PrintControllerWithStatusDialog.cs: 
18635         Added PrintControllerWithStatusDialog.
18636
18637 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18638
18639         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
18640         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
18641
18642 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
18643
18644         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
18645
18646 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18647
18648         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
18649         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
18650
18651 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
18652
18653         * MimeIcon.cs: Added internal class SVGUtil.
18654
18655 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
18656
18657         * FileDialog.cs: Don't crash if there are two files with the
18658           same name but different locations.
18659
18660 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
18661
18662         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
18663         dates across multiple month grids. Used to not highlight entire 
18664         month, but does now.
18665         
18666 2006-01-06  Jackson Harper  <jackson@ximian.com>
18667
18668         * MonthCalendar.cs: Removed DoEvents call to prevent a running
18669         message loop. Change timer intervals to numbers that seem more
18670         natural.
18671
18672 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
18673
18674         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
18675           object for location info since screen object is now implemented.
18676
18677 2006-01-05  Jackson Harper  <jackson@ximian.com>
18678
18679         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
18680         * AsyncMethodResult.cs: We no longer use a WeakReference for the
18681         AsyncMethodResult, this is because we ALWAYS want the
18682         ManualResetEvent to get set.
18683         * Control.cs: When disposing use an async invoke to call shutdown
18684         code, so that thigns don't block on the finalizer thread.  Also
18685         check if we even have a message loop before trying to send
18686         messages, if we don't then don't bother sending messages.
18687         - No more weak references for async methods
18688         * XplatUIDriver.cs: No more weak references for async methods.
18689
18690 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
18691
18692         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
18693           returns two FontFamily with the same name
18694
18695 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
18696
18697         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
18698           drawing disabled text. Instead using the ColorGrayText color
18699
18700 2006-01-04  Jackson Harper  <jackson@ximian.com>
18701
18702         * TreeNode.cs: redraw the node when its image index is changed.
18703
18704 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
18705
18706         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
18707           time I checked there are no others like it.
18708
18709 2006-01-04  Jackson Harper  <jackson@ximian.com>
18710
18711         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
18712         this gives the behavoir I was looking for.
18713         * Control.cs: Special case Invoking EventHandlers, this matches MS
18714         and fixes part of bug #76326.
18715
18716 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
18717
18718         * ThemeClearlooks.cs, FileDialog.cs:
18719           - Reflect the latest Theme class changes
18720           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
18721             with DateTime
18722             
18723 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
18724
18725         * Theme.cs: Cache UI resource images and resize them if needed
18726
18727 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
18728
18729         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
18730           is called. This fixes the crash in Nexxia when setting the font
18731           attributes in the chat. [However, RTF needs a look-over to make sure
18732           that all SelectionXXX methods handle the special case that selection
18733           is empty and therefore the change must be applied to all text starting
18734           at the cursor/selection start]
18735
18736 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
18737
18738         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
18739           XplatUIOSX.cs: Added SendMessage and PostMessage methods
18740         * X11Keyboard.cs: Switched to new way of calling PostMessage
18741
18742 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
18743
18744         * Theme.cs: Added theme interface for images to allow the theme to
18745           control what images are used for things like FileDialog, MessageBox
18746           icons, etc.
18747         * MessageBox.cs: Now uses the new Theme icon/image interfaces
18748
18749 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
18750
18751         * FileDialog.cs:
18752           - Removed some dead code
18753           - Opening a recently used file does work now
18754           - Small UI enhancements
18755           - Refactoring
18756
18757 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
18758
18759         * FileDialog.cs: Forgot too add __MonoCS__
18760
18761 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
18762
18763         * FileDialog.cs: We are able to read recently used files now let's
18764           go on and write them.
18765
18766 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
18767
18768         * FileDialog.cs: Breathe some life into "last open"/"recently used"
18769           button
18770         * MimeIcon.cs: Do a check for the top level media type also
18771
18772 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
18773
18774         * ThemeClearlooks.cs:
18775           - Added CPDrawStringDisabled
18776           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
18777             some chars if the text doesn't fit into text_rect
18778           - DrawListViewItem: If View = View.LargeIcon center the image;
18779             rewrote the drawing of ListViewItem.Text if View = 
18780             View.LargeIcon
18781
18782 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
18783
18784         * MimeIcon.cs: Use default KDE icon theme if there is no
18785           "48x48" directory for the current icon theme, fixes #77114
18786         * Mime.cs: Disable not working and actually not used code. 
18787         * ThemeWin32Classic.cs:
18788           - Replace "new SolidBrush" in GetControlBackBrush and
18789             GetControlForeBrush with ResPool.GetSolidBrush
18790           - Changed DrawListViewItem from private to protected virtual
18791         * FileDialog.cs:
18792           - Added form.MaximizeBox = true
18793           - Don't throw an exception if there is a broken symbolic link
18794
18795 2005-12-23  Jackson Harper  <jackson@ximian.com>
18796
18797         * TabControl.cs: Give the panels focus, keyboard navigation is
18798         fixed so this works correctly now.
18799         - We need these key events also.
18800         * ToolBar.cs: Remove some of the poor mans double buffering.
18801         
18802 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
18803
18804         * ComboBox.cs: The internal TextBox now returns the focus.
18805
18806 2005-12-23  Jackson Harper  <jackson@ximian.com>
18807
18808         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
18809
18810 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
18811
18812         * Control.cs: Removed debug code
18813         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
18814           implicit children
18815
18816 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
18817
18818         * Control.cs: When creating the control, update the Z-order after
18819           all it's children are created, too. (Fixes nexxia not showing
18820           picturebox bug)
18821
18822 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
18823
18824         * Control.cs: Do not update the anchoring distances if layout is
18825           suspended, instead do it once layout is resumed
18826
18827 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
18828
18829         * Control.cs: 
18830           - After many hours of debugging, for both Jackson and
18831             myself, it turns out that it helps to set the parent of a control
18832             if you want to actually see it onscreen. In the spirit of that
18833             discovery, we're now setting the parent of the control and
18834             it's children when the control's handle is created. This fix
18835             will make Lutz Roeder's Reflector run happily. 
18836           - now just creating the handle instead of the whole control when
18837             getting a graphics context for the control.
18838
18839 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
18840
18841         * ScrollableControl.cs: When calculating the canvas, don't consider
18842           the scrollbar widths. Instead, predict if horizontal scrollbar
18843           will affect canvas when deciding on vertical display and vice versa.
18844
18845 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
18846
18847         * RichTextBox.cs: Set default RTF font for documents that don't
18848           have a font table (Fixes #77076)
18849
18850 2005-12-22  Jackson Harper  <jackson@ximian.com>
18851
18852         * TextBoxBase.cs: It's difficult to do, but you can have an empty
18853         clipboard. This prevents a NullRef in that case.
18854         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
18855         clipboard. PRIMARY is for the currently selected text only. (We
18856         should implement PRIMARY at some point.
18857
18858 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
18859
18860         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
18861           a Unicode function with a structure that was defined in Ansi way.
18862           This fixes #76942.
18863
18864 2005-12-21  Jackson Harper  <jackson@ximian.com>
18865
18866         * StatusBar.cs: Statusbar handles its fore/back colours on it's
18867         on. Because thats how it rolls. (and this avoids it using ambient
18868         colours).
18869         * ThemeWin32Classic.cs: Use the proper back color for filling.
18870         * Menu.cs: Use the system menu bar color for drawing menu
18871         bars. Using the window back color will bring ambient colours into
18872         the picture.
18873
18874 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
18875
18876         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
18877           Bitmaps were created and not disposed.
18878
18879 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
18880
18881         * Control.cs (CreateControl): Don't do anything if the control is
18882           already created, otherwise we'd fire the OnCreated event more than
18883           once
18884
18885 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
18886
18887         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
18888           will always match. Instead return -1. Fixes #76464.
18889
18890 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
18891
18892         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
18893           neither the beginning nor the end of the line (Fixes bug #76479)
18894
18895 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
18896
18897         * Control.cs:
18898           - ControlNativeWindow.ControlFromHandle(): Now handling situation
18899             where handle is invalid
18900           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
18901             instead of slower linear search
18902         * NativeWindow.cs: Don't remove the window from the hashtable until
18903           after the driver has destroyed it (since the driver might use
18904           Control.FromHandle to lookup the control object
18905         * Hwnd.cs: Added DestroyPending property to track if a window is 
18906           already destroyed as far as the driver is concerned and only hasn't
18907           yet notified the control
18908         * XplatUIX11.cs:
18909           - Activate(): Check if the window is still valid before using the 
18910             handle
18911           - Implemented DestroyChildWindow() method to mark child windows as
18912             destroyed when a window is destroyed. This prevents situations 
18913             where we might call an X method based on queued events for a
18914             window that already has been destroyed but we haven't yet pulled
18915             the destroy method from the queue.
18916           - Added a call to the new DestroyChildWindow() method to the drivers
18917             DestroyWindow code. Also now marking the destroyed window itself
18918             as pending
18919
18920 2005-12-20  Jackson Harper  <jackson@ximian.com>
18921
18922         * StatusBar.cs:
18923         * StatusBarPanel.cs: Don't calculate panel sizes on draw
18924         anymore. Just do them when needed, also track the rects of panels
18925         so that we can optimize refreshing more in the future.
18926
18927 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
18928
18929         * ColorDialog.cs: Fixed focus drawing in small color controls
18930
18931 2005-12-19  Jackson Harper  <jackson@ximian.com>
18932
18933         * InternalWindowManager.cs:
18934         * MdiWindowManager.cs: Cleanup some coordinate system changes so
18935         moving windows works properly.
18936
18937 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
18938
18939         * Control.cs: 
18940           - Removed call to InitLayout() from SetBoundsCore(); doc says
18941             it's only called when a control is added to a container
18942           - Split InitLayout logic, moved to separate UpdateDistances() method
18943             since we need to perform those calculations more often than just
18944             when adding the control to a container. (Needed to fix #77022)
18945           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
18946           - Reduced the OnBindingContextChanged events count, don't send them
18947             unless the control is created, we still aren't totally matching
18948             MS, but I can't quite figure out some of their rules
18949
18950 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
18951
18952         * ThemeClearlooks.cs: Corrected distance between ProgressBar
18953           stripes
18954
18955 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
18956
18957         * ThemeClearlooks.cs:
18958           - Updated ProgressBar drawing
18959           - Corrected drawing of ScrollBars and scroll buttons
18960           - Some temporary fixes for minor pixel artefacts
18961
18962 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
18963
18964         * Control.cs:
18965           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
18966             cause events to be sent in the same order as MS does.
18967           - Added ChangeParent() method to trigger various OnXXXChanged events
18968             that need to be fired when a parent changes (This is a reworking
18969             of the patch from r54254, with the X11 errors fixed)
18970           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
18971             since on MS we get OnLayoutChanged events when calling Clear()
18972           - Changed Enabled property to consider parent state as well, if a
18973             parent is not enabled, the control will not be either
18974           - Changed Parent property to simply call Controls.Add() since that
18975             now does all the work required, this way we avoid code duplication
18976           - Threw in a few OnBindingsContextChanged calls to try and match
18977             when MS sends them. We seem to send a few too many, though.
18978           - Added call to CreateControl when adding the control to a parent.
18979             We were never calling CreateControl. Still needs some work, in
18980             some places we treat HandleCreated and ControlCreated as equal, 
18981             which is wrong
18982           - Removed obsolete commented out code from UpdateZOrder()
18983
18984 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
18985
18986         * ThemeClearlooks.cs: Updated TrackBar drawing.
18987
18988 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
18989
18990         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
18991
18992 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
18993
18994         * FileDialog.cs: Add the Help button and the open readonly
18995           checkbox only if needed
18996
18997 2005-12-16  Jackson Harper  <jackson@ximian.com>
18998
18999         * Control.cs: Make sure we have an active menu before trying to
19000         process commands on it. Prevents menu-less forms from crashing
19001         when Alt is pressed.
19002         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
19003         Dieter Bremes.
19004         * RichTextBox.cs: Expand statement to help out gmcs and fix the
19005         2.0 build.
19006
19007 2005-12-16  Jackson Harper  <jackson@ximian.com>
19008
19009         * InternalWindowManager.cs: Don't translate tool windows screen
19010         coordinates. This fixes windows 'bouncing' around when being moved.
19011
19012 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19013
19014         * TextBoxBase.cs:
19015           - MaxLength now treats 2^31-1 equal to unlimited length (this is
19016             not quite MS compatible, MS uses that number only for single line
19017             and 2^32-1 for multi-line, but I figure it won't hurt keeping
19018             the limit at 2GB)
19019           - Now enforcing the MaxLength limit when entering characters
19020           - Added argument to internal Paste() method to track if it's called
19021             from programatically or via keyboard, since keyboard driven pastes
19022             need to enforce max-length
19023           - Added logic to Paste to only paste as many chars as MaxLength 
19024             allows
19025         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
19026         * TextControl.cs:
19027           - Added Length property to return number of characters in document
19028           - Added private CharCount property which only tracks actual chars
19029             in the document (no linefeeds) and fires event when CharCount
19030             changes
19031           - Added tracking of character count to all methods that alter it
19032           - Added LengthChanged event to allow applications to subscribe
19033             to any changes to the document
19034
19035 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
19036
19037         * TextBox.cs: 
19038           - Removed local password_char field (moved to TextBoxBase)
19039           - Now setting the document's password var when password is
19040             set
19041         * TextBoxBase.cs:
19042           - Added password_char field (needed here so MultiLine can
19043             access it)
19044           - Added logic to MultiLine property setter to set the document's
19045             variable when password display is allowed
19046           - Removed debug code and made some debug code conditional
19047         * TextControl.cs:
19048           - Added RecalculatePasswordLine() method to handle special password
19049             char only lines
19050           - Added PasswordChar property, also added related tracking vars
19051           - Draw() method now uses local text var for grabbing text to draw,
19052             this var is set to line.text unless we're doing password display,
19053             then it is set to the pre-generated all-password-chars line
19054           - Added calling RecalculatePasswordLine() method for password lines
19055
19056 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19057
19058         * Hwnd.cs: 
19059           - Added Reparented property to allow tracking of Window Manager
19060             reparenting actions (which affect X/Y calculations of toplevel 
19061             windows)
19062           - Made ToString() print window handles in hex
19063         * XplatUIX11.cs:
19064           - AddConfigureNotify(): Now uses reparented state off Hwnd to
19065             determine if X/Y needs offsetting
19066           - AddConfigureNotify(): Fixed offset calculations
19067           - Now adds ReparentNotify messages into the queue
19068           - Now processes ReparentNotify messages and causes a 
19069             WM_WINDOWPOSCHANGED message to be sent upstream if a window
19070             is reparented (as most likely it's X/Y coordinates are changed
19071             due to that)
19072
19073 2005-12-14  Jackson Harper  <jackson@ximian.com>
19074
19075         * XplatUIX11.cs: Tool windows still need to respek focus.
19076
19077 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
19078
19079         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
19080           have a working release
19081
19082 2005-12-13  Jackson Harper  <jackson@ximian.com>
19083
19084         * Form.cs: Update styles after setting the border style regardless
19085         of whether or not the window is using a window manager.
19086
19087 2005-12-13  Jackson Harper  <jackson@ximian.com>
19088
19089         * Form.cs: We now hook into an internal window manager instead of just an
19090         MDI subsystem, this is so we can have properly behaving tool windows.
19091         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
19092         * InternalWindowManager.cs: New internal class that acts as a
19093         window manager for tool windows and as a base for mdi windows.
19094         * MdiWindowManager.cs: New class that acts as a window manager for
19095         mdi windows.
19096
19097 2005-12-12  Jackson Harper  <jackson@ximian.com>
19098
19099         * Control.cs: Updates so we match behavoir for for implicit
19100         controls. Fixes explosions in MDI.
19101
19102 2005-12-12  Jackson Harper  <jackson@ximian.com>
19103
19104         * Control.cs: Implement Invalidate (Region).
19105
19106 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
19107
19108         * Control.cs: 
19109           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
19110             the same events as MS does. MS fires events for each property 
19111             except, for unknown reasons, Cursor, when the control is reparented. 
19112             I can't seem to totally match add/remove since MS also fires some 
19113             VisibleChanged events, which makes no sense. Consolidated the
19114             parenting code into a separate method so it can be called from
19115             both Add and Remove. set_Parent no longer needs any special logic
19116             as it calls the parent's add method which implicitly fires
19117             all events
19118           - Removed some obsolete code and debug output
19119           - Enabled state is inherited from parents, if this is enabled
19120
19121 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
19122
19123         * Form.cs: Removed commented out code
19124
19125 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
19126
19127         * Control.cs:
19128           - Added internal version of Invoke, with additional argument 
19129             indicating if we're calling it from a Dispose() handler. That
19130             way we can avoid BeginInvoke throwing an exception if we're
19131             calling for an already destroyed window.
19132           - Added a dispose argument to BeginInvokeInternal, and made the
19133             check if a valid window handle chain exists conditional on
19134             it not being a dispose call
19135           - Removed code in DestroyHandle to destroy our children. Since we
19136             now handle the WM_DESTROY message we will catch all our children
19137             being destroyed.
19138           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
19139         * Form.cs:
19140           - Added a field to track the application context of the form.
19141           - No need to set closing variable as response to WM_CLOSE, instead
19142             we destroy the window. We also call PostQuitMessage if the form
19143             has an application context (which makes it the main app form,
19144             which, when closed terminates the app)
19145         * XplatUI.cs:
19146           - Dropped Exit() method, it's naming was confusing
19147           - Added PostQuitMessage() which causes GetMessage to return false
19148             once the message queue is empty
19149         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
19150           PostQuitMessage()
19151         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
19152           no longer a valid XplatUI method, but left it in since it's used
19153           internally. Added empty PostQuitMessage() method.
19154         * MenuAPI.cs: Replaced call to Exit() with call to
19155           PostQuitMessage, even though this is probably no longer needed.
19156         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
19157         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
19158         * Application.cs:
19159           - Replaced call to XplatUI.Exit() with PostQuitMessage()
19160           - Removed old debug code that would call XplatUI for exception
19161             display, enabled standard exception handling (Still not enabled
19162             though, until NativeWindow's ExternalExceptionHandler define
19163             is removed
19164         * NativeWindow.cs:
19165           - Added internal method to allow control to update NativeWindow
19166             after a window has been destroyed
19167           - Added handling of already destroyed windows when calling i
19168             DestroyWindow
19169           - Added removal of handle from list on ReleaseHandle
19170         * XplatUIX11.cs:
19171           - Dropped GetMessageResult var and related code
19172           - Added PostQuitState to field to track if PostQuitMessage has been
19173             called
19174           - Dropped Exit() method
19175           - Added PostQuitMessage() method
19176           - GetMessage now will return false if PostQuitState is set and no
19177             more messages are in the queue.
19178           - Expose handler will no longer generate WM_PAINT messages if we are
19179             in PostQuitState since it's very likely any windows have already
19180             been destroyed, and since Hwnd won't get updated until we have
19181             processed the DestroyNotify we'd be causing X errors.
19182         
19183 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19184
19185         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
19186           Thanks to Mike for pointing out the err of my ways.
19187
19188 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19189
19190         * Control.cs(PreProcessMessage): Moved menu handling back, but
19191           after all other key handling, to match MS (who handles Menu in
19192           DefWndProc)
19193         * Menu.cs (WndProc): Removed my brainfart
19194
19195 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19196
19197         * Control.cs(PreProcessMessage): Removed special menu handling 
19198         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
19199
19200 2005-12-07  Mike Kestner  <mkestner@novell.com>
19201
19202         * Control.cs : special case SYSKEYUP so that we can adjust keynav
19203         state according in tracker.
19204         * Menu.cs : promote tracker field to base class and provide a tracker
19205         lookup capability.  Add/Remove shortcuts dynamically if the top menu
19206         has a tracker. Unparent items that are removed from the collection.
19207         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
19208         * Theme*.cs: add always_show_hotkeys field to support configurability
19209         of mnemonic display.  win32 doesn't show mnemonics until Alt is
19210         pressed.
19211
19212 2005-12-07  Jackson Harper  <jackson@ximian.com>
19213
19214         * MdiChildContext.cs: Use Control.ResetCursor.
19215         * Control.cs: ResetCursor needs to set the property so that the
19216         correct XplatUI call gets made.
19217
19218 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19219
19220         * Control.cs: More fixes to make our key events match MS. We
19221           were not setting the modifier state on KeyData, and we were
19222           not generating any events when Alt was pressed with a key
19223           since handling of WM_SYSxxx was missing for the OnKey methods.
19224
19225 2005-12-07  Jackson Harper  <jackson@ximian.com>
19226
19227         * MdiChildContext.cs: reenable the sizing code.
19228         - When the mouse leaves a window reset its cursor.
19229
19230 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19231
19232         * ThemeClearlooks.cs: Reflect latest Hwnd changes
19233
19234 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
19235
19236         * Hwnd.cs: Now using the theme 3d bordersize to calculate
19237           widths of Fixed3D borders
19238
19239 2005-12-07  Jackson Harper  <jackson@ximian.com>
19240
19241         * MdiClient.cs: Fix warnings. Earn Mike's love.
19242
19243 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
19244
19245         * ThemeClearlooks.cs:
19246           - Adjusted mouse over button color
19247           - Added first parts of CheckBox drawing
19248           - Added correct color for selected text background
19249           - Fixed ComboBox drawing
19250           - Added CPDrawBorder3D and CPDrawBorder
19251
19252 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19253
19254         * XplatUIX11.cs: Added call to XBell for AudibleAlert
19255
19256 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
19257
19258         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
19259           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
19260           alert users via sound. We could add an enum arg with different
19261           types of alerts in the future
19262
19263 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
19264
19265         * Control.cs: Fix behaviour problems pointed out by Mike
19266
19267 2005-12-05  Mike Kestner  <mkestner@novell.com>
19268
19269         * StatusBarPanel.cs: add Invalidate method and hook it into all the
19270         prop setters.  Calls parent.Refresh for now, but could be maybe be
19271         optimized with an internal method on StatusBar at some point.
19272         [Fixes #76513]
19273
19274 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
19275
19276         * RichTextBox.cs: Implemented get_SelectionColor
19277
19278 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
19279
19280         * ThemeClearlooks.cs:
19281           - Removed dead code
19282           - Draw black button border only if button is Form.AcceptButton
19283           - Draw correct button color for pressed RadioButton if the mouse 
19284             has entered the button
19285           - Updated ProgressBar drawing!
19286           - Updated CPDrawSizeGrip drawing
19287           - Updated StatusBarPanel drawing
19288
19289 2005-12-05  Mike Kestner  <mkestner@novell.com>
19290
19291         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
19292         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
19293
19294 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
19295
19296         * ThemeClearlooks.cs: Initial check-in, activate with
19297           export MONO_THEME=clearlooks
19298         * ThemeEngine.cs: Added ThemeClearlooks
19299
19300 2005-12-03  Mike Kestner  <mkestner@novell.com>
19301
19302         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
19303         [Fixes #76897]
19304
19305 2005-12-02  Jackson Harper  <jackson@ximian.com>
19306
19307         * Form.cs: If the child form has no menu the default main menu is
19308         used as the active menu.
19309
19310 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
19311
19312         * ListBox.cs: Check if any items exist before trying to resolve 
19313           coordinates into items
19314
19315 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19316
19317         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
19318           as the second color for the background hatch
19319
19320 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
19321
19322         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
19323         * RichTextBox.cs: FormatText position arguments are 1-based, now making
19324           sure that what we pass to FormatText is always 1-based. Fixes #76885
19325
19326 2005-11-29  Miguel de Icaza  <miguel@novell.com>
19327
19328         * NumericUpDown.cs (EndInit): When we are done initializing,
19329         reflect any updates on the UI.
19330
19331 2005-12-02  Jackson Harper  <jackson@ximian.com>
19332
19333         * ImplicitHScrollBar.cs:
19334         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
19335         their container controls.
19336         * TreeView.cs: Use the new implicit scrollbars.
19337
19338 2005-12-02  Jackson Harper  <jackson@ximian.com>
19339
19340         * TreeView.cs: Make top_node internal so the TreeNodeCollections
19341         can play with it.
19342         * TreeNodeCollection.cs: If we remove the topnode we need to
19343         update topnode to the next node in line.
19344         - When clearing nodes go through the same process as removing
19345         them, so they get depareneted and checked if they are top node.
19346
19347 2005-12-01  Jackson Harper  <jackson@ximian.com>
19348
19349         * TreeView.cs: When imagelists are used the image area is
19350         selectable as well as the text.
19351         - If there are no selected nodes select the first one.
19352         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
19353         so don't do it more then we need to.
19354
19355 2005-12-01  Jackson Harper  <jackson@ximian.com>
19356
19357         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
19358         that arrows can be scaled.
19359
19360 2005-12-01  Jackson Harper  <jackson@ximian.com>
19361
19362         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
19363         fail. Patch by Dieter Bremes
19364
19365 2005-11-30  Jackson Harper  <jackson@ximian.com>
19366
19367         * Form.cs: Property is 2.0 only
19368         * PrintDialog.cs: Signature fix.
19369
19370 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19371
19372         * TextControl.cs: 
19373           - No longer artificially moves text 2 pixels down (now that we have
19374             borders this is no longer needed)
19375           - Added calcs for left, hanging and right indent
19376
19377 2005-11-23  Mike Kestner  <mkestner@novell.com>
19378
19379         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
19380
19381 2005-11-30  Jackson Harper  <jackson@ximian.com>
19382
19383         * MdiChildContext.cs: Set the cloned menus forms, as these don't
19384         get cloned as part of CloneMenu ().
19385         * Menu.cs: Make sure the parent of the items get set correctly
19386         when they are added.  And the owners are notified of the changes.
19387         * Form.cs: Create an ActiveMenu property, so that when MDI is used
19388         we can change the menu being displayed/handled by the form without
19389         changing the menu assosciated with the form.
19390         - Don't let Mdi children draw/handle menus.
19391         
19392 2005-11-30  Jackson Harper  <jackson@ximian.com>
19393
19394         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
19395         a MenuChanged event. Just to make the API a little more
19396         consistent.
19397         * MainMenu.cs:
19398         * MenuItem.cs: Use the new OnMenuChanged
19399         * MdiChildContext.cs: Handle menu merging.
19400         * Form.cs: Implement MergedMenu.
19401         
19402 2005-11-30  Jackson Harper  <jackson@ximian.com>
19403
19404         * Menu.cs: We were misusing Add. Add goes behind the specified
19405         index according to the docs, and does not replace the specified
19406         index. So I added an Insert method.
19407
19408 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
19409
19410         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
19411           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
19412           is for Jackson
19413         * RichTextBox.cs: Added calls to base for DnD events
19414
19415 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
19416
19417         * TextControl.cs:
19418           - Fixed drag-selection related crash; style fixes
19419           - Implemented undo class
19420             o Implemented method to capture document state for specified
19421               range in document tree
19422             o Implemented method to restore captured document state
19423             o Implemented cursor tracking
19424             o Implemented basic undo stack
19425           - Added undo cursor tracking to methods altering cursor location
19426           - Added undo tracking to selection deletion (still missing
19427             other text-altering hookups)
19428         * RichTextBox.cs:
19429           - Added SelectionLength property
19430           - Implemented CanPaste()
19431           - Implemented Paste()
19432           - Added missing protected methods
19433           - Fixed RTF->Document conversion; now uses font index 0 and color 
19434             index 0 as the default font for the parsed text
19435           - Fixed RTF<->Document font size translation
19436           - Fixed RTF generation, now properly handles cross-tag boundaries
19437             for single line selection
19438           - No longer always appends blank line to generated RTF
19439           - Removed TODOs
19440           - Added missing attributes
19441           - Hooked up undo-related methods
19442         * TextBoxBase.cs:
19443           - Implemented Copy()
19444           - Implemented Paste()
19445           - Implemented Cut()
19446           - Fixed caret mis-behaviour on backspace across line-boundaries
19447
19448 2005-11-29  Jackson Harper  <jackson@ximian.com>
19449
19450         * MdiClient.cs: Add a method for activating mdi children. Very
19451         basic right now. I imagine someday it might need more girth.
19452         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
19453         children windows names are added to the menu item.
19454         * ThemeWin32Classic.cs: Draw the arrow if the item is an
19455         mdilist. This happens regardless of whether or not there are any
19456         mdi windows to see in the list, and according to my tests happens
19457         before the items are even added. Also happens if there isn't even
19458         an mdi client to get windows from.
19459
19460 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
19461
19462         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
19463         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
19464
19465 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
19466
19467         * DataGridTableStyle.cs:
19468           - Create always the styles for the missing columns even if they are
19469             provided by the user (not default table style)
19470         * DataGrid.cs:
19471           - Fixes bug 76770
19472           - Fixes SetDataBinding (always re-attach source)
19473           - Fixes SetNewDataSource (only clear styles if they are not for 
19474             this source)
19475          -  Expands OnTableStylesCollectionChanged to handle style refresh 
19476             and remove properly
19477
19478 2005-11-29  Jackson Harper  <jackson@ximian.com>
19479
19480         * FileDialog.cs: Implement missing bits, remove some dead
19481         code.
19482         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
19483         creation of the panel so that the options set on the dialog are
19484         seen when the panel is created.
19485         * TreeView.cs: raise a click when items are clicked.
19486         
19487 2005-11-29  Jackson Harper  <jackson@ximian.com>
19488
19489         * MdiClient.cs: Pass some signature methods through to base.
19490
19491 2005-11-28  Jackson Harper  <jackson@ximian.com>
19492
19493         * ListView.cs: Raise the click event when items are clicked.
19494
19495 2005-11-28  Jackson Harper  <jackson@ximian.com>
19496
19497         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
19498         a nullref.
19499
19500 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
19501
19502         * ThemeNice.cs: - Removed 1 pixel bitmaps
19503           - Use SmoothingMode.AntiAlias where it makes sense
19504             (ScrollButton arrow for example)
19505           - Enhanced Button focus drawing
19506           - Fixed ComboBox drawing (no artefacts anymore, focus
19507             rectangle is back again, reduced size of ComboButton, etc.)
19508           - Fixed RadioButton focus drawing for Appearence.Button
19509           - Slight ScrollButton redesign
19510           - Some LinearGradientBrush size fixes
19511           - GroupBoxes have now rounded edges
19512           - Fixed StatusBar drawing
19513
19514 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
19515
19516         * ThemeNice.cs: - Remove dead code
19517           - use correct background colors for menus, etc.
19518           - Fake pixel drawing with 1 pixel bitmaps
19519
19520 2005-11-24  Jackson Harper  <jackson@ximian.com>
19521
19522         * MdiClient.cs: Size the scrollbars when resizing the window.
19523         - Resize the maximized windows when the client is resized
19524         * Form.cs: Make the child context available
19525         
19526 2005-11-23  Jackson Harper  <jackson@ximian.com>
19527
19528         * MdiChildContext.cs: Don't size windows if they are maximized.
19529
19530 2005-11-23  Mike Kestner  <mkestner@novell.com>
19531
19532         * ContextMenu.cs: use MenuTracker.
19533         * Control.cs: remove menu handle usage.
19534         * Form.cs: remove menu handle usage.
19535         * Hwnd.cs: remove menu handle usage.
19536         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
19537         motion and clicks to the new Tracker handlers.
19538         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
19539         and handle usage.
19540         * MenuAPI.cs: refactored to combine popup and menubar event handling.
19541         Killed the MENU and MENUITEM data types and associated collections
19542         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
19543         MenuTracker class that exposes the leftovers from the old MenuAPI
19544         static methods. Restructured Capture handling so that only one grab is
19545         done for the entire menu hierarchy instead of handing off grabs to
19546         submenus. Tracker now has an invisible control to Capture when active.
19547         * MenuItem.cs: add sizing accessors, kill Create
19548         and handle usage.
19549         * Theme.cs: remove menu handle and MENU(ITEM) usage.
19550         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
19551         MENU(ITEM). remove menu handle usage, use Menu directly.
19552         * XplatUIDriver.cs: remove menu handle usage.
19553         * XplatUIOSX.cs: remove menu handle usage.
19554         * XplatUIWin32.cs: remove menu handle usage.
19555         * XplatUIX11.cs: remove menu handle usage.
19556
19557 2005-11-22  Jackson Harper  <jackson@ximian.com>
19558
19559         * Hwnd.cs: Don't compute the menu size for
19560         DefaultClientRectangle.
19561         - Reenable menu sizes being computed for GetClienRectangle.
19562         * Form.cs: Remove comment of trechery
19563         
19564 2005-11-22  Jackson Harper  <jackson@ximian.com>
19565
19566         * Hwnd.cs: The adjustments for the menu bar are made when it is
19567         attached to the form.
19568
19569 2005-11-19  Jackson Harper  <jackson@ximian.com>
19570
19571         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
19572         (just like on windows).
19573
19574 2005-11-19  Jackson Harper  <jackson@ximian.com>
19575
19576         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
19577         use real buttons anymore because they are in non client area. The
19578         one TODO here is that I need to somehow invalidate a section of
19579         the non client area.
19580
19581 2005-11-18  Jackson Harper  <jackson@ximian.com>
19582
19583         * Control.cs: Put the enum check back in now that MDI doesnt have
19584         to use this to set border styles.
19585         * Form.cs: Only set mdi child windows borders if the handle has
19586         been created.
19587         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
19588         this directly on to the driver.
19589         - Get the move start position before adjusting for the titlebar
19590         height, this fixes the windows "skipping" when they are first
19591         moved.
19592
19593 2005-11-18  Jackson Harper  <jackson@ximian.com>
19594
19595         * XplatUIX11.cs: Just compute the mdi borders separately as they
19596         don't totally match up with normal form borders.
19597
19598 2005-11-18  Jackson Harper  <jackson@ximian.com>
19599
19600         * Control.cs: Set WS_ styles for borders, so that the driver does
19601         not have to retrieve the control instance to figure out what kind
19602         of borders it should have.
19603         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
19604         driver can know its an mdi child easily.
19605         * XplatUIX11.cs: Get the border styles and whether the window is
19606         MDI from the Styles and ExStyles params instead of having to get a
19607         control. This prevents a chicken and egg problem.       
19608
19609 2005-11-18  Jackson Harper  <jackson@ximian.com>
19610
19611         * MdiClient.cs: Fix typo so scrollbars show up correctly.
19612
19613 2005-11-18  Jackson Harper  <jackson@ximian.com>
19614
19615         * MdiClient.cs: Calculate when to add and remove scrollbars
19616         correctly.
19617         * MdiChildContext.cs: Adjust the y position to take the titlebar
19618         into account.
19619         - No height for FormBorderStyle.None
19620
19621 2005-11-18  Jackson Harper  <jackson@ximian.com>
19622
19623         * Control.cs: Allow non enum values to be used for
19624         InternalBorderStyle.  MDI does this to set a special border style.
19625         - New utility methods for converting points to/from client coords
19626         - Add the newly created control to the Controls collection before
19627         updating its style. This way UpdateStyle can walk the control
19628         heirarchy to find the control if needed.
19629         so I don't need to create a new Point object all the time.
19630         * Form.cs: Let MDI windows handle their border styles.
19631         - Set styles on MDI windows so the correct title style is derived.
19632         * MdiChildContext.cs: Move all the painting and window handling
19633         into the non client area.
19634         - Use correct sizing and put correct buttons on frames based on
19635         the FormBorderStyle.
19636         - Notify the mdi client about scrolling
19637         - Need to handle the buttons ourselves now, because they are all
19638         in non client areas and we can't add controls there.
19639         * MdiClient.cs: Halfway to scrolling, this implementation is
19640         somewhat broken though, we need to check to make sure other
19641         windows aren't causing scrolling before removing the bars. Also
19642         the bars need to be drawn on top, maybe I can switch implicit
19643         controls to be on top.
19644         * Hwnd.cs: caption_height and tool_caption_height are now
19645         properties of an hwnd, this way they can be set by the driver
19646         based on the type of window they are.  In X11 the window manager
19647         handles the decorations so caption_height is zero unless its an
19648         MDI window.
19649         - Add 3 pixel borders for MDI windows (0xFFFF).
19650         - Get rid of some code duplication, have DefaultClientRectanle
19651         just call GetClientRectangle.
19652         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
19653         Hwnd now.
19654         - Set border styles differently for mdi windows.
19655         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
19656         Hwnd now.
19657         
19658 2005-11-15  Mike Kestner  <mkestner@novell.com>
19659
19660         * Menu.cs: when adding an item to the collection, if item is already 
19661         parented, remove it from the parent.
19662
19663 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
19664
19665         * X11DesktopColors.cs: Added KDE support
19666
19667 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
19668
19669         * XplatUIWin32.cs: 
19670           - Clipboard methods now can translate Rtf format
19671           - No longer removes clipboard contents whenever a new format is added
19672             to allow placing multiple formats on the clipboard
19673         * Clipboard.cs: Clipboard now supports getting a IDataObject and
19674           will place all formats contained in it onto the clipboard. Also
19675           now cleans the clipboard before placing a new object onto it
19676         * RichTextBox.cs:
19677           - Implemented set_Rtf
19678           - Implemented set_SelectedRtf
19679           - Created InsertRTFFromStream() method to allow single code base
19680             for all properties and methods that insert RTF into document
19681           - Removed debug output
19682         * TextControl.cs:
19683           - Fixed Delete(int) to fix up line numbers
19684           - Fixed ReplaceSelection to combine start and end line
19685           - Fixed serious DeleteChars bug that would leave the document tree
19686             broken
19687           - Improved DumpTree with several logic checks to detect broken
19688             document trees
19689           - Removed debug lines
19690           - Fixed Caret.WordForward/WordBack moving code, now always also 
19691             updates caret.tag (fixes crash when word-selecting across tag
19692             boundaries via keyboard)
19693           - Added Insert() method for inserting multiline text into documents
19694           - Fixed DeleteChars() calculation errors that would cause a broken
19695             tag chain with multiple tag lines
19696           - DeleteChars() no longer crashes on multi-tag lines if not all tags
19697           - Split() no longer moves caret if split is at caret location
19698           - ReplaceSelection() now updates the cursor and re-displays it
19699           - ReplaceSelection() now uses new Insert() method to avoid code
19700             duplication
19701           - FormatText() can now handle formatting partial lines
19702         * TextBoxBase.cs:
19703           - Append now uses new TextControl.Insert() method (this avoids 
19704             duplicate code)
19705           - Implemented Ctrl-X (Cut) (
19706           - Implemented Ctrl-C (Copy)
19707           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
19708             regeneration when pasting text; roundtripping Copy&Paste within
19709             edit control still fails due to some calculation bugs in GenerateRTF)
19710           - The Delete key will now remove the current selection if it is visible
19711         * TextBox.cs: Removed debug lines
19712         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
19713           driver to be initialized and can't therefore be done via a static ctor)
19714
19715 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
19716
19717         * TextControl.cs: Added backend code for finding char arrays and strings
19718         * TextBoxBase.cs:
19719           - Added mouse wheel scroll support
19720           - Added support for VScroll and HScroll events
19721         * RichTextBox.cs:
19722           - Implemented all seven Find() variants
19723           - Implemented GetCharFromPosition()
19724           - Implemented GetCharIndexFromPosition()
19725           - Implemented GetLineFromIndex()
19726           - Implemented GetPositionFromCharIndex();
19727           - Implemented SaveFile for PlainText and UnicodeText
19728           - Fixed set_Font, now setting a new font applies that font to
19729             the whole document
19730           - Implemented generic Document to RTF converter
19731           - Implemented SaveFile for RichText format (still missing unicode
19732             conversion for non-ansi chars)
19733           - Implemented get_Rtf
19734           - Implemented get_SelectedRtf
19735
19736 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
19737
19738         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
19739           to allow any captures to be released before triggering OnClick. This
19740           way a click handler may capture the mouse without interference.
19741         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
19742           This way we send them even though X may not allow a grab (if the window
19743           isn't visible, for example)
19744
19745 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
19746
19747         * DataGridViewRowEventArgs.cs: DataGridView implementation
19748         * DataGridViewElement.cs: DataGridView implementation
19749         * DataGridViewComboBoxCell.cs: DataGridView implementation
19750         * DataGridViewDataErrorContexts.cs: DataGridView implementation
19751         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
19752         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
19753         * ImageLayout.cs: DataGridView implementation
19754         * DataGridViewComboBoxColumn.cs: DataGridView implementation
19755         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
19756         * DataGridViewSelectionMode.cs: DataGridView implementation
19757         * IDataGridViewEditingControl.cs: DataGridView implementation
19758         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
19759         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
19760         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
19761         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
19762         * DataGridViewColumnSortMode.cs: DataGridView implementation
19763         * DataGridView.cs: DataGridView implementation
19764         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
19765         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
19766         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
19767         * Padding.cs: DataGridView implementation
19768         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
19769         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
19770         * DataGridViewRowEventHandler.cs: DataGridView implementation
19771         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
19772         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
19773         * DataGridViewButtonCell.cs: DataGridView implementation
19774         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
19775         * DataGridViewEditMode.cs: DataGridView implementation
19776         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
19777         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
19778         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
19779         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
19780         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
19781         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
19782         * DataGridViewCellEventHandler.cs: DataGridView implementation
19783         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
19784         * DataGridViewCellStyleConverter.cs: DataGridView implementation
19785         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
19786         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
19787         * DataGridViewColumnEventArgs.cs: DataGridView implementation
19788         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
19789         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
19790         * QuestionEventArgs.cs: DataGridView implementation
19791         * IDataGridViewEditingCell.cs: DataGridView implementation
19792         * DataGridViewTriState.cs: DataGridView implementation
19793         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
19794         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
19795         * DataGridViewColumnCollection.cs: DataGridView implementation
19796         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
19797         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
19798         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
19799         * DataGridViewColumn.cs: DataGridView implementation
19800         * DataGridViewCellBorderStyle.cs: DataGridView implementation
19801         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
19802         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
19803         * DataGridViewRow.cs: DataGridView implementation
19804         * DataGridViewImageCellLayout.cs: DataGridView implementation
19805         * DataGridViewImageCell.cs: DataGridView implementation
19806         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
19807         * DataGridViewCheckBoxCell.cs: DataGridView implementation
19808         * DataGridViewHeaderCell.cs: DataGridView implementation
19809         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
19810         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
19811         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
19812         * DataGridViewTextBoxColumn.cs: DataGridView implementation
19813         * QuestionEventHandler.cs: DataGridView implementation
19814         * DataGridViewCellStyleScopes.cs: DataGridView implementation
19815         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
19816         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
19817         * DataGridViewCell.cs: DataGridView implementation
19818         * DataGridViewCellEventArgs.cs: DataGridView implementation
19819         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
19820         * DataGridViewCellStyle.cs: DataGridView implementation
19821         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
19822         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
19823         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
19824         * TextFormatFlags.cs: DataGridView implementation
19825         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
19826         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
19827         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
19828         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
19829         * DataGridViewButtonColumn.cs: DataGridView implementation
19830         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
19831         * HandledMouseEventArgs.cs: DataGridView implementation
19832         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
19833         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
19834         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
19835         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
19836         * DataGridViewRowCollection.cs: DataGridView implementation
19837         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
19838         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
19839         * DataGridViewHitTestType.cs: DataGridView implementation
19840         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
19841         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
19842         * DataGridViewColumnEventHandler.cs: DataGridView implementation
19843         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
19844         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
19845         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
19846         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
19847         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
19848         * DataGridViewContentAlignment.cs: DataGridView implementation
19849         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
19850         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
19851         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
19852         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
19853         * DataGridViewPaintParts.cs: DataGridView implementation
19854         * DataGridViewCellCollection.cs: DataGridView implementation
19855         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
19856         * DataGridViewImageColumn.cs: DataGridView implementation
19857         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
19858         * DataGridViewElementStates.cs: DataGridView implementation
19859         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
19860         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
19861         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
19862         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
19863         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
19864         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
19865         * DataGridViewRowHeaderCell.cs: DataGridView implementation
19866         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
19867         * DataGridViewTextBoxCell.cs: DataGridView implementation
19868         * DataGridViewBand.cs: DataGridView implementation
19869         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
19870         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
19871         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
19872         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
19873         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
19874         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
19875         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
19876         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
19877         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
19878         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
19879         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
19880
19881 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
19882
19883         * ThemeWin32Classic.cs: 
19884           - Draw the outside focus rectangle around buttons
19885           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
19886             doesn't use end caps for every dash of a line anymore. This
19887             workaround ignores the forecolor.
19888
19889 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
19890
19891         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
19892           endian safe.
19893
19894 2005-11-07  Jackson Harper  <jackson@ximian.com>
19895
19896         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
19897
19898 2005-11-07  Jackson Harper  <jackson@ximian.com>
19899
19900         * ScrollableControl.cs: Calculate the maximum and change vars
19901         (more) correctly so that scrollbars appear as a sensible size.
19902
19903 2005-11-04  Jackson Harper  <jackson@ximian.com>
19904
19905         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
19906         collection.
19907         * TreeView.cs: When the tree is sorted null out the top_node so
19908         that it is recalculated.
19909         - Use dotted lines instead of dashed lines to match MS better.
19910
19911 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
19912
19913         * ListView.cs: 
19914           - Implements key search for items. Useful when browsing files with FileDialog
19915           - When changing view mode or when clear the items reset scrollbar positions
19916
19917 2005-11-04  Jackson Harper  <jackson@ximian.com>
19918
19919         * CurrencyManager.cs: Implement the MetaDataChanged event, the
19920         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
19921         as to what the method may do as there is no real way of creating a
19922         derived CurrencyManager and calling the method. 
19923
19924 2005-11-03  Jackson Harper  <jackson@ximian.com>
19925
19926         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
19927         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
19928         method which seems to just be used internally to refresh the tabs.
19929
19930 2005-11-03  Jackson Harper  <jackson@ximian.com>
19931
19932         * TabControl.cs: Implement the remove method. Fix some broken
19933         comments.
19934
19935 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
19936
19937         * DateTimePicker.cs:
19938           - Added missing DateTimePickerAccessibleObject class
19939           - Added missing events
19940           - Added OnFontChanged method
19941         * Form.cs: Added missing attributes
19942         * TreeView.cs: Added missing attributes
19943
19944 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
19945
19946         * GridItemCollection.cs: Fix signatures
19947
19948 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
19949
19950         * XplatUI.cs: Updated build rev/date
19951         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
19952           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
19953         * Application.cs: Trigger context-specific ExitThread events
19954
19955 2005-11-03  Jackson Harper  <jackson@ximian.com>
19956
19957         * Menu.cs:
19958         * MainMenu.cs:
19959         * GridTableStylesCollection.cs:
19960         * Timer.cs:
19961         * TabPage.cs:
19962         * HelpProvider.cs:
19963         * StatusBar.cs:
19964         * MonthCalendar.cs: Signature fixes
19965
19966 2005-11-03  Jackson Harper  <jackson@ximian.com>
19967
19968         * TreeNodeCollection.cs: Remove should not be virtual.
19969         * TreeView.cs: Implement the last of the missing methods.
19970
19971 2005-11-03  Jackson Harper  <jackson@ximian.com>
19972
19973         * TreeNodeConverter.cs: Implement to get off my class-status back.
19974
19975 2005-11-03  Jackson Harper  <jackson@ximian.com>
19976
19977         * TreeView.cs: Hookup the bits for drag and drop.
19978         * TreeNode.cs: Don't cache the tree_view or index anymore, now
19979         that nodes can be moved from tree to tree easily this just causes
19980         all sorts of problems.
19981         * TreeNodeCollection: Don't need to give treenodes an index and
19982         treeview anymore when they are added, these are computed on the
19983         fly. Also make sure to remove a node before its added.
19984
19985 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
19986
19987         * TextControl.cs:
19988           - Added CaretSelection enum
19989           - Added comparison methods to Marker struct, makes selection code
19990             more readable
19991           - Added SelectionStart and SelectionEnd as 'moveable' location for
19992             the CaretDirection enum and handler
19993           - Added selection_prev variable to track optimized invalidation for
19994             word and line selection
19995           - Added SelectionVisible property (returns true if there is a valid 
19996             selection)
19997           - Switched CaretHasFocus to only display the caret if there is no
19998             visible selection
19999           - Avoiding StringBuilder.ToString to retrieve a single char, instead
20000             using the direct character index; should be much faster
20001           - Added various conditional debug statements
20002           - Fixed invalidation calculation for selection ranges
20003           - Added ExpandSelection() method to support word and line selection
20004           - Switched SetSelectionToCaret to use new Marker compare overloads
20005           - Added central IsWordSeparator() method to determine word 
20006             separators/whitespace and FindWordSeparator() to streamline common
20007             usage of IsWordSeparator()
20008         * TextBoxBase.cs:
20009           - Removed unneeded grabbed variable, it was just mirroring
20010             Control.Capture
20011           - No longer firing OnTextChanged event when Text setter is called,
20012             since the base will fire the event for us
20013           - Added handling of Ctrl-Up/Down selection
20014           - Added handling of Shift-Cursorkey selection
20015           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
20016             words
20017           - Added handling of Shift and Ctrl-Shift-Home/End selection
20018           - Removed some debug output
20019           - Added handling for single/double/tripple-click to place caret/
20020             select word/select line respectively (Fixes bug #76031)
20021           - Added support for drag expansion of word/line selection
20022         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
20023           current selection
20024
20025 2005-11-02  Jackson Harper  <jackson@ximian.com>
20026
20027         * X11Dnd.cs: If the drag is going to and from a MWF window just
20028         copy the data instead of sending it out through the X Selection
20029         mechanism.
20030
20031 2005-11-02  Jackson Harper  <jackson@ximian.com>
20032
20033         * X11Dnd.cs:
20034         * XplatUIX11.cs: When in a drag we don't want motion notify
20035         messages to get passed on to the other controls. This prevents
20036         mouse move messages from showing up in the drag source.
20037
20038 2005-11-02  Jackson Harper  <jackson@ximian.com>
20039
20040         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
20041         the correct button is release to end a drag.
20042         * XplatUIX11.cs: Make the button state internal so the drag system
20043         can access it.  Dragging needs to know about all button releases,
20044         not just left button.
20045
20046 2005-11-02  Miguel de Icaza  <miguel@novell.com>
20047
20048         * Form.cs (Icon): If the icon is null, reset the icon to the
20049         default value. 
20050
20051         * Cursor.cs: When writing the AND-mask bitmap do not include the
20052         number of colors, but hardcode those to two (black and white),
20053         fixes the loading of color cursors (Paint Dot Net).
20054
20055         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
20056         turn off autoscaling.
20057
20058         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
20059
20060 2005-11-02  Jackson Harper  <jackson@ximian.com>
20061
20062         * X11Dnd.cs: Make sure to send a status message if the pointer
20063         enters a control that can not accept a drop, otherwise the cursor
20064         isn't updated correctly. Also tried to compress the lines of code
20065         a bit.
20066
20067 2005-11-02  Jackson Harper  <jackson@ximian.com>
20068
20069         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
20070         set actions correctly.  This isn't perfect as XDND and win32 have
20071         some differences on how you allow actions. I'll clear this up by
20072         adding a path for drag from MWF to MWF windows.
20073         * XplatUIX11.cs: Hook into the dnd system.
20074
20075 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
20076
20077         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
20078         previously shown but they are no longer need it. Very obvious when 
20079         browsing files with FileDialog.
20080
20081 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
20082
20083         * Control.cs: We always need to call OnPaintBackground. We pretty much
20084           ignore AllPaintingInWmPaint and always do the painting there, whether 
20085           it's set or not, since we always ignore the WM_ERASEBKGND message 
20086           (which we don't generate on X11). This fixes #76616.
20087         * Panel.cs: Removed unneeded background painting. This happens properly
20088           in Control.cs already
20089
20090 2005-10-31  Mike Kestner  <mkestner@novell.com>
20091
20092         * Menu.cs: Add items to collection before setting their index.
20093         * MenuItem.cs : add range checking with ArgumentException like MS.
20094         [Fixes #76510]
20095
20096 2005-10-31  Jackson Harper  <jackson@ximian.com>
20097
20098         * ListBox.cs: Invalidate if the area is visible at all not just
20099         contained in the visible rect. Fixes unselection of semi visible
20100         items.
20101
20102 2005-10-31  Jackson Harper  <jackson@ximian.com>
20103
20104         * Control.cs: Consistently name the dnd methods. Make them
20105         internal so we can override them to match some MS behavoir
20106         internally.
20107         * Win32DnD.cs: Use the new consistent names.
20108
20109 2005-10-31  Jackson Harper  <jackson@ximian.com>
20110
20111         * TreeView.cs: Don't draw the selected node when we lose focus.
20112
20113 2005-10-31  Jackson Harper  <jackson@ximian.com>
20114
20115         * X11Dnd.cs: We still need to reset the state even though a full
20116         reset isn't being done, otherwise status's still get sent all over
20117         the place.
20118
20119 2005-10-31  Jackson Harper  <jackson@ximian.com>
20120
20121         * Control.cs: Make the dnd_aware flag internal so the dnd
20122         subsystem can check it. Catch exceptions thrown in dnd handlers to
20123         match MS behavoir.
20124         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
20125         * X11Dnd.cs: Handle null data in the converters. Set the XDND
20126         version when sending a XdndEnter. Use the control/hwnd dnd_aware
20127         flags to reduce the number of dnd enters/status's sent.
20128
20129 2005-10-31  Jackson Harper  <jackson@ximian.com>
20130
20131         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
20132
20133 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
20134
20135         * PictureBox.cs: Fixes 76512
20136
20137 2005-10-28  Jackson Harper  <jackson@ximian.com>
20138
20139         * X11Dnd.cs: Early implementation to support winforms being a drag
20140         source for data on X11. Also restructured the converters so they
20141         can go both ways now.
20142         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
20143         
20144 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
20145
20146         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
20147           clipboard requests
20148
20149 2005-10-27  Jackson Harper  <jackson@ximian.com>
20150
20151         * TreeNode.cs: Implement serialization so my DnD examples will work.
20152
20153 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
20154
20155         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
20156           TreeView.cs: Don't dispose objects that are not owned.
20157           
20158 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
20159
20160         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
20161           should retrieve the current cursor and report that, but XplatUI
20162           doesn't (yet) have an interface for that (and I'm not sure I even
20163           can, on X11)
20164         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
20165           until any message loop processing is done (and the WM_SETCURSOR
20166           replaces the cursor to the proper one)
20167         * XplatUIX11.cs: 
20168           - Fixed override behaviour, we can't set the cursor globally on X11, 
20169             just for our windows.
20170           - Invalidating the System.Drawing X11 display handle when we are
20171             shutting down
20172         * Control.cs: Fix to make csc happy
20173
20174 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
20175
20176         * TextBoxBase.cs: 
20177           - get_Text: Add last line (without trailing newline) to returned
20178             value (Fixes 76212)
20179           - get_TextLength: Count last line in returned length
20180           - ToString: Call Text property instead of duplicating code
20181
20182 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
20183
20184         * ImageList.cs: Dispose ImageAttributes objects.
20185
20186 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20187
20188         * ImageList.cs: Use attribute constructors with less arguments where
20189           possible.
20190
20191 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
20192
20193         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
20194           Use typeof instead of strings when assembly is referenced. Added
20195           some more comments.
20196
20197 2005-10-21  Jackson Harper  <jackson@ximian.com>
20198
20199         * ListView.cs: Raise a double click event. Also tried to somewhat
20200         fix when the selectedindexchanged event is raised. Its still
20201         broken though.
20202
20203 2005-10-21  Jackson Harper  <jackson@ximian.com>
20204
20205         * TreeView.cs: New method to invalidate the plus minus area of a
20206         node without invalidating the whole node (maybe this can be used
20207         in some more places).
20208         * TreeNodeCollection.cs: When adding to an empty node we need to
20209         invalidate its plus minus area so the little block shows up.
20210         
20211 2005-10-21  Jackson Harper  <jackson@ximian.com>
20212
20213         * TreeView.cs: Make sure that when we invalidate a node the bounds
20214         are big enough to cover the selected box and the focus
20215         rectangle. Use a different colour for the lines connecting nodes
20216         so they show up with all themes.
20217
20218 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20219
20220         * NativeWindow.cs: Don't call anything that could call into the driver,
20221           we might be on a different thread.
20222
20223 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
20224
20225         * Control.cs(Dispose): Since Dispose might run on a different thread,
20226           make sure that we call methods that could call into the driver via
20227           invoke, to avoid thread issues
20228
20229 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
20230
20231         * XplatUI.cs: Removed finalizer
20232         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
20233           not allowing to be called on the finalizer thread.
20234
20235 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
20236
20237         * ImageList.cs:
20238           - Reverted r51889 and r51891.
20239           - Added ImageListItem class that stores unmodified image items and image
20240             properties required to create list images until handle is created.
20241           - Added AddItem and moved image creation logic to AddItemInternal.
20242           - Added CreateHandle method that creates images based on unmodified items.
20243           - Added DestroyHandle that changes state to store unmodified items.
20244           - Add and AddStrip methods no more create handle.
20245           - ReduceColorDepth has no return value.
20246           - Dispose destroys handle.
20247           - Modified other methods to reflect the above changes.
20248           - Implemented key support.
20249           - Added profile 2.0 members and attributes.
20250           - Added private Reset and ShouldSerialize methods that provide the same
20251             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
20252             them as they are private.
20253           - Added some more comments about implementation details.
20254
20255 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20256
20257         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
20258
20259 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20260
20261         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
20262
20263 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
20264
20265         * DataGridDrawingLogic.cs: Fixes column hit calcultation
20266         * DataGridColumnStyle.cs: Remove debug message
20267
20268 2005-10-20  Jackson Harper  <jackson@ximian.com>
20269
20270         * TreeView.cs: We can always get input keys regardless of whether
20271         or not editing is enabled. They are used for navigation.
20272
20273 2005-10-20  Jackson Harper  <jackson@ximian.com>
20274
20275         * TreeNode.cs: Use the viewport rect for determining if a node
20276         needs to be moved for visibility. Don't use Begin/End edit. This
20277         calls a full refresh when its done.
20278         * TreeView.cs: New SetBottom works correctly.  Make the viewport
20279         rect property internal so the treenodes can see it. When clicking
20280         on a node we need to ensure that its visible because it might just
20281         be partly visible when clicked.
20282
20283 2005-10-20  Jackson Harper  <jackson@ximian.com>
20284
20285         * TreeNodeCollection.cs: Remove debug code.
20286
20287 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20288
20289         * Datagrid.cs: Implements column sorting in Datagrid
20290         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
20291
20292 2005-10-20  Jackson Harper  <jackson@ximian.com>
20293
20294         * TreeNodeCollection.cs: Remove items properly. Update the correct
20295         area after removing them.
20296
20297 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
20298
20299         * Datagrid.cs: Should not call base.OnPaintBackground
20300
20301 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20302
20303         * XplatUIX11.cs (GetMessage):
20304           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
20305             window instead of client window
20306           - Now properly calculates NC_xBUTTONUP message coordinates
20307           - ScreenToMenu now properly calculates it's coordinates of whole 
20308             window, since menus are in the whole window, not in the client
20309             window
20310           - Added WholeToScreen coordinate translation method
20311
20312 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
20313
20314         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
20315           want to return a message, loop back to the beginning of the function
20316           and grab the next real message to process instead.
20317
20318 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
20319
20320         * Splitter.cs: Properly set limits if no filler control is used
20321
20322 2005-10-19  Jackson Harper  <jackson@ximian.com>
20323
20324         * ColorDialog.cs: Don't show the help button if it is not enabled
20325         instead of disabling it (this is what MS does). Don't create the
20326         panel until the dialog is run, otherwise the vars (such as
20327         ShowHelp) are not set yet.
20328
20329 2005-10-19  Jackson Harper  <jackson@ximian.com>
20330
20331         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
20332         are reduced when adding nodes.
20333         * TreeNode.cs:
20334         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
20335         tree.
20336         
20337 2005-10-19  Jackson Harper  <jackson@ximian.com>
20338
20339         * FolderBrowserDialog.cs: End editing our treeview so the window
20340         actually gets refreshed.
20341
20342 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20343
20344         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
20345           Obsoleted handling of WM_ERASEBKGND, now always draws our background
20346           inside of WM_PAINT
20347
20348 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20349
20350         * MenuAPI.cs: Returns after Hidding window
20351         * XplatUIX11.cs: Added TODO found while debugging menu issues
20352
20353 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
20354
20355         * XplatUIX11.cs: Do not re-map the whole window when it's size
20356           becomes non-zero unless it's supposed to be actually visible
20357
20358 2005-10-18  Jackson Harper  <jackson@ximian.com>
20359
20360         * TreeView.cs: We don't need to keep a count anymore.
20361         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
20362         use the Grow method.
20363
20364 2005-10-18  Jackson Harper  <jackson@ximian.com>
20365
20366         * TreeNodeCollection.cs: Insert is not supported on arrays, so
20367         implement it manually here.
20368
20369 2005-10-18  Jackson Harper  <jackson@ximian.com>
20370
20371         * ImageList.cs: Dont kill the list when the colour depth is
20372         changed, just change the colour depth of all the images.
20373         - Same goes for setting the image size. Just resize them all
20374         instead of killing the list softly.
20375
20376 2005-10-18  Jackson Harper  <jackson@ximian.com>
20377
20378         * Control.cs: Don't invalidate empty rectangles.
20379
20380 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20381
20382         * ListViewItem.cs:
20383           - Adds checked item to the Checked/Item lists (where empty before)
20384           - Do not add items to the Selected lists if they are already present
20385         * ListView.cs:
20386           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
20387           - When deleting items make sure that we delete them for the Selected
20388           and Checked list also.
20389
20390 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
20391
20392         * Label.cs: Dispose objects no longer used
20393         * ThemeWin32Classic.cs: Dispose objects no longer used
20394
20395 2005-10-18  Jackson Harper  <jackson@ximian.com>
20396
20397         * TabControl.cs: Don't refresh the whole control when the tabs are
20398         scrolled, we just need to refresh the tab area.
20399
20400 2005-10-17  Jackson Harper  <jackson@ximian.com>
20401
20402         * XplatUIX11.cs: Compress code a little bit. Only calculate the
20403         after handle when we need it.
20404
20405 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20406
20407         * Control.cs: When the parent size changes, recalculate anchor 
20408           positions. Partial fix for #76462
20409
20410 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
20411
20412         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
20413           drawn. Fixes #76462
20414
20415 2005-10-17  Jackson Harper  <jackson@ximian.com>
20416
20417         * MonthCalendar.cs: Don't create the numeric up down until our
20418         handle is created. Otherwise our handle is created in the
20419         constructor and we don't know if we are a WS_CHILD or WS_POPUP
20420         yet.
20421
20422 2005-10-17  Jackson Harper  <jackson@ximian.com>
20423
20424         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
20425         correctly.
20426
20427 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
20428         * TreeNode.cs : small logical fix (was using local var instead of field)
20429         
20430 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20431
20432         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
20433
20434 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
20435
20436         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
20437
20438 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
20439
20440         * Control.cs: 
20441           - Re-implemented anchoring code. My first version was really broken.
20442             This fixes bug #76033. Unlike the previous implementation we will
20443             no longer have round errors since all numbers are calculated from
20444             scratch every time. Removed various anchor-related obsolete vars.
20445           - InitLayout no longer causes layout event firing and layout to be 
20446             performed
20447
20448 2005-10-16  Jackson Harper  <jackson@ximian.com>
20449
20450         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
20451         which was broken).
20452
20453 2005-10-16  Jackson Harper  <jackson@ximian.com>
20454
20455         * TabControl.cs: Remove debug code.
20456
20457 2005-10-16  Jackson Harper  <jackson@ximian.com>
20458
20459         * XEventQueue.cs: Increase the default queue size (very simple
20460         apps needed to grow the queue).
20461         * Hwnd.cs: No finalizer so we don't need to suppress
20462         finalization. Compute the invalid area manually so a new rectangle
20463         does not newto be created.
20464         * ScrollableControl.cs: Don't set any params (otherwise visibility
20465         isn't set correctly).
20466         * MdiChildContext.cs: New constructor takes the mdi parent so it
20467         doesn't have to be computed and avoids a crash on windows. Draw
20468         the window icon properly, and allow the text to be seen.
20469         * Form.cs: Use new MdiChildContext constructor. Make sure the
20470         child context isn't null in wndproc.
20471         * TabControl.cs: Don't set focus, this is muddling keyboard
20472         behavoir. Expand the tab rows when a window size increase will
20473         allow extra tabs to be seen. Don't allow tabs smaller than the
20474         width of a window to be scrolled out of view.
20475         * TreeNode.cs:
20476         * TreeView.cs: Use measure string to calculate a nodes width, the
20477         width is cached and only updated when the text or the font is
20478         changed. Don't check for expand/collapse clicks on the first level
20479         nodes if root lines are disabled.
20480         
20481 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
20482
20483         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
20484
20485 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20486
20487         * DataGridBoolColumn.cs: fixes warning
20488
20489 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
20490
20491         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
20492         to match more to match more precisely the MS Net behavior
20493
20494 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20495
20496         * Hwnd.cs: Added field to track if window is mapped
20497         * XplatUIX11.cs: 
20498           - Unmap windows if they become 0-size, re-map when 
20499             they are >0 again; fixes #76035
20500           - Re-set our error handler after initializing X11Desktop
20501             to override any error handlers Gtk or whatever was called
20502             may have set.
20503
20504 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
20505
20506         * CheckedListBox.cs: Removed unused vars
20507         * ListView.cs: Fixed signatures
20508         * RichTextBox.cs: Removed unused vars
20509         * TextBoxBase.cs: Removed unused vars
20510         * XplatUIWin32.cs: Removed unused vars
20511         * XplatUIX11.cs: Removed unused vars
20512         * XplatUI.cs: Updated version and date to latest published
20513
20514 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20515
20516         * Cursor.cs: Added private .ctor to work around a bug in
20517           resourceset (Thanks to Geoff Norton for the help on this)
20518         * SplitterEventArgs.cs: Made fields accessible so we don't
20519           waste boatloads of objects and can reuse the same one
20520           in Splitter
20521         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
20522           any captions and borders when generating screen coordinates
20523         * Splitter.cs: Reimplemented control, now fully complete, uses
20524           rubberband drawing, supports and obeys all properties, has
20525           proper cursors
20526
20527 2005-10-13  Miguel de Icaza  <miguel@novell.com>
20528
20529         * Form.cs (Form): Setup default values for autoscale and
20530         autoscale_base_size;  Make these instance variables, not static
20531         variables. 
20532
20533         (OnLoad): on the first load, adjust the size of the form.
20534
20535 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
20536
20537         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
20538           width argument to DrawReversibleRectangle()
20539         * XplatUIWin32.cs, XplatUIX11.cs: 
20540           - Implemented width for DrawReversibleRectangle()
20541           - Added logic to DrawReversibleRectangle that recognizes a zero
20542             width or height and only draws a line in that situation
20543         
20544 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
20545
20546         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
20547         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
20548         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
20549           method (it uses our FosterParent window to get a graphics context)
20550
20551 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
20552
20553         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
20554           and SetWindowBackground methods
20555         * Control.cs:
20556           - Setting proper ControlStyles
20557           - We no longer call XplatUI.SetWindowBackground and XplatUI.
20558             EraseWindowBackground, instead we draw the window background
20559             ourselves in PaintControlBackground. This behaviour is
20560             required to match MS, where, when OnPaintBackground is not
20561             called, the background is not drawn.
20562           - Removed unneeded Refresh() in set_Text
20563         * Hwnd.cs: Dropped the ErasePending support. No longer needed
20564         * XplatUIX11.cs:
20565           - Created DeriveStyles method to translate from CreateParams to
20566             FormBorderStyle and TitleStyle, also handles BorderStyle (which
20567             matches FormBorderStyle enum values)
20568           - Consolidated SetHwndStyles and CalculateWindowRect border/title
20569             style calculations into single DeriveStyles method
20570           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
20571             from redrawing the whole window on any resize or expose.
20572           - Fixed CreateWindow usage of SetWindowValuemask. Before not
20573             all styles were applied to our whole/client window appropriately
20574           - Removed EraseWindowBackground() and SetWindowBackground() methods
20575           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
20576             no longer clear/redraw the background through X
20577           - Removed handling of erase_pending bit, we have no use for it (or
20578             so it seems)
20579         * XplatUIOSX.cs:
20580           - Removed generation and handling of WM_ERASEBKGND message
20581           - Removed EraseWindowBackground() and SetWindowBackground() methods
20582           - Removed handling of hwnd.ErasePending flag
20583         * XplatUIWin32.cs:
20584           - Removed EraseWindowBackground() and SetWindowBackground() methods
20585           - We no longer call EraseWindowBackground on PaintEventStart, we 
20586             ignore the fErase flag, erasing is handled in Control in the
20587             background handler
20588         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
20589           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
20590           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
20591           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
20592           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
20593           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
20594           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
20595
20596 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
20597
20598         * PropertyGrids.cs: Get sub properties
20599         * PropertyGridView.cs: Fix drawing code
20600
20601 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20602
20603         * ListBox.cs: Fixes 76383
20604
20605 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20606
20607         * DataGridTextBoxColumn.cs: Sets location and size before attachment
20608         * ThemeWin32Classic.cs: Fixes border drawing and calculations
20609         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
20610
20611
20612 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20613
20614         * ComboBox.cs: Fixes border drawing
20615
20616 2005-10-10  Miguel de Icaza  <miguel@novell.com>
20617
20618         * MimeIcon.cs: Ignore errors if the file can not be read.
20619
20620 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
20621
20622         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
20623          - Fixed border calculations
20624          - Fixed horizontal scrolling in single column listboxes
20625          - Fixed drawing issues
20626
20627 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
20628
20629         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
20630           FormBorderStyle enum
20631         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
20632           code to determine FormBorderStyles from CreateParams
20633         * Form.cs:
20634           - Fixed bug where we'd set the wrong window styles if we were
20635             not creating an MDI window
20636           - Added call to XplatUI.SetBorderStyle when form borders are set
20637         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
20638         * Hwnd.cs:
20639           - Removed obsolete edge style
20640           - Switched from BorderStyle to FormBorderStyle
20641         
20642 2005-10-10  Jackson Harper  <jackson@ximian.com>
20643
20644         * Form.cs: Use the property to get the window handle instead of
20645         accessing it directly. Prevents a null reference exception.
20646
20647 2005-10-10  Jackson Harper  <jackson@ximian.com>
20648
20649         * TreeView.cs: Don't adjust the rect given to DrawString now that
20650         our libgdiplus draws correctly.
20651
20652 2005-10-08  Jackson Harper  <jackson@ximian.com>
20653
20654         * TreeView.cs: Don't try to find the clicked on node if there are
20655         no nodes in the tree.
20656
20657 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
20658
20659         * RichTextBox.cs:
20660
20661           restore
20662
20663 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
20664
20665         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
20666           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
20667           ErrorProvider.cs:
20668           Use ResPool for brushes and dispose System.Drawing objects that
20669           are not used anymore.
20670
20671 2005-10-07  Jackson Harper  <jackson@ximian.com>
20672
20673         * MdiChildContext.cs: Use the new borders instead of drawing them
20674         ourselves.
20675
20676 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
20677
20678         * Calling UpdateBounds after changing the window's BorderStyle 
20679         since the style can change the ClientSize
20680
20681 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20682
20683         * Control.cs: Made PaintControlBackground virtual
20684         * Panel.cs: Overriding PaintControlBackground instead of using paint
20685           event; paint event method was interfering with 'real' users of the
20686           event.
20687
20688 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
20689
20690         * ThemeWin32Classic.cs: remove border drawing since it is handled
20691         by the base control class now and was causing double border drawing.
20692
20693 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20694
20695         * Panel.cs: Redraw our background on paint. Not a pretty solution,
20696           but it does seem to match MS behaviour. This fixes bug #75324
20697
20698 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20699
20700         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
20701           somewhat hackish looking
20702
20703 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
20704
20705         * TextBoxBase.cs:
20706           - We now accept Enter even if AcceptEnter is false, if the containing
20707             form does not have an AcceptButton configured (fixes bug #76355)
20708           - Calculations are now fixed to no longer use Width/Height, but
20709             ClientSize.Width/Height, since we now support borders (this was
20710             a result of fixing borders and therefore bug #76166)
20711           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
20712             true (fixes bug #76354)
20713         
20714 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20715
20716         * Control.cs: 
20717           - Defaulting BorderStyle and setting it in XplatUI when our window 
20718             is created
20719           - Added enum check to InternalBorderStyle setter
20720         * XplatUIX11.cs: 
20721           - Added drawing of window borders
20722           - Now properly calculates WM decorations offset for toplevel 
20723             windows (fixes bug #74763)
20724         * XplatUIWin32.cs: 
20725           - Implemented BorderStyles for windows (we're letting win32 draw 
20726             the border for us)
20727           - Fixed the signature for SetWindowLong
20728         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
20729           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
20730           setting borders
20731         * UpDownBase.cs: Remove drawing of borders, this is handled by
20732           the driver, outside the client area
20733         * ListView.cs: Removed bogus border calculations. The control should
20734           be oblivious to borders, since those are not part of the client
20735           area. 
20736         * X11DesktopColors.cs: Commented out (currently) unneeded variables
20737         * ThemeWin32Classic.cs: Removed border calculations from ListView 
20738           drawing code
20739
20740 2005-10-06  Jackson Harper  <jackson@ximian.com>
20741
20742         * MdiChildContext.cs: Clear out the old virtual position remove
20743         all the unneeded calls to CreateGraphics.
20744
20745 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
20746
20747         * TextControl.cs: Use proper color for highlighted text; fixes #76350
20748
20749 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
20750
20751         * Form.cs: 
20752           - Added loading and setting of our new default icon
20753           - Only set icon if window is already created
20754
20755 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
20756
20757         * Label.cs:
20758           - Do not explicitly set the foreground and background colors, to
20759             allow inheriting from parents (fixes #76302)
20760           - Use Control's InternalBorderStyle property to deal with borders
20761
20762 2005-10-06  Jackson Harper  <jackson@ximian.com>
20763
20764         * MdiChildContext.cs: Use the new xplatui function to draw a
20765         reversible rect.
20766
20767 2005-10-06  Jackson Harper  <jackson@ximian.com>
20768
20769         * Form.cs: Add the parent before creating the child context cause
20770         we need the parent when setting up the child.
20771
20772 2005-10-06  Jackson Harper  <jackson@ximian.com>
20773
20774         * FolderBrowserDialog.cs: redo the tree population code so a
20775         second thread isn't used. Should be a lot faster and more stable
20776         now.
20777
20778 2005-10-05  Jackson Harper  <jackson@ximian.com>
20779
20780         * TreeView.cs: There are no expand/collapse boxes if the node has
20781         no children.
20782
20783 2005-10-05  Jackson Harper  <jackson@ximian.com>
20784
20785         * X11DesktopColors.cs: Get menu colours for the gtk theme.
20786
20787 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
20788
20789         * FileDialog.cs: Fix InitialDirectory
20790
20791 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
20792
20793         * ComboBox.cs:
20794                 - Fixes changing between styles
20795                 - Fixes simple mode
20796                 - Fixes last item crashing when navigating with keyboard
20797
20798 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
20799
20800         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
20801
20802 2005-10-05  Jackson Harper  <jackson@ximian.com>
20803
20804         * TreeView.cs: If updating the root node do a full refresh.
20805         * TreeNode.cs: The root node should be expanded by default. Also
20806         added a utility prop to tell if we are the root node.
20807         * TreeNodeCollection.cs: Only refresh if the node we are being
20808         added to is expanded. Also added a comment on a potential
20809         optimization.
20810         
20811 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
20812
20813         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
20814           in dispose method. Fixes #76330
20815
20816 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
20817
20818         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
20819
20820                 - Implements vertical and horizontal scrolling using XplatUI
20821                 - Fixes keyboard navagation
20822                 - Fixes EnsureVisible
20823                 - Drawing fixes
20824                 - Handles and draws focus properly
20825
20826
20827 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
20828
20829         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
20830           Create handle. NET_2_0: Destroy handle when value is null.
20831
20832 2005-10-03  Jackson Harper  <jackson@ximian.com>
20833
20834         * ScrollBar.cs: My last scrollbar patch was broken. This is a
20835         revert and a new patch to prevent the thumb from refreshing so
20836         much.
20837
20838 2005-10-02  Jackson Harper  <jackson@ximian.com>
20839
20840         * ScrollBar.cs: Don't update position if it hasn't actually
20841         changed. This occurs when you hold down the increment/decrement
20842         buttons and the thumb gets to the max/min.
20843
20844 2005-10-01  Jackson Harper  <jackson@ximian.com>
20845
20846         * Form.cs:
20847         * MdiChildContext.cs:
20848         * MdiClient.cs: Implement ActiveMdiChild in Form.
20849
20850 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
20851
20852         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
20853
20854 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
20855
20856         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
20857           be found
20858
20859 2005-09-30  Jackson Harper  <jackson@ximian.com>
20860
20861         * ListBox.cs: Don't do a full refresh unless some data has
20862         actually changed.
20863
20864 2005-09-30  Jackson Harper  <jackson@ximian.com>
20865
20866         * TreeView.cs: Make sure that the checkboxes size is factored in
20867         even when not visible.
20868
20869 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
20870
20871         * FileDialog.cs: Fix Jordi's build break
20872
20873 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
20874
20875         * FileDialog.cs: 
20876                 - Use standard the Windows colours for the combobox as espected
20877                 - Dispose objects that use resouces when no longer need them
20878
20879 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
20880
20881         * X11DesktopColors.cs: Initial incomplete implementation
20882         * XplatUIX11.cs: Added call to initialize X11DesktopColors
20883
20884 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
20885
20886         * Theme.cs: 
20887           - Switched Theme color names to match the names defined in 
20888             System.Drawing.KnownColors. Life's hard enough, no need to make 
20889             it harder.
20890           - Added setters to all theme color properties so themes can set
20891             their color schemes. The setters also propagate the color changes
20892             to System.Drawing.KnownColors via reflection
20893         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
20894           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
20895           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
20896           use the new, more logical theme color names
20897         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
20898           post-NT colors
20899         * ThemeWin32Classic.cs:
20900           - Removed code to set the old classic Windows colors. Instead it
20901             now relies on the colors returned by System.Drawing.KnownColors
20902             which will be either modern static colors (Unix) or colors
20903             read from the user's configuration (Win32)
20904           - Updated to use the new, more logical theme color names
20905           - Switched DataGrid drawing code to use only Theme colors instead of
20906             a mix of System.Drawing.KnownColors and Theme colors
20907           - DrawFrameControl(): Removed code that fills the button area, the
20908             fill would overwrite any previous fill done by a control. This
20909             fixes bug #75338 
20910           - Added DrawReversibleRectangle() stub
20911         * ScrollableControl.cs: Set visible state to false when scrollbars
20912           are removed (pdn fix)
20913         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
20914           DrawReversibleRectangle() method to allow drawing primitive 
20915           'rubber bands'
20916         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
20917
20918 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
20919
20920         * ImageList.cs: Add(Icon): Create handle.
20921
20922 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
20923
20924         * ListView.cs:
20925         * ThemeWin32Classic.cs:
20926                 - Fixes detail mode
20927                 - Sets clippings
20928                 - Issues with drawing
20929
20930 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
20931
20932         * ImageList.cs: Moved RecreateHandle back to ImageList as event
20933           source has to be the ImageList.
20934
20935 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
20936
20937         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
20938
20939 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
20940
20941         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
20942
20943 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
20944
20945         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
20946
20947 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
20948         * GridItem.cs: Fixed TODOs
20949         * GridItemCollection.cs: Added ICollection interface
20950
20951 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
20952
20953         * ImageList.cs: Resize icons when needed.
20954
20955 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
20956
20957         * ListViewItem.cs
20958                 - Fixes GetBounds and returns on screen rects
20959         * ListView.cs:
20960                 - Fixes vertical and horzintal scrolling of items
20961         * ThemeWin32Classic.cs:
20962                 - Fixes drawing
20963                 
20964 2005-09-29  Raja R Harinath  <harinath@gmail.com>
20965
20966         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
20967
20968 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
20969
20970         * ImageList.cs: Added comments about handle creation. Moved Handle,
20971           HandleCreated and OnRecreateHandle implementations to ImageCollection.
20972           Handle is created in Add methods.
20973
20974 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
20975          
20976         * DataGridDrawingLogic.cs: 
20977                 - Takes rows into account on Colum calculations
20978                 - Returns the column when clickig
20979         * DataGrid.cs:
20980                 - Fixes default HitTestInfo values
20981                 - Fixes HitTestInfo.ToString
20982                 - Fixes ResetBackColor          
20983         
20984 2005-09-28  Jackson Harper  <jackson@ximian.com>
20985
20986         * MdiChildContext.cs: Obey rules for fixed sized windows (no
20987         sizing or cursor changes). Also added some temp code to draw the
20988         titlebars text (Makes dev a little easier).
20989
20990 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
20991
20992         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
20993
20994 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
20995          
20996         * ListBox.cs: Fixes bug 76253
20997
20998 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
20999
21000         * ImageList.cs: Added comments about the current implementation. Added
21001           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
21002           Format32bppArgb to preserve transparency and can use Graphics.FromImage
21003           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
21004           with Bitmap.LockBits for better performance. Revised the whole file to
21005           match MS.NET behaviour and provide better performance. Non-public
21006           interface members are calling public members even when they throw
21007           NotSupportedException for better maintainability. Moved ColorDepth,
21008           ImageSize, ImageStream and TransparentColor implementations to
21009           ImageCollection for better performance as these properties are not used
21010           by ImageList.
21011         * ImageListStreamer.cs: Added a new internal constructor that takes an
21012           ImageList.ImageCollection and serializes Images based on
21013           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
21014           match ImageList property name.
21015
21016 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
21017
21018         * ListBox.cs: Fixes IndexFromPoint for last item
21019
21020 2005-09-27  Jackson Harper  <jackson@ximian.com>
21021
21022         * Form.cs: Set the position of new mdi children correctly.
21023
21024 2005-09-27  Jackson Harper  <jackson@ximian.com>
21025
21026         * MdiClient.cs: New mdi children need to be added to the back of
21027         the controls collection so the zorder is set correctly. Also add a
21028         count of all the child windows that have been created.
21029
21030 2005-09-27  Jackson Harper  <jackson@ximian.com>
21031
21032         * Form.cs (CreateParams): Setup MDI forms correctly.
21033
21034 2005-09-27  Jackson Harper  <jackson@ximian.com>
21035
21036         * MdiChildContext.cs:
21037         * MonthCalendar.cs:
21038         * UpDownBase.cs:
21039         * ListBox.cs:
21040         * ListView.cs:
21041         * TextBoxBase.cs:
21042         * TreeView.cs:
21043         * ScrollableControl.cs:
21044         * ComboBox.cs: Add implicit controls using the new implict control
21045         functionality in ControlCollection. Also try to block multiple
21046         control add in a suspend/resume layout to save some cycles.
21047         
21048 2005-09-27  Jackson Harper  <jackson@ximian.com>
21049
21050         * Control.cs: Add functionality to the controls collection to add
21051         'implicit controls' these are controls that are created by the
21052         containing control but should not be exposed to the user. Such as
21053         scrollbars in the treeview.
21054         * Form.cs: The list var of the ControlsCollection is no longer
21055         available because of the potential of implicit controls getting
21056         ignored by someone accessing the list directly.
21057
21058 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
21059
21060         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
21061           loose it's parent. (Fixed bug introduced in r49103 when we added
21062           setting the child parent to null on Remove)
21063
21064 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
21065
21066         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
21067         * Splitter.cs: Added missing attributes for BorderStyle property.
21068         * TextBoxBase.cs: Marked Calculate* methods internal.
21069         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
21070         MS.NET.
21071
21072 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
21073          
21074         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
21075
21076 2005-09-25  Jackson Harper  <jackson@ximian.com>
21077
21078         * TreeView.cs: Update the node bounds correctly regardless of
21079         whether the node is visible.
21080
21081 2005-09-25  Jackson Harper  <jackson@ximian.com>
21082
21083         * ImageList.cs: Don't dispose the image after it is added to the
21084         image list. Only reformat images that need to be resized.
21085
21086 2005-09-25  Jackson Harper  <jackson@ximian.com>
21087
21088         * ImageList.cs: Don't set the format when changing the image.
21089
21090 2005-09-25  Jackson Harper  <jackson@ximian.com>
21091
21092         * TreeView.cs: We can't just assume the node has a font. Use the
21093         treeviews font if no node font is available.
21094
21095 2005-09-25  Jackson Harper  <jackson@ximian.com>
21096
21097         * TreeView.cs: Allow the scrollbars to be reset with negative
21098         values.
21099         - Don't add scrollbars to negative sized windows.
21100
21101 2005-09-23  Jackson Harper  <jackson@ximian.com>
21102
21103         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
21104         old Mono.Posix. Also remove some stray code that shouldn't have
21105         been committed.
21106
21107 2005-09-23  Jackson Harper  <jackson@ximian.com>
21108
21109         * TreeView.cs: Attempt at proper sizing of the horizontal
21110         scrollbar. Also don't resize the scrollbars unless they are
21111         visible.
21112
21113 2005-09-23  Jackson Harper  <jackson@ximian.com>
21114
21115         * TreeView.cs: We don't need to expand the invalid area when the
21116         selection changes, as this is all drawn in the node's bounding
21117         box. The area needs to be expanded (previous typo was contracting
21118         it) when the focus rect moves.
21119
21120 2005-09-23  Jackson Harper  <jackson@ximian.com>
21121
21122         * TreeView.cs: Display the selection box under the correct
21123         circumstances. We were rendering white text with no selection box
21124         before.
21125
21126 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
21127
21128         * TextControl.cs(Split): Now updates selection start/end if it points 
21129           into a line that's being split. Fixes a FIXME and bug #75258
21130
21131 2005-09-23  Jackson Harper  <jackson@ximian.com>
21132
21133         * Binding.cs:
21134         * ListControl.cs: Don't use the path when retrieving binding
21135         managers from the binding context. My bat sense tells me that the
21136         path is only used on insertion.
21137
21138 2005-09-22  Jackson Harper  <jackson@ximian.com>
21139
21140         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
21141
21142 2005-09-22  Jackson Harper  <jackson@ximian.com>
21143
21144         * Splitter.cs: There are special cursors used for splitting.
21145         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
21146
21147 2005-09-22  Jackson Harper  <jackson@ximian.com>
21148
21149         * Splitter.cs: Change the cursor appropriately when the splitter
21150         is moused over, so the user actually knows there is a splitter
21151         there.
21152
21153 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21154
21155        * Label.cs : Fix ToString method to give same output as MS.NET
21156
21157 2005-09-22  Jackson Harper  <jackson@ximian.com>
21158
21159         * TreeView.cs: Create the scrollbars when the handle is created
21160         and add them right away, just make them invisble. Also account for
21161         the window being shrunk vertically to the point that the vert
21162         scrollbar needs to be added.
21163         - Remove some 0.5 adjustments to get around anti aliasing issues.
21164         
21165 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
21166          
21167         * MainMenu.cs: Fixes default value
21168         * MenuItem.cs: Fixes default value
21169
21170 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
21171
21172         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
21173
21174 2005-09-21  Jackson Harper  <jackson@ximian.com>
21175
21176         * Control.cs: Don't try to set the border style on the window if
21177         it hasn't been created. When the window is created the border
21178         style will be used.
21179
21180 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21181
21182         * Control.cs (Update): Don't call XplatUI if we don't have a
21183           window handle yet
21184
21185 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21186
21187         * ContainerControl.cs: Instead of throwing an exception, print
21188           a one-time warning about Validate not being implemented
21189         * XplatUIWin32.cs: Removed debug output
21190
21191 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
21192
21193         * Control.cs: Only set XplatUI background if we expect the windowing
21194           system to handle the background. This stops controls that draw their
21195           own background from flickering
21196
21197         * XplatUIX11.cs: Support custom visuals and colormaps for window 
21198           creation. This allows, amongst other things, using MWF X11 windows 
21199           with OpenGL.
21200
21201 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
21202
21203         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
21204           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
21205           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
21206           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
21207           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
21208           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
21209           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
21210           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
21211           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
21212           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
21213           GridColumnStylesCollection.cs, 
21214           IDataGridColumnStyleEditingNotificationService.cs,
21215           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
21216           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
21217           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
21218           TreeNodeCollection.cs, AmbientProperties.cs, 
21219           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
21220           DataObject.cs, ErrorProvider.cs, Splitter.cs,
21221           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
21222           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
21223           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
21224           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
21225           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
21226           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
21227           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
21228           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
21229           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
21230           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
21231           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
21232           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
21233           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
21234           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
21235           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
21236           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
21237           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
21238           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
21239           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
21240           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
21241           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
21242           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
21243           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
21244           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
21245           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
21246           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
21247           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
21248           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
21249           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
21250           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
21251           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
21252           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
21253           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
21254           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
21255           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
21256
21257 2005-09-21  Jackson Harper  <jackson@ximian.com>
21258
21259         * TreeNode.cs: Call Before/After Expand not Collapse when
21260         expanding.
21261
21262 2005-09-20  Jackson Harper  <jackson@ximian.com>
21263         
21264         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
21265
21266 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21267          
21268         * ListViewItem.cs:
21269                 - Fixes bug 76120
21270                 - Fixes proper storing of subitems
21271                 - Fixes not updated items
21272
21273 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
21274
21275         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
21276           things if our window handle isn't created yet. Also disabled 
21277           debug for TextBoxBase
21278
21279 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
21280
21281         * MenuAPI.cs: Remove filtering of events to allow menu usage
21282
21283 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21284
21285         * Cursor.cs: Allow null to be passed to Cursor.Current.
21286
21287 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
21288
21289         * ThemeWin32Classic.cs:
21290           - Change some private methods/fields to protected virtual so that 
21291             they can be accessed and overriden in derived classes
21292           - First refactoring of some methods. Derived themes now don't 
21293             need to duplicate the complete code from ThemeWin32Classic
21294         * ThemeNice.cs:
21295           - Added nice StatusBar
21296           - Derive from ThemeWin32Classic and not Theme
21297           - Removed duplicate ThemeWin32Classic code
21298
21299 2005-09-20  Miguel de Icaza  <miguel@novell.com>
21300
21301         * Control.cs (ControlCollection.Add): If the value null is passed
21302         the control is ignored. 
21303
21304         Optimize this loop.
21305
21306 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
21307
21308         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
21309           PostQuitMessage state.
21310         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
21311
21312 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
21313
21314         * Application.cs: Our constructor will never get called, move 
21315           initialization to fields; fixes bug #75933
21316
21317 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
21318
21319         * FileDialog.cs :
21320                 - Allow files to be selected properly using file name
21321                 combo box.
21322                 - Add ability to change diretory (absolute / relative)
21323                 using file name combo box.
21324
21325 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
21326          
21327         * ListBox.cs: 
21328                 - Fixes Multicolumn listboxes item wrong calculations
21329                 - Allows to click when only one item is in the listbox
21330                 - Fixes crash when no items using keyboard navigation
21331
21332 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
21333
21334         * ComboBox.cs: Reverted almost everything from the latest patch which
21335           broke ComboBox
21336
21337 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
21338         
21339         * ToolTip.cs:
21340                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
21341         * ComboBox.cs:
21342                 - When DropDownStyle is Simple, it does not show scrollbar 
21343                 to the last item of the list.
21344                 - When DropDownStyle is Simple, it crashed when the list was 
21345                 scrolled down with the down cursor key.
21346                 - Fixed a bug that when DropDownStyle is DropDownList, the 
21347                 selected item was not shown.
21348                 - The position of the selected item was not preserved when 
21349                 the next dropdown happened.
21350         * ThemeWin32Classic.cs:
21351                 - Items were wrapped at the right end.
21352         * CheckedListBox.cs:
21353                 - Fixed Add method
21354         * ListBox.cs:
21355                 - Items should be fully shown.
21356                 - When resizing and vertical scrollbar disappeared, the item 
21357                 of index 0 should be on the top of the list.
21358                 - GetItemRectangle should consider the size of ver. scrollbar
21359         * StatusBar.cs:
21360                 - SizingGrip area should not be allocated when it is not 
21361                 displayed.
21362                 - Now it reflects MinWidth of the containing panel and 
21363                 fixed a crash that happens when its width becomes so small.
21364
21365 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21366
21367         * CheckedListBox.cs: Fixes bug 76028
21368         * ListBox.cs: Fixes bug 76028
21369
21370 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
21371
21372         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
21373         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
21374
21375 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
21376
21377         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
21378
21379 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21380
21381         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
21382
21383 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
21384
21385         * IRootGridEntry.cs: Added
21386         * PropertyGridCommands.cs: Added
21387         * PropertiesTab.cs: Added missing methods and property
21388         * PropertyGridView.cs: Made class internal
21389         * PropertyGridTextBox.cs: Made class internal
21390
21391 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21392
21393         * MimeIcon.cs: Try to check some other environment variables
21394           if "DESKTOP_SESSION" returns "default"
21395
21396 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21397
21398         * ThemeNice.cs: Corrected background colors (e.g. menus)
21399         * ColorDialog.cs: Use correct background colors for controls
21400
21401 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
21402
21403         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
21404
21405 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
21406
21407         * RichTextBox.cs: Added initial implementation
21408         * lang.cs: Removed. Was accidentally checked in long time ago
21409         * TODO: Removed. Contents were obsolete
21410
21411 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21412                                                                                 
21413         * PropertiesTab.cs : Added
21414
21415 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
21416                                                                                 
21417         * PropertyGrid.cs : Update
21418         * PropertyGridView.cs : Update
21419         * System.Windows.Forms.resx : Added images and strings
21420
21421 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
21422
21423         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
21424  
21425 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
21426
21427         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
21428           a busy loop right after the Ungrab the X11 display is otherwise 
21429           blocked
21430
21431 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
21432
21433         * ThemeWin32Classic.cs: Optimise the use of clipping
21434
21435 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
21436
21437         * DataGrid.cs: fixes recursion bug
21438
21439 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
21440
21441         * ThemeNice.cs: 
21442           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
21443           - Cleanup
21444
21445 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
21446
21447         * ThemeNice.cs: Draw nice ProgressBars
21448
21449 2005-09-01  Miguel de Icaza  <miguel@novell.com>
21450
21451         * VScrollBar.cs: Another buglet found by Aaron's tool. 
21452
21453         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
21454         bug finder.
21455
21456 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
21457
21458         * ThemeNice.cs:
21459           - Added nicer menu drawing
21460           - Updated DrawTab
21461           - some refactoring
21462
21463 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21464
21465         * CreateParams.cs (ToString): Made output match MS
21466         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
21467             handle is already created (to avoid forcing window creation)
21468         * XplatUIX11.cs: Set window text to caption after creating window,
21469           in case Text was set before window was created
21470         * Form.cs: Use this.Text instead of a static string as caption
21471
21472 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21473
21474         * NotifyIcon.cs: Don't set the window to visible; this screws
21475           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
21476           OnPaint without a bitmap)
21477         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
21478           happen very often anyway; we could add the check to the WM_PAINT 
21479           event generation code
21480
21481 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
21482
21483         * NotifyIcon.cs: Fill the icon area with a background color, to 
21484           avoid 'residue' when transparent icons are drawn
21485         * XplatUIX11.cs:
21486           - Handle whole_window == client_window when destroying windows
21487           - SystrayAdd(): Set client_window to whole_window value to
21488             get mouse and other events passed to NotifyIcon
21489
21490 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
21491
21492         * Form.cs: Set proper default for Opacity property
21493         * NotifyIcon.cs:
21494           - ShowSystray(): Don't bother creating telling the OS
21495             about the systray item if no icon is provided
21496           - Now handles WM_NCPAINT message to deal with whole/client window
21497             split
21498           - Create window as visible to not get caught by Expose optimization
21499         * Hwnd.cs: Removed debug message
21500         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
21501           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
21502             PaintEventStart/End to use new client argument
21503         * TextBoxBase.cs:
21504           - Commented out debug messages
21505           - Switched PaintEventStart/End to use new client argument
21506         * XplatUI.cs: Added client window bool to PaintEventStart()/
21507           PaintEventEnd() calls, to support drawing in non-client areas
21508         * XplatUIDriver.cs: 
21509           - Added client window bool to PaintEventStart()/PaintEventEnd() 
21510             calls, to support drawing in non-client areas
21511           - Added conditional compile to allow using MWF BeginInvoke 
21512             on MS runtime
21513         * XplatUIX11.cs:
21514           - Added some conditional debug output
21515           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
21516             whole/client window split
21517           - Implemented handling of client argument to PaintEventStart()/End()
21518         * Control.cs:
21519           - Throw exception if BeginInvoke() is called and the window handle
21520             or one of the window's parent handles is not created
21521           - Added conditional compile to allow using MWF BeginInvoke on
21522             MS runtime
21523           - get_Parent(): Only sets parent if handle is created. This avoids
21524             forcing window handle creation when parent is set.
21525           - Now fires Layout and Parent changed events in proper order
21526           - Switched to use Handle instead of window.Handle for Z-Order setting,
21527             the get_Parent() patch above causes us to possibly get null for 'window'
21528           - Implemented handling of client argument to PaintEventStart()/End()
21529           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
21530             default handling)
21531           - Now sends a Refresh() to all child windows when Refresh() is called
21532
21533 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
21534
21535         * Form.cs: Added (non-functional) Opacity property
21536         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
21537
21538 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
21539         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
21540           use export MONO_THEME=nice to activate it.
21541           Currently supported controls:
21542           - Button
21543           - ComboBox
21544           - ScrollBar
21545           - TabControl (TabAlignment.Top only, other will follow)
21546         * ThemeEngine.cs: Add theme nice
21547         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
21548           if enabled
21549
21550 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
21551
21552         * Splitter.cs: Resize docked control and its neighbor.
21553
21554 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21555         -- Making Windows with Menus layout correctly --
21556         * Form.cs : The first leg of the fix
21557                 Menu setter - adjust Client Size as needed to make space for the menu
21558                 SetClientSizeCore - doesn't call base version to be able to pass the 
21559                         menu handle to XplatUI.CalculateWindowRect
21560         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
21561         * XplatUIX11.cs: The critical second leg of the fix
21562                 GetWindowPos needs to use a recalculated client_rect
21563                 so that resizing the window doesn't break layout of child controls. 
21564                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
21565                 Lots of \t\n killed
21566
21567 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
21568
21569         * Label.cs: Now properly recalculates width and height on Font and Text
21570           changes if AutoSize is set
21571
21572 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
21573         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
21574
21575 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
21576
21577         * ImageList.cs: Makes ToString method compatible with MS
21578
21579 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
21580
21581         * MenuAPI.cs: fixes bug 75716
21582
21583 2005-08-11 Umadevi S <sumadevi@novell.com>
21584         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
21585
21586 2005-08-11 Umadevi S <sumadevi@novell.com>
21587         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
21588
21589 2005-08-10  Umadevi S <sumadevi@novell.com>
21590         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
21591
21592 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
21593
21594         * Menu.cs: fixes bug 75700
21595         * MenuAPI.cs: fixes navigation issues
21596
21597 2005-08-09  Umadevi S <sumadevi@novell.com>
21598         * CheckedListBox.cs - simple fix for GetItemChecked.
21599
21600 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
21601
21602         * ComboBox.cs: Serveral fixes
21603         * ListBox.cs: Serveral fixes
21604
21605 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
21606
21607         * ComboBox.cs: Fixes FindString methods and GetItemHeight
21608         * ListBox.cs: Fixes FindString methods
21609
21610 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
21611
21612         * DataGrid.cs: fixes bugs exposed by new tests
21613
21614 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
21615
21616         * Mime.cs: Compile Mono assembly references only if compiling
21617           with Mono (Allows to build with VS.Net again)
21618
21619 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
21620
21621         * Control.cs (PaintControlBackground): Draw background image
21622         corrrectly.
21623         (CheckForIllegalCrossThreadCalls): Stubbed.
21624         
21625         * Form.cs (OnCreateControl): Center when should be centered.
21626         
21627         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
21628
21629 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
21630
21631         * Binding.cs: Binding to properties should be case unsensitive
21632
21633 2005-07-18 vlindos@nucleusys.com
21634
21635         * DataGrid.cs: fixes setmember order
21636
21637 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
21638
21639         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
21640         * FileDialog.cs: FileDialog is now resizable and uses the new
21641           MimeIconEngine
21642
21643 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
21644
21645         * DataGridTextBoxColumn.cs: default value
21646         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
21647         * GridTableStylesCollection.cs: fixes checking MappingName
21648         * DataGridDrawingLogic.cs: fixes drawing logic issues
21649         * DataSourceHelper.cs: rewritten to make compatible with more data sources
21650         * DataGrid.cs: fixes    
21651
21652 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
21653
21654         * MimeGenerated.cs: Use case sensitive comparer for
21655           NameValueCollections
21656
21657 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
21658
21659         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
21660         * ThemeWin32Classic.cs: bug fixes, code refactoring
21661         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
21662         * DataGrid.cs: bug fixes, code refactoring
21663         * DataGridTextBox.cs: bug fixes, code refactoring
21664         * DataGridColumnStyle.cs:  bug fixes, code refactoring
21665         * Theme.cs:  bug fixes, code refactoring
21666
21667 2005-07-01  Peter Bartok  <pbartok@novell.com> 
21668
21669         * TextControl.cs: Quick fix for the reported crash on ColorDialog
21670           and other text box usage
21671
21672 2005-07-01  Jackson Harper  <jackson@ximian.com>
21673
21674         * TabControl.cs: Make sure the bottom of the tab covers the pages
21675         border.
21676
21677 2005-06-30  Peter Bartok  <pbartok@novell.com> 
21678
21679         * Form.cs (ShowDialog): Assign owner of the dialog
21680         * TextBoxBase.cs: Always refresh caret size when deleting, caret
21681           might have been moved to a tag with different height
21682
21683 2005-06-30  Jackson Harper  <jackson@ximian.com>
21684
21685         * Form.cs: Don't create an infinite loop when setting focus
21686         * MenuItem.cs: Don't dirty the parents if we don't have any
21687
21688 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
21689
21690         * LibSupport.cs: Rename
21691
21692 2005-06-29  Peter Bartok  <pbartok@novell.com>
21693
21694         * TextBoxBase.cs: Re-align caret after deleting a character
21695         * TextControl.cs:
21696           - DeleteChars(): Ensure that tag covers the provided position
21697           - StreamLine(): Drop reference for dropped tag
21698
21699 2005-06-29  Peter Bartok  <pbartok@novell.com> 
21700
21701         * TextControl.cs: 
21702           - Selections now work properly, anchoring at the initial location
21703             and properly extending in either direction (SetSelectionToCaret(),
21704             SetSelectionStart() and SetSelectionEnd())
21705           - No longer redraws the whole control on selection change, now
21706             calculates delta between previous and new selection and only
21707             invalidates/redraws that area
21708           - Fixed FindPos() math off-by-one errors
21709           - Changed DeleteChars() to verify the provided tag covers the
21710             provided position, selections may have a tag that doesn't cover
21711             the position if the selection is at a tag border
21712           - Fixed off-by-one errors in DeleteChars()
21713           - Added missing streamlining check in DeleteChars() to remove
21714             zero-length tags
21715           - Implemented Invalidate() method, now properly calculates exposures
21716             between two given lines/positions
21717           - Implemented SetSelection()
21718           - Obsoleted and removed FixupSelection()
21719           - Improved RecalculateDocument() logic, removing code duplication
21720
21721 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21722
21723         * LibSupport.cs: changes to match different input/output arguments.
21724
21725 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21726
21727         * LibSupport.cs: added libsupport.so init routine.
21728
21729 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
21730         
21731         * ControlBindingsCollection.cs
21732                 - Throws an exception on null datasource when adding
21733                 - Checks for duplicated bindings when adding
21734
21735 2005-06-28  Jackson Harper  <jackson@ximian.com>
21736
21737         * TreeView.cs (OnKeyDown): Support left and right properly
21738         (navigates as well as expanding and collapsing.
21739         - Add support for Multiply, this expands all the selected nodes
21740         children.
21741         - Fix some tabbing.
21742
21743 2005-06-28  Jackson Harper  <jackson@ximian.com>
21744
21745         * TreeView.cs: Implement keyboard navigation, currently supports,
21746         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
21747         support for toggling checkboxes with the space bar.
21748
21749 2005-06-28  Jackson Harper  <jackson@ximian.com>
21750
21751         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
21752         tree.
21753
21754 2005-06-28  Jackson Harper  <jackson@ximian.com>
21755
21756         * TreeView.cs: Add missing event.
21757
21758 2005-06-27  Peter Bartok  <pbartok@novell.com> 
21759
21760         * TextControl.cs:
21761           - Made line ending size configurable (now allows for counting 
21762             lineendings as \n or \r\n)
21763           - Added margin to viewport to keep caret visible on right side
21764           - Fixed translation routines for line/pos to documentpos to consider
21765             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
21766           - Fixed some line-endings to be unix style
21767           - Fixed Document.FormatText to perform it's calculations 1-based
21768           - Added descriptions for a few methods that might otherwise get 
21769             used wrong
21770           - Added NOTE section with some basic conventions to remember at 
21771             the top of the file
21772           - Major fixup for RichTextBox selection drawing:
21773             * Fixed crashes when multiple tags on a single line were selected
21774             * fixed selection box drawing not overlaying text
21775             * fixed bogus offset calculation for tags not starting at index 1
21776             * Switched behaviour from using multiple Substrings of a 
21777               StringBuilder.ToString() to using multiple 
21778               StringBuilder.ToString(start, length) statements, hoping this is
21779               faster (kept original version commented out in the code, in case
21780               original version was faster)
21781         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
21782           alignment != Left
21783         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
21784           call it as well
21785
21786 2005-06-27  Jackson Harper  <jackson@ximian.com>
21787
21788         * TabControl.cs: Move to the left and right with the arrow
21789         keys. These keys don't cycle beyond first and last like
21790         tab. Refresh all the tabs when scrolling them to the left or
21791         right.
21792
21793 2005-06-27  Jackson Harper  <jackson@ximian.com>
21794
21795         * TabControl.cs:
21796           - ToString: Added method
21797           - CreateParams: Remove TODO and comment
21798           - OnKeyDown: Cycle through bounds properly.
21799           - SelectedIndex: Scroll to the right or left if we need to
21800           display the newly selected tab.
21801
21802 2005-06-23  Jackson Harper  <jackson@ximian.com>
21803
21804         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
21805         set.
21806
21807 2005-06-23  Jackson Harper  <jackson@ximian.com>
21808
21809         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
21810         CTRL-SHIFT-TAB, and HOME, END are there any others?
21811
21812 2005-06-23  Jackson Harper  <jackson@ximian.com>
21813
21814         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
21815
21816 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
21817         
21818         * DataGridTextBoxColumn.cs: fixes and enhancements
21819         * ThemeWin32Classic.cs: fixes and enhancements
21820         * DataGridBoolColumn.cs:  fixes and enhancements
21821         * DataGridDrawingLogic.cs:  fixes and enhancements
21822         * CurrencyManager.cs: fixes and enhancements
21823         * DataGrid.cs: fixes and enhancements
21824         * DataGridColumnStyle.cs:  fixes and enhancements
21825
21826 2005-06-22  Jackson Harper  <jackson@ximian.com>
21827
21828         * TabControl.cs: Add some missing methods that just call into the
21829         base. Make the TabPageCollection's IList interface behave in the
21830         same manner as the MS implementation.
21831
21832 2005-06-22  Peter Bartok  <pbartok@novell.com> 
21833
21834         * TextControl.cs: Added sanity check
21835         * TextBoxBase.cs: 
21836           - Fixed wrapping behaviour, don't set wrap on single line controls
21837             (this fixes the breakage of colordialog introduced in an earlier
21838              checkin)
21839           - Added rudimentary support for autoscrolling right-aligned controls
21840             (still needs fixing, also, center alignment scroll is missing)
21841
21842 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
21843         
21844         * ScrollBar.cs: Fixes thumbpos on Maximum values
21845
21846 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
21847         
21848         * PropertyGridView.cs: Pass context information to UITypeEditors 
21849
21850 2005-06-21  Peter Bartok  <pbartok@novell.com> 
21851
21852         * TextBoxBase.cs:
21853           - Now calling PositionCaret with absolute space coordinates
21854           - Enabled vertical scrolling
21855           - Better tracking of scrollbar changes, tied into WidthChange
21856             event
21857           - Improved cursor tracking
21858           - Removed debug output
21859         * TextControl.cs:
21860           - PositionCaret coordinates are now works in absolute space, not 
21861             the canvas
21862           - Improved tracking of document size
21863           - Added events for width and height changes
21864
21865 2005-06-21  Peter Bartok  <pbartok@novell.com>
21866
21867         * Form.cs: Set focus to active control when form is activated
21868         * TextControl.cs: 
21869           - Added word-wrap functionality to RecalculateLine() 
21870           - Added some short function descriptions for VS.Net to aid in
21871             writing dependent controls
21872           - Added Caret property, returning the current coords of the caret
21873           - Added ViewPortWidth and ViewPortHeight properties
21874           - Added Wrap property
21875           - Added CaretMoved event
21876           - Removed some old debug code
21877           - Split() can now create soft splits
21878           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
21879           - Added method to format existing text
21880           - Fixed size/alignment calculations to use viewport
21881           - RecalculateDocument now can handle changing line-numbers while
21882             calculating lines
21883
21884         * TextBox.cs:
21885           - Added some wrap logic, we don't wrap if alignment is not left
21886           - Added casts for scrollbar var, base class switched types to
21887             also support RichTextBoxA
21888           - Implemented handling of scrollbar visibility flags
21889
21890         * TextBoxBase.cs:
21891           - Switched scrollbars type to RichTextBoxScrollBars to support
21892             RichTextBox
21893           - Added tracking of canvas width/height
21894           - Switched scrollbars to be not selectable (to keep focus on text)
21895           - Added central CalculateDocument() method to handle all redraw
21896             requirements
21897           - Added ReadOnly support
21898           - Added WordWrap support
21899           - Fixed handling of Enter key (we now treat it as a DialogKey)
21900           - Fixed caret positioning when h or v scroll is not zero
21901           - Fixed placing/generation of vertical scrollbar
21902           - Added CalculateScrollBars() method to allow updating scrollbar
21903             limits and visibility
21904           - Fixed handling of horizontal scroll
21905           - Added handling of vertical scroll
21906           - Implemented auto-'jump' when caret moves to close to a left or
21907             right border and there is text to be scrolled into view (currently
21908             there's the potential for a stack overflow, until a bug in
21909             scrollbar is fixed)
21910
21911 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
21912         
21913         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
21914
21915 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
21916
21917         * Mime.cs:
21918         - added inodes.
21919         - return application/x-zerosize for files with size zero
21920           (if no extension pattern matches).
21921         - check matches collection for strings too.
21922         - return only the first mime type if the name value
21923           collection has more than one mime type.
21924
21925 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
21926         
21927         * PropertyGrid.cs: Cleaned up some TODOs
21928         * PropertyGridView.cs: Added support for UITypeEditors
21929
21930 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
21931         
21932         * DataGrid.cs: clears cached value
21933
21934 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
21935
21936         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
21937         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
21938         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
21939         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
21940         
21941 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
21942
21943         * ThemeWin32Classic.cs: fixes colour
21944
21945 2005-06-15  Peter Bartok  <pbartok@novell.com>
21946
21947         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
21948         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
21949         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
21950         * Control.cs: Added some MWFCategory and MWFDescription attributes
21951         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
21952
21953 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
21954
21955         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
21956         usage
21957
21958 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
21959
21960         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
21961         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
21962         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
21963         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
21964         * DataGrid.cs: default datagrid settings for Default Styles, fixes
21965         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
21966
21967 2005-06-13  Jackson Harper  <jackson@ximian.com>
21968
21969         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
21970         isn't printed when the user enables dropping. (X11 does accept
21971         drops).
21972         
21973 2005-06-13  Jackson Harper  <jackson@ximian.com>
21974
21975         * TreeView.cs: Remove some TODOS.
21976
21977 2005-06-13  Jackson Harper  <jackson@ximian.com>
21978
21979         * Form.cs: Hook into the mdi framework.
21980         * MdiClient.cs: Use the base control collections add method so
21981         parents get setup correctly. Set the default back colour and dock
21982         style.
21983         * MdiChildContext.cs: New class, this bad actor handles an
21984         instance of an MDI window. Right now there is only basic
21985         support. You can drag, close, and resize windows. Minimize and
21986         Maximize are partially implemented.
21987
21988 2005-06-13  Jackson Harper  <jackson@ximian.com>
21989
21990         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
21991         freaky when both vals are negative. NOTE: There are probably other
21992         places in XplatUIX11 that this needs to be done.
21993
21994 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
21995
21996         * DataGrid.cs: implement missing methods, move KeyboardNavigation
21997         * DataGridColumnStyle.cs: fixes signature
21998
21999 2005-06-12  Jackson Harper  <jackson@ximian.com>
22000
22001         * XplatUIX11.cs: Use sizing cursors similar to the ones on
22002         windows.
22003
22004 2005-06-11  Jackson Harper  <jackson@ximian.com>
22005
22006         * StatusBarPanel.cs: Signature cleanups. Implement
22007         BeginInit/EndInit.
22008
22009 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
22010
22011         * DataGridTextBoxColumn.cs: Honors aligment
22012         * GridColumnStylesCollection.cs: Contains is case unsensitive
22013         * GridTableStylesCollection.cs: several fixes
22014         * DataGridTableStyle.cs: default column creation
22015         * DataGridDrawingLogic.cs: fixes
22016         * CurrencyManager.cs: ListName property
22017         * DataGrid.cs: multiple styles support
22018         * DataGridColumnStyle.cs: fixes
22019         
22020
22021 2005-06-10  Peter Bartok  <pbartok@novell.com>
22022
22023         * Control.cs(Select): Moved SetFocus call to avoid potential
22024           loops if controls change the active control when getting focus
22025         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
22026           the up/down buttons
22027
22028 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
22029
22030         * ImageListConverter.cs: Implemented
22031
22032 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22033
22034         * MonthCalendar.cs: Wired in NumericUpDown control for year
22035
22036 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
22037
22038         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
22039           DoubleClick events, since they are not meant to be fired.
22040
22041 2005-06-09  Peter Bartok  <pbartok@novell.com>
22042
22043         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
22044           Jonathan's standalone controls into MWF, implemented missing
22045           events, attributes and methods; added xxxAccessible classes
22046         * AccessibleObject.cs: Made fields internal so other classes
22047           can change them if needed
22048
22049 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
22050
22051         * UpDownBase.cs: Complete implementation
22052         * NumericUpDown.cs: Complete implementation
22053         * DomainUpDown.cs: Complete implementation
22054
22055 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
22056
22057         * DataGridTextBoxColumn.cs: drawing fixes
22058         * DataGridCell.cs: fixes ToString method to match MSNet
22059         * DataGridTableStyle.cs: fixes
22060         * DataGridBoolColumn.cs: fixes, drawing
22061         * DataGridDrawingLogic.cs: fixes, new methods
22062         * DataGridTextBox.cs: Keyboard and fixes
22063         * DataGrid.cs:
22064                 - Keyboard navigation
22065                 - Scrolling fixes
22066                 - Row selection (single, multiple, deletion, etc)
22067                 - Lots of fixes
22068         
22069 2005-06-07  Jackson Harper  <jackson@ximian.com>
22070
22071         * ThemeWin32Classic.cs: Clear the background area when drawing
22072         buttons.
22073
22074 2005-06-06  Peter Bartok  <pbartok@novell.com>
22075
22076         * ImageListStreamer.cs: Fixed signature for GetData
22077         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
22078         * ComboBox.cs:
22079           - Added missing ChildAccessibleObject class
22080           - Added missing OnXXXFocus overrides, switched to using those
22081             instead of the event handler
22082         * Control.cs:
22083           - Added Parent property for ControlAccessibleObject
22084           - Fixed signatures
22085           - Fixed attributes
22086           - Added ResetBindings()
22087         * ListBindingConverter.cs: Implemented some methods
22088         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
22089         * ImageList.cs: Implemented basic handle scheme, removed TODOs
22090         * ContainerControl.cs: Fixed signature, now subscribing to the
22091           ControlRemoved event instead of overriding the handler, LAMESPEC
22092         * CurrencyManager.cs: Added missing attribute
22093         * MonthCalendar.cs: Added missing properties
22094
22095 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22096
22097         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
22098         
22099 2005-06-06  Gaurav Vaish and Ankit Jain
22100
22101         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
22102         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
22103         
22104 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
22105
22106         * Control.cs: fixes CreateParams Width / Height.
22107
22108 2005-06-05  Peter Bartok  <pbartok@novell.com>
22109
22110         * Win32DnD.cs: Removed compilation warnings
22111
22112 2005-06-05  Peter Bartok  <pbartok@novell.com>
22113
22114         * Control.cs (CreateParams): Since we don't know if one of the
22115           properties we use is overridden, lets make sure if we fail accessing
22116           we continue with a backup plan
22117
22118 2005-06-05  Peter Bartok  <pbartok@novell.com>
22119
22120         * Win32DnD.cs:
22121           - Removed debug output
22122           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
22123             struct
22124           - Plugged resource leak
22125         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
22126           MS size
22127
22128 2005-06-05  Peter Bartok  <pbartok@novell.com>
22129
22130         * XplatUIWin32.cs: Removed DnD code
22131         * Win32DnD.cs: Implemented drop source and drop target functionality
22132
22133 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22134
22135         * UpDownBase.cs: remove duplicate addition of event, enable some code
22136         that was commented out.
22137         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
22138         Validate input when a key is pressed. It works fine now for every
22139         combination of Hexadecimal. Only missing some drawing love when sharing
22140         space with other controls.
22141
22142 2005-06-04  Peter Bartok  <pbartok@novell.com>
22143
22144         * Control.cs:
22145           - We need to pass a window for DragDrop, so enable callback events
22146           - Added DnD callback events when being a DragSource
22147         * XplatUI.cs (StartDrag): Added window handle argument
22148         * XplatUIDriver.cs (StartDrag): Added window handle argument
22149         * QueryContinueDragEventArgs: Made fields internally accessible so
22150           drivers can set them
22151         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
22152           can set them
22153
22154 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
22155
22156         * DataGridTextBoxColumn.cs: column text editing
22157         * DataGridTableStyle.cs: Respect columns styles created by the user
22158         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
22159         * DataGridBoolColumn.cs: bool column editing
22160         * DataGrid.cs: fixes to scrolling, properties, etc
22161         * DataGridTextBox.cs: handle keyboard
22162         * DataGridColumnStyle.cs: fixes
22163
22164 2005-06-02  Jackson Harper  <jackson@ximian.com>
22165
22166         * ImageListStreamer.cs: Somewhat broken implementation of
22167         GetObjectData. The RLE needs some work to match MS properly.
22168
22169 2005-06-02  Jackson Harper  <jackson@ximian.com>
22170
22171         * X11Dnd.cs: Attempting to keep at least one file in MWF
22172         monostyled.
22173
22174 2005-06-02  Peter Bartok  <pbartok@novell.com>
22175
22176         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
22177           that way
22178
22179 2005-06-02  Peter Bartok  <pbartok@novell.com>
22180
22181         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
22182         * XplatUI.cs: Added DoDragDrop() method
22183         * XplatUIDriver.cs: Added DoDragDrop() method
22184
22185 2005-06-02  Jackson Harper  <jackson@ximian.com>
22186
22187         * Splitter.cs: Implement BorderStyle.
22188
22189 2005-06-02  Jackson Harper  <jackson@ximian.com>
22190
22191         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
22192         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
22193         X11 using XDND.
22194
22195 2005-06-02  Peter Bartok  <pbartok@novell.com>
22196
22197         * DataObject.cs:
22198           - Added Data setter
22199           - Fixed broken insertion code for SetData, now also
22200             overwrites any existing entry of the same format name
22201         * Hwnd.cs: Added list of pointers that automatically gets
22202           freed when the window is disposed
22203         * XplatUI.cs: Call driver initialization method when loading
22204           a driver
22205         * Control.cs:
22206           - OnDragLeave takes EventArgs, not DragEventArgs
22207           - Added setting of WS_EX_ACCEPTFILES style when dropping is
22208             supported
22209           - Forces style update when drop state changes
22210         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
22211           not perfect since we cannot (yet) call the IDataObject.GetData()
22212           method, we keep getting 0x80004005 error, dunno why)
22213
22214 2005-06-02  Peter Bartok  <pbartok@novell.com>
22215
22216         * DragEventArgs.cs: Make fields internal so we can cache the
22217           object and re-set the fields from XplatUI
22218
22219 2005-06-02  Jackson Harper  <jackson@ximian.com>
22220
22221         * Control.cs: Add some internal methods so the DnD subsystem can
22222         raise DnD events. Also call into the driver when AllowDrop is set.
22223         * XplatUI.cs:
22224         * XplatUIDriver.cs: New method for setting whether or not a window
22225         is allowed to accept drag and drop messages.
22226                 
22227 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
22228         
22229         * ScrollBar.cs: Make sure that values sent in Scroll events
22230         are always between Maximum and Minimum.
22231
22232 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
22233
22234         * Menu.cs: Call MenuChanged when menuitem visibility has been
22235         changed.
22236         * MenuItem.cs: Rebuild menu when item is (not) visible.
22237         * MainMenu.cs: MainMenu has special MenuChanged.
22238         * Theme.cs: Caption and FrameBorderSize are not fixed.
22239         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
22240         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
22241         * XplatUIX11.cs,
22242         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
22243         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
22244
22245 2005-05-30  Jackson Harper  <jackson@ximian.com>
22246
22247         * DataFormat.cs: We can't statically initialize this stuff because
22248         it calls into the xplatui and could create a loop. So we lazy init
22249         it.
22250
22251 2005-05-28  Jackson Harper  <jackson@ximian.com>
22252
22253         * Control.cs: Proper implementation of Product(Name/Version).
22254
22255 2005-05-27  Jackson Harper  <jackson@ximian.com>
22256
22257         * DataObject.cs: Dont crash if no data is found.
22258
22259 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
22260         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
22261                 as per status page, guessing it should be set to true
22262
22263 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
22264
22265         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
22266         * DataGridTableStyle.cs: set proper formatting text, def header text
22267         * ThemeWin32Classic.cs: new themable paramaters
22268         * DataGridBoolColumn.cs: paint check box, get data, fixes
22269         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
22270         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
22271         * DataGridColumnStyle.cs: fixes
22272         * Theme.cs: new themable paramaters
22273                 
22274 2005-05-26  Peter Bartok  <pbartok@novell.com>
22275
22276         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
22277
22278 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22279         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
22280
22281 2005-05-24  Peter Bartok  <pbartok@novell.com>
22282
22283         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
22284           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
22285           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
22286           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
22287           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
22288           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
22289           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
22290           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
22291           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
22292           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
22293           missing attributes, etc
22294         * DataGridPreferredColumnWidthTypeConverter.cs: Added
22295
22296 2005-05-24  Peter Bartok  <pbartok@novell.com>
22297
22298         * Help.cs: Added, implemented trivial functions, throws up MessageBox
22299           when user tries to get help
22300         * DataObject.cs, DataFormats.cs, LinkArea.cs,
22301           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
22302           to suppress warnings
22303         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
22304           avoid unreachable code warning
22305
22306 2005-05-20  Peter Bartok  <pbartok@novell.com>
22307
22308         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
22309
22310 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22311
22312         * DataGridTextBoxColumn.cs: Basic painting methods
22313         * DataGridTableStyle.cs: Set table style in the column
22314         * ThemeWin32Classic.cs: Use Theme for colors
22315         * DataGridDrawingLogic.cs: Implement more drawing
22316         * DataGrid.cs: drawing, theming, enhacements, fixes
22317         * DataGridColumnStyle.cs: fixes, drawing
22318         * Theme.cs: theming for Datagrid
22319
22320 2005-05-20  Peter Bartok  <pbartok@novell.com>
22321
22322         * Cursor.cs: Implemented GetObjectData() method
22323
22324 2005-05-20  Peter Bartok  <pbartok@novell.com>
22325
22326         * Cursors.cs: Added setting of cursor name
22327         * Cursor.cs:
22328           - Implemented constructors
22329           - Implemented Draw and DrawStretched
22330           - Implemented Current property
22331           - Implemented == and != operators
22332           - Implemented Dispose()
22333           - Implemented ToString
22334           - Added missing attributes
22335         * XplatUIX11.cs:
22336           - Added missing reset for OverrideCursor when DoEvents is called
22337           - Fixed creation of cursor, logic was wrong
22338         * XplatUIWin32.cs:
22339           - Added missing reset for OverrideCursor when DoEvents is called
22340           - Fixed creation of cursor, bit arrays were swapped
22341         * Clipboard.cs: Removed obsolete MonoTODO attribute
22342
22343 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22344
22345         * ComboBox.cs: fixes OnSelectedItemChanged
22346         * ControlBindingsCollection.cs: fixes item range check
22347
22348 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
22349
22350         * UpDownBase.cs:
22351                 - Calc preferred height properly
22352                 - Implement missing properties
22353                 
22354         * NumericUpDown.cs: Implement missing events
22355
22356 2005-05-19  Jackson Harper  <jackson@ximian.com>
22357
22358         * TabControl.cs: New method that resizes the tab pages before
22359         redrawing them. This as needed as the control is double buffered
22360         and sizing will not be recalculated unless ResizeTabPages is
22361         called.
22362         * TabPage.cs: Set base.Text instead of Text in the constructor so
22363         that UpdateOwner does not get called. Use the new Redraw method of
22364         TabControl instead of Refresh so the sizing is recalculated.
22365         * ThemeWin32Classic.cs: Draw the text for button tabs.
22366
22367 2005-05-19  Jackson Harper  <jackson@ximian.com>
22368
22369         * Control.cs: Paint control background images. Fix typo where
22370         PaintControlBackground was not getting called correctly.
22371
22372 2005-05-19  Peter Bartok  <pbartok@novell.com>
22373
22374         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
22375           I can investigate, apparently I broke FileDialog
22376
22377 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
22378
22379         * AxHost.cs: Some simple properties.
22380         * Control.cs: window must be accessible after ctor.
22381         * Form.cs: Added TransparencyKey property.
22382         * TextBoxBase.cs: Implemented Clear. Text property can be null.
22383         * XplatUIWin32.cs: SetBorderStyle implemented.
22384
22385 2005-05-18  Peter Bartok  <pbartok@novell.com>
22386
22387         * DataObject.cs: Entries are not global but particular to the
22388           DataObject, now it behaves that way
22389         * XplatUIWin32.cs: Implemented Clipboard methods
22390         * Clipboard.cs: Implemented
22391         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
22392         * XplatUIOSX.cs: Updated to final clipboard prototypes
22393         * XplatUIX11.cs: Implemented Clipboard methods
22394         * XplatUIDriver.cs: Updated to final clipboard prototypes
22395         * XplatUIStructs.cs:
22396           - Added BITMAPINFOHEADER struct
22397           - Added ClipboardFormats enum
22398         * X11Structs.cs:
22399           - Added ClipboardStruct
22400           - Added Atom enum items for clipboard types
22401           - Fixed atom types for Selection event structures
22402         * DataFormats.cs:
22403           - Added internal properties and methods for drivers to enumerate
22404             all known formats
22405           - Switched initialization method to allow drivers to assign their
22406             own IDs even for the MS predefined clipboard IDs
22407         * XplatUI.cs: Updated to final clipboard interface
22408
22409 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22410         * PropertyGridView.cs: Fixed compiler warnings.
22411
22412 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
22413         * PropertyGrid.cs: Added some event calls
22414         * PropertyGridView.cs: Change drawing code to use double buffering
22415         * PropertyGridTextBox.cs: Changed Text property name
22416         * GridItem.cs: Added Bounds property.
22417         * GridEntry.cs: Added Bounds property.
22418
22419 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
22420
22421         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
22422         since GetType() may not return the correct type if the object is
22423         a remoting proxy.
22424
22425 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
22426
22427         * TreeNodeCollection.cs: fixes get/set item ranges
22428         
22429 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22430
22431         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
22432                 
22433 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
22434
22435         * ComboBox.cs: Fix item range comparation
22436         * ListView.cs: Fix item range comparation
22437
22438 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22439
22440         * FontDialog.cs:
22441           - Clear example panel when OnPaint is called
22442           - Better solution for displaying the example panel text
22443           - Select default indexes in the ListBoxes
22444
22445 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22446
22447         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
22448
22449 2005-05-11  Peter Bartok  <pbartok@novell.com>
22450
22451         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
22452         * SelectionRangeConverter.cs: Implemented
22453         * PropertyGrid.cs: Fixed attribute value
22454         * Control.cs:
22455           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
22456           - Added Sebastien Pouliot's CAS Stack Propagation fixes
22457         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
22458           that's common to all drivers. First methods to go there are
22459           Sebastien Pouliot's CAS Stack Propagation helper methods
22460         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
22461           Sebastien Pouliot for CAS Stack Propagation
22462
22463 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
22464
22465         * OSXStructs.cs:
22466           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
22467
22468 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
22469
22470         * DataGridTextBoxColumn.cs: fixed some members
22471         * GridColumnStylesCollection.cs: indexed column is case insensitive
22472         * DataGridTableStyle.cs: fixes
22473         * ThemeWin32Classic.cs: add new theme parameter
22474         * Theme.cs: add new theme parameter
22475         * DataGridDrawingLogic.cs: Datagrid's drawing logic
22476         * DataGrid.cs: fixes, new internal properties, etc.
22477         * DataGridColumnStyle.cs: allows to set grid value
22478         *
22479
22480 2005-05-10  Peter Bartok  <pbartok@novell.com>
22481
22482         * AccessibleObject.cs:
22483           - Removed MonoTODO attribute on help, method is correct
22484           - Fixed Bounds property
22485         * AxHost.cs: Moved MonoTODO
22486         * ButtonBase.cs: Now setting AccessibleObject properties
22487         * RadioButton.cs: Setting proper AccessibleObject role
22488         * CheckBox.cs: Setting proper AccessibleObject role
22489         * ControlBindingsCollection.cs: Added properties, methods and attributes
22490         * DataFormats.cs: Fixed awkward internal API, and changed to enable
22491           userdefined DataFormats.Format items as well
22492         * ListControl.cs: Removed data_member from the public eye
22493         * OpenFileDialog.cs:
22494           - Made class sealed
22495           - Added missing attributes
22496         * SaveFileDialog.cs: Added missing attributes
22497         * ImageListStreamer.cs: Fixed code that caused warnings
22498         * LinkLabel.cs: Removed unreachable code
22499         * TreeView.cs: Fixed code that caused warnings
22500         * PropertyGridView.cs: Fixed code that caused warnings
22501         * GridColumnStylesCollection.cs: Added missing attributes
22502         * GridTableStylesCollection: Added missing attribute
22503         * PropertyManager: Added .ctor
22504         * SecurityIDType: Added
22505         * DataObject.cs: Implemented class
22506         * LinkArea.cs: Added missing attribute
22507
22508 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
22509
22510         * RadioButton.cs: call base method to allow to fire OnClick event
22511         * UpDownBase.cs: OnMouseUp call base method
22512         * CheckedListBox.cs: call base method before returning
22513         * TrackBar.cs: call base method before returning
22514         
22515
22516 2005-05-10  Peter Bartok  <pbartok@novell.com>
22517
22518         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
22519           for messages
22520
22521 2005-05-10  Peter Bartok  <pbartok@novell.com>
22522
22523         * DataFormats.cs: Implemented
22524         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
22525           XplatUIX11.cs: Added Clipboard APIs
22526         * XplatUIWin32.cs: Implemented Clipboard APIs
22527         * FolderBrowserDialog.cs: Added missing event, attributes
22528
22529 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
22530
22531         * CheckBox.cs: call base method to allow to fire OnClick event
22532
22533 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
22534
22535         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
22536
22537 2005-05-06  Peter Bartok  <pbartok@novell.com>
22538
22539         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
22540         * Screen.cs: Implemented
22541         * HelpNavigator.cs: Added
22542         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
22543           property
22544         * HelpProvider.cs: Implemented all we can do until we have a CHM
22545           help library (which means that "What's This" does work now)
22546
22547 2005-05-06  Jackson Harper  <jackson@ximian.com>
22548
22549         * XplatUIX11.cs: Fix waking up the main loop.
22550                 
22551 2005-05-05  Peter Bartok  <pbartok@novell.com>
22552
22553         * XplatUI.cs: Updated revision
22554         * Form.cs: Removed enless loop
22555         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
22556         * Label.cs (OnPaint): Added call to base.OnPaint()
22557         * ToolTip.cs: Made ToolTipWindow reusable for other controls
22558         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
22559         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
22560         * AxHost.cs: Added
22561         * ButtonBase.cs: Moved base.OnPaint() call to end of method
22562         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
22563           to ToolTip.ToolTipWindow for drawing and size methods; this allows
22564           reuse of ToolTipWindow by other controls
22565         * SizeGrip.cs: Moved base.OnPaint() call to end of method
22566         * XplatUIX11.cs: Now clipping drawing area (experimental)
22567         * PictureBox.cs: Moved base.OnPaint() call to end of method
22568         * Theme.cs: Fixed ToolTip abstracts to match new format
22569         * ErrorProvider.cs: Implemented
22570
22571 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
22572
22573         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
22574         * LinkLabel.cs:
22575                 - Adds cursors
22576                 - Handles focus
22577                 - Implements LinkBehavior
22578                 - Fixes many issues
22579
22580 2005-05-03  Jackson Harper  <jackson@ximian.com>
22581
22582         * ListView.cs: Calculate the scrollbar positioning on resize and
22583         paint, so they get put in the correct place.
22584
22585 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
22586
22587         * ColorDialogs.cs: The small color panels are now handled by
22588           SmallColorControl. This fixes drawing of the focus rectangle
22589           and adds a 3D border.
22590
22591 2005-05-03  Peter Bartok  <pbartok@novell.com>
22592
22593         * Control.cs: Modified version of Jonathan Chamber's fix for
22594           double-buffering
22595
22596 2005-05-03  Jackson Harper  <jackson@ximian.com>
22597
22598         * ListView.cs: Remove redraw variable. Control now handles whether
22599         or not a redraw needs to be done, and will only raise the paint
22600         event if redrawing is needed.
22601
22602 2005-05-03  Jackson Harper  <jackson@ximian.com>
22603
22604         * Splitter.cs: No decorations for the splitter form. Cache the
22605         hatch brush.
22606
22607 2005-05-03  Jackson Harper  <jackson@ximian.com>
22608
22609         * TreeView.cs: Use dashed lines to connect nodes. Use the
22610         ControlPaint method for drawing the focus rect instead of doing
22611         that in treeview.
22612
22613 2005-05-02  Peter Bartok  <pbartok@novell.com>
22614
22615         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
22616
22617 2005-04-29  Jackson Harper  <jackson@ximian.com>
22618
22619         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
22620         entire image buffer. Just clear the clipping rectangle.
22621
22622 2005-04-29  Jackson Harper  <jackson@ximian.com>
22623
22624         * ThemeWin32Classic.cs: Don't draw list view items that are
22625         outside the clipping rectangle.
22626
22627 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
22628
22629         * ListBox.cs: added horizontal item scroll
22630
22631 2005-04-29  Jackson Harper  <jackson@ximian.com>
22632
22633         * ThemeWin32Classic.cs: Remove some old debug code that was
22634         causing flicker with the new double buffering code.
22635
22636 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
22637
22638         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
22639         behave like combobox and comboboxlist (still not sure if this is
22640         correct though).
22641
22642 2005-04-28  Jackson Harper  <jackson@ximian.com>
22643
22644         * ThemeWin32Classic.cs: Don't fill the middle of progress
22645         bars. This fills areas outside of the clip bounds that don't need
22646         to be filled.
22647
22648 2005-04-28  Jackson Harper  <jackson@ximian.com>
22649
22650         * Control.cs: Don't expose functionality to touch the image buffers.
22651         * ProgressBar.cs:
22652         * ListView.cs: We do not need to (and no longer can) manipulate
22653         the image buffers directly. All of this is handled by Control.
22654
22655 2005-04-28  Peter Bartok  <pbartok@novell.com>
22656
22657         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
22658           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
22659           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
22660
22661 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
22662
22663         * Combobox:
22664                 - Adjust control's height for non-simple comboboxes (bug fix)
22665                 - Remove dead code
22666         * MenuAPI.cs: remove unused var
22667         * ScrollBar.cs: remove unsed var
22668                  
22669         * ListBox.cs: unselect items when clearing
22670
22671 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
22672
22673         * ListControl.cs: honors OnPositionChanged and default Selected Item
22674         * ListBox.cs: unselect items when clearing
22675
22676 2005-04-27  Jackson Harper  <jackson@ximian.com>
22677
22678         * X11Keyboard.cs: Initialize a default keyboard and give a warning
22679         if a "correct" keyboard is not found. This will make us not crash,
22680         but might give some users bad keyboard layouts...seems to be the
22681         same thing rewind does.
22682
22683 2005-04-27  Jackson Harper  <jackson@ximian.com>
22684
22685         * BindingManagerBase.cs: Attach the current/position changed
22686         handlers to their respective events.
22687
22688 2005-04-27  Jackson Harper  <jackson@ximian.com>
22689
22690         * Control.cs: Make sure that the first WM_PAINT does a full draw,
22691         not just a blit.
22692         * ThemeWin32Classic.cs: Don't fill the background for picture
22693         boxes. This could overright user drawing.
22694         * ComboBox.cs: Just fill the clipping rect not the entire client
22695         rect when drawing the background. This prevents pieces of the
22696         image buffer from getting overwritten and is theoretically faster.
22697
22698 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
22699
22700         * ComboBox.cs: Databinding support fixes, fire missing events
22701         * ListControl.cs: implement missing methods and properties, fixes
22702         * ThemeWin32Classic.cs: Databiding support on Drawing
22703         * CheckedListBox.cs: Databinding support fixes, fire missing events
22704         * ListBox.cs: Databinding support fixes, fire missing events
22705         
22706 2005-04-25  Peter Bartok  <pbartok@novell.com>
22707
22708         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
22709
22710 2005-04-25  Jackson Harper  <jackson@ximian.com>
22711
22712         * TreeView.cs: Use the horizontal scrollbars height not width when
22713         determining how much of the client area is available.
22714
22715 2005-04-25  Jackson Harper  <jackson@ximian.com>
22716
22717         * Control.cs: Double buffering is handled differently now. As per
22718         the spec, the extra buffer is created in the WM_PAINT message and
22719         passed down to the control's drawing code.
22720         * GroupBox.cs:
22721         * Label.cs:
22722         * CheckBox.cs:
22723         * ProgressBar.cs:
22724         * RadioButton.cs:
22725         * ColorDialog.cs:
22726         * ComboBox.cs:
22727         * PropertyGridView.cs:
22728         * UpDownBase.cs:
22729         * MessageBox.cs:
22730         * MenuAPI.cs:
22731         * ListView.cs:
22732         * ButtonBase.cs:
22733         * SizeGrip.cs:
22734         * ScrollBar.cs:
22735         * ListBox.cs:
22736         * TrackBar.cs:
22737         * ToolBar.cs:
22738         * PictureBox.cs:
22739         * DateTimePicker.cs:
22740         * StatusBar.cs:
22741         * TreeView.cs: Update to new double buffering system.
22742         * MonthCalendar.cs: Uncomment block, as Capture is now
22743         working. Update to new double buffering
22744         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
22745         * PaintEventArgs.cs: New internal method allows us to set the
22746         graphics object. This is used for double buffering.
22747         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
22748         rectangle. The internal paint_area var has been removed from
22749         StatusBar. The clipping rect should be used instead.
22750         * Theme.cs: Give the PictureBox drawing method a clipping rect.
22751         * TabPage.cs: The RefreshTabs method was removed, so just call the
22752         tab controls Refresh method now.
22753         * TabControl.cs: Update to new double buffering. Make sure the
22754         handle is created before sizing the tab pages, otherwise we will
22755         get stuck in a loop.
22756
22757 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
22758
22759         * LinkLabel.cs: Fix typo, bug #74719; patch
22760           from Borja Sanchez Zamorano
22761
22762 2005-04-22  Jackson Harper  <jackson@ximian.com>
22763
22764         * TreeNode.cs: Implement Handle stuff.
22765         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
22766
22767 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
22768
22769         * DataGridTextBoxColumn.cs: call base constructors, fixes
22770         * GridColumnStylesCollection.cs: missing events, methods, and functionality
22771         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
22772         * DataGridTableStyle.cs: implements create default column styles
22773         * DataGridBoolColumn.cs: which types can handle
22774         * DataGrid.cs: missing methods, fixes, new functionality
22775         * DataGridColumnStyle.cs: fixes
22776
22777 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
22778         * FolderBrowserDialog.cs:
22779         - Use a thread to fill the TreeView
22780         - Adjusted some sizes
22781
22782 2005-04-19  Peter Bartok  <pbartok@novell.com>
22783
22784         * LinkLabel.cs: (Re-)create the pieces when setting the Text
22785           property. Fixes #74360.
22786
22787 2005-04-19  Jackson Harper  <jackson@ximian.com>
22788
22789         * XEventQueue.cs: Lock when getting the lockqueue size.
22790         * PictureBox.cs: Call base OnPaint
22791         
22792 2005-04-19  Peter Bartok  <pbartok@novell.com>
22793
22794         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
22795           messages were no longer being processed (this broke BeginInvoke)
22796
22797           
22798 2005-04-18  Jackson Harper  <jackson@ximian.com>
22799
22800         * TreeView.cs: buglet that caused node images to get drawn
22801         regardless of whether or not they were in the clipping rectangle.
22802
22803 2005-04-18  Jackson Harper  <jackson@ximian.com>
22804
22805         * CurrencyManager.cs: There are four rules for GetItemProperties:
22806         - If the type is an array use the element type of the array
22807         - If the type is a typed list, use the type
22808         - If the list contains an Item property that is not an object, use
22809         that property
22810         - use the first element of the list if there are any elements in
22811         the list.
22812         
22813 2005-04-17  Jackson Harper  <jackson@ximian.oom>
22814
22815         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
22816         click. This handles offsets for scrolling properly and reduces
22817         memory. Also fixed GetNode to not offset now that TopNode works
22818         properly.
22819         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
22820         
22821 2005-04-17  Jackson Harper  <jackson@ximian.com>
22822
22823         * CursorConverter.cs: Initial implementation.
22824
22825 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
22826
22827         * ListControl.cs: work towards complex data binding support on ListControl
22828         * CurrencyManager.cs: work towards complex data binding support on ListControl
22829         * ListBox.cs: work towards complex data binding support on ListControl
22830
22831
22832 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
22833
22834         * GridTableStylesCollection.cs: fixes name and constructor
22835         * DataGridTableStyle.cs: fixes
22836         * DataGridBoolColumn.cs: fixes names and constructors
22837         * DataGrid.cs: define methods and properties. Some init implementations
22838         * DataGridCell.cs: define methods and properties. Some init implementations
22839         * GridTablesFactory.cs: Define methods and properties
22840
22841 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
22842
22843         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
22844         graphics port changes.  We still want the coordinates in global screen
22845         coordinates.
22846
22847 2005-04-14  Jackson Harper  <jackson@ximian.com>
22848
22849         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
22850         check plus minus or checkbox clicks unless those features are enabled.
22851
22852 2005-04-14  Jackson Harper  <jackson@ximian.com>
22853
22854         * TreeView.cs: Add methods for setting the top and bottom visible
22855         nodes. TreeNode::EnsureVisible uses these methods.
22856         * TreeNode.cs: Implement EnsureVisible
22857
22858 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
22859
22860         * Form.cs: Pospone menu assignation if the window has not been created yet
22861         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
22862         size and position
22863
22864 2005-04-12  Jackson Harper  <jackson@ximian.com>
22865
22866         * TreeView.cs: Set the TopNode properly when scrolling
22867         occurs. This has the added benifit of reducing the amount of
22868         walking that needs to be done when drawing. Also removed an old
22869         misleading TODO.
22870         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
22871         
22872 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
22873
22874         * Timer.cs: fixes interval setting when the timer is already enabled
22875         
22876 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
22877
22878         * FolderBrowserDialog.cs: First approach
22879
22880 2005-04-09  Peter Bartok  <pbartok@novell.com>
22881
22882         * FolderBrowserDialog: Added
22883
22884 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
22885
22886         * LinkLabel.cs: move drawing code into the theme
22887         * ThemeWin32Classic.cs: drawing code and painting background bugfix
22888         * Theme.cs: define DrawLinkLabel method
22889
22890 2005-04-05  Jackson Harper  <jackson@ximian.com>
22891
22892         * BindingContext.cs: Use weak references so these bad actors don't
22893         stay alive longer then they need to.
22894
22895 2005-04-05  Jackson Harper  <jackson@ximian.com>
22896
22897         * ListControl.cs: Basic implementation of complex databinding.
22898         * ComboBox.cs:
22899         * ListBox.cs: Add calls to ListControl databinding methods.
22900
22901 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
22902
22903         * FileDialog.cs:
22904           - Don't change PopupButtonState to Normal when the
22905             PopupButton gets pressed several times.
22906           - Renamed ButtonPanel to PopupButtonPanel
22907
22908 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
22909
22910         * ColorDialog.cs: Use cached objects instead of creating them
22911         * LinkLabel.cs: Use cached objects instead of creating them
22912         * Splitter.cs: Use cached objects instead of creating them
22913         * FontDialog.cs: Use cached objects instead of creating them
22914         * PropertyGridView.cs: Use cached objects instead of creating them
22915         * MessageBox.cs: Use cached objects instead of creating them
22916         * FileDialog.cs: Use cached objects instead of creating them
22917         * ThemeWin32Classic.cs: Use cached objects instead of creating them
22918         * TreeView.cs: Use cached objects instead of creating them
22919         
22920 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
22921
22922         * Control.cs: use Equals to compare the font since no == op
22923         * ScrollBar.cs: use Equals to compare the font since no == op
22924
22925 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
22926
22927         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
22928
22929 2005-04-01  Jackson Harper  <jackson@ximian.com>
22930
22931         * Binding.cs: Implement IsBinding.
22932         * BindingManagerBase.cs:
22933         * PropertyManager.cs:
22934         * CurrencyManager.cs: Add IsSuspended property.
22935
22936 2005-04-01  Jackson Harper  <jackson@ximian.com>
22937
22938         * Binding.cs: Had some IsAssignableFrom calls backwards.
22939
22940 2005-04-01  Jackson Harper  <jackson@ximian.com>
22941
22942         * Binding.cs: Handle null data members when pulling data.
22943         * PropertyManager.cs: Handle the data member being a property that
22944         does not exist.
22945
22946 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
22947
22948         * DataGridTextBoxColumn.cs: fixes signature
22949         * DataGrid.cs: calls right constructor
22950
22951 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
22952
22953         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
22954         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
22955         * GridTableStylesCollection.cs: implements GridTableStylesCollection
22956         * DataGridTableStyle.cs: implements DataGridTableStyle
22957         * DataGridBoolColumn.cs: implements DataGridBoolColumn
22958         * DataGridTextBox.cs: implements DataGridTextBox
22959         * DataGridColumnStyle.cs: implements DataGridColumnStyle
22960
22961 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
22962
22963         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
22964
22965 2005-03-29  Peter Bartok  <pbartok@novell.com>
22966
22967         * Application.cs:
22968           - Properly implemented CompanyName property
22969           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
22970             returns a path that includes CompanyName, ProductName and
22971             Version (fixes bug #70330)
22972
22973 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
22974
22975         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
22976           fixes bug #72588.
22977
22978 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
22979
22980         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
22981         
22982           - Added ReadOnly CheckBox
22983           - Further refactoring: moved some code from Open-/SaveFileDialog
22984             to FileDialog
22985
22986 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
22987
22988         * OpenFileDialog.cs: Fixed CheckFileExists
22989         * FileDialog.cs:
22990           Moved FileView and DirComboBox outside FileDialog class.
22991           They can now be used outside FileDialog
22992
22993 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
22994
22995         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
22996         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
22997
22998 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
22999
23000         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23001           - Added missing CreatePrompt property in SaveDialog
23002           - Overall SaveDialog handling should be better now
23003           - Added non standard ShowHiddenFiles property
23004           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
23005           - Added InitialDirectory and RestoreDirectory support
23006
23007 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
23008
23009         * FileDialog.cs: Made dirComboBox usable
23010
23011 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
23012
23013         * FileDialog.cs: Added Filter support (case sensitiv)
23014
23015 2005-03-24  Jackson Harper  <jackson@ximian.com>
23016
23017         * TabControl.cs: Need a couple more pixels for the lines.
23018
23019 2005-03-23  Jackson Harper  <jackson@ximian.com>
23020
23021         * TabControl.cs: Give the tab page focus when it is selected.
23022
23023 2005-03-23  Jackson Harper  <jackson@ximian.com>
23024
23025         * TabControl.cs: Account for the drawing of tabs borders when
23026         invalidating. If the slider was clicked dont do click detection on
23027         the tabs.
23028
23029 2005-03-23  Jackson Harper  <jackson@ximian.com>
23030
23031         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
23032
23033 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
23034
23035         * CategoryGridEntry.cs: Added
23036         * GridItem.cs: Added helper properties
23037         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
23038         * GridEntry.cs: Updated code for collection
23039         * PropertyGrid.cs: Cleaned up some formatting
23040         * PropertyGridView.cs: Added drop down functionality for enums.
23041         * GridItemCollection.cs: Added enumerator logic
23042         * PropertyGridEntry.cs: Added
23043
23044 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23045
23046         * FileDialog.cs:
23047           - Removed unnecessary commented code
23048           - Fixed handling for entering the filename manually in the combobox
23049
23050 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
23051
23052         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
23053
23054 2005-03-18  Peter Bartok  <pbartok@novell.com>
23055
23056         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
23057           them being touching the border
23058
23059 2005-03-18  Peter Bartok  <pbartok@novell.com>
23060
23061         * TextControl.cs: Quick hack to center text better
23062
23063 2005-03-18  Peter Bartok  <pbartok@novell.com>
23064
23065         * ControlPaint.cs:
23066           - Don't throw NotImplemented exceptions, just print a notice once
23067             instead (requested by Miguel). This makes running existing SWF
23068             apps a bit easier
23069         * Control.cs:
23070           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
23071           - Added context menu trigger on right click
23072         * Panel.cs: Trigger invalidate on resize
23073         * StatusBar.cs:
23074           - Removed old double-buffer drawing
23075           - Added ResizeRedraw style to force proper update of statusbar
23076         * ListView.cs:
23077           - Removed debug output
23078         * ThemeWin32Classic.cs:
23079           - Fixed drawing of status bar, now draws Text property if there
23080             are no defined panels
23081
23082 2005-03-18  Jackson Harper  <jackson@ximian.com>
23083
23084         * ImageList.cs: When the image stream is set pull all the images
23085         from it.
23086         * ImageListStreamer.cs: Implement reading image list streams.
23087
23088 2005-03-18  Peter Bartok  <pbartok@novell.com>
23089
23090         * ThemeWin32Classic.cs (DrawPictureBox):
23091           - Fixed calculations for centered drawing
23092           - Fixed drawing for normal mode, not scaling the image on normal
23093
23094 2005-03-18  Peter Bartok  <pbartok@novell.com>
23095
23096         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
23097           textbox
23098         * FileDialog.cs:
23099           - Made Open/Save button the accept button for FileDialog
23100           - Tied the cancel button to the IButtonControl cancel button
23101           - Save/Open now properly builds the pathname
23102           - Now handles user-entered text
23103           - Preventing crash on right-click if no item is selected
23104           - Fixed Text property, now uses contents of textbox
23105           - Fixed SelectedText property, now just returns the text part that
23106             is selected in the text box
23107
23108 2005-03-18  Jackson Harper  <jackson@ximian.com>
23109
23110         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
23111         rect, make sure to de-adjust the interior rect after drawing the
23112         tab text.
23113
23114 2005-03-18  Peter Bartok  <pbartok@novell.com>
23115
23116         * MenuAPI.cs: Remove menu *before* executing selected action to
23117           prevent the menu from 'hanging around'
23118           
23119 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
23120
23121         * XplatUIOSX.cs: Implemented WorkingArea property
23122
23123 2005-03-17  Peter Bartok  <pbartok@novell.com>
23124
23125         * XplatUIX11.cs: Fixed menu coord calculations
23126         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
23127           for calculating offsets
23128
23129 2005-03-17  Peter Bartok  <pbartok@novell.com>
23130
23131         * Hwnd.cs: Do not consider menu presence for default client
23132           rectangle location/size
23133         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
23134           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
23135           translation functions
23136         * FileDialog.cs: Fixed (what I presume is a) typo
23137
23138 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
23139
23140         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
23141           X access (avoids X-Async errors)
23142
23143 2005-03-16  Jackson Harper  <jackson@ximian.com>
23144
23145         * TabControl.cs: Raise the SelectedIndexChanged event.
23146
23147 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
23148
23149         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
23150           - Removed vertical ToolBar and replaced it with a custom panel
23151             (desktop and home button already work)
23152           - Added Help button (some controls get resized or relocated then)
23153           - Draw correct text depending on Open or Save.
23154           - Fixed some typos...
23155
23156 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
23157
23158         * ScrollBar.cs:
23159           - Only change Maximum and Minimum when need it (bug fix)
23160
23161 2005-03-15  Peter Bartok  <pbartok@novell.com>
23162
23163         * Form.cs: Use Handle for icon, to trigger creation if
23164           the window does not yet exist
23165         * Control.cs:
23166           - CanSelect: Slight performance improvement
23167           - Focus(): Preventing possible recursion
23168           - Invalidate(): Removed ControlStyle based clear flag setting
23169           - WM_PAINT: fixed logic for calling OnPaintBackground
23170           - WM_ERASEBKGND: Fixed logic, added call to new driver method
23171             EraseWindowBackground if the control doesn't paint background
23172         * XplatUIWin32.cs:
23173           - Moved EraseWindowBackground() method to internal methods
23174           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
23175             is sent via SendMessage on BeginPaint call on Win32
23176         * XplatUIX11.cs:
23177           - Added EraseWindowBackground() method
23178           - No longer sends WM_ERASEBKGND on .Expose, but on call to
23179             PaintEventStart, which more closely matches Win32 behaviour
23180           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
23181           - Fixed SetFocus() to properly deal with client and whole windows
23182         * Hwnd.cs: Added ErasePending property
23183         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
23184         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
23185
23186 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
23187
23188         * XplatUIOSX.cs:
23189           - Fix hard loop when timers exist.
23190           - Fix bugs with middle and right click for 3 button mice.
23191
23192 2005-03-11  Peter Bartok  <pbartok@novell.com>
23193
23194         * XplatUIX11.cs:
23195           - get_WorkingArea: Need to call X directly, GetWindowPos only
23196             returns cached data now
23197           - Added sanity check to GetWindowPos hwnd usage
23198
23199 2005-03-11  Jackson Harper  <jackson@ximian.com>
23200
23201         * BindingManagerBase.cs: This method isn't used anymore as
23202         PullData now updates the data in the control.
23203
23204 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
23205
23206         * Form.cs: fixes menu drawing on X11
23207         * MenuAPI.cs:  fixes menu drawing on X11
23208
23209 2005-03-11  Peter Bartok  <pbartok@novell.com>
23210
23211         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
23212           from Jonathan Gilbert; should fix bug #73606
23213         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
23214           in Screen coordinates. Thanks, Jordi.
23215         * Form.cs: Added missing attribute
23216
23217 2005-03-11  Peter Bartok  <pbartok@novell.com>
23218
23219         * Form.cs:
23220           - Rudimentary Mdi support
23221           - Removed outdated FormParent code
23222           - Implemented lots of missing properties and methods, still missing
23223             transparency support
23224           - Added missing attributes
23225           - Implemented support for MaximumBounds
23226           - Added firing of various events
23227         * XplatUI.cs: Added SetIcon() method
23228         * XplatUIDriver.cs: Added SetIcon() abstract
23229         * XplatUIOSX.cs: Stubbed out SetIcon() method
23230         * XplatUIX11.cs:
23231           - Implemented SetIcon() support
23232           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
23233           - Switched to unix line endings
23234         * XplatUIWin32.cs:
23235           - Made POINT internal so for can access it as part of MINMAX
23236           - Implemented SetIcon() support
23237           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
23238             native Mdi support again, might have to go managed)
23239         * Control.cs: Now fires the StyleChanged event
23240         * MdiClient.cs: Added; still mostly empty
23241
23242 2005-03-10  Peter Bartok  <pbartok@novell.com>
23243
23244         * SaveFileDialog.cs: Added emtpy file
23245
23246 2005-03-08  Peter Bartok  <pbartok@novell.com>
23247
23248         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
23249           in turn triggers OnCreateContro) when creating a handle for the
23250           first time.
23251         * TextControl.cs: Fixed endless loop in certain cases when
23252           replacing the current selection
23253
23254 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
23255
23256         * ScrollBar.cs:
23257           - Honors NewValue changes in Scroll events allowing apps to change it
23258           - Adds First and Last Scroll events
23259           - Fixes Thumb events
23260
23261 2005-03-07  Peter Bartok  <pbartok@novell.com>
23262
23263         * Hwnd.cs: Added DefaultClientRectangle property
23264         * XplatUI.cs: Now using the X11 driver Where() method, which provides
23265           more detailed debug information
23266         * XplatUIX11.cs:
23267           - Fixed size-change feedback loop, where we would pull an old size
23268             off the queue and mistakenly change our window's size to an
23269             earlier value
23270           - Now compressing ConfigureNotify events, to reduce looping and
23271             redraw issues
23272         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
23273           is called
23274
23275 2005-03-07  Jackson Harper  <jackson@ximian.com>
23276
23277         * Binding.cs: Push data pushes from data -> property. Check if the
23278         property is readonly when attempting to set it.
23279
23280 2005-03-07  Jackson Harper  <jackson@ximian.com>
23281
23282         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
23283         instead of IsSubclassOf. Pulling data now sets the value on the
23284         control.
23285         * PropertyManager.cs:
23286         * CurrencyManager.cs: Just need to pull data when updating now,
23287         because PullData will set the value on the control.
23288
23289 2005-03-04  Jackson Harper  <jackson@ximian.com>
23290
23291         * Binding.cs: Implement data type parsing and converting on pulled
23292         data. TODO: Are there more ways the data can be converted?
23293
23294 2005-03-04  Jackson Harper  <jackson@ximian.com>
23295
23296         * Binding.cs: Support <Property>IsNull checks. Also bind to the
23297         controls Validating method so we can repull the data when the
23298         control loses focus.
23299
23300 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
23301
23302         * ColumnHeader.cs:
23303           - Fixes null string format
23304           
23305         * ListView.cs:
23306           - Adds enum type checks
23307           - Fixes redrawing and recalc need after changing some properties
23308           - Fixes on focus_item set after the event
23309           - Fixes adding columns after the control has been created
23310           
23311         * ThemeWin32Classic.cs:
23312           - Fixes CheckBox focus rectangle
23313           - Fixes ColumnHeader drawing
23314
23315
23316 2005-03-03  Jackson Harper  <jackson@ximian.com>
23317
23318         * Binding.cs: Bind to <Property>Changed events so we can detect
23319         when properties are changed and update the data.
23320
23321 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
23322
23323         * ImageList.cs:
23324           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
23325           - Fixes ImageList constructor with ImageList container
23326           - Fixes image scaling (wrong parameters at DrawImage)
23327
23328 2005-02-02  Jackson Harper  <jackson@ximian.com>
23329
23330         * Binding.cs: Make property searches case-insensitive. Eliminate
23331         some duplicated code.
23332
23333 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
23334
23335         * ComboBox.cs:
23336                 - Handle focus event
23337                 - Fix scrollbar events
23338                 - Discard highlighted item if remove it
23339                 - Fixes SelectedItem with strings
23340
23341 2005-03-01  Peter Bartok  <pbartok@novell.com>
23342
23343         * Control.cs:
23344           - Fixed Visible property, now follows (once again) parent chain
23345             to return false if any control in the chain is visible=false
23346           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
23347           - Fixed several places where is_visible instead of Visible was used
23348           - Implemented FIXME related to focus selection when setting focused
23349             control to be invisible
23350
23351         * XplatUIWin32.cs: Now using proper method to find out if window is
23352           visible. Thanks to Jordi for pointing it out
23353
23354 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
23355
23356         * ComboBox.cs: show/hide scrollbar instead of creating it
23357
23358 2005-02-27  Jackson Harper  <jackson@ximian.com>
23359
23360         * CurrencyManager.cs: Add PositionChanged stuff.
23361
23362 2005-02-27  Peter Bartok  <pbartok@novell.com>
23363
23364         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
23365         * XplatUIOSX.cs: Added GetMenuOrigin() stub
23366         * XplatUIWin32.cs: Implemented GetMenuOrigin()
23367         * XplatUIX11.cs:
23368           - Implemented GetMenuDC()
23369           - Implemented GetMenuOrigin()
23370           - Implemented ReleaseMenuDC()
23371           - Implemented generation of WM_NCPAINT message
23372           - Implemented generation and handling of WM_NCCALCSIZE message
23373         * Form.cs: Added debug helper message for Jordi's menu work
23374         * Hwnd.cs:
23375           - Modified ClientRect property; added setter, fixed getter to handle
23376             setting of ClientRect
23377           - Added MenuOrigin property
23378
23379 2005-02-26  Peter Bartok  <pbartok@novell.com>
23380
23381         * XplatUIX11.cs:
23382           - Destroys the caret if a window that's being destroyed contains it
23383           - Ignores expose events coming from the X11 queue for windows that
23384             already are destroyed
23385           - Now uses the proper variable for handling DestroyNotify, before we
23386             marked the wrong window as destroyed
23387           - Improved/added some debug output
23388
23389 2005-02-26  Peter Bartok  <pbartok@novell.com>
23390
23391         * X11Keyboard.cs: Fixes to work on 64bit systems
23392
23393 2005-02-26  Peter Bartok  <pbartok@novell.com>
23394
23395         * Control.cs:
23396           - Now calling OnHandleDestroyed from DestroyHandle()
23397             instead of Dispose()
23398           - Removed bogus call to controls.Remove() from DestroyHandle()
23399
23400 2005-02-26  Peter Bartok  <pbartok@novell.com>
23401
23402         * Control.cs: Properly destroy child windows when our handle is
23403           destroyed
23404
23405 2005-02-25  Peter Bartok  <pbartok@novell.com>
23406
23407         * XplatUI.cs:
23408           - Added 'DriverDebug' define to allow tracing XplatUI API calls
23409           - Alphabetized Static Methods and Subclasses
23410
23411         * XplatUIX11.cs:
23412           - Added XException class to allow custom handling of X11 exceptions
23413           - Created custom X11 error handler, tied into XException class
23414           - Added support for MONO_XEXCEPTIONS env var to allow the user
23415             to either throw an exception on X errors or continue running
23416             after displaying the error
23417           - Added handling of DestroyNotify message
23418           - Added handler for CreateNotify message (still disabled)
23419           - Improved (tried to at least) Where method to provide file and lineno
23420         * X11Structs.cs:
23421           - Added XErrorHandler delegate
23422           - Added XRequest enumeration (to suppor translation of errors)
23423
23424 2005-02-25  Jackson Harper  <jackson@ximian.com>
23425
23426         * PropertyManager.cs: Implement editing features
23427         * CurrencyManager.cs:
23428         * Binding.cs: First attempt at UpdateIsBinding
23429         * BindingManagerBase.cs: Call UpdateIsBinding before
23430         pushing/pulling data.
23431
23432 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
23433
23434         * MenuAPI.cs: Respect disabled items
23435         * ThemeWin32Classic.cs
23436                 - Caches ImageAttributes creation for DrawImageDisabled
23437                 - Fixes vertical menu line drawing
23438                 - Draws disabled arrows in disable menu items
23439
23440 2005-02-24  Peter Bartok  <pbartok@novell.com>
23441
23442         * Hwnd.cs:
23443           - Added UserData property to allow associating arbitrary objects
23444             with the handle
23445           - Fixed leak; now removing Hwnd references from static windows array
23446         * XplatUIWin32.cs:
23447           - Fixed Graphics leak in PaintEventEnd
23448           - Removed usage of HandleData, switched over to Hwnd class
23449         * HandleData.cs: Removed, obsoleted by Hwnd.cs
23450
23451 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23452
23453         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
23454         * ScrollBar.cs: Fixes bug
23455         * TrackBar.cs: removes death code, clipping, mimize refreshes,
23456          keyboard navigation enhancements
23457
23458 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
23459
23460         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
23461         * GroupBox.cs: Add control styles
23462         * Label.cs: Add control styles
23463         * UpDownBase.cs: Add control styles
23464         * ListBox.cs: Add control styles
23465         * XplatUIWin32.cs: Fixes wrong parameter order
23466
23467
23468 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
23469
23470         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
23471
23472 2005-02-23  Jackson Harper  <jackson@ximian.com>
23473
23474         * PropertyManager.cs: Implement property binding. This doesn't
23475         seem to work yet though as (I think) there are some bugs in
23476         System.ComponentModel.PropertyDescriptor.
23477         * BindingContext.cs: Use new PropertyManager constructor.
23478
23479 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
23480
23481         * ProgressBar.cs: use clip region in ProgressBar
23482         * ThemeWin32Classic.cs: use clip region in ProgressBar
23483
23484 2004-02-22  Jackson Harper  <jackson@ximian.com>
23485
23486         * BindingsCollection.cs: Remove some debug code.
23487
23488 2005-02-22  Jackson Harper  <jackson@ximian.com>
23489
23490         * BindingContext.cs:
23491         * ControlBindingsCollection.cs:
23492         * CurrencyManager.cs:
23493         * Binding.cs:
23494         * BindingManagerBase.cs: Initial implementation
23495         * BindingsCollection.cs: Add an internal contains method that the
23496         BindingManagerBase uses to ensure bindings aren't added twice to
23497         the collection.
23498         * PropertyManager.cs: Stubbed out.
23499         * Control.cs:
23500         * ContainerControl.cs: Hook up databinding
23501         
23502 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
23503
23504         * XplatUIOSX.cs:
23505           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
23506           Fixed Invalidate/Update chain.
23507           Fixed tons of other minor bugs (this is almost a complete rewrite).
23508
23509 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
23510
23511         * ComboBox.cs: do subcontrol creation when the control is created
23512
23513 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23514
23515         * Label.cs: fixes image drawing (image and imagelist)
23516         * ThemeWin32Classic.cs: cache brushes
23517         
23518 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23519
23520         * Form.cs: Move menu drawing code to Theme class
23521         * ComboBox.cs: Move ComboBox drawing code to Theme class
23522         * MenuItem.cs: Move menu drawing code to Theme class
23523         * MenuAPI.cs: Move menu drawing code to Theme class
23524         * ThemeWin32Classic.cs: New methods
23525         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
23526         * ListBox.cs: Move Listbox drawing code to Theme class
23527         * Theme.cs: New methods
23528
23529 2005-02-20  Peter Bartok  <pbartok@novell.com>
23530
23531         * Control.cs:
23532           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
23533             only process mnemonics on those)
23534           - Fixed event sequence for key handling; first calling
23535             ProcessKeyEventArgs now
23536         * TextBoxBase.cs:
23537           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
23538             for processing non-character keys
23539           - Fixed WM_CHAR to generate proper event sequence before processing
23540         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
23541           generation
23542
23543 2005-02-19  Peter Bartok  <pbartok@novell.com>
23544
23545         * UserControl.cs: Added TextChanged event; added attributes
23546         * SizeGrip.cs: Implemented resizing and optional display of grip
23547         * Form.cs: Fixed attribute
23548         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
23549           Changed meaning of ScrollWindow bool argument; instead of the
23550           clear attribute (which will be true usually anyway), it gives the
23551           option of moving child controls as well.
23552         * XplatUIX11.cs:
23553           - Changed to match new ScrollWindow argument
23554           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
23555             now handles the implicit parent window a WM puts around us
23556         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
23557           to work)
23558         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
23559         * TreeView.cs: Adjusted to new ScrollWindow arguments
23560
23561 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
23562
23563         * Form.cs: Menu integration with non-client area
23564         * MenuItem.cs: Menu integration with non-client area
23565         * MenuAPI.cs: Menu integration with non-client area
23566
23567 2005-02-18  Peter Bartok  <pbartok@novell.com>
23568
23569         * MethodInvoker.cs: Added
23570         * MdiLayout.cs: Added
23571         * SendKeys.cs: Started implementation
23572         * ErrorIconAlignment.cs: Added
23573
23574 2005-02-18  Peter Bartok  <pbartok@novell.com>
23575
23576         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
23577         * Form.cs: Added handling for Menu-related Non-client messages
23578
23579 2005-02-17  Peter Bartok  <pbartok@novell.com>
23580
23581         * UpDownBase.cs: Fixed typo, compilation errors
23582         * DomainUpDown.cs: Fixed attribute value
23583
23584 2005-02-16  Miguel de Icaza  <miguel@novell.com>
23585
23586         * UpDownBase.cs: Attach entry events.
23587         Propagate events.
23588         Add ForeColor property, Focused, InterceptArrowKeys (interception
23589         does not work yet).
23590
23591 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
23592
23593         * Form.cs:
23594                 - Redraw non client are on Setmenu
23595                 - Calc proper menu starting point
23596
23597 2005-02-17  Peter Bartok  <pbartok@novell.com>
23598
23599         * Application.cs: Fixed message_filter check
23600
23601 2005-02-17  Peter Bartok  <pbartok@novell.com>
23602
23603         * Application.cs: Now calls registered message filters
23604         * DockStyle.cs: Fixed attribute
23605         * Form.cs: Fixed attribute
23606         * Menu.cs: Fixed attribute
23607         * ToolTip.cs: Fixed attribute
23608         * TreeNode.cs: Added missing attributes and arranged in regions
23609         * PropertyGrid.cs: Fixed signatures
23610         * TreeNodeCollection.cs: Added attributes
23611         * Splitter.cs: Added missing attributes; arranged into regions
23612         * TabPage.cs: Added missing attributes; arranged into regions
23613         * TextBoxBase.cs: Added missing attributes
23614         * TextBox.cs: Added missing attributes
23615         * ArrangeDirection.cs: Added missing attributes
23616         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
23617         * ToolBarButton.cs: Fixed attributes
23618         * AnchorStyles.cs: Fixed attribute
23619         * TrackBar.cs: Fixed attributes
23620         * TabControl.cs: Added missing attributes and arranged into regions
23621         * ToolBar.cs: Fixed attribute
23622         * StatusBar.cs: Fixed signature, organized into regions and added
23623           attributes
23624         * StatusBarPanel.cs: Fixed attributes
23625         * ContentsResizedEventArgs.cs: Implemented
23626         * ContentsResizedEventHandler.cs: Implemented
23627         * DateBoldEventArgs.cs: Implemented
23628         * DateBoldEventHandler.cs: Implemented
23629         * UpDownEventArgs.cs: Implemented
23630         * UpDownEventHandler.cs: Implemented
23631         
23632 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
23633
23634         * Form.cs: first Menu NC refactoring
23635         * MenuAPI.cs: first Menu NC refactoring
23636         
23637 2005-02-16  Peter Bartok  <pbartok@novell.com>
23638
23639         * ImeMode.cs: Added missing attributes
23640         * Menu.cs: Fixed attribute
23641         * GroupBox.cs: Fixed attribute
23642         * Label.cs: Fixed attribute
23643         * ColorDialog.cs (RunDialog): Removed TODO attribute
23644         * ComboBox.cs: Fixed attributes
23645         * ListControl.cs: Added missing attributes
23646         * PropertyGrid.cs: Fixed attributes
23647         * Control.cs: Fixed attributes
23648         * ListViewItem.cs: Added TypeConverter attribute
23649         * NotifyIcon.cs: Fixed attributes
23650         * ListView.cs: Fixed attributes
23651         * ButtonBase.cs: Fixed attribute
23652         * ImageList.cs: Added missing attributes
23653         * ContainerControl.cs: Fixed signature
23654         * CheckedListBox.cs: Fixed attribute; added missing attributes
23655         * Panel.cs: Fixed attributes
23656         * PropertyTabChangedEventArgs.cs: Added missing attribute
23657         * PropertyValueChangedEventArgs.cs: Added missing attribute
23658         * Binding.cs: Fixed attribute
23659         * ListViewItemConverter: Implemented ListViewSubItemConverter class
23660         * ListBox.cs: Fixed attribute; added missing attributes;
23661         * ScrollableControl.cs: Added missing attributes
23662         * PictureBox.cs: Added missing attributes; implemented missing property
23663         * DateTimePicker.cs: Added missing attributes
23664         * Theme.cs (ToolWindowCaptionHeight): Fixed type
23665         * MonthCalendar.cs: Fixed attributes
23666         * StatusBarPanel.cs: Added missing attributes
23667         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
23668
23669 2005-02-16  Peter Bartok  <pbartok@novell.com>
23670
23671         * TextBoxBase.cs: The previous method to enforce height yet remember
23672           the requested high was less than ideal, this is an attempt to do
23673           it better.
23674         * Control.cs: Added comment about possible problem
23675         * Copyright: Updated format
23676         * GridItemType.cs: Fixed swapped values
23677
23678 2005-02-15  Jackson Harper  <jackson@ximian.com>
23679
23680         * BaseCollection.cs: Use property so we never access an
23681         uninitialized list. Also initialize the list in the property.
23682
23683 2005-02-15  Peter Bartok  <pbartok@novell.com>
23684
23685         * GroupBox.cs (ProcessMnemonic): Implemented
23686         * Label.cs (ProcessMnemonic): Implemented
23687         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
23688           hotkeys
23689
23690 2005-02-15  Peter Bartok  <pbartok@novell.com>
23691
23692         * RadioButton.cs (ProcessMnemonic): Implemented
23693         * CheckBox.cs (ProcessMnemonic): Implemented
23694         * Control.cs:
23695           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
23696             handling
23697           - Added internal method to allow calling ProcessMnemonic from other
23698             controls
23699         * ContainerControl.cs:
23700           - Started support for handling validation chain handling
23701           - Implemented ProcessMnemonic support
23702           - Added Select() call to Active, to make sure the active control
23703             receives focus
23704         * Form.cs: Setting toplevel flag for Forms (this was lost in the
23705           FormParent rewrite)
23706         * ThemeWin32Classic.cs:
23707           - DrawCheckBox(): Fixed stringformat to show hotkeys
23708           - DrawRadioButton(): Fixed stringformat to show hotkeys
23709         * CommonDialog.cs: Removed WndProc override, not needed
23710
23711 2005-02-14  Peter Bartok  <pbartok@novell.com>
23712
23713         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
23714           missed those in the rewrite
23715
23716 2005-02-14  Miguel de Icaza  <miguel@novell.com>
23717
23718         * NumericUpDown.cs (Increment, ToString): Add.
23719         (DecimalPlaces): implement.
23720         
23721         Add attributes.
23722         
23723         * UpDownBase.cs: Add the designer attributes.
23724
23725 2005-02-13  Peter Bartok  <pbartok@novell.com>
23726
23727         * Panel.cs: Removed border_style, now in Control
23728         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
23729           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
23730
23731 2005-02-13  Peter Bartok  <pbartok@novell.com>
23732
23733         * MouseButtons.cs: Added missing attributes
23734         * XplatUIStructs.cs: Added enumeration for title styles
23735         * LeftRightAlignment.cs: Added missing attributes
23736         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
23737           it compatible with Graphics.FromHwnd()
23738         * SelectedGridItemChangedEventArgs.cs: Fixed property type
23739         * Keys.cs: Added missing attributes
23740         * SelectionRange.cs: Added missing attributes
23741         * SelectionRangeConverter.cs: Added
23742         * XplatUI.cs:
23743           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
23744             ReleaseMenuDC methods
23745           - Renamed ReleaseWindow to UngrabWindow
23746           - Added proper startup notice to allow version identification
23747         * Form.cs:
23748           - Added missing attributes
23749           - Removed FormParent concept
23750         * Label.cs: Removed border_style field, now in Control
23751         * RadioButton.cs: Now properly selects RadioButton when focus is
23752           received
23753         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
23754         * Control.cs:
23755           - Added missing attributes
23756           - Added borderstyle handling
23757           - Removed FormParent concept support
23758           - Fixed calls to XplatUI to match changed APIs
23759           - Fixed bug that would case us to use disposed Graphics objects
23760           - Removed unneeded internal methods
23761           - PerformLayout(): Fixed to handle DockStyle.Fill properly
23762           - SelectNextControl(): Fixed to properly check common parents
23763         * TextBoxBase.cs: Removed border_style field (now in Control)
23764         * MessageBox.cs:
23765           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
23766             fixed calculations for form size
23767           - Added support for localized strings and icons
23768           - Improved form size calculations, added border
23769         * ListView.cs: Removed border_style field (now in Control)
23770         * X11Structs.cs: Moved several structs from X11 driver here
23771         * X11Keyboard.cs: Changed debug message
23772         * Application.cs: Removed FormParent concept support
23773         * CommonDialog.cs:
23774           - Resetting end_modal flag
23775           - Removed FormParent concept support
23776         * NativeWindow.cs: Removed FormParent concept support
23777         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
23778           Client area and Non-Client whole window to allow support for WM_NC
23779           messages
23780         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
23781           prevent using it until it supports Hwnd as per Geoff Norton's request
23782         * ToolBar.cs: Fixed drawing, was not doing proper drawing
23783         * PictureBox.cs: Removed border_style field, now in Control
23784         * XplatUIWin32.cs: Added new driver methods
23785
23786 2005-02-12  Peter Bartok  <pbartok@novell.com>
23787
23788         * OpacityConverter.cs: Implemented
23789         * Hwnd.cs: Internal class to support drivers that need to emulate
23790           client area/non-client area window behaviour
23791
23792 2005-02-11  Peter Bartok  <pbartok@novell.com>
23793
23794         * KeysConverter.cs: Implemented
23795
23796 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
23797
23798         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
23799         * LinkLabel: Added missing attributes
23800         * MainMenu.cs: fixes ToString
23801         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
23802         * ListBox.cs: fixes event position
23803         * TrackBar.cs: adds missing attributes and events
23804         
23805 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
23806
23807         * MenuItem.cs: Use SystemInformation and bug fixes
23808         * MenuAPI.cs: Use SystemInformation and bug fixes
23809
23810 2005-02-09  Jackson Harper  <jackson@ximian.com>
23811
23812         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
23813         their keystate otherwise things like VK_MENU get stuck "on".
23814
23815 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
23816
23817         * ListBox.cs: Fixes AddRange bug
23818         
23819 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
23820
23821         * ProgressBar.cs
23822                 - Add missing attributes
23823                 - Add missing method
23824                 
23825         * CheckedListBox.cs: Added missing attributes
23826                 - Add missing attributes
23827                 - Remove extra method
23828         
23829         * ComboBox.cs: Added missing attributes
23830         * VScrollBar.cs: Added missing attributes
23831         * ScrollBar.cs:  Added missing attributes
23832         * ListBox.cs: Fixes signature, add missing consts
23833         * LinkArea.cs:   Added missing attributes
23834         
23835
23836 2005-02-08  Peter Bartok  <pbartok@novell.com>
23837
23838         * Menu.cs: Added missing attributes
23839         * MainMenu.cs: Added missing attributes
23840         * GroupBox.cs: Added missing attributes
23841         * Label.cs: Added missing attributes
23842         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
23843         * ColorDialog.cs:
23844           - Added Instance and Options properties
23845           - Added missing attributes
23846         * Cursor.cs: Made Serializable
23847         * NotifyIcon: Added missing attributes
23848         * MenuItem.cs: Added missing attributes
23849         * TextBoxBase.cs: Implemented AppendText() and Select() methods
23850         * Panel.cs: Added Missing attributes
23851         * MonthCalendar.cs: Fixed CreateParams
23852
23853 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
23854         
23855         * LinkLabel.cs:
23856                 - Fixes signature
23857                 - Fixes issues with links
23858                 - Adds the class attributes
23859
23860 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
23861         
23862         * ComboBox.cs:
23863                 - Fixes button when no items available in dropdown
23864                 - Fixes repainting problems
23865                 - Adds the class attributes
23866                 
23867 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
23868
23869         * XplatUIOSX.cs: Detect the menu bar and title bar height from
23870         the current theme.  Cache these on startup.
23871
23872 2005-02-07  Jackson Harper  <jackson@ximian.com>
23873
23874         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
23875         the scrollbar buttons when they are depressed.
23876
23877 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
23878
23879         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
23880         Get the display size from the main displayid.  We currently dont
23881         support multiple display configurations.
23882
23883 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
23884
23885         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
23886
23887 2005-02-07  Miguel de Icaza  <miguel@novell.com>
23888
23889         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
23890
23891 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
23892
23893         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
23894
23895 2005-02-04  Jackson Harper  <jackson@ximian.com>
23896
23897         * ThemeWin32Classic.cs: Respect the clipping rect when
23898         drawing. Only fill the intersection of clips and rects so there
23899         isn't a lot of large fills.
23900         * ScrollBar.cs: Pass the correct clipping rect to the theme
23901         engine. Remove some debug code.
23902
23903 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
23904         
23905         * DateTimePicker.cs:
23906                 - Fixed crash on DateTime.Parse, use Constructor instead
23907
23908 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
23909         
23910         * MenuItem.cs:
23911         * MenuAPI.cs:
23912                 - Owner draw support (MeasureItem and DrawItem)
23913
23914 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
23915         
23916         *  Menu.cs:
23917                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
23918                 - Fixes MenuItems.Add range
23919         * MenuItem.cs:
23920                 - MergeMenu and Clone and CloneMenu functions
23921
23922 2005-02-03  Jackson Harper  <jackson@ximian.com>
23923
23924         * ScrollBar.cs: Make abstract
23925         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
23926         is abstract.
23927
23928 2005-02-03  Jackson Harper  <jackson@ximian.com>
23929
23930         * ScrollBar.cs: First part of my scrollbar fixups. This removes
23931         all the unneeded refreshes and uses invalidates with properly
23932         computed rects.
23933
23934 2005-02-03  Peter Bartok  <pbartok@novell.com>
23935
23936         * ComponentModel.cs: Added
23937         * IDataGridEditingService.cs: Added
23938         * Timer.cs: Added missing attributes
23939         * ToolTip.cs: Added missing attributes
23940
23941 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
23942
23943         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
23944
23945 2005-02-03  Peter Bartok  <pbartok@novell.com>
23946
23947         * ListBox.cs: Added missing attributes
23948
23949 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
23950         
23951         * ListBox.cs:
23952                 - Fixes font height after font change
23953                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
23954                 
23955 2005-02-02  Peter Bartok  <pbartok@novell.com>
23956
23957         * HandleData.cs: Introduced static methods to allow class
23958           to be more self-contained and track it's own HandleData objects
23959         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
23960           HandleData to use new static methods
23961
23962 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
23963
23964         * Combobox.cs:
23965                 - Fixes default size and PreferredHeight
23966                 - Missing events
23967                 - ObjectCollection.Insert implementation
23968                 
23969         * ListControl.cs
23970                 - Fixes signature
23971         * ListBox.cs:
23972                 - Several fixes
23973                 - ObjectCollection.Insert implementation
23974                 - No selection after clean
23975                 - Small fixes
23976
23977 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
23978
23979         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
23980
23981 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
23982
23983         * Combobox.cs:
23984                 - Caches ItemHeight calculation for OwnerDrawVariable
23985                 - Handles dropdown properly
23986                 - Fixes several minor bugs
23987
23988 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
23989
23990         * ListBox.cs:
23991                 - Fixes 71946 and 71950
23992                 - Fixes changing Multicolumn on the fly
23993                 - Fixes keyboard navigation on Multicolumn listboxes
23994
23995 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
23996         
23997         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
23998         crash reporter log.
23999
24000 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24001
24002         * XplatUIOSX.cs: Allow applications to actually exit.
24003
24004 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
24005
24006         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
24007         their parent at creation time rather than lazily later.  Fixes a major
24008         regression we were experiencing.
24009
24010 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
24011
24012         * ThemeWin32Classic.cs: more date time picker painting fixes
24013         * DateTimePicker.cs: more monthcalendar drop down fixes
24014         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
24015
24016 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
24017
24018         * ScrollBar.cs:
24019                 - When moving the thumb going outside the control should stop the moving
24020                 - Adds the firing of missing events
24021                 - Fixes no button show if Size is not specified
24022                 - End / Home keys for keyboard navigation
24023
24024 2005-01-30  Peter Bartok  <pbartok@novell.com>
24025
24026         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
24027           sanity check to prevent theoretical loop
24028         * XplatUIWin32.cs (SetVisible): Removed debug output
24029         * XplatUIX11.cs (SystrayChange): Added sanity check
24030         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
24031         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
24032           behaviour, valid until the X11 client window rewrite is done
24033         * TextBox.cs (ctor): Setting proper default foreground and background
24034           colors
24035
24036 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
24037
24038         * Theme: Added DrawDateTimePicker to interface
24039         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
24040         * DateTimePicker.cs: Created (still needs keys and painting code)
24041         * DateTimePickerFormat.cs: added
24042         * MonthCalendar.cs: fixed CreateParams for popup window mode
24043           
24044 2005-01-29  Peter Bartok  <pbartok@novell.com>
24045
24046         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
24047           this should also the calculations for ligher/darker
24048         * Theme.cs: Fixed defaults for ScrollBar widths/heights
24049
24050 2005-01-29  Peter Bartok  <pbartok@novell.com>
24051
24052         * ArrangeDirection.cs: Added
24053         * ArrangeStartingPositon.cs: Added
24054         * SystemInformation.cs: Implemented
24055         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24056           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
24057           used by SystemInformation class
24058         * X11Strucs.cs: Added XSizeHints structure
24059         * MenuAPI.cs:
24060           - Fixed CreateParams to make sure the menu window is always visible
24061           - TrackPopupMenu: Added check to make sure we don't draw the
24062             menu offscreen
24063
24064 2005-01-29  Peter Bartok  <pbartok@novell.com>
24065
24066         * HandleData.cs: Added method for altering invalid area
24067         * TextBoxBase.cs: Implemented TextLength
24068
24069 2005-01-28  Peter Bartok  <pbartok@novell.com>
24070
24071         * XplatUIX11.cs: Improvement over last patch, not sending
24072           the WM_PAINT directly anymore, instead we scroll any pending
24073           exposed areas and let the system pick out the WM_PAINT later
24074
24075 2005-01-28  Peter Bartok  <pbartok@novell.com>
24076
24077         * SWF.csproj: Deleted, no longer used. Instead,
24078           Managed.Windows.Forms/SWF.csproj should be used
24079         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
24080           directly, to avoid a potential race condition with the next
24081           scroll
24082
24083 2005-01-28  Peter Bartok  <pbartok@novell.com>
24084
24085         * XplatUI.cs: Made class internal
24086
24087 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
24088
24089         * CheckedListBox.cs:
24090                 - Draw focus
24091                 - Fixed Drawing
24092                 - Missing methods and events
24093
24094 2005-01-27  Peter Bartok  <pbartok@novell.com>
24095
24096         * Application.cs (Run): Don't use form if we don't have one
24097
24098 2005-01-27  Peter Bartok  <pbartok@novell.com>
24099
24100         * TextBoxBase.cs (get_Lines): Fixed index off by one error
24101
24102 2005-01-27  Peter Bartok  <pbartok@novell.com>
24103
24104         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
24105         * GridItem.cs: Added; Patch by Jonathan S. Chambers
24106         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
24107         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
24108         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
24109         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
24110         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24111         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24112         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24113         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24114         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
24115         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
24116
24117 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24118
24119         * Combobox.cs:
24120                 - Draw focus on Simple Combobox
24121                 - Fixes drawing issues
24122                 - fixes 71834
24123
24124 2005-01-27  Peter Bartok  <pbartok@novell.com>
24125
24126         * Form.cs:
24127           - Place window in default location, instead of hardcoded 0/0
24128           - Send initial LocationChanged event
24129         * Control.cs:
24130           - UpdateBounds after creation to find out where the WM placed us
24131           - Make sure that if the ParentForm changes location the Form
24132             is notified
24133         * XplatUIX11.cs: XGetGeometry will not return the coords relative
24134             to the root, but to whatever the WM placed around us.
24135             Translate to root coordinates before returning toplevel
24136             coordinates
24137         * XplatUIWin32.cs: Removed debug output
24138         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
24139           flag to GetWindowPos, to allow translation of coordinates on X11
24140
24141 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
24142
24143         * ListBox.cs: connect LostFocus Event
24144
24145 2005-01-27  Peter Bartok  <pbartok@novell.com>
24146
24147         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
24148           XplatUIX11.cs: Extended the Systray API
24149         * Form.cs: Removed debug output
24150         * Application.cs: Fixed focus assignment, always need to call
24151           XplatUI.Activate() since Form.Activate() has rules that may
24152           prevent activation
24153         * NotifyIcon.cs: Should be complete now
24154         * ToolTip.cs: Worked around possible timer bug
24155
24156 2005-01-27  Jackson Harper  <jackson@ximian.com>
24157
24158         * TabControl.cs:
24159         - Only invalidate the effected tabs when the
24160         selected index changes. This reduces drawing and gets rid of some
24161         flicker.
24162         - Only refresh if the tabs need to be shifted, otherwise only
24163         invalidate the slider button.
24164         - On windows the tabs are not filled to right if the slider is
24165         visible.
24166         
24167 2005-01-27  Jackson Harper  <jackson@ximian.com>
24168
24169         * TabControl.cs: Only refresh on mouseup if we are showing the
24170         slider. Also only invalidate the button whose state has changed.
24171
24172 2005-01-26  Peter Bartok  <pbartok@novell.com>
24173
24174         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
24175         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
24176           and SystrayRemove() methods
24177         * XplatUIOSX.cs: Stubbed Systray methods
24178         * XplatUIX11.cs:
24179           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
24180             methods
24181           - Fixed broken XChangeProperty calls (marshalling messed up things)
24182         * X11Structs.cs: Added enums and structs required for Size hinting
24183         * NotifyIcon.cs: Added & implemented
24184
24185 2005-01-26  Jackson Harper  <jackson@ximian.com>
24186
24187         * TabControl.cs: Space vertically layed out tabs properly.
24188
24189 2005-01-26  Peter Bartok  <pbartok@novell.com>
24190
24191         * Form.cs (CreateClientParams): Always set the location to 0,0
24192           since we're a child window.
24193
24194         * Control.cs (SetVisibleCore): Always explicitly setting the location
24195           of a toplevel window, apparently X11 doesn't like to move windows
24196           while they're not mapped.
24197
24198 2005-01-26  Jackson Harper  <jackson@ximian.com>
24199
24200         * TabControl.cs: Implement FillToRight size mode with vertically
24201         rendered tabs.
24202
24203 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24204
24205         * ControlPaint.cs, ThemeWin32Classic.cs
24206                 - Fixes DrawFocusRectangle
24207
24208 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
24209
24210         * MenuAPI.cs:
24211                 - MenuBar tracking only starts when item is first clicked
24212                 - Fixes menu hidding for multiple subitems
24213                 - Unselect item in MenuBar when item Executed
24214                 - Fixes bug 71495
24215
24216 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
24217
24218         * ListControl.cs:
24219                 - IsInputKey for ListBox
24220         * ListBox.cs:
24221                 - Focus item
24222                 - Shift and Control item selection
24223                 - Implement SelectionMode.MultiExtended
24224                 - Fixes RightToLeft
24225         * ComboBox.cs:
24226                 - IsInputKey implemented
24227                 - Do not generate OnTextChangedEdit on internal txt changes
24228                 
24229 2005-01-23  Peter Bartok  <pbartok@novell.com>
24230
24231         * AccessibleObject.cs: Partially implemented Select()
24232         * MonthCalendar.cs: Added missing attributes and events
24233         * Form.cs: Fixed CreateParams behaviour, now controls derived from
24234           form can properly override CreateParams.
24235         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
24236           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
24237           Control performs Invalidate & Update
24238         * NativeWindow (CreateHandle): Added special handling for Form
24239           and Form.FormParent classes to allow overriding of From.CreateParams
24240         * Control.cs:
24241           - ControlNativeWindow: Renamed 'control' variable to more intuitive
24242             name 'owner'
24243           - ControlNativeWindow: Added Owner property
24244           - Removed usage of Refresh() on property changes, changed into
24245             Invalidate(), we need to wait until the queue is processed for
24246             updates, direct calls might cause problems if not all vars for
24247             Paint are initialized
24248           - Added call to UpdateStyles() when creating the window, to set any
24249             styles that CreateWindow might have ignored.
24250           - Added support for Form CreateParent overrides to UpdateStyles()
24251         * MessageBox.cs: Removed no longer needed FormParent override stuff,
24252           CreateParams are now properly overridable
24253         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
24254           CreateParams are now properly overridable
24255
24256 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
24257
24258         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
24259         OnTextBoxChanged.
24260
24261         Capture LostFocus and OnTextBoxChanged.  The later introduces a
24262         recursive invocation that I have not figured out yet.
24263
24264         Reset the timer when not using (it was accumulating).
24265
24266
24267         (OnTextBoxChanged): Set UserEdit to true here to track whether the
24268         user has made changes that require validation.
24269
24270         Reset changing to avoid loops.
24271
24272 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
24273
24274         * NumericUpDown.cs: Display value at startup.
24275
24276         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
24277         ValidateEditText.
24278
24279         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
24280         filled in.  Added some basic parsing of text.
24281
24282         Still missing the OnXXX method overrides, and figuring out the
24283         events that must be emitted.
24284
24285         * UpDownBase.cs: Handle UserEdit on the Text property.
24286         
24287 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
24288
24289         * ComboBox.cs:
24290           - Fixes IntegralHeight
24291           - ToString method
24292
24293 2005-01-21  Jackson Harper  <jackson@ximian.com>
24294
24295         * TabControl.cs: Set the SelectedIndex property when SelectedTab
24296         is set so that the page visibility is updated and the tabs are
24297         sized correctly.
24298
24299 2005-01-21  Jackson Harper  <jackson@ximian.com>
24300
24301         * TabControl.cs: Use cliping rectangle for blitting. Give the
24302         theme the clipping rect so we can do clipping while
24303         drawing. Remove some debug code.
24304
24305 2005-01-21  Jackson Harper  <jackson@ximian.com>
24306
24307         * TabPage.cs: Add a new method so tab pages can force the tab
24308         control to recalculate the tab page sizes.
24309         * TabControl.cs: UpdateOwner needs to make the tab control recalc
24310         sizes.
24311
24312 2005-01-20  Jackson Harper  <jackson@ximian.com>
24313
24314         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
24315
24316 2005-01-20  Jackson Harper  <jackson@ximian.com>
24317
24318         * TreeView.cs: Set the bounds for nodes properly. They were
24319         getting screwed up when checkboxes were not enabled, but images
24320         were.
24321
24322 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
24323
24324         * ListBox.cs:
24325                 - Owner draw support
24326                 - Fixes
24327                 
24328 2005-01-20  Jackson Harper  <jackson@ximian.com>
24329
24330         * XplatUIStructs.cs: More misc keys
24331         * X11Keyboard.cs: Ignore some control keys.
24332
24333 2005-01-20  Jackson Harper  <jackson@ximian.com>
24334
24335         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
24336         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
24337
24338 2005-01-19  Peter Bartok  <pbartok@novell.com>
24339
24340         * Control.cs: Un-selecting the control when it is loosing focus
24341
24342 2005-01-19  Jackson Harper  <jackson@ximian.com>
24343
24344         * TreeView.cs: Hook up to the text controls leave event so we can
24345         end editing when the users clicks outside the text box.
24346         
24347 2005-01-19  Jackson Harper  <jackson@ximian.com>
24348
24349         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
24350         get set in the conversion array.
24351
24352 2005-01-19  Peter Bartok  <pbartok@novell.com>
24353
24354         * Application.cs (ModalRun): Added a call to CreateControl to ensure
24355           focus is properly set
24356         * Button.cs:
24357           - Added missing attributes
24358           - removed styles, those are already set in the base class
24359         * ButtonBase.cs:
24360           - Added missing attributes
24361           - Added clip window styles
24362         * CheckBox.cs: Added missing attributes
24363         * CommonDialog.cs:
24364           - FormParentWindow.CreateParams: Added required clip styles
24365         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
24366           also filters modifier keys
24367         * MessageBox.cs:
24368           - Added assignment of Accept and Cancel button to enable Enter
24369             and Esc keys in MessageBox dialogs
24370           - FormParentWindow.CreateParams: Added required clip styles
24371         * RadioButton.cs: Added missing attributes
24372         * TextControl.cs: No longer draws selection if control does not
24373           have focus
24374         * TextBoxBase.cs:
24375           - Now draws simple rectangle around test area to make it obvious
24376             there's a control. This is a hack until we properly support borders
24377           - A few simple fixes to support selections better, now erases selected
24378             text when typing, and resets selection when using movement keys
24379
24380 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24381
24382         * UpDownBase.cs: Added some new properties.
24383
24384         * DomainUpDown.cs: Implement a lot to get my test working.
24385
24386 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24387
24388         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
24389
24390 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24391
24392         * OSXStructs (WindowAttributes): Fixed csc complaints
24393
24394 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24395
24396         * XplayUIOSX.cs:
24397           OSXStructs.cs: Initial refactor to move enums and consts into
24398           OSXStructs and use them in the driver for greater readability.
24399
24400 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
24401
24402         * XplatUIOSX.cs: Initial support for Standard Cursors.
24403         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
24404
24405 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
24406
24407         * ComboBox.cs: ability to change style when the ctrl is already
24408         created, missing methods and events, bug fixes, signature fixes
24409
24410 2005-01-19  Peter Bartok  <pbartok@novell.com>
24411
24412         * Cursors.cs (ctor): Added ctor to fix signature
24413
24414 2005-01-18  Peter Bartok  <pbartok@novell.com>
24415
24416         * Button.cs: Implemented DoubleClick event
24417         * ButtonBase.cs:
24418           - Fixed keyboard handling to behave like MS, where the press of
24419             Spacebar is equivalent to a mousedown, and the key release is
24420             equivalent to mouseup. Now a spacebar push will give the same
24421             visual feedback like a mouse click.
24422           - Added missing attributes
24423           - Added ImeModeChanged event
24424           - Added support for generating DoubleClick event for derived classes
24425         * CheckBox.cs:
24426           - Implemented DoubleClick event
24427           - Added missing attributes
24428         * CommonDialog.cs: Added missing attribute
24429         * ContextMenu.cs: Added missing attributes
24430         * RadioButton.cs:
24431           - AutoChecked buttons do not allow to be unselected when clicked
24432             (otherwise we might end up with no selected buttons in a group)
24433           - Added missing attributes
24434           - Implemented DoubleClickEvent
24435         * ThreadExceptionDialog.cs: Enabled TextBox code
24436
24437 2005-01-18  Peter Bartok  <pbartok@novell.com>
24438
24439         * Form.cs: Removed debug output
24440         * Button.cs: Added support for DoubleClick method
24441
24442 2005-01-18  Peter Bartok  <pbartok@novell.com>
24443
24444         * Form.cs:
24445           - Added method to parent window that allows triggering size
24446             calculations when a menu is added/removed
24447           - set_Menu: Cleaned up mess from early days of Form and Control,
24448             now properly triggers a recalc when a menu is added/removed
24449           - Added case to select form itself as focused form if no child
24450             controls exist
24451           - Added PerformLayout call when showing dialog, to ensure properly
24452             placed controls
24453         * Control.cs:
24454           - Select(): Made internal so Form can access it
24455           - Focus(): Only call Xplat layer if required (avoids loop), and sets
24456             status
24457         * Application.cs (Run): Removed hack and calls PerformLayout instead
24458           to trigger calculation when Form becomes visible
24459
24460 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
24461
24462         * ComboBox.cs: fixes for ownerdraw
24463
24464 2005-01-18  Peter Bartok  <pbartok@novell.com>
24465
24466         * TextControl.cs:
24467           - Sentinel is no longer static, each Document gets it's own, this
24468             avoids locking or alternatively overwrite problems when more
24469             than one text control is used simultaneously.
24470           - Switched to use Hilight and HilightText brushes for text selection
24471
24472         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
24473
24474 2005-01-18  Peter Bartok  <pbartok@novell.com>
24475
24476         * Control.cs:
24477           - Hooked up the following events:
24478                 o ControlAdded
24479                 o ControlRemoved
24480                 o HandleDestroyed
24481                 o ImeModeChanged
24482                 o ParentChanged
24483                 o TabStopChanged
24484                 o Invalidated
24485                 o SystemColorsChanged
24486                 o ParentFontChanged
24487                 o Move
24488           - Removed debug output
24489           - Added a call to the current theme's ResetDefaults when a color change
24490             is detected
24491         * Form.cs: Now setting the proper ImeMode
24492         * Theme.cs: Defined a method to force recreation of cached resources
24493           and rereading of system defaults (ResetDefaults())
24494         * ThemeWin32Classic.cs: Added ResetDefaults() stub
24495
24496 2005-01-17  Peter Bartok  <pbartok@novell.com>
24497
24498         * Control.cs: Added missing attributes
24499
24500 2005-01-17  Jackson Harper  <jackson@ximian.com>
24501
24502         * TreeNode.cs: Implement editing. Add missing properties selected
24503         and visible.
24504         * TreeView.cs: Implement node editing. Also some fixes to use
24505         Invalidate (invalid area) instead of Refresh when selecting.
24506
24507 2005-01-17  Peter Bartok  <pbartok@novell.com>
24508
24509         * Control.cs:
24510           - Implemented InvokeGotFocus() method
24511           - Implemented InvokeLostFocus() method
24512           - Implemented InvokePaint() method
24513           - Implemented InvokePaintBackground() method
24514           - Implemented InvokeClick() method
24515           - Implemented FindForm() method
24516           - Implemented RectangleToClient() method
24517           - Implemented ClientToRectangle() method
24518           - Implemented ResetBackColor() method
24519           - Implemented ResetCursor() method
24520           - Implemented ResetFont() method
24521           - Implemented ResteForeColor() method
24522           - Implemented ResetImeMode() method
24523           - Implemented ResetLeftToRight() method
24524           - Implemented ResetText() method
24525           - Implemented Scale() methods
24526           - Implemented ScaleCore() method
24527           - Implemented Update() method
24528           - Removed unused variables
24529           - Stubbed AccessibilityNotifyClients and
24530             ControlAccessibleObject.NotifyClients() methods (dunno what to do
24531             with those yet)
24532           - Now setting proper default for RightToLeft property
24533           - Fixed bug in SetClientSizeCore that would cause windows to get
24534             really big
24535           - Now sending Click/DoubleClick events
24536           - Now selecting controls when left mouse button is clicked on
24537             selectable control
24538         * AccessibleEvents.cs: Added
24539         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
24540         * XplatUIOSX.cs: Stubbed UpdateWindow() method
24541         * XplatUIWin32.cs: Implemented UpdateWindow() method
24542         * XplatUIX11.cs: Implemented UpdateWindow() method
24543         * Form.cs: Removed stray semicolon causing CS0162 warning
24544         * ThemeWin32Classic.cs: Fixed unused variable warnings
24545         * ScrollableControl.cs: Now calls base method for ScaleCore
24546         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
24547           style to avoid interference with internal click handler (which is
24548           different than standard Control click handling)
24549         * RadioButton.cs:
24550           - Now unchecks all sibling radio buttons when control is
24551             selected (Fixes #68756)
24552           - Removed internal tabstop variable, using the one inherited from
24553             Control
24554
24555 2005-01-17  Jackson Harper  <jackson@ximian.com>
24556
24557         * NavigateEventArgs.cs: Fix base type.
24558         * LinkLabel.cs: Sig fix
24559         
24560 2005-01-17  Jackson Harper  <jackson@ximian.com>
24561
24562         * TreeView.cs: Only invalidate the effected nodes bounds when
24563         selecting nodes.
24564
24565 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24566
24567         * XplatUIWin32.cs: fixes Win32 marshaling
24568         * XplatUIX11.cs: fixes method signature
24569
24570 2005-01-17  Peter Bartok  <pbartok@novell.com>
24571
24572         * XplatUIX11.cs: Clean up resources when we no longer need them
24573
24574 2005-01-17  Peter Bartok  <pbartok@novell.com>
24575
24576         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
24577           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
24578           and DestroyCursor() methods.
24579         * Cursor.cs: Partially implemented, now supports standard cursors;
24580           still contains some debug code
24581         * Cursors.cs: Implemented class
24582         * Control.cs:
24583           - WndProc(): Added handling of WM_SETCURSOR message, setting the
24584             appropriate cursor
24585           - Implemented Cursor property
24586           - Replaced break; with return; more straightforwar and possibly
24587             faster
24588           - Now properly setting the result for WM_HELP
24589         * X11Structs.cs: Added CursorFontShape enum
24590         * XplatUIStructs.cs:
24591           - Added StdCursor enum (to support DefineStdCursor() method)
24592           - Added HitTest enum (to support sending WM_SETCURSOR message)
24593         * XplatUIX11.cs:
24594           - Now sends the WM_SETCURSOR message
24595           - Implemented new cursor methods
24596         * XplatUIOSX.cs: Stubbed new cursor methods
24597         * XplatUIWin32.cs:
24598           - Implemented new cursor methods
24599           - Added GetSystemMetrics function and associated enumeration
24600
24601 2005-01-15  Peter Bartok  <pbartok@novell.com>
24602
24603         * Control.cs:
24604           - WndProc(): Now handles EnableNotifyMessage
24605           - SelectNextControl(): Fixed bug where if no child or sibling
24606             controls exist we looped endlessly
24607
24608 2005-01-14  Jackson Harper  <jackson@ximian.com>
24609
24610         * TreeView.cs: Recalculate the tab pages when a new one is added
24611         so that the proper bounding rects are created.
24612
24613 2005-01-14  Jackson Harper  <jackson@ximian.com>
24614
24615         * TreeView.cs: Draw a gray box instead of a grip in the lower
24616         right hand corner when there are both horizontal and vertical
24617         scroll bars.
24618
24619 2005-01-14  Jackson Harper  <jackson@ximian.com>
24620
24621         * Control.cs: When erasing backgrounds use FromHwnd instead of
24622         FromHdc when there is a NULL wparam. This occurs on the X driver.
24623         * XplatUIX11.cs: Set the wparam to NULL.
24624
24625 2005-01-13  Jackson Harper  <jackson@ximian.com>
24626
24627         * PictureBox.cs: Implement missing methods (except ToString, need
24628         to test that on windows) and events. When visibility is changed we
24629         need to redraw the image because the buffers are killed. When size
24630         is changed refresh if the sizemode needs it.
24631
24632 2005-01-13  Peter Bartok  <pbartok@novell.com>
24633
24634         * Control.cs (SelectNextControl): Was using wrong method to select
24635           a control
24636
24637 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24638
24639         * ComboBox.cs: fixes dropstyle
24640
24641 2005-01-13  Peter Bartok  <pbartok@novell.com>
24642
24643         * Form.cs:
24644           - Implemented Select() override
24645           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
24646           - Now sets keyboard focus on startup
24647         * Control.cs (SelectNextControl): Now properly handles directed=true
24648         * TextBoxBase.cs:
24649           - WndProc: Now passes tab key on to base if AcceptTabChar=false
24650           - Added (really bad) focus rectangle (mostly for testing)
24651         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
24652           to enforce redraw on focus changes
24653         * ContainerControl.cs:
24654           - Fixed detection of Shift-Tab key presses
24655           - Fixed traversal with arrow keys
24656         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
24657           gonna keep this or if it's complete yet
24658         
24659 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
24660
24661         * ComboBox.cs: missing properties, fixes
24662
24663 2005-01-13  Peter Bartok  <pbartok@novell.com>
24664
24665         * Panel.cs (ctor): Setting Selectable window style to off
24666         * Splitter.cs (ctor): Setting Selectable window style to off
24667         * GroupBox.cs (ctor): Setting Selectable window style to off
24668         * Label.cs (ctor): Setting Selectable window style to off
24669
24670 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
24671
24672         * UpDownBase.cs (InitTimer): If the timer has been already
24673         created, enable it.
24674
24675         Use a TextBox instead of a Label.
24676
24677 2005-01-12  Jackson Harper  <jackson@ximian.com>
24678
24679         * TreeView.cs: Refresh the tree after sorting the nodes. Always
24680         draw the connecting node lines (when ShowLines is true).
24681         * TreeNode.cs: The nodes index can now be updated. This is used
24682         when a node collection is sorted.
24683         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
24684         insert or an existing unsorted node collection can be sorted.
24685         
24686 2005-01-12  Peter Bartok  <pbartok@novell.com>
24687
24688         * ContainerControl.cs: Implemented ProcessDialogKeys()
24689
24690 2005-01-12  Peter Bartok  <pbartok@novell.com>
24691
24692         * Control.cs:
24693           - Implemented SelectNextControl() method
24694           - Several focus related bug fixes
24695           - Fixed Docking calculations to match MS documentation and
24696             behaviour
24697
24698 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
24699
24700         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
24701         bug fixes
24702
24703 2005-01-12  Peter Bartok  <pbartok@novell.com>
24704
24705         * Control.cs:
24706           - Fixed broken Contains() method
24707           - Implemented GetNextControl() method. Finally. This is the pre-
24708             requisite for focus handling.
24709
24710 2005-01-12  Peter Bartok  <pbartok@novell.com>
24711
24712         * OSXStrucs.cs: Added
24713
24714 2005-01-12  Peter Bartok  <pbartok@novell.com>
24715
24716         * XplatUIWin32.cs:
24717           - Removed PeekMessageFlags
24718           - Implemented SetWindowStyle() method
24719         * XplatUIStructs.cs: Added PeekMessageFlags
24720         * X11Structs: Added missing border_width field to XWindowChanges struct
24721         * XplatUIX11.cs:
24722           - PeekMessage: Now throws exception if flags which are not yet
24723             supported are passed
24724           - Implemented SetWindowStyle() method
24725           - Fixed SetZOrder to handle AfterHwnd properly
24726         * XplatUI.cs: Added SetWindowStyle() method
24727         * XplatUIDriver.cs: Added SetWindowStyle() abstract
24728         * Control.cs:
24729           - Implemented UpdateStyles() method
24730           - Implemented UpdateZOrder() method
24731         * XplatUIOSX.cs: Added SetWindowStyle() stub
24732
24733 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
24734
24735         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
24736         button mouse).
24737
24738
24739 2005-01-11  Jackson Harper  <jackson@ximian.com>
24740
24741         * TreeView.cs: Still need to draw lines to siblings even if out of
24742         the current node is out of the clip.
24743
24744 2005-01-11  Jackson Harper  <jackson@ximian.com>
24745
24746         * TreeView.cs: When setting the hbar/vbar/grip position use
24747         SetBounds so that perform layout is only called once. Also suspend
24748         and resume layout so layout is only done once for all controls.
24749         - Removed some debug fluff
24750         * SizeGrip.cs: Call base implmentation in overriding methods.
24751         - When visibility is changed the drawing buffers are killed so we
24752         need to redraw.
24753
24754 2005-01-11  Jackson Harper  <jackson@ximian.com>
24755
24756         * TreeView.cs: Calculate the open node count while drawing. This
24757         saves us an entire tree traversal for every paint operation. Use
24758         a member var for the open node count so less vars are passed around.
24759
24760 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
24761
24762         * MonthCalendar.cs:
24763         - fixed selection to use mousemove, not mouse polling on timer
24764         * ThemeWin32Classic.cs
24765         - removed redundant unused variable "no_more_content"
24766         
24767 2005-01-11  Peter Bartok  <pbartok@novell.com>
24768
24769         * XplatUIX11.cs (DoEvents): Needs to return when no more events
24770           are pending, so it now calls PeekMessage instead of GetMessage;
24771           implemented a incomplete version of PeekMessage
24772         
24773 2005-01-11  Peter Bartok  <pbartok@novell.com>
24774
24775         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
24776           I18n issues
24777         * TextBoxBase.cs: Added sending of TextChanged event
24778
24779 2005-01-10  Jackson Harper  <jackson@ximian.com>
24780
24781         * TreeView.cs: Try not to draw outside the clipping rectangle on
24782         each node element.
24783
24784 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
24785
24786         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
24787
24788 2005-01-10  Jackson Harper  <jackson@ximian.com>
24789
24790         * TreeView.cs:
24791         - Implement fast scrolling. Now only the newly
24792         exposed nodes are drawn and the old image is moved using the
24793         XplatUI::ScrollWindow method.
24794         - Factor in height of nodes when calculating whether or not the
24795         node is in the clipping rect.
24796
24797 2005-01-10  Jackson Harper  <jackson@ximian.com>
24798
24799         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
24800
24801 2005-01-10  Peter Bartok  <pbartok@novell.com>
24802
24803         * Application.cs: Added temporary hack to resolve all our resize
24804           required issues on startup. This will get fixed properly at
24805           some point in the future
24806
24807 2005-01-10  Jackson Harper  <jackson@ximian.com>
24808
24809         * SizeGrip.cs: New internal class that is used as a sizing
24810         grip control...hence the name.
24811
24812 2005-01-10  Peter Bartok  <pbartok@novell.com>
24813
24814         * Control.cs: Implemented proper TabIndex handling, now assigning
24815           a tabindex when a control is added to a container
24816         * GroupBox.cs (ctor): Now sets the Container style bit, required
24817           for Control.GetNextControl()
24818
24819 2005-01-09  Jackson Harper  <jackson@ximian.com>
24820
24821         * TextBoxBase.cs: Clear window when scrolling (fixes build).
24822
24823 2005-01-09  Peter Bartok <pbartok@novell.com>
24824
24825         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
24826           XplatUIX11.cs: Added ability to control ScrollWindow expose and
24827           an overload for ScrollWindow to allow only scrolling a rectangle
24828
24829 2005-01-09  Peter Bartok <pbartok@novell.com>
24830
24831         * Form.cs:
24832           - Implemented SetDesktopBounds method
24833           - Implemented SetDesktopLocation method
24834
24835 2005-01-08  Jackson Harper  <jackson@ximian.com>
24836
24837         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
24838         the node count has changed, this removes to VScroll::Refresh calls
24839         when drawing.
24840
24841 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
24842
24843         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
24844
24845 2005-01-07  Jackson Harper  <jackson@ximian.com>
24846
24847         * TreeNode.cs: Just update the single node when it is
24848         checked. Don't refresh after toggling, the Expand/Collapse already
24849         handles this.
24850         * TreeView.cs: Respect clipping a little more when drawing. Try
24851         not to redraw things that don't need to be redrawn. Just hide the
24852         scrollbars when they are no longer needed instead of removing
24853         them, so they don't have to be created again and again.
24854         
24855 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
24856
24857         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
24858         coordinates to window space to place the caret properly, FIXED.
24859         Implement GetWindowState & SetWindowState
24860
24861 2005-01-06  Peter Bartok <pbartok@novell.com>
24862
24863         * Form.cs:
24864           - Implemented ClientSize property
24865           - Implemented DesktopBounds property
24866           - Implemented DesktopLocation property
24867           - Implemented IsRestrictedWindow property
24868           - Implemented Size property
24869           - Implemented TopLevel property
24870           - Implemented FormWindowState property
24871         * Control.cs:
24872           - Implemented GetTopLevel() method
24873           - Implemented SetTopLevel() method
24874         * X11Structs.cs (Atom):
24875           - Added AnyPropertyType definition
24876           - Added MapState definiton and updated XWindowAttribute struct
24877         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
24878         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
24879         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
24880         * XplatUIWin32.cs:
24881           - Implemented GetWindowState() and SetWindowState() methods
24882           - Fixed Win32GetWindowLong return type
24883         * XplatUIX11.cs:
24884           - Introduced central function for sending NET_WM messages
24885           - Implemented GetWindowState() and SetWindowState() methods
24886         * TextBoxBase.cs (set_Lines):
24887           - Now uses Foreground color for text added via Text property (Duh!)
24888           - Added code to remember programmatically requested size (fixes
24889             behaviour when Multiline is set after Size)
24890           - Added AutoSize logic
24891
24892 2005-01-06  Jackson Harper  <jackson@ximian.com>
24893
24894         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
24895
24896 2005-01-06  Jackson Harper  <jackson@ximian.com>
24897
24898         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
24899         set to less then 0.
24900
24901 2005-01-06  Jackson Harper  <jackson@ximian.com>
24902
24903         * ScrollableControl.cs: Lazy init the scrollbars.
24904         
24905 2005-01-06  Jackson Harper  <jackson@ximian.com>
24906
24907         * Theme.cs: Speed up getting pens and solid brushes, by using
24908         their ARGB as a hash instead of tostring and not calling Contains.
24909
24910 2005-01-06  Peter Bartok <pbartok@novell.com>
24911
24912         * Form.cs:
24913           - Implemented OnActivated and OnDeactivate event trigger
24914           - Implemented Activate() method
24915           - Fixed ShowDialog() to activate the form that was active before
24916             the dialog was shown
24917         * XplatUIX11.cs:
24918           - Added global active_window var that tracks the currently active
24919             X11 window
24920           - Now always grabs Property changes from the root window to always
24921             catch changes on the active window property
24922           - Added code to PropertyNotify handler to send Active/Inactive
24923             messages when state changes. This puts X11 and Win32 en par on
24924             WM_ACTIVATE notifications (except for double notifications when
24925             the user clicks away from our modal window to another one of our
24926             windows)
24927
24928 2005-01-05  Jackson Harper  <jackson@ximian.com>
24929
24930         * ImageList.cs: Implment ctor
24931
24932 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
24933
24934         * XplatUIOSX.cs: Implement Activate/SetTopmost
24935
24936 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
24937
24938         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
24939
24940 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
24941
24942         * XplatUIOSX.cs: Implement GetActive/SetFocus.
24943
24944 2005-01-05  Peter Bartok <pbartok@novell.com>
24945
24946         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
24947           XplatUIOSX.cs: Added GetActive method to return the currently
24948           active window for the application (or null, if none is active)
24949         * Form.cs:
24950           - Implemented ActiveForm
24951           - Commented out owner assignment for modal dialogs (causes problems
24952             on Win32, since the owner will be disabled)
24953           - Reworked some Active/Focus handling (still incomplete)
24954         * CommonDialog.cs: Commented out owner assignment for modal dialogs
24955           (causes problems on Win32, since the owner will be disabled)
24956         * IWin32Window: Added ComVisible attribute
24957
24958 2005-01-05  Peter Bartok <pbartok@novell.com>
24959
24960         * ToolTip.cs (WndProc): Enable setting focus now that we have the
24961           required XplatUI functions.
24962
24963 2005-01-05  Peter Bartok <pbartok@novell.com>
24964
24965         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
24966           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
24967           to implement focus and activation handling; still incomplete and
24968           with debug output
24969
24970 2005-01-04  Peter Bartok <pbartok@novell.com>
24971
24972         * TextBoxBase.cs: Changed access level for Document property to
24973           match switch to internal for TextControl
24974
24975 2005-01-04  Peter Bartok <pbartok@novell.com>
24976
24977         * AccessibleObject: Added ComVisible attribute
24978
24979 2005-01-04  Jackson Harper  <jackson@ximian.com>
24980
24981         * X11Keyboard.cs: Remove unneeded var.
24982
24983 2005-01-04  Jackson Harper  <jackson@ximian.com>
24984
24985         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
24986         but PAINT.
24987         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
24988         ClientMessage. This makes apps exit cleanly (more often).
24989         
24990 2005-01-04  Jackson Harper  <jackson@ximian.com>
24991
24992         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
24993         handling focus, return correct colors and fonts,
24994         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
24995         handle selection, horizontal scrolling, and mouse interaction.
24996
24997 2005-01-04  Peter Bartok <pbartok@novell.com>
24998
24999         * ICommandExecutor.cs: Added
25000         * IDataGridColumnStyleEditingNotificationService.cs: Added
25001         * IFeatureSupport.cs: Added
25002         * IFileReaderService.cs: Added
25003         * IDataObject.cs: Added ComVisible attribute
25004         * AmbientProperties.cs: Added
25005         * BaseCollection.cs: Added missing attributes
25006         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
25007         * BaseCollection.cs: Added missing attributes
25008         * Binding.cs: Added TypeConverter attribute
25009         * BindingContext.cs: Added DefaultEvent attribute
25010         * BindingsCollection.cs: Added DefaultEvent attribute
25011         * Button.cs: Added DefaultValue attribute
25012         * DragEventArgs.cs: Added ComVisible attribute
25013         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
25014         * KeyEventArgs.cs: Added ComVisible attribute
25015         * KeyPressEventArgs.cs: Added ComVisible attribute
25016         * MouseEventArgs.cs: Added ComVisible attribute
25017         * NavigateEventArgs.cs: Added
25018         * NavigateEventHandler.cs: Added
25019         * FeatureSupport.cs: Added
25020         * OSFeature.cs: Added
25021         * Theme.cs: Added abstract Version property to support OSFeature
25022         * ThemeWin32Classic.cs: Added Version property to
25023           support OSFeature.Themes
25024         * ProgressBar.cs: Removed OnPaintBackground override, not required since
25025           the proper styles to avoid background drawing are set, also doesn't
25026           match MS signature
25027         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
25028         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
25029         * ScrollEventArgs.cs: Added ComVisible attribute
25030         * SplitterEventArgs.cs: Added ComVisible attribute
25031         * AccessibleSelection.cs: Added Flags attribute
25032         * Appearance.cs: Added ComVisible attribute
25033         * Border3DSide.cs: Added ComVisible attribute
25034         * Border3DStyle.cs: Added ComVisible attribute
25035         * BorderStyle.cs: Added ComVisible attribute
25036         * DragAction.cs: Added ComVisible attribute
25037         * ErrorBlinkStyle.cs: Added
25038         * ScrollEventType.cs: Added ComVisible attribute
25039         * AnchorStyles.cs: Added Editor attribute
25040         * DockStyle.cs: Added Editor attribute
25041         * HorizontalAlignment.cs: Added ComVisible attribute
25042         * HelpEventArgs.cs: Added ComVisible attribute
25043         * PaintEventArgs.cs: Added IDisposable
25044
25045 2005-01-04  Peter Bartok <pbartok@novell.com>
25046
25047         * TextControl.cs: Switched Line, LineTag and Document classes to
25048           internal
25049
25050 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25051
25052         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
25053         Simple mode, fixes, IntegralHeight, etc.
25054
25055 2005-01-04  Peter Bartok <pbartok@novell.com>
25056
25057         * TextBoxBase.cs: Using proper font variable now
25058
25059 2005-01-04  Peter Bartok <pbartok@novell.com>
25060
25061         * Form.cs (ShowDialog): Set parent to owner, if provided
25062         * GroupBox.cs: Removed unused vars
25063         * TextControl.cs:
25064           - Added GetHashCode() for Document and LineTag classes
25065           - Removed unused variables
25066           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
25067             to allow translation between continuous char position and line/pos
25068         * CheckBox.cs: Removed vars that are provided by base class
25069         * RadioButton.cs: Removed vars that are provided by base class, added
25070           new keyword where required
25071         * LinkLabel.cs: Added new keyword where required
25072         * Control.cs (WndProc): Removed unused variable
25073         * TextBoxBase.cs:
25074           - Finished SelectionLength property
25075           - Implemented SelectionStart property
25076           - Implemented Text property
25077           - Removed unused vars
25078         * MessageBox.cs: Added new keyword where required
25079         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
25080           WndProc signature
25081         * MenuAPI.cs: Added new keyword where required
25082         * ButtonBase.cs: Removed vars that are provided by base class, added
25083           new keyword where required
25084         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
25085           argument to double, to allow compiling with csc 2.0 (Atsushi ran
25086           into this)
25087         * Application.cs (Run): Now triggers the ThreadExit event
25088         * CommonDialog.cs: Added new keyword where required; now properly sets
25089           parent (owner) for dialog
25090         * XplatUIX11.cs: Commented out unused vars
25091         * StatusBar.cs: Fixed signature for Text property
25092         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
25093
25094 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
25095
25096         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
25097         TrackBar.cs, MonthCalendar.cs: remove unused vars
25098
25099 2005-01-03  Jackson Harper  <jackson@ximian.com>
25100
25101         * ThemeWin32Classic.cs:
25102         * X11Keyboard.cs: Remove unused vars.
25103
25104 2005-01-03  Peter Bartok  <pbartok@novell.com>
25105
25106         * TextBox.cs:
25107           - set_Text: Tied into TextControl
25108           - set_TextAlignment: Tied into TextControl
25109         * TextControl.cs:
25110           - Added alignment properties and implemented alignment handling
25111             and drawing (still has a bug, not generating proper expose events)
25112           - Added new Line() constructor to allow passing the line alignment
25113           - Fixed selection setting, properly handling end<start now
25114           - Added aligment considerations to RecalculateDocument()
25115         * TextBoxBase.cs:
25116           - Now properly enforces control height for single line controls
25117           - Added support for CharacterCasing
25118           - Added IsInputKey override
25119           - Fixed Keys.Enter logic
25120           - Added SetBoundsCore override
25121           - Fixed mouse selection handling
25122
25123 2005-01-03  Jackson Harper  <jackson@ximian.com>
25124
25125         * TreeView.cs:
25126           - Collapse and uncheck all nodes when CheckBoxes is disabled.
25127           - Checkboxes are always aligned to the bottom of the node,
25128           regardless of item height.
25129           - Use the node bounds to draw the text so we can center it when
25130           the item height is greater then the font height.
25131           - Node::Bounds are only the text part of the node.
25132         * TreeNode.cs: New method to combine collapsing and unchecking all
25133           nodes recursively.
25134
25135 2005-01-02  Jackson Harper  <jackson@ximian.com>
25136
25137         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
25138         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
25139         tree when a check is changed. TODO: Only refresh the checked node.
25140
25141 2004-12-30  Jackson Harper  <jackson@ximian.com>
25142
25143         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
25144         * TreeNode.cs: When collapsing make sure to never collapse the
25145         root node.
25146
25147 2004-12-29  Jackson Harper  <jackson@ximian.com>
25148
25149         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
25150         
25151 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
25152
25153         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
25154
25155 2004-12-28  Peter Bartok  <pbartok@novell.com>
25156
25157         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
25158           not yet assigned
25159
25160 2004-12-28  Peter Bartok  <pbartok@novell.com>
25161
25162         * Control.cs (WndProc): Added WM_HELP handler, now generates
25163           HelpRequested event
25164         * Form.cs: Added HelpButton property and required support code
25165         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
25166
25167 2004-12-28  Peter Bartok  <pbartok@novell.com>
25168
25169         * CommonDialog.cs:
25170           - Made DialogForm.owner variable internal
25171           - Added check to ensure owner form is set before setting
25172             owner properties in CreateParams
25173
25174 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
25175
25176         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
25177           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
25178           GetCursorPos.  Fix major visibility issues.  Rework the windowing
25179           system to support borderless/titleless windows (implements menus).
25180           Fix GetWindowPos.  Implement initial background color support for
25181           views.
25182
25183 2004-12-28  Peter Bartok  <pbartok@novell.com>
25184
25185         * Form.cs (get_CreateParams): Make sure we have an owner before using
25186           the owner variable. Implement proper default if no owner exists
25187
25188 2004-12-28  Peter Bartok  <pbartok@novell.com>
25189
25190         * In preparation for making Managed.Windows.Forms the default build target
25191           for System.Windows.Forms, the following stubbed files were added.
25192           Dialogs are currently being implemented by contributors and are only
25193           short-term place holders.
25194         * ColorDialog.cs: Initial check-in (minmal stub)
25195         * DataGrid.cs: Initial check-in (minimal stub)
25196         * DataGridLineStyle.cs: Initial check-in (minimal stub)
25197         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
25198         * DataGridTableStyle.cs: Initial check-in (minimal stub)
25199         * FontDialog.cs: Initial check-in (minimal stub)
25200         * FileDialog.cs: Initial check-in (minimal stub)
25201         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
25202         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
25203         * OpenFileDialog: Initial check-in (minimal stub)
25204         * IComponentEditorPageSite.cs: Initial check-in
25205         * Splitter.cs: Initial check-in (for Jackson)
25206         * SplitterEventArgs.cs: Initial check-in (for Jackson)
25207         * SplitterEventHandler.cs: Initial check-in (for Jackson)
25208         * TextBox.cs: Initial check-in; still needs some wiring to
25209           TextControl backend
25210         * Form.cs: Implemented ControlBox property
25211         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
25212         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
25213         * TextControl.cs: Added selection functionality; added todo header
25214         * TextBoxBase.cs:
25215           - Implemented Lines property
25216           - Implemented TextHeight property
25217           - Implemented SelectedText property
25218           - Implemented SelectionLength property
25219           - Implemented SelectAll method
25220           - Implemented ToString method
25221           - Removed and cleaned up some debug code
25222           - Implemented (still buggy) mouse text selection
25223
25224 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
25225
25226         * ComboBox.cs: Complete DropDownList implementation, fixes.
25227
25228 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
25229
25230         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
25231         * ComboBoxStyle.cs: ComboBoxStyle enum
25232         * ComboBox.cs: Initial work on ComboBox control
25233
25234 2004-12-21  Peter Bartok  <pbartok@novell.com>
25235
25236         * Control.cs (ctor, CreateParams): Moved setting of is_visible
25237           forward so that anything that creates a window gets the default,
25238           also no longer uses Visible property in CreateParams to avoid
25239           walking up the parent chain and possibly get the wrong visible
25240           status. Fixed IsVisible to no longer walk up to the parent.
25241
25242 2004-12-21  Peter Bartok  <pbartok@novell.com>
25243
25244         * Form.cs (ShowDialog): Unset modality for the proper window
25245  
25246 2004-12-20  Peter Bartok  <pbartok@novell.com>
25247
25248         * CommonDialog.cs: Initial check-in
25249
25250 2004-12-20  Peter Bartok  <pbartok@novell.com>
25251
25252         * Control.cs (Visible): Now uses the parent window instead of the
25253           client area window for the property
25254
25255         * Form.cs
25256           - ShowDialog(): Now uses the proper window for modality
25257           - The default visibility state for the form parent is now false. This
25258             will prevent the user from seeing all the changes to the form and
25259             its controls before the application hits Application.Run()
25260           - Removed some stale commented out code
25261
25262         * NativeWindow.cs:
25263           - Added FindWindow() method to have a method to check for existence
25264             of a window handle
25265           - Added ability to override default exception handling (for example
25266             when debugging with VS.Net; to do this the ExternalExceptionHandler
25267             define must be set
25268           - Removed some useless debug output
25269
25270         * XplatUIX11.cs:
25271           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
25272             not working as expected
25273           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
25274             property to allow switching back to the modal window if focus is
25275             given to another one of our windows (Application Modal)
25276           - Now only sets override_redirect if we create a window
25277             without WS_CAPTION
25278           - Moved EventMask selection before mapping of newly created window
25279             so we can catch the map event as well
25280           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
25281           - Added various Atom related DllImports
25282           - Implemented Exit() method
25283           - .ctor() : No longer shows window if WS_VISIBLE is not defined
25284             in the CreateParams
25285
25286         * MessageBox.cs: Now properly deals with the FormParent window by
25287           providing an override the FormParent CreateParams property to
25288           set as POPUP instead of OVERLAPPED window.
25289
25290 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25291
25292         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
25293         Minor code cleanup.
25294
25295 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
25296         
25297         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
25298
25299 2004-12-18  Peter Bartok  <pbartok@novell.com>
25300
25301         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
25302           implementing SetModal() method
25303
25304 2004-12-18  Peter Bartok  <pbartok@novell.com>
25305
25306         * X11Structs.cs (XGCValues): Fixed type of function element
25307         * XplatUI.cs: Added ScrollWindow() method
25308         * XplatUIDriver.cs: Added ScrollWindow() abstract
25309         * XplatUIWin32.cs: Implemented ScrollWindow() method
25310         * XplatUIX11.cs: Implemented ScrollWindow() method
25311         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
25312
25313 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25314
25315         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
25316         Some more keyboard support (INCOMPLETE)
25317
25318 2004-12-17  Peter Bartok  <pbartok@novell.com>
25319
25320         * TextControl.cs:
25321         - Added color attribute to line tags.
25322         - Added color argument to all functions dealing with tags
25323         - Added color argument support to various functions
25324         - Fixed miss-calculation of baseline/shift in certain circumstances
25325
25326         * TextBoxBase.cs: Added new color option to test code
25327
25328 2004-12-17  Jackson Harper  <jackson@ximian.com>
25329
25330         * TreeNode.cs:
25331         * MonthCalendar.cs: Signature fixes
25332
25333 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25334
25335         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
25336         keyboard event moved it.  Create a new graphics context for each paint resolves this
25337
25338 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
25339
25340         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
25341         Make caret exist and go blink blink.  Initial keyboard support.
25342         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
25343         works.
25344
25345 2004-12-17  Jackson Harper  <jackson@ximian.com>
25346
25347         * XplatUIStructs.cs: Updated set of virtual keycodes.
25348         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
25349
25350 2004-12-17  Jackson Harper  <jackson@ximian.com>
25351
25352         * XplatUIX11.cs: Prune old keyboard code.
25353
25354 2004-12-17  Jackson Harper  <jackson@ximian.com>
25355
25356         * XplatUIX11.cs: When generating mouse wparams get the modifier
25357         keys from the ModifierKeys property.
25358
25359 2004-12-17  Jackson Harper  <jackson@ximian.com>
25360
25361         * X11Keyboard.cs: Send up/down input when generating
25362         messages. Remove some unused vars.
25363
25364 2004-12-17  Jackson Harper  <jackson@ximian.com>
25365
25366         * TabControl.cs:
25367         * TreeView.cs: get rid of warnings.
25368
25369 2004-12-17  Jackson Harper  <jackson@ximian.com>
25370
25371         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
25372
25373 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
25374
25375         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
25376           CheckedListBox.cs: Implementation
25377
25378 2004-12-17  Peter Bartok  <pbartok@novell.com>
25379
25380         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
25381
25382 2004-12-16  Peter Bartok  <pbartok@novell.com>
25383
25384         * TextControl.cs:
25385           - InsertCharAtCaret(): Fixed start pos fixup
25386           - CaretLine_get: No longer derives the line from the tag, the tag
25387             could be stale if lines in the document have been added or deleted
25388           - RebalanceAfterDelete(): Fixed bug in balancing code
25389           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
25390           - Line.Streamline(): Now can also elminate leading empty tags
25391           - DumpTree(): Added a few more tests and prevented exception on
25392             uninitialized data
25393           - Added Debug section for Combining lines
25394           - Delete(): Now copies all remaining properties of a line
25395           
25396         * TextBoxBase.cs:
25397           - Left mousebutton now sets the caret (and middle button still acts
25398             as formatting tester, which must go away soon)
25399           - Added Debug section for Deleting/Combining lines
25400           - Fixed calculations for UpdateView after Combining lines
25401
25402 2004-12-16  Peter Bartok  <pbartok@novell.com>
25403
25404         * TextControl.cs: Now properly aligns text on a baseline, using the
25405           new XplatUI.GetFontMetrics() method. Simplified several calculations
25406         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
25407           defined
25408
25409 2004-12-16  Peter Bartok  <pbartok@novell.com>
25410
25411         * XplatUI.cs: Added GetFontMetrics() method
25412         * XplatUIDriver.cs: Added GetFontMetrics() abstract
25413         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
25414           into libgdiplus, our private GetFontMetrics function
25415         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
25416         * XplatUIWin32.cs: Implemented GetFontMetrics() method
25417
25418 2004-12-16  Jackson Harper  <jackson@ximain.com>
25419
25420         * XplatUIStruct.cs: Add enum for dead keys
25421         * X11Keyboard.cs: Map and unmap dead keys.
25422
25423 2004-12-16  Jackson Harper  <jackson@ximian.com>
25424
25425         * X11Keyboard.cs: Detect and use the num lock mask.
25426
25427 2004-12-16  Peter Bartok  <pbartok@novell.com>
25428
25429         * Control.cs (CreateGraphics): Added check to make sure the
25430           handle of the window exists before calling Graphics.FromHwnd()
25431
25432 2004-12-16  Peter Bartok  <pbartok@novell.com>
25433
25434         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
25435           contains a lot of code that's not supposed to be there for the
25436           real thing, but required for developing/testing the textbox
25437           backend.
25438
25439 2004-12-16  Peter Bartok  <pbartok@novell.com>
25440
25441         * TextControl.cs:
25442         - Fixed Streamline method
25443         - Added FindTag method to Line
25444         - Added DumpTree method for debugging
25445         - Added DecrementLines() method for deleting lines
25446         - Fixed UpdateView to update the cursor to end-of-line on single-line
25447           updates
25448         - Added PositionCaret() method
25449         - Fixed MoveCaret(LineDown) to move into the last line, too
25450         - Added InsertChar overload
25451         - Fixed InsertChar tag offset calculations
25452         - Added DeleteChar() method
25453         - Added Combine() method for folding lines
25454         - Fixed Delete() method, no longer allocates wasted Line object and
25455           now copies all properties when swapping nodes
25456         - Delete() method now updates document line counter
25457
25458 2004-12-15  Jackson Harper  <jackson@ximian.com>
25459
25460         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
25461         * X11Keyboard.cs: Expose the currently selected modifier keys
25462         through a property.
25463
25464 2004-12-15  Peter Bartok  <pbartok@novell.com>
25465
25466         * TextControl.cs: Initial check-in. Still incomplete
25467
25468 2004-12-15  Jackson Harper  <jackson@ximian.com>
25469
25470         * TreeNode.cs:
25471         * TreeView.cs: Fix build on csc (second time today ;-))
25472
25473 2004-12-15  Jackson Harper  <jackson@ximian.com>
25474
25475         * TreeView.cs: Store the treenodes plus/minus box bounds when it
25476         is calculated and use this for click testing.
25477         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
25478
25479 2004-12-15  Jackson Harper  <jackson@ximian.com>
25480
25481         * TreeView.cs: Pass the nodes image index to the image list when
25482         drawing that image.
25483
25484 2004-12-15  Jackson Harper  <jackson@ximian.com>
25485
25486         * X11Keyboard.cs: Set messages hwnd.
25487         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
25488         post_message calls.
25489
25490 2004-12-15  Jackson Harper  <jackson@ximian.com>
25491
25492         * X11Keyboard.cs: Fix to compile with csc.
25493         
25494 2004-12-15  Jackson Harper  <jackson@ximian.com>
25495
25496         * X11Structs.cs: Add key mask values
25497         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
25498         * X11Keyboard.cs: New file - Extrapolates and interpolates key
25499         down/up foo into WM_CHAR foo
25500         * KeyboardLayouts.cs: Common keyboard layouts
25501         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
25502         post messages into the main queue.
25503
25504 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
25505
25506         * Button.cs: implement ProcessMnemonic
25507         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
25508           brushes everytime
25509         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
25510         * ButtonBase.cs: Show HotkeyPrefix (not the &)
25511
25512 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
25513         
25514         * MonthCalendar.cs: Implemented click-hold for next/previous month
25515           and date selection
25516           
25517 2004-12-11  Peter Bartok  <pbartok@novell.com>
25518
25519         * X11Structs.cs:
25520           - Added XKeyboardState (moved from XplatUIX11.cs)
25521           - Added XCreateGC related enums and structures
25522           - Added GXFunction for XSetFunction
25523
25524         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
25525
25526         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
25527           CaretVisible() calls
25528
25529         * ToolTip.cs: Added code to prevent stealing focus from app windows
25530
25531         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
25532           DestroyCaret, SetCaretPos and CaretVisible)
25533
25534         * XplatUIX11.cs:
25535           - Added implementation for caret functions
25536           - Moved hover variables into a struct, to make it a bit easier
25537             on the eyes and to debug
25538           - Removed XKeyboardState (moved to XplatUIX11.cs)
25539           - Moved Keyboard properties into the properties region
25540
25541         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
25542           call to get a graphics context for our control
25543
25544         * XplatUIOSX.cs: Added empty overrides for the new caret functions
25545
25546         * TreeView.cs: Fixed bug. No matter what color was set it would always
25547           return SystemColors.Window
25548
25549         * XplatUIWin32.cs: Implemented caret overrides
25550
25551 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
25552
25553         * ListBox.cs: fire events, implement missing methods and properties,
25554         sorting.
25555
25556 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
25557
25558         * MonthCalendar.cs: invalidation bug fixing
25559         * ThemeWin32Classic.cs: paint fixing
25560
25561 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
25562
25563         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
25564         prepare the CGContextRef there now.
25565
25566 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
25567
25568         * MonthCalendar.cs:
25569           - optimisationL only invalidate areas that have changed
25570         * ThemeWin32Classic.cs:
25571           - only paint parts that intersect with clip_area
25572
25573 2004-12-09  Peter Bartok  <pbartok@novell.com>
25574
25575         * Application.cs: Undid changes from r37004 which cause problems
25576         on X11
25577
25578 2004-12-09  Ravindra  <rkumar@novell.com>
25579
25580         * ToolBar.cs: Added support for displaying ContextMenu
25581         attached to a button on ToolBar.
25582         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
25583         property.
25584
25585 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25586
25587         * Label.cs: autosize works in text change and removes unnecessary
25588         invalidate
25589
25590 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
25591
25592         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25593         remove warnings
25594
25595 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
25596
25597         * XplatUIOSX.cs: Added mouse move/click/grab support
25598         Remove some debugging WriteLines not needed anymore.
25599         Add window resizing/positioning.
25600         Fix visibility on reparenting.
25601
25602 2004-12-08  Peter Bartok  <pbartok@novell.com>
25603
25604         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
25605
25606 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
25607
25608         * XplatUIOSX.cs: Initial checkin
25609         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
25610
25611 2004-12-03  Ravindra <rkumar@novell.com>
25612
25613         * ListView.cs: Added some keybindings and fixed scrolling.
25614         ScrollBars listen to ValueChanged event instead of Scroll
25615         Event. This would let us take care of all changes being
25616         done in the scrollbars' values programmatically or manually.
25617         * ListView.cs (CanMultiselect): Added a check for shift key.
25618         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
25619         * ListViewItem.cs (Clone): Fixed. We need to make a copy
25620         of ListViewSubItemCollection as well.
25621
25622 2004-12-06  Peter Bartok <pbartok@novell.com>
25623
25624         * Control.cs (Parent): Added check and exception to prevent
25625         circular parenting
25626
25627 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
25628
25629         * ListBox.cs: implemented clipping, selection single and multiple,
25630         bug fixing
25631
25632 2004-12-03  Ravindra <rkumar@novell.com>
25633
25634         * ListView.cs (ListView_KeyDown):
25635         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
25636         when CTRL key is pressed.
25637         * ListViewItem.cs (Selected): Fixed setting the property.
25638
25639 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
25640
25641         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
25642
25643         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
25644         MinimizeBox, ShowInTaskbar, TopMost properties.
25645
25646         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
25647         will be implemented).
25648
25649 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
25650
25651         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
25652
25653         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
25654         tests.
25655         
25656         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
25657         
25658         * TreeView.cs: BackColor is Colors.Window.
25659
25660 2004-12-01  Jackson Harper  <jackson@ximian.com>
25661
25662         * TreeView.cs: When resizing the tree if the user is making it
25663         smaller we don't get expose events, so we need to handle adding
25664         the horizontal scrollbar in the size changed handler as well as
25665         the expose handler.
25666
25667 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
25668
25669         * DrawItemState.cs: fixes wrong enum values
25670
25671 2004-12-01  Jackson Harper  <jackson@ximian.com>
25672
25673         * TreeView.cs: Resize the hbar as well as the vbar on resize.
25674
25675 2004-12-01  Jackson Harper  <jackson@ximian.com>
25676
25677         * NodeLabelEditEventArgs.cs:
25678         * NodeLabelEditEventHandler.cs:
25679         * OpenTreeNodeEnumerator.cs:
25680         * TreeNode.cs:
25681         * TreeNodeCollection.cs:
25682         * TreeView.cs:
25683         * TreeViewAction.cs:
25684         * TreeViewCancelEventArgs.cs:
25685         * TreeViewCancelEventHandler.cs:
25686         * TreeViewEventArgs.cs:
25687         * TreeViewEventHandler.cs: Initial implementation.
25688
25689 2004-12-01  Ravindra <rkumar@novell.com>
25690
25691         * ListView.cs (CalculateListView): Fixed scrolling related
25692         calculations. Also, removed some debug statements from other
25693         places.
25694         * ListViewItem.cs: Changed access to 'selected' instance variable
25695         from private to internal.
25696         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
25697
25698 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
25699
25700         * ThemeWin32Classic.cs: remove cache of brush and pens for
25701         specific controls and use the global system, fixes scrollbutton
25702         bugs (for small sizes, disabled, etc)
25703         
25704         * ScrollBar.cs: does not show the thumb for very small controls
25705         (as MS) and allow smaller buttons that the regular size
25706
25707 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
25708
25709         * UpDownBase.cs: Add abstract methods for the interface.
25710         Add new virtual methods (need to be hooked up to TextEntry when it
25711         exists).
25712         Add override methods for most features.
25713         Computes the size, forces the height of the text entry.
25714
25715         * NumericUpDown.cs: Put here the current testing code.
25716
25717         * Set eol-style property on all files that do not have mixed line
25718         endings, to minimize the future problems.  There are still a few
25719         files with mixed endings, and someone should choose whether they
25720         want to move it or not.
25721
25722 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
25723
25724         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
25725         System.Colors
25726         
25727 2004-11-30  Ravindra <rkumar@novell.com>
25728
25729         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
25730         drawing and replaced use of SystemColors by theme colors.
25731         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
25732         * ListView.cs (ListViewItemCollection.Add): Throw exception when
25733         same ListViewItem is being added more than once.
25734
25735 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
25736
25737         * MonthCalendar.cs:
25738           - ControlStyles love to make the control not flicker
25739           
25740 2004-11-30  Peter Bartok  <pbartok@novell.com>
25741
25742         * CharacterCasing.cs: Added
25743
25744 2004-11-29  Peter Bartok  <pbartok@novell.com>
25745
25746         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
25747           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
25748           I am removing these files as they conflict with already completed
25749           work. While it is fantastic to get contributions to MWF, I
25750           respectfully ask that everyone please coordinate their contributions
25751           through mono-winforms-list or #mono-winforms at this time. We're
25752           explicitly avoiding stubbing and don't want controls that don't have
25753           their basic functionality implemented in svn. Please also see
25754           http://www.mono-project.com/contributing/winforms.html
25755
25756
25757 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
25758
25759         * Application.cs (ModalRun): Don't hang after exit.
25760
25761         * Theme.cs: New TreeViewDefaultSize property.
25762
25763         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
25764         with less hardcoded SystemColors constant.
25765         Implemented TreeViewDefaultSize.
25766
25767         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
25768         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
25769
25770
25771 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
25772
25773         * MonthCalendar.cs:
25774           - Fix NextMonthDate and PrevMonthDate click moving calendar
25775
25776 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
25777
25778         * MonthCalendar.cs:
25779           - Fix usage of ScrollChange Property when scrolling months
25780
25781 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
25782
25783         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
25784          - Fixes menu destroying
25785          - Support adding and removing items on already created menus
25786
25787 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
25788
25789         * MonthCalendar.cs:
25790           - Re-worked all bolded dates handling to match win32
25791         * ThemeWin32Classic.cs:
25792           - Fixed rendering with bolded dates
25793
25794 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
25795
25796         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
25797         - Horizontal scroolbar
25798         - Multicolumn
25799         - Fixes
25800
25801
25802 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
25803
25804         * MonthCalendar.cs:
25805           - Fix Usage of MaxSelectionCount from SelectionRange
25806           - Fixed Shift + Cursor Selection
25807           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
25808           - Fixed normal cursor selection to be compat with win32
25809           - Fixed Shift + Mouse Click selection
25810
25811 2004-11-24  Peter Bartok <pbartok@novell.com>
25812
25813         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
25814         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
25815         * XplatUIX11.cs:
25816           - CreatedKeyBoardMsg now updates keystate with Alt key
25817           - Added workaround for timer crash to CheckTimers, Jackson will
25818             develop a proper fix and check in later
25819           - Implemented DispatchMessage
25820           - Removed calling the native window proc from GetMessage (call
25821             now moved to DispatchMessage)
25822
25823         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
25824           the keydata (Fixes bug #69831)
25825
25826         * XplatUIWin32.cs:
25827           - (DispatchMessage): Switched to return IntPtr
25828           - Added DllImport for SetFocus
25829
25830 2004-11-24  Ravindra <rkumar@novell.com>
25831
25832         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
25833         background drawing.
25834         * ListViewItem.cs: Fixed various properties, calculations
25835         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
25836         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
25837         and some internal properties. Fixed MouseDown handler and Paint
25838         method.
25839
25840 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
25841
25842         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
25843
25844 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
25845
25846         * ContainerControl.cs: correct accidental check in of local changes
25847
25848 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
25849
25850         * ThemeWin32Classic.cs:
25851                 - Fixed Drawing Last month in grid (sometimes not showing)
25852         * MonthCalendar.cs:
25853                 - Fixed title width calculation bug (makeing title small)
25854
25855 2004-11-23  Peter Bartok <pbartok@novell.com>
25856
25857         * XplatUIX11.cs:
25858           - Added generation of WM_MOUSEHOVER event
25859           - Added missing assignment of async_method atom
25860           - Fixed WM_ERASEBKGND; now only redraws the exposed area
25861
25862 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
25863
25864         * ThemeWin32Classic.cs:
25865                 - Fixed Drawing of today circle when showtodaycircle not set
25866                 - fixed drawing of first and last month in the grid (gay dates)
25867         * MonthCalendar.cs:
25868                 - Fixed Drawing of today circle
25869                 - Fixed drawing of grady dates
25870                 - Fixed HitTest for today link when ShowToday set to false
25871                 - Fixed DefaultSize to obey ShowToday
25872
25873 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
25874
25875         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
25876         * System.Windows.Forms/Theme.cs
25877         * MonthCalendar.cs: added for MonthCalendar
25878         * SelectionRange.cs: added for MonthCalendar
25879         * Day.cs: added for MonthCalendar: added for MonthCalendar
25880         * DateRangeEventArgs.cs: added for MonthCalendar
25881         * DateRangeEventHandler.cs: added for MonthCalendar
25882
25883 2004-11-22  Ravindra <rkumar@novell.com>
25884
25885         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
25886         property.
25887
25888 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
25889
25890         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
25891         event handler.
25892         
25893         * NumericUpDown.cs: Added new implementation.
25894         * UpDownBase.cs: Added new implementation.
25895
25896         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
25897         implementations.
25898         
25899         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
25900         implementations.
25901
25902         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
25903         methods.
25904
25905 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
25906
25907         * Timer.cs  (Dispose): Should call the base dispose when
25908         overriding.
25909
25910 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
25911
25912         * ScrollBar.cs: updates thumb position when max, min or increment
25913         is changed
25914
25915 2004-11-21  Ravindra <rkumar@novell.com>
25916
25917         * ListView.cs: Implemented item selection, activation and
25918         column header style. Fixed properties to do a redraw, if
25919         required. Added support for MouseHover, DoubleClick, KeyDown
25920         and KeyUp event handling and some minor fixes.
25921         * ListViewItem.cs: Fixed constructor.
25922         * ThemeWin32Classic.cs: Improved drawing for ListView.
25923
25924 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
25925
25926         * ThemeWin32Classic.cs: initial listbox drawing code
25927         * DrawMode.cs: new enumerator
25928         * ListControl.cs: stubbed class
25929         * ListBox.cs: initial implementation
25930         * Theme.cs: new methods definitions
25931         * SelectionMode.cs: new enumerator
25932
25933 2004-11-17  Peter Bartok  <pbartok@novell.com>
25934
25935         * XplatUIWin32.cs: Added double-click events to the class style
25936         * Control.cs (WndProc):
25937           - Added handling of click-count to MouseDown/ MouseUp events.
25938           - Added handling of middle and right mouse buttons
25939           - Removed old debug code
25940
25941 2004-11-17  Jackson Harper  <jackson@ximian.com>
25942
25943         * XplatUIX11.cs: Use the new Mono.Unix namespace.
25944
25945 2004-11-17  Ravindra <rkumar@novell.com>
25946
25947         * ListView.cs: Added event handling for MouseMove/Up/Down.
25948         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
25949         * ThemeWin32Classic.cs: We need to clear the graphics context and
25950         draw column header in a proper state.
25951
25952
25953 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
25954
25955         *  Menu.cs: fixes signature
25956
25957 2004-11-16  Peter Bartok  <pbartok@novell.com>
25958
25959         * XplatUIX11.cs (GetMessage): Implemented generation of
25960           double click mouse messages
25961
25962 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
25963
25964         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
25965         not by menu
25966
25967 2004-11-11  Peter Bartok  <pbartok@novell.com>
25968
25969         * HandleData.cs: Added Visible property
25970         * XplatUIX11.cs (IsVisible): Now uses Visible property from
25971           HandleData
25972         * XplatUIX11.cs: Removed old debug leftovers
25973         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
25974         * Control.cs (WndProc): Removed old debug leftovers,
25975           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
25976           needed WM_SIZE handling
25977
25978 2004-11-11  Jackson Harper  <jackson@ximian.com>
25979
25980         * OwnerDrawPropertyBag.cs:
25981         * TreeViewImageIndexConverter.cs: Initial implementation
25982
25983 2004-11-10  Jackson Harper  <jackson@ximian.com>
25984
25985         * ThemeWin32Classic.cs:
25986         * TabControl.cs: instead of moving tabs by the slider pos just
25987         start drawing at the tab that is offset by the slider. This way
25988         scrolling always moves by exactly one tab.
25989
25990 2004-11-10  Jackson Harper  <jackson@ximian.com>
25991
25992         * TabControl.cs: You can only scroll left when the slider has
25993         already ben moved right.
25994         
25995 2004-11-10  Jackson Harper  <jackson@ximian.com>
25996
25997         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
25998         the clip area.
25999         
26000 2004-11-10  Jackson Harper  <jackson@ximian.com>
26001
26002         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
26003         clip area.
26004         
26005 2004-11-09  Jackson Harper  <jackson@ximian.com>
26006
26007         * TabControl.cs (CalcXPos): New helper method so we can determine
26008         the proper place to start drawing vertical tabs.
26009         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
26010         
26011 2004-11-09  Jackson Harper  <jackson@ximian.com>
26012
26013         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
26014         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
26015         and Bottom, left and right are illegal values for this and
26016         multiline is enabled when the alignment is set to left or right.
26017         (DrawTab): Each alignment block should draw the text itself now
26018         because Left requires special love. Also add rendering for Left
26019         aligned tabs.
26020         
26021 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
26022
26023         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
26024         does not destroy the windows, removes debugging messages
26025
26026 2004-11-09  jba  <jba-mono@optusnet.com.au>
26027
26028         * ThemeWin32Classic.cs
26029         (DrawButtonBase): Fix verticle text rect clipping in windows
26030         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26031         rendering and incorrect text rect clipping
26032         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
26033         rendering and incorrect text rect clipping
26034         
26035 2004-11-08  Jackson Harper  <jackson@ximian.com>
26036
26037         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
26038         bottom when they are bottom aligned so the bottoms of the tabs get
26039         displayed.
26040         * TabControl.cs (DropRow): Move rows up instead of down when the
26041         tab control is bottom aligned.
26042
26043 2004-11-08 13:59  pbartok
26044
26045         * XplatUIX11.cs:
26046           - Added handling for various window styles
26047           - Added handling for popup windows
26048           - Added SetTopmost handling
26049
26050 2004-11-08 13:55  pbartok
26051
26052         * XplatUIWin32.cs:
26053           - Added argument to SetTopmost method
26054           - Fixed broken ClientToScreen function
26055
26056 2004-11-08 13:53  pbartok
26057
26058         * XplatUIStructs.cs:
26059           - Added missing WS_EX styles
26060
26061 2004-11-08 13:53  pbartok
26062
26063         * XplatUI.cs, XplatUIDriver.cs:
26064           - Added argument to SetTopmost
26065
26066 2004-11-08 13:52  pbartok
26067
26068         * X11Structs.cs:
26069           - Added XSetWindowAttributes structure
26070           - Improved XWindowAttributes structure
26071           - Added SetWindowValuemask enum
26072           - Added window creation arguments enum
26073           - Added gravity enum
26074           - Added Motif hints structure
26075           - Added various Motif flags and enums
26076           - Added PropertyMode enum for property functions
26077
26078 2004-11-08 13:50  pbartok
26079
26080         * Form.cs:
26081           - Fixed arguments for updated SetTopmost method
26082
26083 2004-11-08 13:49  pbartok
26084
26085         * ToolTip.cs:
26086           - Fixed arguments for updated SetTopmost function
26087           - Fixed usage of PointToClient
26088
26089 2004-11-08 13:44  pbartok
26090
26091         * MenuAPI.cs:
26092           - Added Clipping of children and siblings
26093
26094 2004-11-08 13:41  pbartok
26095
26096         * MainMenu.cs:
26097           - Removed SetMenuBarWindow call. We do this in Form.cs
26098
26099 2004-11-08 13:40  jackson
26100
26101         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
26102           scrolling jimmi in the correct location with bottom aligned tabs
26103
26104 2004-11-08 13:36  pbartok
26105
26106         * ContainerControl.cs:
26107           - Implemented BindingContext
26108           - Implemented ParentForm
26109
26110 2004-11-08 12:46  jackson
26111
26112         * TabControl.cs: Put bottom rendered tabs in the right location
26113
26114 2004-11-08 07:15  jordi
26115
26116         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
26117           removes dead code
26118
26119 2004-11-05 17:30  jackson
26120
26121         * TabControl.cs: When selected tabs are expanded make sure they
26122           don't go beyond the edges of the tab control
26123
26124 2004-11-05 14:57  jackson
26125
26126         * TabControl.cs: Reset show_slider so if the control is resized to
26127           a size where it is no longer needed it's not displayed anymore
26128
26129 2004-11-05 13:16  jackson
26130
26131         * TabControl.cs: Make tab pages non visible when added to the
26132           control
26133
26134 2004-11-05 12:42  jackson
26135
26136         * TabControl.cs: Implement SizeMode.FillToRight
26137
26138 2004-11-05 12:16  jackson
26139
26140         * Control.cs: Do not call CreateHandle if the handle is already
26141           created
26142
26143 2004-11-05 11:46  jackson
26144
26145         * TabControl.cs: Remove superflous call to CalcTabRows
26146
26147 2004-11-05 09:07  jackson
26148
26149         * XplatUIX11.cs: Update for Mono.Posix changes
26150
26151 2004-11-05 07:00  ravindra
26152
26153         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
26154           scrolling.
26155
26156 2004-11-04 22:47  jba
26157
26158         * ThemeWin32Classic.cs:
26159           - Fix Button rendering for FlatStyle = Flat or Popup
26160           - Fix RadioButton and CheckBox rendering when Appearance = Button
26161             (normal and flatstyle).
26162           - Correct outer rectangle color when drawing focus rectangle
26163           - Adjust button bounds to be 1 px smaller when focused
26164           - Make button not draw sunken 3d border when pushed (windows compat)
26165           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
26166           - Offset the text in RadioButton and Checkbox when being rendered as
26167           a button.
26168           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
26169           radiobuttons
26170           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
26171           - Fixed disabled text rendering for normally rendered radiobuttons
26172
26173 2004-11-04 10:26  jackson
26174
26175         * TabControl.cs: Recalculate tab rows when resizing
26176
26177 2004-11-04 07:47  jordi
26178
26179         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
26180           collection completion, drawing issues, missing features
26181
26182 2004-11-04 05:03  ravindra
26183
26184         * ScrollBar.cs:
26185                 - We need to recalculate the Thumb area when
26186                 LargeChange/maximum/minimum values are changed.
26187           - We set the 'pos' in UpdatePos() method to minimum, if it's less
26188                 than minimum. This is required to handle the case if large_change is
26189                 more than max, and use LargeChange property instead of large_change
26190                 variable.
26191           - We return max+1 when large_change is more than max, like MS does.
26192
26193 2004-11-04 04:29  ravindra
26194
26195         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
26196                 - Changed default value signatures (prefixed all with ListView).
26197                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
26198                 ListView.
26199           - Fixed calculations for ListViewItem and implemented Clone()
26200           method.
26201
26202 2004-11-04 04:26  ravindra
26203
26204         * Theme.cs, ThemeWin32Classic.cs:
26205                 - Changed default ListView values signatures (prefixed all with
26206                 ListView).
26207           - Fixed default size values for VScrollBar and HScrollBar.
26208                 - Fixed DrawListViewItem method.
26209
26210 2004-11-04 04:05  ravindra
26211
26212         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
26213
26214 2004-11-04 04:04  ravindra
26215
26216         * ImageList.cs: Implemented the missing overload for Draw method.
26217
26218 2004-11-03 19:29  jackson
26219
26220         * TabControl.cs: Handle dropping rows on selection properly
26221
26222 2004-11-03 11:59  jackson
26223
26224         * TabControl.cs: remove debug code
26225
26226 2004-11-03 11:52  jackson
26227
26228         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
26229           the scrolly widgerywoo
26230
26231 2004-11-02 13:52  jackson
26232
26233         * TabControl.cs: Resize the tab pages and tabs when the tab control
26234           is resized
26235
26236 2004-11-02 13:40  jackson
26237
26238         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
26239           selected tab to the bottom
26240
26241 2004-11-02 13:39  jackson
26242
26243         * TabPage.cs: Store the tab pages row
26244
26245 2004-11-02 12:33  jordi
26246
26247         * MenuItem.cs: fixes handle creation
26248
26249 2004-11-02 11:42  jackson
26250
26251         * TabControl.cs: signature fix
26252
26253 2004-11-02 08:56  jackson
26254
26255         * TabControl.cs: Calculate whether the tab is on an edge properly.
26256           Remove top secret debugging code
26257
26258 2004-11-01 19:57  jackson
26259
26260         * TabControl.cs: Add click handling, and proper sizing
26261
26262 2004-11-01 19:47  jackson
26263
26264         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
26265           tab controls
26266
26267 2004-11-01 19:39  jackson
26268
26269         * TabPage.cs: add internal property to store the bounds of a tab
26270           page
26271
26272 2004-10-30 04:23  ravindra
26273
26274         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
26275           values.
26276
26277 2004-10-30 04:21  ravindra
26278
26279         * ListView.cs, ListViewItem.cs: Added support for scrolling and
26280           fixed calculations.
26281
26282 2004-10-30 03:06  pbartok
26283
26284         * XplatUIX11.cs:
26285           - Removed extension of DllImported libs
26286
26287 2004-10-29 09:55  jordi
26288
26289         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
26290           navigation, itemcollection completion, menu fixes
26291
26292 2004-10-27 22:58  pbartok
26293
26294         * XplatUIX11.cs:
26295           - Now throws a nice error message when no X display could be opened
26296
26297 2004-10-26 13:51  jordi
26298
26299         * ListView.cs: removes warning
26300
26301 2004-10-26 03:55  ravindra
26302
26303         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
26304           ThemeWin32Classic.cs: Some formatting for my last checkins.
26305
26306 2004-10-26 03:36  ravindra
26307
26308         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
26309           control and default values.
26310
26311 2004-10-26 03:35  ravindra
26312
26313         * Theme.cs: Added some default values for ListView control.
26314
26315 2004-10-26 03:33  ravindra
26316
26317         * ToolBar.cs: ToolBar should use the user specified button size, if
26318           there is any. Added a size_specified flag for the same.
26319
26320 2004-10-26 03:33  ravindra
26321
26322         * ColumnHeader.cs: Added some internal members and calculations for
26323           ColumnHeader.
26324
26325 2004-10-26 03:32  ravindra
26326
26327         * ListViewItem.cs: Calculations for ListViewItem.
26328
26329 2004-10-26 03:31  ravindra
26330
26331         * ListView.cs: Added some internal members and calculations for
26332           ListView.
26333
26334 2004-10-22 13:31  jordi
26335
26336         * MenuAPI.cs: speedup menus drawing
26337
26338 2004-10-22 13:16  jackson
26339
26340         * XplatUIX11.cs: Make sure to update exposed regions when adding an
26341           expose event
26342
26343 2004-10-22 11:49  jackson
26344
26345         * Control.cs: oops
26346
26347 2004-10-22 11:41  jackson
26348
26349         * Control.cs: Check to see if the window should have its background
26350           repainted by X when drawing.
26351
26352 2004-10-22 11:31  jackson
26353
26354         * XplatUIX11.cs: When invalidating areas only use XClearArea if
26355           clear is true, this way we do not get flicker from X repainting the
26356           background
26357
26358 2004-10-22 11:28  jackson
26359
26360         * XEventQueue.cs: Queue properly
26361
26362 2004-10-21 09:38  jackson
26363
26364         * XEventQueue.cs: Fix access modifier
26365
26366 2004-10-21 09:36  jackson
26367
26368         * XEventQueue.cs: Don't loose messages
26369
26370 2004-10-21 09:22  jackson
26371
26372         * XEventQueue.cs: Don't loose messages
26373
26374 2004-10-20 04:15  jordi
26375
26376         * BootMode.cs: enum need it by SystemInfo
26377
26378 2004-10-19 21:58  pbartok
26379
26380         * XplatUIWin32.cs:
26381           - Small sanity check
26382
26383 2004-10-19 21:56  pbartok
26384
26385         * Form.cs:
26386           - Added private FormParentWindow class which acts as the container
26387             for our form and as the non-client area where menus are drawn
26388           - Added/Moved required tie-ins to Jordi's menus
26389           - Fixed/Implemented the FormStartPosition functionality
26390
26391 2004-10-19 21:52  pbartok
26392
26393         * Control.cs:
26394           - Removed unneeded locals
26395           - Added code to all size and location properties to understand and
26396             deal with the parent container of Form
26397
26398 2004-10-19 21:33  pbartok
26399
26400         * Application.cs:
26401           - Fixed to deal with new Form subclasses for menus
26402
26403 2004-10-19 17:48  jackson
26404
26405         * XEventQueue.cs: commit correct version of file
26406
26407 2004-10-19 16:50  jackson
26408
26409         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
26410
26411 2004-10-19 16:15  jordi
26412
26413         * MenuAPI.cs: MenuBarCalcSize returns the height
26414
26415 2004-10-19 08:31  pbartok
26416
26417         * Control.cs:
26418           - Added missing call to PreProcessMessage before calling OnXXXKey
26419           methods
26420
26421 2004-10-19 00:04  ravindra
26422
26423         * ToolTip.cs: Fixed constructor.
26424
26425 2004-10-18 09:31  jordi
26426
26427         * MenuAPI.cs: menuitems in menubars do not have shortcuts
26428
26429 2004-10-18 09:26  jordi
26430
26431         * MenuItem.cs: fixes MenuItem class signature
26432
26433 2004-10-18 08:56  jordi
26434
26435         * MenuAPI.cs: prevents windows from showing in the taskbar
26436
26437 2004-10-18 00:28  ravindra
26438
26439         * ToolTip.cs: Suppressed a warning message.
26440
26441 2004-10-18 00:27  ravindra
26442
26443         * Control.cs: Default value of visible property must be true.
26444
26445 2004-10-17 23:19  pbartok
26446
26447         * ToolTip.cs:
26448           - Complete implementation
26449
26450 2004-10-17 23:19  pbartok
26451
26452         * XplatUIX11.cs:
26453           - Added EnableWindow method
26454           - Added SetModal stub
26455           - Added generation of WM_ACTIVATE message (still needs testing)
26456           - Added SetTopMost stub
26457           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
26458
26459 2004-10-17 23:17  pbartok
26460
26461         * XplatUIWin32.cs:
26462           - Removed VirtualKeys to XplatUIStructs
26463           - Implemented SetTopMost method
26464           - Implemented EnableWindow method
26465           - Bugfix in ScreenToClient()
26466           - Bugfixes in ClientToScreen()
26467
26468 2004-10-17 22:51  pbartok
26469
26470         * XplatUIStructs.cs:
26471           - Added WS_EX styles to WindowStyles enumeration
26472
26473 2004-10-17 22:50  pbartok
26474
26475         * XplatUI.cs, XplatUIDriver.cs:
26476           - Added method for enabling/disabling windows
26477           - Added method for setting window modality
26478           - Added method for setting topmost window
26479
26480 2004-10-17 22:49  pbartok
26481
26482         * ThemeWin32Classic.cs:
26483           - Added ToolTip drawing code
26484
26485 2004-10-17 22:49  pbartok
26486
26487         * Theme.cs:
26488           - Added ToolTip abstracts
26489
26490 2004-10-17 22:47  pbartok
26491
26492         * Form.cs:
26493           - Fixed Form.ControlCollection to handle owner relations
26494           - Added Owner/OwnedForms handling
26495           - Implemented Z-Ordering for owned forms
26496           - Removed unneeded private overload of ShowDialog
26497           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
26498             so I hope)
26499           - Fixed Close(), had wrong default
26500           - Added firing of OnLoad event
26501           - Added some commented out debug code for Ownership handling
26502
26503 2004-10-17 22:16  pbartok
26504
26505         * Control.cs:
26506           - Fixed/implemented flat list of controls
26507
26508 2004-10-17 22:14  pbartok
26509
26510         * Application.cs:
26511           - Added code to simulate modal dialogs on Win32
26512
26513 2004-10-17 16:11  jordi
26514
26515         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
26516           mouse event
26517
26518 2004-10-17 13:39  jordi
26519
26520         * MenuAPI.cs: menu drawing fixes
26521
26522 2004-10-15 09:10  ravindra
26523
26524         * StructFormat.cs: General Enum.
26525
26526 2004-10-15 09:09  ravindra
26527
26528         * SizeGripStyle.cs: Enum for Form.
26529
26530 2004-10-15 09:08  ravindra
26531
26532         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
26533           in Theme for ListView.
26534
26535 2004-10-15 09:06  ravindra
26536
26537         * ColumnHeader.cs: Flushing some formatting changes.
26538
26539 2004-10-15 09:05  ravindra
26540
26541         * ListViewItem.cs: Implemented GetBounds method and fixed coding
26542           style.
26543
26544 2004-10-15 09:03  ravindra
26545
26546         * ListView.cs: Implemented Paint method and fixed coding style.
26547
26548 2004-10-15 07:34  jordi
26549
26550         * MenuAPI.cs: fix for X11
26551
26552 2004-10-15 07:32  ravindra
26553
26554         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
26555                 - Renamed Paint() method to Draw() for clarity. Also, moved
26556                 DrawImage() to OnPaint().
26557
26558 2004-10-15 07:25  ravindra
26559
26560         * CheckBox.cs, RadioButton.cs:
26561                 - Removed Redraw (), we get it from ButtonBase.
26562                 - Implemented Paint (), to do class specific painting.
26563
26564 2004-10-15 07:16  ravindra
26565
26566         * ButtonBase.cs:
26567                 - Redraw () is not virtual now.
26568                 - Added an internal virtual method Paint (), so that
26569                 derived classes can do their painting on their own.
26570                 - Modified OnPaint () to call Paint ().
26571
26572 2004-10-15 06:43  jordi
26573
26574         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
26575           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
26576
26577 2004-10-15 00:30  ravindra
26578
26579         * MessageBox.cs:
26580                 - MessageBox on windows does not have min/max buttons.
26581                 This change in CreateParams fixes this on Windows. We
26582                 still need to implement this windowstyle behavior in
26583                 our X11 driver.
26584
26585 2004-10-14 05:14  ravindra
26586
26587         * ToolBar.cs:
26588                 - Changed Redraw () to do a Refresh () always.
26589                 - Fixed the MouseMove event handling when mouse is pressed,
26590                 ie drag event handling.
26591                 - Replaced the usage of ToolBarButton.Pressed property to
26592                 ToolBarButton.pressed internal variable.
26593
26594 2004-10-14 05:10  ravindra
26595
26596         * ToolBarButton.cs:
26597                 - Added an internal member 'inside' to handle mouse move
26598                 with mouse pressed ie mouse drag event.
26599                 - Changed 'Pressed' property to return true only when
26600                 'inside' and 'pressed' are both true.
26601                 - Some coding style love.
26602
26603 2004-10-14 00:17  ravindra
26604
26605         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
26606           public method.
26607
26608 2004-10-14 00:15  ravindra
26609
26610         * ButtonBase.cs: Redraw () related improvements.
26611
26612 2004-10-14 00:14  ravindra
26613
26614         * MessageBox.cs: Moved InitFormSize () out of Paint method and
26615           removed unnecessary calls to Button.Show () method.
26616
26617 2004-10-13 17:50  pbartok
26618
26619         * XplatUIX11.cs:
26620           - Formatting fix
26621           - Removed destroying of window until we solve the problem of X
26622             destroying the window before us on shutdown
26623
26624 2004-10-13 16:32  pbartok
26625
26626         * ButtonBase.cs:
26627           - Now Redraws on MouseUp for FlatStyle Flat and Popup
26628
26629 2004-10-13 14:18  pbartok
26630
26631         * XplatUIX11.cs:
26632           - Added code to destroy the X window
26633
26634 2004-10-13 14:18  pbartok
26635
26636         * XplatUIWin32.cs:
26637           - Added code to destroy a window
26638
26639 2004-10-13 14:12  pbartok
26640
26641         * ButtonBase.cs:
26642           - Added the Redraw on Resize that got dropped in the last rev
26643
26644 2004-10-13 09:06  pbartok
26645
26646         * ThemeWin32Classic.cs:
26647           - Path from John BouAntoun:
26648             * Fix check rendering (centre correctly for normal style, offset
26649               correctly for FlatStyle).
26650             * Fix border color usage (use backcolor) for FlatStyle.Popup
26651             * Use checkbox.Capture instead of checkbox.is_pressed when
26652               rendering flatstyle states.
26653
26654 2004-10-12 21:48  pbartok
26655
26656         * ThemeWin32Classic.cs:
26657           - Removed all occurences of SystemColors and replaced them with the
26658             matching theme color
26659
26660 2004-10-12 21:41  pbartok
26661
26662         * ThemeWin32Classic.cs:
26663           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
26664             him using the function for flatstyle drawing
26665           - Changed functions to use the new version of CPDrawBorder3D
26666
26667 2004-10-12 21:15  pbartok
26668
26669         * ControlPaint.cs:
26670           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
26671             match MS documentation. They need to return defined colors if the
26672             passed color matches the configured control color. Thanks to John
26673             BouAntoun for pointing this out.
26674
26675 2004-10-12 20:57  pbartok
26676
26677         * Control.cs:
26678           - Fix from John BouAntoun: Raise ForeColorChanged event when text
26679             color is changed
26680
26681 2004-10-12 20:46  pbartok
26682
26683         * CheckBox.cs:
26684           - Fix from John BouAntoun: Now properly sets the Appearance property
26685
26686 2004-10-12 20:45  pbartok
26687
26688         * ThemeWin32Classic.cs:
26689           - Fixes from John BouAntoun: now handles forecolors and backcolors
26690             for flatstyle rendered controls much better; It also fixes normal
26691             checkbox rendering when pushed or disabled.
26692
26693 2004-10-08 02:50  jordi
26694
26695         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
26696           work
26697
26698 2004-10-07 08:56  jordi
26699
26700         * ThemeWin32Classic.cs: Removes deletion of cached brushes
26701
26702 2004-10-06 03:59  jordi
26703
26704         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
26705           XplatUIWin32.cs: removes warnings from compilation
26706
26707 2004-10-05 12:23  jackson
26708
26709         * RadioButton.cs: Fix ctor
26710
26711 2004-10-05 11:10  pbartok
26712
26713         * MessageBox.cs:
26714           - Partial implementation by Benjamin Dasnois
26715
26716 2004-10-05 10:15  jackson
26717
26718         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
26719           by John BouAntoun
26720
26721 2004-10-05 03:07  ravindra
26722
26723         * ToolBar.cs:
26724                 - Removed a private method, Draw ().
26725                 - Fixed the ButtonDropDown event handling.
26726                 - Fixed MouseMove event handling.
26727
26728 2004-10-05 03:04  ravindra
26729
26730         * ThemeWin32Classic.cs:
26731                 - Added DrawListView method and ListViewDefaultSize property.
26732                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
26733                 - Changed DOS style CRLF to Unix format (dos2unix).
26734
26735 2004-10-05 03:03  ravindra
26736
26737         * Theme.cs:
26738                 - Added DrawListView method and ListViewDefaultSize property.
26739
26740 2004-10-05 02:42  ravindra
26741
26742         * ToolBarButton.cs: Added an internal member dd_pressed to handle
26743           clicks on DropDown arrow.
26744
26745 2004-10-04 22:56  jackson
26746
26747         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
26748           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
26749           Control handle the buffers, derived classes should not have to
26750           CreateBuffers themselves.
26751
26752 2004-10-04 21:20  jackson
26753
26754         * StatusBar.cs: The control handles resizing the buffers now.
26755
26756 2004-10-04 21:18  jackson
26757
26758         * Control.cs: When resizing the buffers should be invalidated. This
26759           should be handled in Control not in derived classes.
26760
26761 2004-10-04 14:45  jackson
26762
26763         * TabPage.cs: oops
26764
26765 2004-10-04 02:14  pbartok
26766
26767         * LeftRightAlignment.cs:
26768           - Initial check-in
26769
26770 2004-10-04 01:09  jordi
26771
26772         * ThemeWin32Classic.cs: fixes right button position causing right
26773           button not showing on horizontal scrollbars
26774
26775 2004-10-02 13:12  pbartok
26776
26777         * XplatUIX11.cs:
26778           - Simplified the Invalidate method by using an X call instead of
26779             generating the expose ourselves
26780           - Added an expose when the window background is changed
26781           - Implemented ClientToScreen method
26782
26783 2004-10-02 13:08  pbartok
26784
26785         * XplatUIWin32.cs:
26786           - Added Win32EnableWindow method (test for implementing modal
26787           dialogs)
26788           - Added ClientToScreen method and imports
26789
26790 2004-10-02 13:07  pbartok
26791
26792         * XplatUI.cs, XplatUIDriver.cs:
26793           - Added ClientToScreen coordinate translation method
26794
26795 2004-10-02 13:06  pbartok
26796
26797         * KeyPressEventArgs.cs:
26798           - Fixed access level for constructor
26799
26800 2004-10-02 13:06  pbartok
26801
26802         * NativeWindow.cs:
26803           - Changed access level for the window_collection hash table
26804
26805 2004-10-02 13:05  pbartok
26806
26807         * Form.cs:
26808           - Added KeyPreview property
26809           - Added Menu property (still incomplete, pending Jordi's menu work)
26810           - Implemented ProcessCmdKey
26811           - Implemented ProcessDialogKey
26812           - Implemented ProcessKeyPreview
26813
26814 2004-10-02 13:02  pbartok
26815
26816         * Control.cs:
26817           - Added private method to get the Control object from the window
26818           handle
26819           - Implemented ContextMenu property
26820           - Implemented PointToScreen
26821           - Implemented PreProcessMessage
26822           - Implemented IsInputChar
26823           - Implemented IsInputKey
26824           - Implemented ProcessCmdKey
26825           - Completed ProcessKeyEventArgs
26826           - Fixed message loop to call the proper chain of functions on key
26827           events
26828           - Implemented ProcessDialogChar
26829           - Implemented ProcessDialogKey
26830           - Implemented ProcessKeyMessage
26831           - Implemented ProcessKeyPreview
26832           - Added RaiseDragEvent stub (MS internal method)
26833           - Added RaiseKeyEvent stub (MS internal method)
26834           - Added RaiseMouseEvent stub (MS Internal method)
26835           - Added RaisePaintEvent stub (MS Internal method)
26836           - Added ResetMouseEventArgs stub (MS Internal method)
26837           - Implemented RtlTranslateAlignment
26838           - Implemented RtlTranslateContent
26839           - Implemented RtlTranslateHorizontal
26840           - Implemented RtlTranslateLeftRight
26841           - Added generation of KeyPress event
26842
26843 2004-10-02 05:57  ravindra
26844
26845         * ListViewItem.cs: Added attributes.
26846
26847 2004-10-02 05:32  ravindra
26848
26849         * ListView.cs: Added attributes.
26850
26851 2004-10-01 11:53  jackson
26852
26853         * Form.cs: Implement the Close method so work on MessageBox can
26854           continue.
26855
26856 2004-09-30 14:06  pbartok
26857
26858         * XplatUIX11.cs:
26859           - Bug fixes
26860
26861 2004-09-30 11:34  jackson
26862
26863         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
26864
26865 2004-09-30 07:26  ravindra
26866
26867         * ListViewItemConverter.cs: Converter for ListViewItem.
26868
26869 2004-09-30 07:26  ravindra
26870
26871         * SortOrder.cs: Enum for ListView control.
26872
26873 2004-09-30 07:25  ravindra
26874
26875         * ColumnHeader.cs: Supporting class for ListView control.
26876
26877 2004-09-30 07:24  ravindra
26878
26879         * ListView.cs, ListViewItem.cs: Initial implementation.
26880
26881 2004-09-30 07:20  ravindra
26882
26883         * ItemActivation.cs: Enum for ListView Control.
26884
26885 2004-09-29 20:29  pbartok
26886
26887         * XplatUIX11.cs:
26888           - Added lookup of pixel value for background color; tries to get a
26889             color 'close' to the requested color, it avoids having to create a
26890             colormap.  Depending on the display this could mean the used color
26891             is slightly off the desired color. Might have to change it to a more
26892             resource intensive colormap approach, but it will work as a
26893           workaround to avoid red screens.
26894
26895 2004-09-29 14:27  jackson
26896
26897         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
26898
26899 2004-09-28 12:44  pbartok
26900
26901         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
26902           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
26903           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
26904           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
26905           TrackBar.cs, VScrollBar.cs:
26906           - Streamlined Theme interfaces:
26907             * Each DrawXXX method for a control now is passed the object for
26908               the control to be drawn in order to allow accessing any state the
26909               theme might require
26910
26911             * ControlPaint methods for the theme now have a CP prefix to avoid
26912               name clashes with the Draw methods for controls
26913
26914             * Every control now retrieves it's DefaultSize from the current
26915             theme
26916
26917 2004-09-28 12:17  jackson
26918
26919         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
26920           drawing
26921
26922 2004-09-24 14:57  jackson
26923
26924         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
26925           Gives us a nice little performance boost.
26926
26927 2004-09-24 12:02  jackson
26928
26929         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
26930           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
26931           Control and supporting classes. Initial checkin
26932
26933 2004-09-23 13:08  jackson
26934
26935         * Form.cs: Temp build fixage
26936
26937 2004-09-23 01:39  ravindra
26938
26939         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
26940           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
26941           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
26942           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
26943           EventHandlers needed by ListView Control.
26944
26945 2004-09-22 14:12  pbartok
26946
26947         * ScrollableControl.cs:
26948           - Implemented DockPadding property
26949           - Implemented AutoScroll property
26950           - Implemented AutoScrollMargin property
26951           - Implemented AutoScrollMinSize property
26952           - Implemented AutoScrollPosition property
26953           - Implemented DisplayRectangle property (still incomplete)
26954           - Implemented CreateParams property
26955           - Implemented HScroll property
26956           - Implemented VScroll property
26957           - Implemented OnVisibleChanged property
26958
26959 2004-09-22 14:09  pbartok
26960
26961         * Form.cs:
26962           - Added Form.ControllCollection class
26963           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
26964             RemoveOwnedForm (still incomplete, missing on-top and common
26965             minimize/maximize behaviour)
26966           - Added StartPosition property (still incomplete, does not use when
26967             creating the form)
26968           - Added ShowDialog() methods (still incomplete, missing forcing the
26969             dialog modal)
26970
26971 2004-09-22 14:05  pbartok
26972
26973         * Application.cs:
26974           - Added message loop for modal dialogs
26975
26976 2004-09-22 14:02  pbartok
26977
26978         * GroupBox.cs:
26979           - Fixed wrong types for events
26980
26981 2004-09-22 14:00  pbartok
26982
26983         * Shortcut.cs, FormWindowState.cs:
26984           - Fixed wrong values
26985
26986 2004-09-22 12:01  jackson
26987
26988         * Control.cs: Text is never null
26989
26990 2004-09-20 22:14  pbartok
26991
26992         * XplatUIWin32.cs:
26993           - Fixed accessibility level for Idle handler
26994
26995 2004-09-20 18:54  jackson
26996
26997         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
26998           XplatUIX11.cs: New message loop that uses poll so we don't get a
26999           busy loop
27000
27001 2004-09-17 10:43  pbartok
27002
27003         * ScrollBar.cs:
27004           - Fixed behaviour of arrow buttons. Now properly behaves like
27005             Buttons (and like Microsoft's scrollbar arrow buttons)
27006
27007 2004-09-17 10:14  pbartok
27008
27009         * ScrollBar.cs:
27010           - Added missing release of keyboard/mouse capture
27011
27012 2004-09-17 06:18  jordi
27013
27014         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
27015           Theme.cs: Very early menu support
27016
27017 2004-09-16 17:45  pbartok
27018
27019         * XplatUIWin32.cs:
27020           - Fixed sending a window to the front
27021           - Added overload for SetWindowPos to avoid casting
27022
27023 2004-09-16 17:44  pbartok
27024
27025         * Control.cs:
27026           - Added SendToBack and BringToFront methods
27027
27028 2004-09-16 07:00  ravindra
27029
27030         * Copyright: Added Novell URL.
27031
27032 2004-09-16 07:00  ravindra
27033
27034         * ToolBar.cs: Invalidate should be done before redrawing.
27035
27036 2004-09-15 21:19  ravindra
27037
27038         * ColumnHeaderStyle.cs: Enum for ListView Control.
27039
27040 2004-09-15 21:18  ravindra
27041
27042         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
27043           ListView Control.
27044
27045 2004-09-13 18:26  jackson
27046
27047         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
27048           properly
27049
27050 2004-09-13 18:13  jackson
27051
27052         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
27053           a second thread and post messages into the main threads message
27054           queue. This makes timing much more consistent. Both win2K and XP
27055           have a minimum timer value of 15 milliseconds, so we now do this
27056           too.
27057
27058 2004-09-13 15:18  pbartok
27059
27060         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27061           XplatUIX11.cs:
27062           - Added Z-Ordering methods
27063
27064 2004-09-13 10:56  pbartok
27065
27066         * Form.cs:
27067           - Fixed #region names
27068           - Moved properties and methods into their proper #regions
27069
27070 2004-09-13 10:51  pbartok
27071
27072         * Form.cs:
27073           - Added Accept and CancelButton properties
27074           - Added ProcessDialogKey() method
27075
27076 2004-09-13 08:18  pbartok
27077
27078         * IWindowTarget.cs:
27079           - Initial check-in
27080
27081 2004-09-10 21:50  pbartok
27082
27083         * Control.cs:
27084           - Added DoDragDrop() [incomplete]
27085           - Properly implemented 'Visible' handling
27086           - Added SetVisibleCore()
27087           - Implemented FindChildAtPoint()
27088           - Implemented GetContainerControl()
27089           - Implemented Hide()
27090
27091 2004-09-10 19:28  pbartok
27092
27093         * Control.cs:
27094           - Moved methods into their appropriate #regions
27095           - Reordered methods within regions alphabetically
27096
27097 2004-09-10 18:57  pbartok
27098
27099         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27100           - Added method to retrieve text from window
27101
27102 2004-09-10 18:56  pbartok
27103
27104         * Control.cs:
27105           - Moved some internal functions into the internal region
27106           - Implemented FontHeight
27107           - Implemented RenderRightToLeft
27108           - Implemented ResizeRedraw
27109           - Implemented ShowFocusCues
27110           - Implemented ShowKeyboardCues
27111           - Implemented FromChildHandle
27112           - Implemented FromHandle
27113           - Implemented IsMnemonic
27114           - Implemented ReflectMessage
27115           - All public and protected Static Methods are now complete
27116
27117 2004-09-10 16:54  pbartok
27118
27119         * Control.cs:
27120           - Implemented remaining missing public instance properties
27121           - Alphabetized some out of order properties
27122
27123 2004-09-10 05:51  ravindra
27124
27125         * PictureBox.cs: Added a check for null image.
27126
27127 2004-09-10 00:59  jordi
27128
27129         * GroupBox.cs: remove cvs tag
27130
27131 2004-09-09 05:25  ravindra
27132
27133         * ToolBar.cs: Make redraw accessible from ToolBarButton.
27134
27135 2004-09-09 05:23  ravindra
27136
27137         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
27138           parent redraw.
27139
27140 2004-09-09 02:28  pbartok
27141
27142         * ThemeWin32Classic.cs:
27143           - Improve disabled string look
27144
27145 2004-09-09 01:15  jordi
27146
27147         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
27148           args and handler
27149
27150 2004-09-08 23:56  ravindra
27151
27152         * ItemBoundsPortion.cs: It's enum, not a class!
27153
27154 2004-09-08 23:47  ravindra
27155
27156         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
27157           Enums for Form.
27158
27159 2004-09-08 21:13  ravindra
27160
27161         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
27162           ListView control.
27163
27164 2004-09-08 21:03  ravindra
27165
27166         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
27167           avoid crash.
27168
27169 2004-09-08 21:01  ravindra
27170
27171         * ScrollableControl.cs: Removed unreachable code.
27172
27173 2004-09-08 06:45  jordi
27174
27175         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
27176
27177 2004-09-08 01:00  jackson
27178
27179         * XplatUIX11.cs: Only run the timers when updating the message
27180           queue. This effectively gives X messages a higher priority then
27181           timer messages. Timers still need love though
27182
27183 2004-09-07 14:01  jackson
27184
27185         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
27186           this for us and the handle is no longer valid.
27187
27188 2004-09-07 13:59  jackson
27189
27190         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
27191           loop that manages to not crash. TODO: Add poll and cleanup timers
27192
27193 2004-09-07 11:12  jordi
27194
27195         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
27196
27197 2004-09-07 03:40  jordi
27198
27199         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
27200           fixes, methods, multiple links
27201
27202 2004-09-06 06:55  jordi
27203
27204         * Control.cs: Caches ClientRectangle rectangle value
27205
27206 2004-09-05 02:03  jordi
27207
27208         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
27209           certain situations
27210
27211 2004-09-04 11:10  jordi
27212
27213         * Label.cs: Refresh when font changed
27214
27215 2004-09-02 16:24  pbartok
27216
27217         * Control.cs:
27218           - Added sanity check to creation of double buffer bitmap
27219
27220 2004-09-02 16:24  pbartok
27221
27222         * ButtonBase.cs:
27223           - Fixed selection of text color
27224           - Fixed handling of resize event; now properly recreates double
27225             buffering bitmap
27226           - Added missing assignment of TextAlignment
27227           - Added proper default for TextAlignment
27228
27229 2004-09-02 14:26  pbartok
27230
27231         * RadioButton.cs:
27232           - Added missing RadioButton.RadioButtonAccessibleObject class
27233
27234 2004-09-02 14:26  pbartok
27235
27236         * Control.cs:
27237           - Added missing Control.ControlAccessibleObject class
27238           - Started to implement Select()ion mechanisms, still very incomplete
27239
27240 2004-09-02 14:25  pbartok
27241
27242         * AccessibleObject.cs:
27243           - Added missing methods
27244
27245 2004-09-02 14:23  pbartok
27246
27247         * AccessibleNavigation.cs, AccessibleSelection.cs:
27248           - Initial check-in
27249
27250 2004-09-02 10:32  jordi
27251
27252         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
27253           pool for pens, brushes, and hatchbruses
27254
27255 2004-09-01 15:30  jackson
27256
27257         * StatusBar.cs: Fix typo
27258
27259 2004-09-01 14:44  pbartok
27260
27261         * RadioButton.cs:
27262           - Fixed state
27263
27264 2004-09-01 14:39  pbartok
27265
27266         * Button.cs, RadioButton.cs:
27267           - Functional initial check-in
27268
27269 2004-09-01 14:01  pbartok
27270
27271         * CheckBox.cs:
27272           - Added missing default
27273           - Added missing region mark
27274
27275 2004-09-01 09:10  jordi
27276
27277         * Label.cs: fixes method signatures, new methods, events, fixes
27278           autosize
27279
27280 2004-09-01 07:19  jordi
27281
27282         * Control.cs: Init string variables with an empty object
27283
27284 2004-09-01 04:20  jordi
27285
27286         * Control.cs: fires OnFontChanged event
27287
27288 2004-08-31 20:07  pbartok
27289
27290         * ButtonBase.cs:
27291           - Enabled display of strings
27292
27293 2004-08-31 20:05  pbartok
27294
27295         * Form.cs:
27296           - Added (partial) implementation of DialogResult; rest needs to be
27297             implemented when the modal loop code is done
27298
27299 2004-08-31 19:55  pbartok
27300
27301         * CheckBox.cs:
27302           - Fixed to match the removal of the needs_redraw concept
27303
27304 2004-08-31 19:55  pbartok
27305
27306         * ButtonBase.cs:
27307           - Removed the rather odd split between 'needs redraw' and redrawing
27308           - Now handles the events that require regeneration (ambient
27309             properties and size)
27310
27311 2004-08-31 19:41  pbartok
27312
27313         * Control.cs:
27314           - Added firing of BackColorChanged event
27315           - Added TopLevelControl property
27316           - Fixed handling of WM_ERASEBKGRND message
27317
27318 2004-08-31 12:49  pbartok
27319
27320         * ButtonBase.cs:
27321           - Removed debug
27322           - Minor fixes
27323
27324 2004-08-31 12:48  pbartok
27325
27326         * CheckBox.cs:
27327           - Finished (famous last words)
27328
27329 2004-08-31 04:35  jordi
27330
27331         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
27332           scrolling bugs, adds new methods
27333
27334 2004-08-30 14:42  pbartok
27335
27336         * CheckBox.cs:
27337           - Implemented CheckBox drawing code
27338
27339 2004-08-30 14:42  pbartok
27340
27341         * ButtonBase.cs:
27342           - Made Redraw() and CheckRedraw() virtual
27343           - Improved mouse up/down/move logic to properly track buttons
27344
27345 2004-08-30 09:44  pbartok
27346
27347         * CheckBox.cs:
27348           - Updated to fix broken build. Not complete yet.
27349
27350 2004-08-30 09:28  pbartok
27351
27352         * CheckState.cs:
27353           - Initial checkin
27354
27355 2004-08-30 09:17  pbartok
27356
27357         * Appearance.cs:
27358           - Initial check-in
27359
27360 2004-08-27 16:12  ravindra
27361
27362         * ToolBarButton.cs: Added TypeConverter attribute.
27363
27364 2004-08-27 16:07  ravindra
27365
27366         * ImageIndexConverter.cs: Implemented.
27367
27368 2004-08-27 14:17  pbartok
27369
27370         * Control.cs:
27371           - Removed unneeded stack vars
27372           - First attempt to fix sizing issues when layout is suspended
27373
27374 2004-08-25 15:35  jordi
27375
27376         * ScrollBar.cs: more fixes to scrollbar
27377
27378 2004-08-25 14:04  ravindra
27379
27380         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
27381           Added the missing divider code and grip for ToolBar Control.
27382
27383 2004-08-25 13:20  pbartok
27384
27385         * Control.cs:
27386           - Control now properly passes the ambient background color to child
27387             controls
27388
27389 2004-08-25 13:20  jordi
27390
27391         * ScrollBar.cs: small bug fix regarding bar position
27392
27393 2004-08-25 12:33  pbartok
27394
27395         * Timer.cs:
27396           - Now only calls SetTimer or KillTimer if the enabled state has
27397           changed
27398
27399 2004-08-25 12:33  pbartok
27400
27401         * XplatUIWin32.cs:
27402           - Fixed timer handling, now seems to work
27403           - Improved error message for window creation
27404
27405 2004-08-25 12:32  pbartok
27406
27407         * Control.cs:
27408           - Fixed generation of MouseUp message
27409
27410 2004-08-25 12:29  jordi
27411
27412         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
27413           and fixes for progressbar
27414
27415 2004-08-24 18:43  ravindra
27416
27417         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
27418           in ToolBar control.
27419
27420 2004-08-24 17:15  pbartok
27421
27422         * Panel.cs:
27423           - Added #region
27424           - Added missing events
27425           - Alphabetized
27426
27427 2004-08-24 17:14  pbartok
27428
27429         * StatusBar.cs, PictureBox.cs:
27430           - Now uses Control's CreateParams
27431
27432 2004-08-24 16:36  pbartok
27433
27434         * XplatUIX11.cs:
27435           - Fixed background color handling
27436           - Fixed sending of enter/leave events on a grab
27437
27438 2004-08-24 16:35  pbartok
27439
27440         * X11Structs.cs:
27441           - Refined definitions for CrossingEvent
27442
27443 2004-08-24 12:37  jordi
27444
27445         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
27446           formmating, methods signature, and adds missing events
27447
27448 2004-08-24 12:24  jordi
27449
27450         * Control.cs: fire OnEnabledChanged event
27451
27452 2004-08-24 11:17  pbartok
27453
27454         * XplatUIWin32.cs:
27455           - Implemented SetTimer() and KillTimer()
27456
27457 2004-08-24 11:16  pbartok
27458
27459         * XplatUIX11.cs:
27460           - Now uses Remove instead of Add to kill the timer
27461
27462 2004-08-24 10:16  jackson
27463
27464         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
27465           picture boxes in the theme now. Draw picture box borders and obey
27466           sizing modes
27467
27468 2004-08-24 05:49  jackson
27469
27470         * Timer.cs: Remove top secret debugging code
27471
27472 2004-08-24 05:34  jackson
27473
27474         * PictureBox.cs: Temp hack to make picture boxes draw their full
27475           image
27476
27477 2004-08-24 05:29  jackson
27478
27479         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27480           XplatUIX11.cs: Move timers to the driver level. On X they are
27481           queued by the driver and checked on idle.
27482
27483 2004-08-24 01:07  jackson
27484
27485         * XplatUIX11.cs: Use a queue for async messages instead of passing
27486           them as ClientMessages since that was totally broken. Also simply
27487           check for events and return an idle message if none are found. This
27488           gives us an idle handler, and prevents deadlocking when no messages
27489           are in the queue.
27490
27491 2004-08-23 18:19  ravindra
27492
27493         * XplatUIWin32.cs: Removed the unwanted destructor.
27494
27495 2004-08-23 17:27  pbartok
27496
27497         * ButtonBase.cs:
27498           - Finishing touches. Works now, just needs some optimizations.
27499
27500 2004-08-23 16:53  jordi
27501
27502         * ScrollBar.cs: small fix
27503
27504 2004-08-23 16:45  pbartok
27505
27506         * Application.cs:
27507           - Removed debug output
27508           - Simplifications
27509
27510 2004-08-23 16:43  jordi
27511
27512         * ScrollBar.cs: [no log message]
27513
27514 2004-08-23 16:10  pbartok
27515
27516         * Form.cs:
27517           - Fixed handling of WM_CLOSE message
27518           - Removed debug output
27519
27520 2004-08-23 16:09  pbartok
27521
27522         * Application.cs:
27523           - Added handling of Idle event
27524           - Added handling of form closing
27525           - Fixed reporting of MessageLoop property
27526           - Removed some unneeded code, should provide a bit of a speedup
27527
27528 2004-08-23 15:22  pbartok
27529
27530         * Control.cs:
27531           - Added InitLayout() method
27532           - Added code to properly perform layout when Anchor or Dock property
27533             is changed
27534           - Changed 'interpretation' of ResumeLayout. MS seems to have a
27535             LAMESPEC, tried to do it in a way that makes sense
27536
27537 2004-08-23 14:10  jordi
27538
27539         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
27540           properties and methods
27541
27542 2004-08-23 13:55  pbartok
27543
27544         * Control.cs:
27545           - Properly fixed Jordi's last fix
27546           - Now uses Cursor's Position property instead of calling XplatUI
27547           directly
27548
27549 2004-08-23 13:44  jordi
27550
27551         * PaintEventHandler.cs: Adding missing attribute
27552
27553 2004-08-23 13:39  pbartok
27554
27555         * Cursor.cs:
27556           - Implemented Position property
27557
27558 2004-08-23 13:39  pbartok
27559
27560         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
27561           - Added method to move mouse cursor
27562
27563 2004-08-23 13:39  pbartok
27564
27565         * XplatUIX11.cs:
27566           - Fixed setting of background color
27567           - Added method to move mouse cursor
27568
27569 2004-08-23 13:16  jordi
27570
27571         * Control.cs: avoids null exception
27572
27573 2004-08-22 17:46  jackson
27574
27575         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
27576           PictureBox
27577
27578 2004-08-22 17:40  jackson
27579
27580         * XplatUIX11.cs: Add some missing locks
27581
27582 2004-08-22 15:10  pbartok
27583
27584         * Control.cs, Form.cs:
27585           - Removed OverlappedWindow style from Control, instead it's default
27586             now is child
27587           - Made form windows OverlappedWindow by default
27588
27589 2004-08-22 13:34  jackson
27590
27591         * ScrollBar.cs: Update the position through the Value property so
27592           the OnValueChanged event is raised.
27593
27594 2004-08-22 12:04  pbartok
27595
27596         * SWF.csproj:
27597           - Added Cursor.cs and UserControl.cs
27598
27599 2004-08-22 12:03  pbartok
27600
27601         * Cursor.cs:
27602           - Started implementation, not usable yet
27603
27604 2004-08-22 12:00  pbartok
27605
27606         * UserControl.cs:
27607           - Implemented UserControl (complete)
27608
27609 2004-08-21 19:20  ravindra
27610
27611         * ToolBar.cs: Correcting the formatting mess of VS.NET.
27612
27613 2004-08-21 18:49  ravindra
27614
27615         * ToolBar.cs: Probably this completes the missing attributes in
27616           toolbar control.
27617
27618 2004-08-21 18:03  ravindra
27619
27620         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
27621           Fixed toolbar control signatures.
27622
27623 2004-08-21 16:32  pbartok
27624
27625         * LinkLabel.cs:
27626           - Signature Fixes
27627
27628 2004-08-21 16:30  pbartok
27629
27630         * Label.cs:
27631           - Signature fixes
27632
27633 2004-08-21 16:19  pbartok
27634
27635         * Control.cs, Label.cs:
27636           - Signature fixes
27637
27638 2004-08-21 15:57  pbartok
27639
27640         * ButtonBase.cs:
27641           - Added loads of debug output for development
27642           - Fixed typo in method name
27643
27644 2004-08-21 15:52  pbartok
27645
27646         * ToolBarButtonClickEventArgs.cs:
27647           - Added missing base class
27648
27649 2004-08-21 14:53  pbartok
27650
27651         * Control.cs:
27652           - Updated to match new GrabWindow signature
27653
27654 2004-08-21 14:51  pbartok
27655
27656         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
27657           - Added method to get default display size
27658
27659 2004-08-21 14:23  pbartok
27660
27661         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
27662           - Added method to query current grab state
27663           - Added argument to allow confining a grab to a window
27664
27665 2004-08-21 14:22  pbartok
27666
27667         * Keys.cs:
27668           - Added [Flags] attribute so that modifiers can be used in bitwise
27669           ops
27670
27671 2004-08-21 14:21  pbartok
27672
27673         * TrackBar.cs, ScrollBar.cs:
27674           - Replaced direct XplatUI calls with their Control counterpart
27675
27676 2004-08-21 13:32  pbartok
27677
27678         * Control.cs:
27679           - Implemented Created property
27680
27681 2004-08-21 13:28  pbartok
27682
27683         * Control.cs:
27684           - Implemented ContainsFocus
27685
27686 2004-08-21 13:26  pbartok
27687
27688         * Control.cs:
27689           - Implemented CausesValidation
27690
27691 2004-08-21 13:21  pbartok
27692
27693         * Control.cs:
27694           - Implemented CanFocus
27695           - Implemented CanSelect
27696           - Implemented Capture
27697
27698 2004-08-21 12:35  pbartok
27699
27700         * XplatUIWin32.cs:
27701           - Fixed bug with Async message handling
27702           - Implemented getting the ModifierKeys
27703
27704 2004-08-21 12:32  jackson
27705
27706         * AsyncMethodResult.cs: Make sure we have the mutex before we
27707           release it. Fixes BeginInvoke on windows
27708
27709 2004-08-21 11:31  pbartok
27710
27711         * XplatUIWin32.cs, XplatUIX11.cs:
27712           - Drivers now return proper mouse state
27713
27714 2004-08-21 10:54  jackson
27715
27716         * Control.cs: Implement EndInvoke
27717
27718 2004-08-21 10:48  jackson
27719
27720         * Timer.cs: Remove unneeded finalizer
27721
27722 2004-08-20 19:52  ravindra
27723
27724         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
27725           in mouse event handling in the ToolBar control.
27726
27727 2004-08-20 19:50  ravindra
27728
27729         * ImageList.cs: Changed draw method to use the arguments passed in
27730           to draw the image.
27731
27732 2004-08-20 18:58  pbartok
27733
27734         * XplatUIStructs.cs:
27735           - Added private message for async communication
27736
27737 2004-08-20 17:38  ravindra
27738
27739         * Control.cs: Made RightToLeft property virtual and removed a
27740           Console.WriteLine.
27741
27742 2004-08-20 14:39  jordi
27743
27744         * ThemeGtk.cs: use style_attach
27745
27746 2004-08-20 14:39  pbartok
27747
27748         * XplatUIWin32.cs:
27749           - Added jackson's Async code from X11 to Win32
27750
27751 2004-08-20 14:09  pbartok
27752
27753         * SWF.csproj:
27754           - Added all new files
27755
27756 2004-08-20 14:09  pbartok
27757
27758         * Control.cs:
27759           - Added call to set window background color
27760
27761 2004-08-20 14:03  pbartok
27762
27763         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
27764           - Added method for setting the window background
27765
27766 2004-08-20 14:02  pbartok
27767
27768         * XplatUIWin32.cs:
27769           - Added method for setting the background color
27770           - Added handling for erasing the window background
27771
27772 2004-08-20 13:45  jordi
27773
27774         * TrackBar.cs: fixes timer, new properties and methods
27775
27776 2004-08-20 13:34  jackson
27777
27778         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
27779           correct thread
27780
27781 2004-08-20 13:22  jackson
27782
27783         * Timer.cs: Timer Tick events are now handed through Controls Async
27784           mechanism so the callbacks are executed in the same thread as X
27785
27786 2004-08-20 13:19  jackson
27787
27788         * XplatUIDriver.cs: Expose functionality to send async messages
27789           through the driver
27790
27791 2004-08-20 13:18  jackson
27792
27793         * Control.cs: Implement Begininvoke
27794
27795 2004-08-20 13:14  jackson
27796
27797         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
27798           messages through the driver
27799
27800 2004-08-20 13:12  jackson
27801
27802         * XplatUIX11.cs: Lock before all X operations. Also added Async
27803           method functionality through XSendEvent
27804
27805 2004-08-20 13:11  jackson
27806
27807         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
27808           This will screw up on 64 bit systems)
27809
27810 2004-08-20 13:10  jackson
27811
27812         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
27813           Async messages through X/Win32
27814
27815 2004-08-19 19:39  pbartok
27816
27817         * XplatUIX11.cs:
27818           - Updated code to match new HandleData.DeviceContext type
27819
27820 2004-08-19 19:38  pbartok
27821
27822         * HandleData.cs:
27823           - Made DeviceContext a generic object to allow usage from various
27824           drivers
27825           - Added support for queueing Windows messages
27826
27827 2004-08-19 19:37  pbartok
27828
27829         * XplatUIWin32.cs:
27830           - Added generation of MouseEnter, MouseLeave and MouseHover events
27831           - Added cleanup on EndPaint
27832
27833 2004-08-19 19:17  pbartok
27834
27835         * Control.cs:
27836           - Added handling of WM_MOUSEHOVER
27837           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
27838           code
27839
27840 2004-08-19 18:55  jordi
27841
27842         * ThemeGtk.cs: fixes button order
27843
27844 2004-08-19 18:12  jordi
27845
27846         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
27847
27848 2004-08-19 17:09  pbartok
27849
27850         * Control.cs:
27851           - Added Right property
27852           - Added RightToLeft property
27853
27854 2004-08-19 16:27  jordi
27855
27856         * ThemeGtk.cs: experimental GTK theme support
27857
27858 2004-08-19 16:26  jordi
27859
27860         * ITheme.cs, Theme.cs: move themes from an interface to a class
27861
27862 2004-08-19 16:25  jordi
27863
27864         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
27865           theme enhancaments
27866
27867 2004-08-19 16:04  pbartok
27868
27869         * XplatUIX11.cs:
27870           - Added colormap basics
27871           - Added a way to re-initialize with a different display handle
27872           - Fixed setting of the window background color
27873           - Added various X11 imports related to colors and colormaps
27874
27875 2004-08-19 15:51  pbartok
27876
27877         * X11Structs.cs:
27878           - Removed packing hints (Paolo suggested this a while back)
27879           - fixed colormap type
27880           - Added default Atom types
27881           - Added Screen and color structs and enums
27882
27883 2004-08-19 15:39  pbartok
27884
27885         * ImageList.cs:
27886           - Added missing Draw() method
27887           - Added missing RecreateHandle event
27888
27889 2004-08-19 15:30  pbartok
27890
27891         * Form.cs:
27892           - Added handling of WM_CLOSE
27893
27894 2004-08-18 13:16  jordi
27895
27896         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
27897           a table
27898
27899 2004-08-18 09:56  jordi
27900
27901         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
27902
27903 2004-08-17 15:31  ravindra
27904
27905         * SWF.csproj: Updated project.
27906
27907 2004-08-17 15:25  pbartok
27908
27909         * Control.cs:
27910           - Drawing improvement; don't call UpdateBounds if we are not visible
27911             (or have been minimized)
27912
27913 2004-08-17 15:24  pbartok
27914
27915         * XplatUIWin32.cs:
27916           - Finished IsVisible
27917           - Added Win32GetWindowPlacement
27918
27919 2004-08-17 15:08  jackson
27920
27921         * Panel.cs: Initial checkin of the Panel
27922
27923 2004-08-17 14:25  pbartok
27924
27925         * Control.cs:
27926           - Fixed broken handling of default window sizes
27927
27928 2004-08-17 13:29  jackson
27929
27930         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
27931           has a large startup time.
27932
27933 2004-08-17 10:25  jackson
27934
27935         * HandleData.cs: union areas properly
27936
27937 2004-08-17 10:12  jackson
27938
27939         * HandleData.cs: union areas properly
27940
27941 2004-08-16 20:00  ravindra
27942
27943         * ToolBar.cs, ToolBarButton.cs: Added attributes.
27944
27945 2004-08-16 18:48  ravindra
27946
27947         * ToolBar.cs: Added attributes.
27948
27949 2004-08-16 17:17  ravindra
27950
27951         * SWF.csproj: Updated project.
27952
27953 2004-08-16 17:16  jackson
27954
27955         * XplatUIX11.cs: Check for more expose events before sending a
27956           WM_PAINT so they can all be grouped together. This makes dragging a
27957           window across another window redraw in a sane way.
27958
27959 2004-08-16 15:47  pbartok
27960
27961         * Control.cs:
27962           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
27963             support OnMouseEnter/Leave()
27964           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
27965             exposure handling
27966
27967 2004-08-16 15:46  pbartok
27968
27969         * XplatUIStructs.cs, XplatUIX11.cs:
27970           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
27971           OnMouseEnter/Leave()
27972
27973 2004-08-16 15:34  jackson
27974
27975         * XplatUIX11.cs: Group multiple expose events in HandleData, make
27976           sure messages get the message field set to WM_NULL if they are not
27977           handled.
27978
27979 2004-08-16 15:24  jackson
27980
27981         * HandleData.cs: HandleData is used for storing message information
27982           for window handles
27983
27984 2004-08-15 17:23  ravindra
27985
27986         * ColorDepth.cs: Added attribute.
27987
27988 2004-08-15 17:23  ravindra
27989
27990         * SWF.csproj: Updated project for ToolBar Control.
27991
27992 2004-08-15 17:20  ravindra
27993
27994         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
27995           control and also dos2unix format.
27996
27997 2004-08-15 17:13  ravindra
27998
27999         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
28000           ToolBarButtonClickEventArgs.cs,
28001           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
28002           ToolBarTextAlign.cs: First Implementation of ToolBar control.
28003
28004 2004-08-15 15:31  pbartok
28005
28006         * ButtonBase.cs:
28007           - First (mostly) working version
28008
28009 2004-08-13 16:15  pbartok
28010
28011         * Control.cs:
28012           - Fixed Anchor default
28013
28014 2004-08-13 15:43  pbartok
28015
28016         * Control.cs:
28017           - Changed GetCursorPos signature
28018
28019 2004-08-13 15:42  pbartok
28020
28021         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
28022           - Changed signature for GetCursorPos
28023
28024 2004-08-13 15:25  pbartok
28025
28026         * XplatUIX11.cs:
28027           - Cleanup
28028           - Fixed resizing/exposure handling
28029
28030 2004-08-13 15:22  jordi
28031
28032         * ThemeWin32Classic.cs: removes redundant code and fixes issues
28033           with tickposition
28034
28035 2004-08-13 14:55  jordi
28036
28037         * TrackBar.cs: change from wndproc to events
28038
28039 2004-08-13 13:00  jordi
28040
28041         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28042           XplatUIX11.cs: implements PointToClient (ScreenToClient)
28043
28044 2004-08-13 12:53  pbartok
28045
28046         * XplatUIWin32.cs:
28047           - Changed GetWindowPos to also provide client area size
28048           - Fixed broken prototypes for several win32 functions
28049
28050 2004-08-13 12:53  pbartok
28051
28052         * XplatUI.cs, XplatUIDriver.cs:
28053           - Changed GetWindowPos to also provide client area size
28054
28055 2004-08-13 12:52  pbartok
28056
28057         * XplatUIX11.cs:
28058           - Added generation of WM_POSCHANGED
28059           - Changed GetWindowPos to also provide client area size
28060
28061 2004-08-13 12:52  pbartok
28062
28063         * Control.cs:
28064           - Added Dispose() and destructor
28065           - Fixed resizing and bounds calculation
28066           - Fixed Layout
28067           - Added memory savings for invisible windows
28068
28069 2004-08-13 12:46  jordi
28070
28071         * TrackBar.cs: adds timer and grap window
28072
28073 2004-08-13 10:25  jackson
28074
28075         * Timer.cs: SWF Timer
28076
28077 2004-08-12 16:59  pbartok
28078
28079         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28080           - Implemented method to get current mouse position
28081
28082 2004-08-12 14:29  jordi
28083
28084         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
28085           enhancement, fix mouse problems, highli thumb, etc
28086
28087 2004-08-12 13:31  pbartok
28088
28089         * Control.cs:
28090           - Fixed Anchoring bugs
28091
28092 2004-08-12 13:01  jackson
28093
28094         * StatusBar.cs: Don't forget things
28095
28096 2004-08-12 12:54  jackson
28097
28098         * ThemeWin32Classic.cs: Handle owner draw status bars
28099
28100 2004-08-12 12:54  jackson
28101
28102         * StatusBar.cs: Implement missing properties, events, and methods.
28103           Handle mouse clicking
28104
28105 2004-08-12 10:19  jackson
28106
28107         * StatusBarPanelClickEventArgs.cs,
28108           StatusBarPanelClickEventHandler.cs: Classes for handling status
28109           bar panel click events
28110
28111 2004-08-12 10:10  jackson
28112
28113         * Control.cs: Add missing properties
28114
28115 2004-08-12 09:46  pbartok
28116
28117         * BindingsManagerBase.cs:
28118           - Name changed to BindingManagerBase.cs
28119
28120 2004-08-12 09:25  jordi
28121
28122         * ScrollableControl.cs: calls ctrlbase instead of exeception
28123
28124 2004-08-11 16:28  pbartok
28125
28126         * InputLanguageChangingEventArgs.cs:
28127           - Never check in before compiling. Fixes the last check-in
28128
28129 2004-08-11 16:26  pbartok
28130
28131         * InputLanguageChangingEventArgs.cs:
28132           - More signature fixes
28133
28134 2004-08-11 16:20  pbartok
28135
28136         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
28137           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
28138           ImageListStreamer.cs, InputLanguage.cs,
28139           InputLanguageChangedEventArgs.cs,
28140           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
28141           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
28142           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
28143           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28144           - Signature fixes
28145
28146 2004-08-11 16:16  pbartok
28147
28148         * Application.cs:
28149           - Fixed Signature
28150           - Added .Net 1.1 method
28151
28152 2004-08-11 15:25  pbartok
28153
28154         * SWF.csproj:
28155           - Fixed BindingManagerBase.cs filename
28156
28157 2004-08-11 15:22  pbartok
28158
28159         * BindingManagerBase.cs:
28160           - Was checked in with wrong filename
28161
28162 2004-08-11 14:50  pbartok
28163
28164         * SWF.csproj:
28165           - Updated
28166
28167 2004-08-11 13:41  jordi
28168
28169         * XplatUIWin32.cs: Fixes ClientRect
28170
28171 2004-08-11 13:19  pbartok
28172
28173         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28174           XplatUIX11.cs:
28175           - We had SetWindowPos and MoveWindow to set window positions and
28176             size, removed MoveWindow. We have GetWindowPos, so it made sense to
28177             keep SetWindowPos as matching counterpart
28178           - Added some X11 sanity checking
28179
28180 2004-08-11 12:59  pbartok
28181
28182         * Control.cs:
28183           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
28184             (It seems that SetBounds is just a front for SetBoundsCore and
28185              SetBoundsCore updates the underlying window system and
28186              UpdateBounds is responsible for updating the variables associated
28187              with the Control and sending the events)
28188           - Major cleanup of Size handling; we now have two sizes, client_size
28189             and bounds. Bounds defines the window with decorations, client_size
28190             without them.
28191
28192 2004-08-11 12:55  pbartok
28193
28194         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28195           - Added method to calculate difference between decorated window and
28196             raw client area
28197
28198 2004-08-11 12:54  pbartok
28199
28200         * Label.cs:
28201           - Forcing redraw on resize
28202
28203 2004-08-11 11:43  pbartok
28204
28205         * ImageList.cs:
28206           - Removed disposing of the actual images when the list is disposed
28207
28208 2004-08-11 09:13  pbartok
28209
28210         * Control.cs:
28211           - Now properly reparents windows
28212
28213 2004-08-11 08:37  pbartok
28214
28215         * Control.cs:
28216           - Duh!
28217
28218 2004-08-11 07:47  pbartok
28219
28220         * Control.cs:
28221           - Rewrote the collection stuff. Might not be as fast now, not
28222             keeping the number of children around and accessible directly, but
28223             it's more straightforward
28224
28225 2004-08-11 07:44  pbartok
28226
28227         * AccessibleObject.cs:
28228           - Fixed to match ControlCollection rewrite
28229
28230 2004-08-11 07:43  pbartok
28231
28232         * ImageList.cs:
28233           - Added missing creation of the collection list
28234
28235 2004-08-10 20:08  jackson
28236
28237         * StatusBar.cs: Get the paint message from WndProc
28238
28239 2004-08-10 19:31  jackson
28240
28241         * ThemeWin32Classic.cs: Create Brushes as little as possible
28242
28243 2004-08-10 19:20  jackson
28244
28245         * UICues.cs: Add Flags attribute
28246
28247 2004-08-10 19:19  jackson
28248
28249         * StatusBarPanel.cs: Signature cleanup
28250
28251 2004-08-10 19:10  jackson
28252
28253         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
28254           Initial implementation of status bar item drawing
28255
28256 2004-08-10 17:27  jordi
28257
28258         * TrackBar.cs: add missing methods, properties, and restructure to
28259           hide extra ones
28260
28261 2004-08-10 16:24  jackson
28262
28263         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
28264           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
28265           attribute
28266
28267 2004-08-10 13:21  jordi
28268
28269         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
28270           enhancements and standarize on win colors defaults
28271
28272 2004-08-10 12:52  jackson
28273
28274         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
28275           ThemeWin32Classic.cs: Implement DrawItem functionality
28276
28277 2004-08-10 12:47  jordi
28278
28279         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
28280
28281 2004-08-10 12:32  jordi
28282
28283         * Control.cs: throw ontextchange event
28284
28285 2004-08-10 11:43  pbartok
28286
28287         * Control.cs:
28288           - Added more to the still unfinished Dock/Anchor layout code
28289
28290 2004-08-10 11:39  pbartok
28291
28292         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
28293           - Added GetWindowPos method
28294
28295 2004-08-10 11:36  pbartok
28296
28297         * XplatUIWin32.cs:
28298           - Implemented several methods
28299
28300 2004-08-10 09:47  jackson
28301
28302         * TrackBar.cs: Allow control to handle buffering
28303
28304 2004-08-10 09:41  jackson
28305
28306         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
28307
28308 2004-08-10 09:24  jackson
28309
28310         * Label.cs, LinkLabel.cs: Let Control handle buffering.
28311
28312 2004-08-10 09:09  jackson
28313
28314         * StatusBar.cs: Let Control handle all the buffering.
28315
28316 2004-08-10 09:08  jackson
28317
28318         * Control.cs: Control will now handle the buffering code, so each
28319           control does not have to implement this.
28320
28321 2004-08-10 08:34  jackson
28322
28323         * XplatUIDriver.cs: Use default colors from the theme
28324
28325 2004-08-09 17:12  pbartok
28326
28327         * ImageList.cs:
28328           - Fixed several bugs Ravindra pointed out
28329
28330 2004-08-09 16:11  pbartok
28331
28332         * Control.cs:
28333           - Added incomplete dock layout code
28334           - Added support for mouse wheel
28335
28336 2004-08-09 16:09  pbartok
28337
28338         * XplatUIX11.cs:
28339           - Added handling for middle and right mousebutton
28340           - Added handling for mouse wheel
28341           - Added handling for key state and mouse state and position
28342           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
28343           messages
28344
28345 2004-08-09 15:40  jackson
28346
28347         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
28348           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
28349           checkin
28350
28351 2004-08-09 15:37  jackson
28352
28353         * StatusBar.cs: Initial implementation of StatusBar
28354
28355 2004-08-09 15:36  jackson
28356
28357         * ITheme.cs: Add support for drawing status bar and getting status
28358           bar item sizes
28359
28360 2004-08-09 15:35  pbartok
28361
28362         * MouseButtons.cs:
28363           - Fixed values
28364
28365 2004-08-09 15:34  jackson
28366
28367         * ThemeWin32Classic.cs: Add support for drawing status bar and get
28368           status bar item sizes
28369
28370 2004-08-09 15:21  jackson
28371
28372         * ThemeWin32Classic.cs: Use known colors for default control
28373           colours
28374
28375 2004-08-09 15:12  jackson
28376
28377         * ThemeWin32Classic.cs: Make the default font static, it is static
28378           in control so this doesn't change functionality and creating fonts
28379           is sloooooow.
28380
28381 2004-08-09 14:56  pbartok
28382
28383         * X11Structs.cs:
28384           - Added GrabMode enum
28385
28386 2004-08-09 14:55  pbartok
28387
28388         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28389           - Removed Run method, was only required for initial development
28390
28391 2004-08-09 14:51  pbartok
28392
28393         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
28394           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
28395           capture
28396
28397 2004-08-09 13:48  pbartok
28398
28399         * XplatUIX11.cs:
28400           - Fixed default sizing for child windows
28401
28402 2004-08-09 12:56  pbartok
28403
28404         * XplatUIX11.cs:
28405           - Added generation of WM_DESTROY message
28406           - Added handling of window manager induced shutdown
28407
28408 2004-08-09 11:31  jackson
28409
28410         * ThemeWin32Classic.cs: New names for control properties
28411
28412 2004-08-09 11:25  jackson
28413
28414         * Control.cs: Use new color names
28415
28416 2004-08-09 11:02  jackson
28417
28418         * XplatUI.cs: Get default window properties from the theme
28419
28420 2004-08-09 11:01  jackson
28421
28422         * ITheme.cs: The theme engine now controls default window
28423           properties
28424
28425 2004-08-09 11:00  jackson
28426
28427         * ThemeWin32Classic.cs: Add default window color properties
28428
28429 2004-08-09 10:17  jackson
28430
28431         * ThemeWin32Classic.cs: Use correct default back color
28432
28433 2004-08-09 10:05  jackson
28434
28435         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
28436           the theme now.
28437
28438 2004-08-09 09:56  jackson
28439
28440         * XplatUI.cs: Remove defaults, these are handled by the theme now.
28441
28442 2004-08-09 09:54  jackson
28443
28444         * Control.cs: Get default properties from the theme.
28445
28446 2004-08-09 09:53  jackson
28447
28448         * ITheme.cs: Themes now handle default control properties
28449
28450 2004-08-09 09:53  jackson
28451
28452         * ThemeWin32Classic.cs: Themes now handle default control
28453           properties so coloring will be consistent
28454
28455 2004-08-08 16:54  jordi
28456
28457         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
28458
28459 2004-08-08 15:08  jordi
28460
28461         * XplatUIX11.cs: fixes keyboard crash
28462
28463 2004-08-08 13:47  jordi
28464
28465         * Label.cs: add cvs header info
28466
28467 2004-08-08 12:09  jackson
28468
28469         * ThemeWin32Classic.cs: Add pen_buttonface
28470
28471 2004-08-08 11:52  jordi
28472
28473         * Label.cs, LinkLabel.cs: [no log message]
28474
28475 2004-08-08 11:34  jordi
28476
28477         * ThemeWin32Classic.cs: Use Windows Standard Colours
28478
28479 2004-08-07 17:32  jordi
28480
28481         * TrackBar.cs: throw exceptions of invalid enums values
28482
28483 2004-08-07 17:31  jordi
28484
28485         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
28486           draw method name
28487
28488 2004-08-07 16:56  jackson
28489
28490         * HorizontalAlignment.cs: Initial checkin
28491
28492 2004-08-07 13:16  jordi
28493
28494         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
28495           methods
28496
28497 2004-08-07 13:05  jordi
28498
28499         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
28500           GetSysColor defines
28501
28502 2004-08-06 18:01  pbartok
28503
28504         * ThemeWin32Classic.cs:
28505           - Fixed some rounding issues with float/int
28506
28507 2004-08-06 18:00  jackson
28508
28509         * DockStyle.cs, AnchorStyles.cs:
28510
28511                   Add flags and serializable attributes.
28512
28513 2004-08-06 17:46  pbartok
28514
28515         * XplatUIX11.cs:
28516           - Implemented GetParent
28517
28518 2004-08-06 17:18  pbartok
28519
28520         * TrackBar.cs:
28521           - Fixed some rounding issues with float/int
28522
28523 2004-08-06 17:17  pbartok
28524
28525         * X11Structs.cs, XplatUIX11.cs:
28526           - Fixed Refresh and Invalidate
28527
28528 2004-08-06 15:30  pbartok
28529
28530         * Control.cs, X11Structs.cs, XplatUIX11.cs:
28531           - Fixed recursive loop when resizing
28532           - Improved/fixed redrawing on expose messages
28533
28534 2004-08-06 09:53  jordi
28535
28536         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
28537           keyboard navigation
28538
28539 2004-08-06 08:02  pbartok
28540
28541         * X11Structs.cs, XplatUIX11.cs:
28542           - Fixed reparenting
28543           - Fixed window border creation
28544
28545 2004-08-05 15:38  pbartok
28546
28547         * XplatUIX11.cs:
28548           - Attempted fix for reparenting problems
28549
28550 2004-08-04 15:14  pbartok
28551
28552         * Control.cs:
28553           - Fixed Invalidation bug (calculated wrong client area)
28554           - Added ClientSize setter
28555
28556 2004-08-04 15:13  pbartok
28557
28558         * Form.cs:
28559           - Added AutoScale properties
28560
28561 2004-08-04 15:13  pbartok
28562
28563         * SWF.csproj:
28564           - Added latest files
28565
28566 2004-08-04 14:11  pbartok
28567
28568         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
28569           XplatUIX11.cs:
28570           - Added Invalidate handling
28571
28572 2004-08-03 17:09  jordi
28573
28574         * XplatUIDriver.cs: fixes spelling mistake
28575
28576 2004-07-27 09:53  jordi
28577
28578         * TrackBar.cs: fixes trackbar events, def classname, methods
28579           signature
28580
28581 2004-07-27 09:29  jordi
28582
28583         * ScrollBar.cs: fixes scrollbar events
28584
28585 2004-07-27 04:38  jordi
28586
28587         * Control.cs: changes to be able to run winforms samples
28588
28589 2004-07-26 11:42  jordi
28590
28591         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
28592           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
28593
28594 2004-07-26 05:41  jordi
28595
28596         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
28597           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
28598           implementation
28599
28600 2004-07-22 09:22  jordi
28601
28602         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
28603           check link overlapping, implement events, and fixes
28604
28605 2004-07-21 10:28  jordi
28606
28607         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
28608
28609 2004-07-21 10:19  jordi
28610
28611         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
28612           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
28613           LinkLabelLinkClickedEventArgs.cs,
28614           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
28615           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
28616           implementation
28617
28618 2004-07-19 13:09  jordi
28619
28620         * Control.cs, Label.cs: label control re-written: added missing
28621           functionlity, events, and properties
28622
28623 2004-07-19 10:49  jordi
28624
28625         * Control.cs: fixes SetBounds logic
28626
28627 2004-07-19 01:29  jordi
28628
28629         * Control.cs: Call RefreshWindow only if the window has created
28630
28631 2004-07-15 14:05  pbartok
28632
28633         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
28634           - Implemented ImageList and ImageList.ImageCollection classes
28635           - Added ColorDepth enumeration
28636           - Updated SWF VS.Net project
28637
28638 2004-07-15 11:06  jordi
28639
28640         * XplatUIStructs.cs: added MsgButons enum
28641
28642 2004-07-15 11:03  jordi
28643
28644         * Control.cs: added basic mouse handeling events
28645
28646 2004-07-15 03:38  jordi
28647
28648         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
28649           Vertical TrackBar control implementation
28650
28651 2004-07-13 09:33  jordi
28652
28653         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
28654
28655 2004-07-13 09:31  jordi
28656
28657         * Control.cs, Form.cs: commit: new properties and fixes form size
28658           problems
28659
28660 2004-07-09 14:13  miguel
28661
28662         * ProgressBar.cs: Spelling
28663
28664 2004-07-09 11:25  pbartok
28665
28666         * ProgressBar.cs:
28667           - Removed usage of Rectangle for drawing. Miguel pointed out it's
28668           faster
28669
28670 2004-07-09 11:17  miguel
28671
28672         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
28673
28674                 * ProgressBar.cs: Fixed spelling for `block'
28675
28676                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
28677                 style guidelines.
28678
28679                 Avoid using the += on rect.X, that exposed a bug in the compiler.
28680
28681 2004-07-08 23:21  pbartok
28682
28683         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
28684           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
28685           BaseCollection.cs, Binding.cs, BindingContext.cs,
28686           BindingMemberInfo.cs, BindingsCollection.cs,
28687           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
28688           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
28689           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
28690           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
28691           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
28692           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
28693           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
28694           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
28695           FrameStyle.cs, GiveFeedbackEventArgs.cs,
28696           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
28697           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
28698           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
28699           InputLanguageChangedEventArgs.cs,
28700           InputLanguageChangedEventHandler.cs,
28701           InputLanguageChangingEventArgs.cs,
28702           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
28703           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
28704           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
28705           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
28706           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
28707           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
28708           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
28709           QueryAccessibilityHelpEventArgs.cs,
28710           QueryAccessibilityHelpEventHandler.cs,
28711           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
28712           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
28713           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
28714           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
28715           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
28716           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
28717           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
28718           XplatUIX11.cs, lang.cs:
28719           - Initial check-in
28720
28721