1 2007-03-19 Chris Toshok <toshok@ximian.com>
3 * Control.cs (WmPaint): don't make use of the Handle property
4 after an event is emitted, as the user could have closed the
5 form/destroyed the control. Store the Handle in a local variable
6 and make use of that. Fixes bug #80768.
8 2007-03-20 Everaldo Canuto <everaldo@simios.org>
10 * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
11 behavior in X11 environments.
13 2007-03-20 Everaldo Canuto <everaldo@simios.org>
15 * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
16 because on setter of topmost we dont call SetTopmost when handle is not
19 2007-03-20 Jackson Harper <jackson@ximian.com>
21 * TextControl.cs: Need to use SelectionLength () not
22 selection_length, since that var is reset to -1.
23 - Draw the caret when we don't have focus.
24 * TextBox.cs: The selectall actually doesn't occur until the first
26 * TextBoxBase.cs: Need to update the caret position after a
29 2007-03-20 Carlos Alberto Cortez <calberto.cortez@gmail.com>
31 * ListView.cs: Enable scrolling when using Tile view.
33 2007-03-20 Everaldo Canuto <everaldo@simios.org>
37 * XplatUIDriver.cs: Abstract SetOwner method created.
39 * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method
40 must be implemented and was masked as todo.
42 * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with
45 * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but
46 cheking for null owner to remove transient. The SetTopmost will be change
49 * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
50 SetTopmost. Now owned forms will work properly in win32 and X11.
52 2007-03-20 Rolf Bjarne Kvinge <RKvinge@novell.com>
54 * MdiWindowManager.cs: Update function name.
55 * Form.cs: After closing a form MdiParent is always null.
56 * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
57 better what it should do: necessary book-keeping when the form is
58 closed, it should not close the form itself.
60 2007-03-19 Andreia Gaita <avidigal@novell.com>
62 * ListViewItem.cs: Fix back and fore color. The subitems only
63 use their own colors if they are set, otherwise use the listview's
64 colors. Don't set default colors on constructor for subitem.
67 2007-03-19 Mike Kestner <mkestner@novell.com>
69 * ListView.cs : make box selection for Details views with
70 FullRowSelect conform to MS behavior when clicking in the "item"
71 column and clicking outside the defined columns.
72 [Fixes case 5-6 of #80374]
74 2007-03-19 Chris Toshok <toshok@ximian.com>
76 * ScrollableControl.cs: create the controls from within the ctor,
77 but don't actually add them until our handle is created. this
78 fixes a NRE possibility jpobst found (if you override OnLayout in
79 a subclass, it's called before your ctor). Also, add a
80 IsHandleCreated guard to UpdateSizeGripVisibility as well.
82 2007-03-19 Jackson Harper <jackson@ximian.com>
84 * TextBox.cs: Reduce the amount of invalidation we do.
85 * TextBoxBase.cs: Make shortcuts enabled true by default, at least
86 some of them are true by default on MS.
87 - Add some functions to reduce the amount of invalidates we do.
88 * TextControl.cs: Less invalidation.
90 2007-03-19 Chris Toshok <toshok@ximian.com>
92 [ Fixes #81773, and *seems* to fix #81553 as well ]
94 * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
95 AccumulateDestroyedHandles. We need to do it *after* we send
96 WM_DESTROY, as the user's code can access Control.Handle in
97 OnHandleDestroyed, and this shouldn't cause a recreation. Also,
98 move the WM_DESTROY/zombie handling to before the call to
99 XDestroyWindow. For some reason without this ordering
100 FormTest.RecreateHandle hangs. This ordering is semantically
101 equivalent, however, as XDestroyWindow is async anyway.
103 2007-03-19 Gert Driesen <drieseng@users.sourceforge.net>
105 * RichTextBox.cs: Reset backcolor_set after setting default.
107 2007-03-19 Chris Toshok <toshok@ximian.com>
109 * ScrollableControl.cs: the scroll position should not effect the
110 canvas size. commit patch from georgegiolfan@yahoo.com, which
111 fixes some really bizarre behavior on resizing. Fixes bug #80778.
113 2007-03-19 Chris Toshok <toshok@ximian.com>
115 * ScrollableControl.cs: clean this up a bit. create the
116 scrollbars in the ctor and just show/hide them as needed. Also,
117 make hscroll_visible/vscroll_visible internal to Recalculate, and
118 just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
119 everywhere else. This seems to fix the scrollbars appearing
120 beneath the content for me (i have *no* idea why that is,
123 2007-03-19 Jonathan Pobst <monkey@jpobst.com>
125 * ToolStrip.cs: Don't call DoAutoSize when we change Dock. Also, remove
126 some redundacy for stuff in Anchor and Dock that base will take care of.
129 2007-03-19 Mike Kestner <mkestner@novell.com>
131 * ListView.cs : make box selection for Details views without
132 FullRowSelect dependent on the text bounds, not item bounds.
133 * ListViewItem.cs : add an internal property to obtain the TextBounds
134 in Details view. [Fixes case 1-4 of #80374]
136 2007-03-19 Andreia Gaita <avidigal@novell.com>
138 * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
139 we're < 2.0. #78448 && #80316
141 2007-03-19 Jonathan Pobst <monkey@jpobst.com>
143 * FontDialog.cs: Don't crash when we switch to a new font that doesn't
144 have the same style available as the previously selected one. Also,
145 support FixedPitchOnly property. [Fixes bugs #80918, #80947]
147 2007-03-19 Jackson Harper <jackson@ximian.com>
149 * TextControl.cs: Add an alignment property that all new lines
151 - Make sure to use the align shift when calculating the line's X
153 * TextBox.cs: Set the alignment on the document as well as on all
156 2007-03-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
158 * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
159 throw if setting the parent of an mdichild that already has an
160 mdiparent. Update signature for 2.0 profile. ProductName: If there's no
161 AssemblyProductAttribute in the assembly, use the type's namespace (as
162 MS seems to do). CreateControl: don't create the handle if the control
163 is not visible (according to MS behaviour and spec). SetTopLevel: Only
164 create handle if the control is not a form. Change FocusInternal to
165 virtual so that it can be overriden by Form.
166 * TextBox.cs: Update call to FocusInternal.
167 * Form.cs: Always create the handle when calling Focus on a MdiChild. The
168 form is not a toplevel form when it's a mdi child, so update is_toplevel
169 accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
170 hasn't been created. Show (IWin32Window): Don't allow this overload for
171 toplevel windows. CenterToParent/CenterToScreen/Select: create the
172 handle as MS does. SetVisibleCore: if called on a MdiChild and the
173 parent isn't visible yet, save the visibility and restore it when the
174 parent is made visible.
175 * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
176 methods, since the visibility of the scrollbars can be changed from
177 several places, not only from AutoScroll.
180 2007-03-19 Jackson Harper <jackson@ximian.com>
182 * RichTextBox.cs: Enable shortcuts by default.
183 * TextBoxBase.cs: Add conditional shortcuts.
185 2007-03-19 Everaldo Canuto <everaldo@simios.org>
187 * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).
189 2007-03-19 Chris Toshok <toshok@ximian.com>
193 * XplatUIX11.cs (WaitForHwndMessage): change this to actually
194 swallow the message we're waiting on, instead of delivering it, as
195 this is only used for the WM_SHOWWINDOW raised from
196 MapWindow/UnmapWindow, and the message needs to be generated
197 (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
198 before doing the Map/Unmap. Also make sure that the Hwnd is still
199 alive after the message has been handled.
201 *before* the window is shown.
203 * Control.cs (CreateControl): guard a few more things inside the
204 if (!is_created) block, as we might end up being called again -
206 (WmShowWindow): call CreateControl if we're showing the control.
208 2007-03-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
210 * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
211 controls without a handle if they have any parent with a handle. In
212 Dispose add a check whether the handle is created or not before
213 calling BeginInvoke, this removes the need of the extra disposing
214 parameter (which was bogus anyway since it didn't prevent the
215 invoke from happening, it only skipped the check for an existing
216 handle, meaning that the invoke would call on an inexistent
219 2007-03-19 Everaldo Canuto <everaldo@simios.org>
221 * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
224 2007-03-18 Everaldo Canuto <everaldo@simios.org>
227 - Fixed a problem that dont show help button for messages with 3 buttons.
228 - Refactory button size and position calculations, now dont use fixed
229 values, also fixed button sizes (#80043) and form's border space.
230 - AddButton method created, now all other AddButton methods call this one.
231 - Some other source code cosmetic changes.
233 2007-03-18 Jackson Harper <jackson@ximian.com>
235 * RichTextBox.cs: Don't do this all fonts must match check if
236 there is only one char selected.
238 2007-03-18 Jackson Harper <jackson@ximian.com>
240 * TreeView.cs: ScrollWindow works properly now, so we don't need
241 to screw around with the scroll area. This fixes some artifacts
242 when expanding and collapsing.
244 2007-03-18 Jackson Harper <jackson@ximian.com>
246 * TextBoxBase.cs: Allow updating the selection position when the
247 cursor is outside the textarea, but we have a capture.
248 * TextControl.cs: A special case for when the cursor is outside
249 the bounds of the TB.
251 2007-03-18 Jackson Harper <jackson@ximian.com>
253 * TextBoxBase.cs: Remove image pasting code for now. There is no
254 way to get an image on the clipboard right now anyways.
256 * RichTextBox.cs: Use the new RTF Picture class for pictures.
258 2007-03-18 Everaldo Canuto <everaldo@simios.org>
261 - Set window properties in constructor intead of on CreateParams.
262 - Remove topmost from Window ExStyle.
263 - Set ShowInTaskbar to false.
264 - Set form border to FixedDialog.
265 - Some cosmetic changes and remove unneeded comments.
266 - It fixes itens 2,3 and 4 of bug #80043.
268 2007-03-18 Gert Driesen <drieseng@users.sourceforge.net>
270 * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
271 none was explicitly set. Fixes part of bug #79949.
273 2007-03-16 George Giolfan <georgegiolfan@yahoo.com>
275 * ToolStripComboBox.cs: Add AutoComplete*.
277 2007-03-16 George Giolfan <georgegiolfan@yahoo.com>
279 * ToolStripComboBox.cs: Add FlatStyle.
281 2007-03-16 Jonathan Pobst <monkey@jpobst.com>
283 * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
284 ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
286 2007-03-16 Rolf Bjarne Kvinge <RKvinge@novell.com>
288 * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
289 CheckBox.cs, RadioButton.cs, BindingSource.cs,
290 DataGridColumnStyle.cs: Remove warnings.
292 2007-03-16 Rolf Bjarne Kvinge <RKvinge@novell.com>
294 * Menu.cs: MergeMenu: Check menu argument for null before looping over
296 * MdiWindowManager.cs: Add IsVisiblePending to track the pending
297 visibility of mdi child forms. FormSizeChangedHandler: update the
298 maximized size if size has changed while maximized.
299 * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
301 * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
302 avoid creating the handle if not created.
303 * XplatUI.cs: Update debug output.
304 * XplatUIStructs.cs: Added ToString's for a couple of structs.
306 2007-03-16 Jonathan Pobst <monkey@jpobst.com>
308 * ContainerControl.cs: Give ToolStripManager the opportunity to handle
310 * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs,
311 ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
312 Implement keyboard shortcuts.
314 2007-03-15 Everaldo Canuto <everaldo@simios.org>
316 * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
317 Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog,
318 ColorDialog and all derived classes.
320 2007-03-15 Everaldo Canuto <everaldo@simios.org>
325 - Rename ToolBarButtonInfor to ToolBarItem.
326 - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
327 - Maintain an array of ToolBarItem, used instead of ToolBarButton
328 collection to be able add same button more than one time on a toolbar.
329 - Refactory all properties and methods to use ToolBarItem.
332 - Remove all propeties and methods that is now in ToolBarItem.
333 - Rectangle propery now gets the rectangle from first ToolBarItem to
334 mimic win32 behavior.
335 - Size calculation and layout methods also removed.
337 * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
338 ToolBarItem instead of ToolBarButton to right drawing buttons when
339 same button/separator was added more than one time to ToolBar.
341 * ThemeNice.cs: Same as above.
343 2007-03-15 Andreia Gaita <avidigal@novell.com>
345 * XplatUIX11.cs: Fire extra MouseMove events right after
346 MouseDown and MouseUp, emulating win32's <censored> behaviour
347 for apps that rely on it.
349 2007-03-15 Jackson Harper <jackson@ximian.com>
352 * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
353 it is drawn on the controls client window and there is no NC
355 - Set the background color to gray on 2.0 when we are readonly.
357 2007-03-15 Chris Toshok <toshok@ximian.com>
361 * XplatUIX11.cs: implement VirtualScreen independently of
362 WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
365 2007-03-15 Chris Toshok <toshok@ximian.com>
367 * Hwnd.cs: add an internal field for the cached_window_state.
369 * XplatUIX11.cs: cache the window state, invalidating the cache
370 (and thus re-querying the X server) only when we see an update to
371 the _NET_WM_STATE property.
373 2007-03-15 Chris Toshok <toshok@ximian.com>
375 * BindingSource.cs: get a lot of the unit tests working.
377 2007-03-15 Jonathan Pobst <monkey@jpobst.com>
379 * Control.cs: Modify UpdateStyles to store distances when bounds >=
380 0 instead of just bounds > 0. [Fixes bug #80912]
382 2007-03-15 Jonathan Pobst <monkey@jpobst.com>
384 * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
387 2007-03-15 Ivan N. Zlatev <contact@i-nz.net>
389 * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
390 XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
391 XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
392 WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
394 2007-03-15 Chris Toshok <toshok@ximian.com>
398 * Control.cs: add Ivan's fix for 81101, with a slight modification
399 - you can set control.Target to null.
401 2007-03-14 Jonathan Pobst <monkey@jpobst.com>
403 * ToolStripItem.cs: If our OwnerItem is null, we can't use
404 HideDropDown, use Hide instead to prevent an NRE.
407 2007-03-14 Jackson Harper <jackson@ximian.com>
409 * TextBoxBase.cs: Mess with the creation stuff a little. We need
410 to calculate the document before the handle is created, in some
411 cases. (Actually just one case).
413 2007-03-14 Jackson Harper <jackson@ximian.com>
415 * TextBoxBase.cs: Need to display the caret after letting the base
416 wndproc handle the focus methods, because the caret display
417 methods check the focus state.
418 - Try to display the caret after updating it's position with SelectWord.
419 - Don't need to do an immediate update on this recalc, since there
420 will be an invalidate anyways.
422 2007-03-14 Jackson Harper <jackson@ximian.com>
424 * TreeView.cs: Some workarounds so that we can match event order a
427 2007-03-14 Gert Driesen <drieseng@users.sourceforge.net>
429 * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
430 #80803. Avoid NullReferenceException when Control does not have
431 parent. Fixed different blinkstyle issues. Only subscribe to Tick
432 event a single time. Only draw error icon when control is created and
433 visible. Fixes failing unit tests.
435 2007-03-14 Andreia Gaita <avidigal@novell.com>
437 * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
438 Selecting events. Fire Leave and Enter events when changing tabs.
440 2007-03-14 George Giolfan <georgegiolfan@yahoo.com>
442 * TreeView.cs: Add TreeViewNodeSorter.
443 * TreeNodeCollection.cs: Add sorter parameter to Sort method.
445 2007-03-14 Chris Toshok <toshok@ximian.com>
447 * Form.cs: go ahead and remove the RecreateHandles that jpobst
448 removed earlier and I had him add back it. It turns out metacity
449 *does* in fact handle the MOTIF_WM_HINTS property changing, it
450 just doesn't redraw the window titlebar until you resize the
451 window. This also means we aren't recreating the entire window
452 hierarchy on X when you change this property. And it looks better
455 2007-03-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>
458 * ListView.cs: Collecting selection information
459 is now done in SelectedIndexCollection rather than in
460 SelectedListViewItemCollection. This is done so we can
461 have the selection information code in one single place
462 (virtual mode selection information entirely depends on
463 SelectedIndexCollection).
465 2007-03-13 Miguel de Icaza <miguel@novell.com>
467 * ErrorProvider.cs: Add stubs for ISupportInitialize
469 2007-03-13 Carlos Alberto Cortez <calberto.cortez@gmail.com>
471 * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
472 in the right order with the right values, from the Checked property,
473 just as MS does (instead of triggering them from ListView).
475 * ListView.cs: Make OnItemCheck and OnItemChecked internal.
477 2007-03-13 Carlos Alberto Cortez <calberto.cortez@gmail.com>
479 * ListView.cs: Implement ItemChecked 2.0 event. Also cast to
480 the correct handler in OnItemCheck method (ItemCheckEventHandler
481 instead of EventHandler). This used to throw an InvalidCastException.
483 2007-03-13 Jackson Harper <jackson@ximian.com>
485 * TextBoxBase.cs: Calculate the document before the handle is
486 created, so there isn't an extra invalidate called.
488 2007-03-13 Jonathan Pobst <monkey@jpobst.com>
490 * Form.cs: Don't set owner in ShowDialog until we are sure
491 that we aren't going to throw an exception. [Fixes bug #80773]
493 2007-03-12 George Giolfan <georgegiolfan@yahoo.com>
495 * TreeView.cs: Make it compile.
497 2007-03-12 Jonathan Pobst <monkey@jpobst.com>
499 * Control.cs: Another place we don't call SizeFromClientSize.
500 * Form.cs: Another place we don't call SizeFromClientSize.
503 2007-03-12 Jackson Harper <jackson@ximian.com>
505 * TreeView.cs: Basically emulating some strangness here with
506 exanding nodes and setting node positions when windows aren't
508 - Also attempting to walk the node tree less than previously, and
509 just use visible order calculations for determining offsets.
510 - oops made scrolling backwards.
511 * TreeNode.cs: We need to start nodes with a zero visible order,
512 because the order calcs are based on the first nodes order.
514 2007-03-12 Jonathan Pobst <monkey@jpobst.com>
516 * Form.cs: Don't exit the program if RecreateHandle is called on
519 2007-03-12 Chris Toshok <toshok@ximian.com>
521 * XEventQueue.cs: remove the use of PostQuitState.
523 * XplatUIX11.cs: remove the use of PostQuitState. If we get a
524 WM_QUIT message in GetMessage, return false (and if we're in the
525 nested WaitForHwndMessage, repost the WM_QUIT message).
527 2007-03-12 Jonathan Pobst <monkey@jpobst.com>
529 * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
530 or the MaximizeBox properties. [Part of bug #80640]
532 2007-03-12 Everaldo Canuto <everaldo@simios.org>
534 * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
537 2007-03-12 Jonathan Pobst <monkey@jpobst.com>
539 * ToolStripItem.cs: Fix some tests I broke by checking Visible
542 2007-03-12 Gert Driesen <drieseng@users.sourceforge.net>
544 * FileDialog.cs: Use text of File name combobox to determine what
545 files the user selected. Added tokenizer to parse the file names.
548 2007-03-12 Jonathan Pobst <monkey@jpobst.com>
550 * Control.cs: We can't call SizeFromClientSize in the constructor,
551 but we still need to do the same work, so make an internal version.
554 2007-03-12 Jackson Harper <jackson@ximian.com>
558 * OpenTreeNodeEnumerator: Match MS better for IsVisible and
561 2007-03-12 Jackson Harper <jackson@ximian.com>
563 * TextBoxBase.cs: Now that the handles are being created a little
564 later, we need to make sure that the document is recalculated when
565 the handle is created.
567 2007-03-11 Everaldo Canuto <everaldo@simios.org>
569 * Theme.cs: GetLinkFont abstract method added.
572 - Remove CalcTrimRectangle, no longer needed.
573 - Factor also remove, position issues must be fixed in libgdiplus.
574 - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
575 - GetPieceFont, CreateLinkFont and link_font removed, theme must be
576 care about font used to draw links.
577 - Set TabStop to true when control is "Selectable", control is selectable
578 when have one or more links. Fixes #80501 (test case is also added).
579 - Set the LinkArea values after links change, LinkArea values must be
580 based in first link position and size, a test case was created.
581 - Fix ControlStyles.Selectable value, now is based on LinkArea value,
582 the attribute must be true LinkArea.Length > 0. The same was applied to
585 * ThemeWin32Classic.cs:
586 - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used
588 - Use CPDrawStringDisabled to draw disabled text instead of hard code
590 - Draw focus rectangle for every parts focused, including parts that
591 is on another line, its because regions returns various rectangles
592 and not only one. Needed to mimic W32 look.
593 - Uses Graphics.Clip to delimite region painted, it mean that now
594 complete text is passed to DrawString, with this we solve layout
595 issues without create another text renderer.
596 - Uses Region.Intersect to fix some flickers problems, now only needed
598 - This changes fixes #79614 and some other unreported issues, on Linux
599 some layout problems still remain, the problem is under
600 MeasureCharacterRanges but it is an libgdiplus bug.
602 2007-03-10 Gert Driesen <drieseng@users.sourceforge.net>
604 * TextBox.cs: Set for foreground color.
605 * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
606 this is already done in Control.
608 2007-03-10 Jackson Harper <jackson@ximian.com>
610 * TextBox.cs: Set the background color, but reset the
611 backcolor_set flag which is just for the user setting the
614 2007-03-09 Chris Toshok <toshok@ximian.com>
616 * Control.cs: really remove the call to XplatUI.SetVisible from
617 CreateHandle(), like I said I did when I merged the branch.
619 * BindingSource.cs: implement some more of this stuff.
621 2007-03-09 Jackson Harper <jackson@ximian.com>
623 * TextBox.cs: Don't explicitly set our background colors.
625 * TextBoxBase.cs: Draw readonly text.
626 - Need to invalidate when backcolor or readonly are changed.
628 2007-03-09 Jackson Harper <jackson@ximian.com>
630 * TextBoxBase.cs: Don't set the forecolor until the handle is
632 - Do not raise OnPaint, and removed some old debug code.
634 2007-03-09 George Giolfan <georgegiolfan@yahoo.com>
636 * ScrollableControl.cs: Fix mouse wheel scrolling.
638 2007-03-09 Jonathan Pobst <monkey@jpobst.com>
640 * Control.cs: Wire up MouseDoubleClick event.
642 2007-03-09 Jonathan Pobst <monkey@jpobst.com>
644 * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
646 * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
647 * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
648 item is added. This logic was moved to ToolStrip.OnItemAdded.
651 2007-03-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>
653 * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
655 2007-03-08 Jackson Harper <jackson@ximian.com>
657 * TreeView.cs: Show the correct image for selected node (this used
658 to work, not sure how the code got deleted). Also implemented 2.0 feature
661 2007-03-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>
664 * ListViewItem.cs: Cache index in items when retrieving them
667 2007-03-08 Jonathan Pobst <monkey@jpobst.com>
669 * ToolStripItem.cs: Don't return the explicit_size if we are using
670 AutoSize. Fixes invalidation issue when user has explicitly set a
671 size and has AutoSize = true.
673 2007-03-08 Jonathan Pobst <monkey@jpobst.com>
675 * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
677 2007-03-07 Pedro MartÃnez Juliá <pedromj@gmail.com>
679 * DataGridView.cs: Remove event handler from DataView when a
680 DataTable is used as DataSource.
682 2007-03-08 Jonathan Pobst <monkey@jpobst.com>
684 * Control.cs: Create internal setter for client_size to allow it to be
685 set without triggering resizing code.
686 * Form.cs: Calculate client_size in constructor, only change client_size
687 in FormBorderStyle property if Handle has been created.
688 [Fixes #80574, #80791]
690 2007-03-08 George Giolfan <georgegiolfan@yahoo.com>
692 * SystemInformation.cs: Add TerminalServerSession.
694 2007-03-07 Jonathan Pobst <monkey@jpobst.com>
696 * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
699 2007-03-07 Jonathan Pobst <monkey@jpobst.com>
701 * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
702 Handle before we were supposed to. Now checks ActivateOnShow property
704 * Control.cs: Add internal ActivateOnShow property.
705 * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
707 * Hwnd.cs Remove no longer needed no_activate field.
709 2007-03-07 Jackson Harper <jackson@ximian.com>
711 * TreeView.cs: Implement owner draw tree nodes. And a couple more
713 * DrawTreeNodeEventHandler.cs: Add
714 * DrawTreeNodeEventArgs.cs: Correct default value.
716 2007-03-07 Chris Toshok <toshok@ximian.com>
718 * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
719 to be called before NativeWindow.WndProc. Put the HwndCreating
720 magic there to hook up our Hwnd's to handles.
722 2007-03-07 Gert Driesen <drieseng@users.sourceforge.net>
724 * DataGridView.cs: Comment out debug code.
726 2007-03-07 Chris Toshok <toshok@ximian.com>
728 [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
729 to make the rest of the world happy]
731 * Control.cs (CreateHandle): there's no need to call
732 XplatUI.SetVisible here, it's effectively done by
733 XplatUI.CreateWindow on X now, and always was on windows.
735 * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
736 shortcircuit out of the loop if we have a message loop running on
739 [Changelog from merge]
741 2007-03-05 Chris Toshok <toshok@ximian.com>
743 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
744 causes handle creation.
746 2007-02-28 Chris Toshok <toshok@ximian.com>
748 * ApplicationContext.cs: Add a flag to make sure we only raise the
749 ThreadExit event once (ExitThreadCore can be indirectly called
750 from a few places.) I don't like the additional flag, but it
751 makes the event ordering/count correct.
753 * Application.cs (MWFThread.LoopCount): don't use an enumerator
754 without locking the collection. An enumerator doesn't give us any
755 protection from modification anyway. Lock the thread hash and
756 replace the complicated enumerator loop with a foreach.
757 (Application.CloseForms): make internal so it can be called from
758 ApplicationContext. This should probably be moved to MWFThread.
759 (Application.ExitThread): don't call MWFThread.Current.Exit()
760 here. just call XplatUI.PostQuitMessage. We'll exit the thread
761 when the runloop exits (in response to WM_QUIT.)
762 (Application.RunLoop): add a comment (and check) for
763 context.MainForm being null after setting context.MainForm.Visible
764 = true. This is because you're perfectly free to dispose of a
765 form in VisibilityChanged. Chalk this up to another case where we
766 need to synchronously generate WM_ACTIVATE from Control.Show.
767 Also, add handling for WM_QUIT here so we'll exit the loop.
769 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit. The
770 fact that we don't wait if we're only unmapping the whole_window
771 makes me a bit nervous, but it doesn't seem to cause any problems
774 also, add a comment about the stupid, broken and wrong resetting
775 of PostQuitState to false in GetMessage().
777 In PostQuitMessage, we need to add a WM_QUIT message to the
778 thread's queue. We use the FosterParent to get the right
781 Lastly, in SetVisible, we need to unmap both windows, since the
782 waiting only happens when we're unmapping the client window. So
783 now, the *only* time we unmap just the whole_window is in the hack
784 for resizing a control to 0,0.
786 2007-02-21 Chris Toshok <toshok@ximian.com>
788 * Application.cs (CloseForms): rewrite this so that we don't
789 modify the list while we're traversing it.
791 2007-02-20 Chris Toshok <toshok@ximian.com>
793 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
795 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
796 handle is created. otherwise we'll create it here.
797 (VerticalScrollEvent): same here.
799 * Application.cs (CloseForms): call Form.Dispose, don't post
802 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
803 here. Application should Dispose() of the Form's.
805 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
807 (MapWindow,UnmapWindow): only actually do the waiting for
808 SHOWWINDOW if the control we're dealing with is a Form.
809 (CreateWindow): if the control isn't a form, SendMessage
810 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
812 * Control.cs (SetVisibleCore): always use is_visible here, not
813 value. If we use value, we can end up re-setting something
814 visible if, for instance, you do Control.Hide() in a delegate
815 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
817 2007-02-20 Chris Toshok <toshok@ximian.com>
819 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
820 the message we need. PeekMessage returning false should not be a
821 condition under which we exit the loop.
823 2007-02-15 Chris Toshok <toshok@ximian.com>
825 * Control.cs (Refresh): only refresh if we've got a handle and are
827 (CreateAccessibilityInstance): CreateControl() here.
828 (UpdateChildrenZOrder): complicate the code loop even more by
829 taking into account controls that haven't had their handle
830 created, and those that aren't visible. But on the flip side,
831 simplify the code by splitting it into two loops. one which
832 builds up the list of child controls we're interested in, and the
833 other that sets the z order of those children.
835 2007-02-14 Chris Toshok <toshok@ximian.com>
837 * Control.cs: Control.AccessibilityObject causes the control to be
838 created, not just the handle.
840 2007-02-14 Chris Toshok <toshok@ximian.com>
842 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
843 problem on X where a window might have its handle created (and be
844 visible) while the window is unmapped. calling XConfigureWindow
845 on an unmapped window is bad, and generates X errors.
847 2007-02-13 Chris Toshok <toshok@ximian.com>
849 * Control.cs (CreateHandle): don't loop over our children setting
850 their parent here. do it when in WndProc when we're shown.
851 (UpdateChildrenZOrder): make this internal so we can call it from
853 (WndProc): for WM_SHOWWINDOW, reparent the child control after
854 creating its handle. Also, remove the calls to PerformLayout from
855 here. they're done in ScrollableControl.OnVisibleChanged. Also,
856 OnVisibleChanged only seems to be called directly here for the
857 toplevel control. It's propagated down the window hierarchy by
858 calls to child.OnParentVisibleChanged.
859 (OnVisibleChanged): don't do layout here - it's done (oddly
860 enough, according to a glance at stack traces on ms.net..) in
863 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
864 z order of our children before calling PerformLayout.
866 2007-02-12 Chris Toshok <toshok@ximian.com>
868 [big change, fixes #80020]
870 * AccessibleObject.cs: we need to make owner internal again to fix
871 some of ControlAccessibleObject.
873 * Control.cs: lots of changes here. add support for WM_CREATE,
874 for which we generate OnHandleCreated. Remove the OnHandleCreated
875 call from CreateHandle. Also add support for WM_SHOWWINDOW where
876 we create child controls. leave the MonoTODO's for the
877 accessibility calls, but fix the exceptions so the tests pass.
879 Add the InvalidOperationExceptions to Invoke methods, and remove a
880 couple of InvokeInternal methods we aren't using.
882 Also, add a couple of CreateHandle calls in places where we know
883 the handles are being created but our code doesn't reference
886 Make SetVisibleCore call OnVisibleChange if the handle isn't
887 created. If the handle is created, we rely on XplatUI.SetVisible
888 generating the event synchronously.
890 Lastly, make sure we don't use this.Handle inside CreateHandle,
891 because we can call back into client (and that code can dispose of
894 * XplatUIStructs.cs: misc/cleanup.
896 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
897 although we don't populate the wParam properly.
898 (CreateWindow): generate WM_CREATE.
899 (MapWindow,UnmapWindow): make these calls synchronous, at great
900 performance expense (particularly in the unmap case), to match
903 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
905 (set_MdiParent): don't recreate the handle unless it's been
908 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
911 * NativeWindow.cs: this is probably the weirdest part of the
912 patch. We need a way to link up the window being created to the
913 WM_CREATE message. Since we can only be creating one window at a
914 time on a given thread, we keep track of a per-thread reference so
915 we can dispatch it properly. We also need to keep track of the
916 Hwnd currently being created so that the win32 backend doesn't
919 * XplatUIWin32.cs: a similar change to the one we made in
922 2007-03-07 Jonathan Pobst <monkey@jpobst.com>
924 * ToolStripItem.cs: Make CalculatePreferredSize virtual.
925 * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
926 to draw the menu shortcut string.
928 2007-03-07 Jackson Harper <jackson@ximian.com>
930 * TreeNode.cs: Add the 2.0 collapse method.
932 2007-03-07 Pedro MartÃnez Juliá <pedromj@gmail.com>
934 * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
936 2007-03-07 Pedro MartÃnez Juliá <pedromj@gmail.com>
938 * DataGridView.cs: Change DataSource will clear column and row
939 lists. Call Invalidate() to reflect DataSource change.
941 2007-03-07 Pedro MartÃnez Juliá <pedromj@gmail.com>
943 * DataGridView.cs: Add rows when DataSource is System.Data.DataView
944 and a new row is added to it.
946 2007-03-07 Pedro MartÃnez Juliá <pedromj@gmail.com>
948 * DataGridView.cs: Add columns when DataSource is en empty list but
949 is a System.Data.DataView (from a System.Data.DataTable).
951 2007-03-06 Andreia Gaita <avidigal@novell.com>
953 * Label.cs: Implement AutoEllipsis (2.0)
955 2007-03-06 Jackson Harper <jackson@ximian.com>
957 * TreeView.cs: Implement 2.0 TopNode setter property.
958 - Use a local var instead of the skipped_nodes field for computing
959 how many nodes to skip. Otherwise we won't scroll because the
960 valuechanged handler checks if skipped_nodes is equal to the new
962 - Implement 2.0 Sort method.
963 - Add useless 2.0 DoubleBuffer property
964 - Implement 2.0 LineColors property. Lets you change the color of
965 the lines in the tree. Terribly useful for creating non cohesive
967 - Implement 2.0 image key feature.
969 2007-03-06 Jackson Harper <jackson@ximian.com>
971 * TreeView.cs: We can't get the bounds of the nodes before raising
972 the AfterSelect event, because that event could change the node's
973 bounds (scrolling, font change, etc).
975 2007-03-06 Rolf Bjarne Kvinge <RKvinge@novell.com>
977 * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
978 * Form.cs: Don't recreate handle when creating FormWindowManager, just
979 update window styles. In CreateParams us VisibleInternal instead of
980 VIsible to get the actual visible flag set for this form.
981 * FormWindowManager.cs: Activate the form whenever the mouse clicks on
982 the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
983 handle the case when the form is already maximized, in which case
984 it should be restored. Fixes #81043.
986 2007-03-06 Rolf Bjarne Kvinge <RKvinge@novell.com>
988 * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
990 2007-03-05 Jackson Harper <jackson@ximian.com>
992 * TreeViewHitTestInfo.cs: implement.
994 2007-03-05 Jackson Harper <jackson@ximian.com>
996 * InternalWindowManager.cs: class status fix.
998 2007-03-05 Rolf Bjarne Kvinge <RKvinge@novell.com>
1000 * InternalWindowManager.cs: All windows that have a parent
1001 are confined to their parent when they're being moved.
1004 2007-03-04 Gert Driesen <drieseng@users.sourceforge.net>
1006 * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
1007 on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
1009 2007-03-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
1011 * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
1012 buttons invisible before deciding which ones should be visible
1013 (fixes minimize/maximize buttons showing up in toolwindows). Remove
1015 * InternalWindowManager.cs: Remove warning.
1017 2007-03-02 Carlos Alberto Cortez <calberto.cortez@gmail.com>
1019 * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
1020 to throw an InvalidOperationException is virtual mode is being used.
1022 2007-03-02 Jonathan Pobst <monkey@jpobst.com>
1024 * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
1025 ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
1026 ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
1027 ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
1028 ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
1029 ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
1031 2007-03-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
1033 * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
1034 driver.KeyboardDelay from XplatUI.KeyboardDelay
1035 * XplatUIW in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
1036 (patch by Sergey Volk)
1038 2007-03-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
1040 * ToolWindowManager.cs: Added, contains logic for
1042 * CreateParams.cs: Add a few helper methods and an
1043 internal variable to know which control the CreateParams belongs
1045 * Control.cs: Call Form.ChangingParent when the
1046 parent is about to be changed.
1047 * XplatUIX11.cs: DeriveStyles (): Set
1048 caption_height for all windows that have captions and are children.
1049 Update to use ToolWindowManager instead of InternalWindowManager
1051 * XplatUIWin32.cs: Set fake window styles for all
1052 windows that have window managers.
1053 * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
1054 now duplicated for mdi windows when they are
1055 maximized, first for the buttons the window itself has, then for
1056 the buttons that appear in the menu bar. Makes things a little
1057 easier). Updated UpdateWindowDecorations, SetWindowState and the
1058 mouse eventhandlers accordingly.
1059 * Form.cs: Add ChangingParent (), contains the
1060 logic of what should happen when the parent changes. In MdiParent
1061 don't set things that ChangingParent () is doing. When handling
1062 WM_CLOSE, we can close the form if there are any other modal forms
1063 and the current form is a descendent of the modal form.
1064 * InternalWindowManager.cs: A lot of refactoring,
1065 the title buttons are now extracted to a separate container class
1066 that takes care of all button code (clicks, tooltips, etc). Moved
1067 Iconic|Maximized|Normal Bounds properties to this class from
1068 MdiWindowManager, so that the window state logic can succeed for
1069 other than mdi wm's. Implemented general window state change logic.
1070 Moved CreateButtons to ThemeWin32Classic, since the theme might
1071 override which buttons are available when as well as the exact
1073 * FormWindowManager.cs: Added, contains logic for
1075 * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
1076 which buttons go where (and if they are at all visible).
1077 Removed special handling of maximized windows, since they aren't special.
1078 In DrawManagedWindowDecorations don't try to draw the text if it is
1080 * MdiClient.cs: ArrangeIconicWindows: Don't calculate any sizes,
1081 use whatever the wm gives us.
1083 2007-03-02 Jonathan Pobst <monkey@jpobst.com>
1085 * ButtonBase.cs: Add 2.0 properties.
1086 * Button.cs: Override Draw for 2.0.
1087 * Control.cs: Add Entered and Selected properties.
1088 * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
1089 TextRenderer.cs: Make internal for 1.1 to unify drawing code.
1090 * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
1092 * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
1094 2007-03-01 Jonathan Pobst <monkey@jpobst.com>
1096 * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code. :/
1098 2007-03-01 Jonathan Pobst <monkey@jpobst.com>
1100 * XplatUIWin32.cs: Register a new class with Windows each time we get
1101 a new ClassStyle. [Fixes bugs #79432, #80817]
1102 * Controls.cs: Set the correct ClassStyle in CreateParams.
1103 * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
1105 2007-03-01 Gert Driesen <drieseng@users.sourceforge.net>
1107 * ListView.cs: Add fireEvent argument to ReorderColumn since the
1108 ColumnReordered event must not be signaled when modifying DisplayIndex
1109 of a ColumnHeader. Added internal ReorderColumns method which takes
1110 care of drawing, and updating the internal DisplayIndex of the
1111 ColumnHeader. Added AddColumn method which is invoked from
1112 ColumnHeaderCollection when adding or inserting columns, and which
1113 ensures that reorder_columns_indices is kept in sync. Avoid redrawing
1114 after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
1115 Recalculated dispay indices after removing a ColumnHeader.
1116 * ColumnHeader.cs: Save DisplayIndex separately from ListView to
1117 match MS. Allows last display index to be returned after ListView
1118 is disposed. Update actual location of ColumnHeader when DisplayIndex
1121 2007-03-01 Everaldo Canuto <everaldo@simios.org>
1123 * LinkLabel.cs: Improve CalcTrimRectangle.
1125 * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
1127 2007-02-28 Everaldo Canuto <everaldo@simios.org>
1129 * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
1130 get rectangle as a result value.
1132 2007-02-28 Everaldo Canuto <everaldo@simios.org>
1134 * LinkLabel.cs: Theres some diferences between rectangle return from
1135 MeasureCharacterRanges and the area used for DrawString to fix this
1136 CalcMeasurementFactor method was created, it calcules the diferences
1137 to be use later to adjust rectangle in draw operations. Fixes #80473.
1139 * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
1140 to adjust draw rectangle.
1142 2007-02-27 Everaldo Canuto <everaldo@simios.org>
1144 * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
1145 text and some other changes to reduce and optimize source code.
1147 2007-02-27 Jonathan Pobst <monkey@jpobst.com>
1149 * RadioButton.cs: Implement 2.0 event.
1150 * RelatedImageListAttribute.cs: Implement new class.
1152 2007-02-27 Everaldo Canuto <everaldo@simios.org>
1154 * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
1156 2007-02-27 Jonathan Pobst <monkey@jpobst.com>
1158 * CheckBox.cs: Implement 2.0 functionality.
1160 2007-02-27 Carlos Alberto Cortez <calberto.cortez@gmail.com>
1162 * ListView.cs: Refactor Add and AddRange methods of
1163 ListViewItemCollection, to not update the ListView
1164 everytime an item is added in AddRange. Also move the update
1165 code to a new CollectionChanged method, and call it
1166 from other methods that need it as well (this should also fix some
1167 bugs when Sorting is used).
1169 2007-02-27 Jackson Harper <jackson@ximian.com>
1171 * TextControl.cs: Try to never let the caret stay in a non-text
1173 * TextBoxBase.cs: Update the caret.
1175 2007-02-26 Jonathan Pobst <monkey@jpobst.com>
1177 * XplatUIStructs.cs: Add some convenience methods for POINT structure.
1178 * XplatUIWin32.cs: Add some convenience methods for RECT structure,
1179 delete POINT structure, duplicate of one in XplatUIStructs.
1180 * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
1182 2007-02-26 Gert Driesen <drieseng@users.sourceforge.net>
1184 * ListView.cs: Initialize LabelEditEventArgs after setting Text of
1185 edit box since otherwise the Label would immediately be set (even if
1186 the user did not modify the label). In OnKeyDown set Handled to true
1187 if Return or Escape was pressed. In ColumnHeaderCollection unlink
1188 columns that are to be removed. In ListViewItemCollection unlink items
1189 that are to be removed.
1191 2007-02-24 Jonathan Pobst <monkey@jpobst.com>
1193 * TextRenderer.cs: If we set a GDI clip region, we need to clear
1194 it when we are done. [Fixes bug #80949]
1196 2007-02-23 Jonathan Pobst <monkey@jpobst.com>
1198 * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
1200 2007-02-23 Carlos Alberto Cortez <calberto.cortez@gmail.com>
1202 * ListView.cs: I forgot to commit the changes for ListView
1203 in my previous patch.
1205 2007-02-23 Jonathan Pobst <monkey@jpobst.com>
1207 * Clipboard.cs: Partially implement an overload of SetDataObject.
1208 * Form.cs: Implement ShowWithoutActivation.
1209 * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
1211 2007-02-23 Carlos Alberto Cortez <calberto.cortez@gmail.com>
1213 This is a first set of changes to make the Virtual mode works,
1214 by avoiding the retrieval of ListViewItem instances until
1217 * ListView.cs: Store item position in the ListView instead of the
1218 ListViewItem, this way we don't request the Bounds property of
1219 ListViewItem inside the ListView calculations, as well as cache the item
1220 size in item_size field. Store indexes instead of ListViewItem
1221 instances in the matrix used by icon view. Add a ItemMatrixLocation
1222 struct to hold the row and col info of the matrix info.
1224 * ListViewItem.cs: Don't store the location anymore, and only cache
1225 the rectangles for GetBounds. Use the ListView.GetItemLocation
1226 method to retrieve the actual location.
1228 2007-02-23 Jonathan Pobst <monkey@jpobst.com>
1230 * TextRenderer.cs: Add clipping support, thanks to George.
1233 2007-02-23 Gert Driesen <drieseng@users.sourceforge.net>
1235 * ListViewItem.cs: Cancel label edit when item is removed from
1237 * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
1238 event before the edit textbox is displayed. Added CancelEdit method
1239 which is used end to editing while ignoring the value set by the
1240 user. In EndEdit, set focus to ListView to avoid losing focus to
1241 other controls. In ListViewItemCollection.Clear, cancel editing of
1242 any of the items. In Remove, cancel editing of item being removed.
1243 Avoid udplicate code by modifing RemoveAt to invoke Remove.
1245 2007-02-23 Gert Driesen <drieseng@users.sourceforge.net>
1247 * FileDialog.cs: Update FSEntry when move is successful. Fixes
1250 2007-02-23 Everaldo Canuto <everaldo@simios.org>
1252 * MainMenu.cs: Change Draw method to take care about MenuOrigin to be
1253 compatible with non X11 systems. Fixes #80901.
1255 2007-02-23 Gert Driesen <drieseng@users.sourceforge.net>
1257 * ListView.cs: Added bool argument to UpdateMultiSelection to specify
1258 whether the item should be unselected and reselect. We do no want this
1259 when we're starting to edit the label. Do not fire the
1260 SelectedIndexChanged event from ListView when its already been fired
1261 by modifying ListViewItem.Selected. Fixes bug #80943.
1263 2007-02-23 Jonathan Pobst <monkey@jpobst.com>
1265 * TextRenderer.cs: Previos commit logic was backwards.
1267 2007-02-23 Jonathan Pobst <monkey@jpobst.com>
1269 * TextRenderer.cs: Don't add padding on MeasureText if we were
1270 sent the NoPadding flag.
1272 2007-02-23 Everaldo Canuto <everaldo@simios.org>
1274 * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
1275 after DrawButton. To prevent image overlaps button borders SetClip and
1276 ResetClip added before and after draw image. Fixes #79129.
1278 2007-02-23 Everaldo Canuto <everaldo@simios.org>
1280 * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify
1281 window size, it fix problem when you run under win32 that theres
1282 Size diferent than ClientSize. Also fix controls size and positions
1283 to mimic Win32. Fixes #80837.
1285 2007-02-22 Everaldo Canuto <everaldo@simios.org>
1287 * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on
1288 menu area to fix some problems for non X11 systems. Fixes #80613.
1290 2007-02-22 Jackson Harper <jackson@ximian.com>
1292 * TreeNode.cs: When a node is expanded, set its is_expanded flag
1293 even if it doesn't have any children.
1295 2007-02-22 Jackson Harper <jackson@ximian.com>
1297 * TreeView.cs: Calculate the top node 'on the fly', this
1298 eliminates issues where you need to click on the tree before
1299 scrolling it to get the top node computed correctly.
1300 * TreeNodeCollection.cs: We don't need to mess with the top node
1303 2007-02-22 Jackson Harper <jackson@ximian.com>
1305 * DataGridViewRow.cs: Fix typo so height can actually be set.
1306 Patch by Peter Grimm.
1308 2007-02-22 Gert Driesen <drieseng@users.sourceforge.net>
1310 * FileDialog.cs: Fixed support for renaming files and directories.
1311 * ListView.cs: Do not lose focus when edit is canceled. Process
1312 Escape as regular key (to prevent closing of dialogs).
1314 2007-02-22 Gert Driesen <drieseng@users.sourceforge.net>
1316 * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
1317 spaces. Changed spaces to tabs. Removed unnecessary init of bools.
1319 2007-02-22 Gert Driesen <drieseng@users.sourceforge.net>
1321 * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
1322 did not modify label.
1323 * ListView.cs: Only set LabelEditEventArgs.Label if user actually
1324 modified the text. Reset Label when user presses Escape in edit mode.
1325 Move focus to ListView after having cancelled or finished editing the
1328 2007-02-21 Gert Driesen <drieseng@users.sourceforge.net>
1330 * ComboBox.cs: Removed unnecessary initializations. Marked items field
1331 private. Clear textbox when Text is set to null and SelectedIndex is
1333 * FileDialog.cs: Removed unnecessary initializations. Removed
1334 workarounds for ComboBox bugs that are now fixed. Modified
1335 DefaultExt, InitialDirectory and Title property to change null to
1336 zero-length string in getters. Avoid directly accessing fields.
1338 2007-02-20 Jackson Harper <jackson@ximian.com>
1340 * TextControl.cs: Remove RecalAlignments call, that was some
1341 debugging leftovers.
1342 - Don't use the line indent when we shouldn't.
1343 * RichTextBox.cs: Add support for paragraph left indents.
1345 2007-02-20 Rolf Bjarne Kvinge <RKvinge@novell.com>
1347 * Control.cs: Fix BeginInvoke signature for 2.0 profile.
1348 Seems like the class status pages doesn't catch params differences.
1350 2007-02-19 Gert Driesen <drieseng@users.sourceforge.net>
1352 * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
1354 2007-02-19 Gert Driesen <drieseng@users.sourceforge.net>
1356 * ComboBox.cs: Setting Text should have no effect if item text of
1357 selected item exactly matches value. First lookup text using
1358 case-sensitive comparison, and fallback to case-insensitive comparison.
1359 FindString(Exact) returns -1 if search string is null. On 2.0 profile,
1360 allow startIndex to be last index. Changed ArgumentOutOfRangeException
1361 paramname to match MS. Restart from first item if string is not found
1362 after startIndex. Fixed paramname of ArgumentNullException that is
1363 thrown for null value in ObjectCollection.Contains.
1365 2007-02-19 Everaldo Canuto <everaldo@simios.org>
1367 * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
1369 2007-02-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
1371 * ListControl.cs: In SelectedValue use value.Equals to compare for
1372 equality instead of ==, otherwise it will fail for strings.
1375 2007-02-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
1377 * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
1378 since the caret won't show up unless ShowSelection is true.
1381 2007-02-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
1383 * Application.cs: When disabling all forms but the main form, do not
1384 disable any descendants of the main form (such as mdi children or
1385 other parented forms). Fixes #80822 on Windows.
1386 * Form.cs: If we have a parent, set the WS_CHILD style.
1387 * Control.cs: Update the window styles if the control whose parent has
1388 changed is a form (the WS_CHILD style has to be switched).
1390 2007-02-19 Everaldo Canuto <everaldo@simios.org>
1392 * XplatUIStructs.cs: MsgUIState structure added.
1394 2007-02-18 Gert Driesen <drieseng@users.sourceforge.net>
1396 * FileDialog.cs: Removed need for separate fileName field. On 2.0
1397 profile, do not check filename(s) for illegal character if filename(s)
1398 were set non-interactively but always check on 1.0 profile. Fixed NRE
1399 in DefaultExt and only strip off first leading dot. Improve exception
1400 message when invalid Filter is set. Do not ignore InitialDirectory if
1401 it does no exist. Store specified Title, and if empty use default
1402 title (depending on type of dialog). Added an internal DialogTitle
1403 property for retrieving dialog title. Fixed logic of displayed dir to
1404 more closely match MS. Avoid setting ComboBox.Text to a zero-length
1405 string as its buggy.
1406 * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
1407 FileName is a zero-length string (it can never be null). Override
1408 DialogTitle property to set default title of dialog box.
1409 * SaveFileDialog.cs: Override DialogTitle property to set default
1410 title of dialog box.
1412 2007-02-18 Gert Driesen <drieseng@users.sourceforge.net>
1414 * FileDialog.cs: Modify default text of filename and filetype labels
1415 to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
1416 after we've updated the SelectedIndex. Fixes part of bug #80887.
1417 * SaveFileDialog.cs: Set text of filetype label.
1419 2007-02-16 Carlos Alberto Cortez <calberto.cortez@gmail.com>
1421 * LabelEditEventArgs.cs: New internal SetLabel method, to set the
1422 label field. Needed by latest Jackson's fixes for ListView.
1424 2007-02-16 Andreia Gaita <avidigal@novell.com>
1426 * PrintPreviewControl/PrintPreviewDialog: Properly dispose of
1427 print preview images.
1429 2007-02-16 Jackson Harper <jackson@ximian.com>
1431 * ListView.cs: Make AfterLabelEdit work correctly.
1432 * FileDialog.cs: After changing the name of the folder, we have to
1433 make sure that it is created, or that we pop up an error because
1436 2007-02-16 Jackson Harper <jackson@ximian.com>
1438 * X11Dnd.cs: Implement aliases on mime handlers, so things like
1439 System.String are mapped to text.
1440 - Handle dataobjects, getting all the possible formats out of them
1441 - We dont need the drag event args before we give feedback. This
1442 allows feedback cursors to be immediate before selections have
1445 2007-02-16 Jackson Harper <jackson@ximian.com>
1447 * TextBoxBase.cs: Modified the method for inserting images to
1448 taking a line and position instead of tag and position.
1449 * RichTextBox.cs: Handle PngBlip data by inserting the png image
1451 * TextControl.cs: Allow images to be inserted as the first tag of
1453 - Fix some off by one issues when we assume the first tag is a
1454 text tag, not an image tag.
1456 2007-02-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
1458 * ListView.cs: Set focus to ListView when ItemControl gets a
1459 WM_RBUTTONDOWN message, to mimic .Net behaviour.
1460 Fixes part of #80467.
1462 2007-02-15 Rolf Bjarne Kvinge <RKvinge@novell.com>
1464 * DateTimePicker.cs: Call RecreateHandle if the Format changes and
1465 validate Text input (if null or empty string reset Value to default
1466 value). Fixes #80830.
1468 2007-02-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>
1470 * ListView.cs: Set owner as null for columns and items when
1471 Dispose is invoked. Fixes #80607.
1473 2007-02-14 Jonathan Pobst <monkey@jpobst.com>
1475 * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
1476 showing DropDowns, don't show a Grip when doing Flow layout.
1477 [This fixes the toolbox in PDN 2.72.]
1478 * ToolStripItem.cs: Add Anchor property and some internal properties to
1479 reduces needed changes to FlowLayout.
1480 * ToolStripOverflow.cs: Remove unused variable.
1481 * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
1482 use it in the layout calculations.
1484 2007-02-13 Everaldo Canuto <everaldo@simios.org>
1486 * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
1489 * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
1492 2007-02-13 Everaldo Canuto <everaldo@simios.org>
1494 * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from
1495 MeasureString format, it can make button very large in some cases, it is
1496 strange but is what win32 do.
1498 2007-02-13 Everaldo Canuto <everaldo@simios.org>
1500 * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string
1503 * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
1504 rendering, the value is based on MenuAccessKeysUnderlined.
1506 2007-02-13 Everaldo Canuto <everaldo@simios.org>
1508 * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
1511 * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
1513 * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
1514 and use MenuAccessKeysUnderlined instead.
1516 2007-02-13 Andreia Gaita <avidigal@novell.com>
1518 * ContainerControl.cs: Focus fix for nunit treeview selection bug.
1519 A selected control would not get a Focus call if:
1520 - the default active control of the container is the same as
1521 the one that was selected
1522 - we are switching from one container to another
1523 Under these conditions, the container being selected already has
1524 an active_control, which is the same as the one being activated,
1525 so set_ActiveControl would always return and not send the Focus
1526 call. Fix to check if the currently active control of the container
1527 is actually focused.
1529 2007-02-13 Jonathan Pobst <monkey@jpobst.com>
1531 * StatusStrip.cs: Implement the spring layout.
1532 * ToolStripControlHost.cs: Make sure the hosted control's visibility
1533 always matches the host.
1534 * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
1537 2007-02-13 Andreia Gaita <avidigal@novell.com>
1539 * Control.cs: Code reorganization only.
1540 - Reorganize the WndProc cases so that each case has it's own handling method,
1541 to help with the no-line-numbering stack traces.
1542 - Formatting changes (it's vstudio's fault, really :p)
1544 2007-02-13 Rolf Bjarne Kvinge <RKvinge@novell.com>
1546 * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
1547 Thread.CurrentUICulture to match DateTimePicker's (and MS)
1550 2007-02-12 Jackson Harper <jackson@ximian.com>
1553 * TextBox.cs: By default we have a non multiline document
1554 - use the multiline property instead of the internal variable
1555 * TextBoxBase.cs: Treat multiline and non multiline the same in
1557 - Use the documents multiline flag instead of tracking it ourself
1558 * TextControl.cs: Attempt at getting multiline to match MS
1559 behavior. Lines now track an offset, which is either their X or Y
1560 offset depending on whether or not we are in multiline mode.
1561 - Update all the methods to understand that lines have an X value.
1562 - Fix crash in Undo::Duplicate when empty lines are deleted.
1564 2007-02-12 Everaldo Canuto <everaldo@simios.org>
1566 * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and
1567 code moved to properties PreferredHeight and PreferredWidth. It solve the
1568 all problems when preferred sizes must be recalculated. Fixes #80801.
1570 2007-02-12 Everaldo Canuto <everaldo@simios.org>
1572 * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
1573 font height when compatible_text_rendering is false. Partially fix #80801.
1575 2007-02-09 Gert Driesen <drieseng@users.sourceforge.net>
1577 * Form.cs: Fixed typo in exception message. Fixes bug #80779.
1579 2007-02-09 Gert Driesen <drieseng@users.sourceforge.net>
1581 * Form.cs: Improved exception messages in ShowDialog.
1583 2007-02-09 Gert Driesen <drieseng@users.sourceforge.net>
1585 * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
1586 PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
1587 if not set. Fixes bug #80764. Avoid accessing current_settings field
1590 2007-02-08 Everaldo Canuto <everaldo@simios.org>
1592 * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
1595 * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
1596 public in 2.0 and for easy maintenance and dont break compatibility it is
1599 2007-02-08 Jonathan Pobst <monkey@jpobst.com>
1601 * ToolStripItem.cs: Implement using images from ImageList.
1603 2007-02-08 Rolf Bjarne Kvinge <RKvinge@novell.com>
1605 * DateTimePicker.cs: Change default date-formatting culture from
1606 CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
1607 seems to be the way MS does it.
1609 2007-02-08 Andreia Gaita <avidigal@novell.com>
1611 * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image
1612 (the 6 was cut off on the right side)
1614 2007-02-08 Jonathan Pobst <monkey@jpobst.com>
1616 * Form.cs: Tell MenuStrips to close when the form is clicked.
1617 * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs,
1618 ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
1619 ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
1620 ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add
1621 support for Overflow, where items that do not fit are automatically
1622 reparented to a drop down menu.
1623 * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
1624 Also: fixes bug #80747.
1626 2007-02-08 Rolf Bjarne Kvinge <RKvinge@novell.com>
1628 * ComboBox.cs: Remove warning (unused code).
1629 * ScrollableControl.cs: Remove warning for 1.1 profile.
1631 2007-02-08 Rolf Bjarne Kvinge <RKvinge@novell.com>
1633 * Form.cs: Remove a warning.
1635 2007-02-08 Rolf Bjarne Kvinge <RKvinge@novell.com>
1637 * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
1638 'g' specifier, not documented anywhere, but seems to always show up
1639 as a single space (might have something to do with the DateTime 'g'
1640 specifier, which is the era format, but since DateTimePicker can't
1641 go earlier than 1753 it wouldn't matter) . Fixed quote handling,
1642 won't crash if the format has an unmatched quote. Now shows
1643 single-character formats correctly. Fixes #80744.
1645 2007-02-08 Jonathan Pobst <monkey@jpobst.com>
1647 * StatusStrip.cs: Stretch property needs to call base.Stretch,
1648 not this.Stretch to fix stack overflow. [Fixes bug #80760]
1650 2007-02-07 Chris Toshok <toshok@ximian.com>
1652 * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
1653 background color. it overwrites the background image we've
1654 already painted. Fixes #80599.
1656 2007-02-07 Chris Toshok <toshok@ximian.com>
1658 * DataGrid.cs: return immediately from Edit() when there are no
1659 columns. Fixes #80662.
1661 2007-02-07 Chris Toshok <toshok@ximian.com>
1663 * MessageBox.cs: fix #80625. don't always show the Help button in
1664 2.0. use the displayHelpButton parameter to determine if we
1665 should show it. Also, make the internal show_help field private.
1667 2007-02-07 Chris Toshok <toshok@ximian.com>
1669 * Control.cs (SetVisibleCore): check in the proposed patch for
1670 80604, and set is_visible before calling CreateControl.
1672 2007-02-07 Jonathan Pobst <monkey@jpobst.com>
1674 * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to
1675 MonoInternalNote. This is added automagically by VS2005, so let's not crash
1678 2007-02-06 Everaldo Canuto <everaldo@simios.org>
1680 * MenuAPI.cs: hotkey_active internal field added, it is required because
1681 we need to know when hotkeys must be draw, before this change a keystate
1682 Navigating was used but we can have menu in navigating state without
1683 hotkeys. Fixes #80694.
1685 * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
1687 2007-02-06 Rolf Bjarne Kvinge <RKvinge@novell.com>
1689 * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
1690 corresponding events and methods to be internal for 1.1 profile and
1691 public for 2.0 profile (required by SizeGrip).
1692 * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
1693 implicit control list). Don't set the size nor the location of the
1694 SizeGrip anymore as it's not needed.
1695 * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
1696 draw directly on the captured control (fixes #80656). Removed
1697 ShowGrip (it wasn't used anywhere), redraw (always true), added
1698 GetDefaultSize and GetDefaultRectangle to calculate defaults.
1699 * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
1700 be called from SizeGrip.
1702 2007-02-06 Rolf Bjarne Kvinge <RKvinge@novell.com>
1704 * Timer.cs: Throw ArgumentException if Interval <= 0.
1706 2007-02-05 Jackson Harper <jackson@ximian.com>
1708 * TreeView.cs: We need to check scrollbar visibility when window
1709 visibility is updated, because non visible trees don't ever add
1711 * Cursor.cs: We want the override cursor to be reset to NULL when
1712 we set current cursor to the default cursor.
1714 2007-02-05 Jackson Harper <jackson@ximian.com>
1716 * TextControl.cs: Don't have crlfs when we are non multiline.
1717 - Consolidate the line position.
1719 2007-02-05 Jackson Harper <jackson@ximian.com>
1721 * X11Keyboard.cs: BACK+CTRL gets a special char code.
1723 2007-02-03 Rolf Bjarne Kvinge <RKvinge@novell.com>
1725 * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
1726 handling LeaveNotify->NotifyUngrab in order to send
1727 WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
1728 after calling XUngrabPointer, so we call WindowUngrabbed directly
1729 from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
1730 * Control.cs: Handle WM_CAPTURECHANGED in order to raise
1731 MouseCaptureChanged correctly. Also create handles if changing
1732 Capture (matches MS behaviour).
1734 2007-02-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
1736 * SizeGrip.cs: Make the last change 2.0 only.
1738 2007-02-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
1740 * SizeGrip.cs: If resizing and the capture is lost, revert any size
1741 changes to initial size (fixes #80597).
1743 2007-02-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
1745 * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
1747 2007-02-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
1749 * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
1750 background) and only allow dragging if enabled. This way the
1751 sizegrip can be used to fill the open square that otherwise would
1752 have been shown in the bottom right corner of ScrollableControl
1753 when ScrollableControl is not suppose to support sizing.
1754 * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
1755 sizegrip is shown and enabled, and hook up with necessary events.
1757 2007-02-01 Chris Toshok <toshok@ximian.com>
1759 * DataGridTextBoxColumn.cs: clean up the
1760 GetFormattedString/GetColumnValueAtRow combination of functions.
1761 Also fix UpdateUI, and the initial state of
1762 IsInEditOrNavigateMode.
1764 * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
1765 aren't supposed to scroll the textbox here, we're supposed to
1766 scroll the datagrid.
1768 2007-02-01 Chris Toshok <toshok@ximian.com>
1770 * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
1771 setting the position.
1773 2007-02-01 Chris Toshok <toshok@ximian.com>
1775 * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
1776 here, since the most recent focus fixes keep us from generating
1777 the Leave event when our textbox gets focus.
1778 (Edit): we should be passing null for the column style's
1779 instantText parameter.
1781 2007-02-01 Jonathan Pobst <monkey@jpobst.com>
1783 * ToolStripDropDownItem.cs: Make sure DropDownOpening event is
1784 raised. Fixes menu text/icons not showing up in PDN.
1786 2007-02-01 Rolf Bjarne Kvinge <RKvinge@novell.com>
1788 * Control.cs: Remove code in constructor that makes every
1789 control with WS_CHILD set have initial location -1, -1.
1791 2007-01-31 Jackson Harper <jackson@ximian.com>
1793 * X11Dnd.cs: Take the keyboard on init to reduce coupling with
1795 * XplatUIX11.cs: Give teh keyboard to teh dnd.
1797 2007-01-31 Jackson Harper <jackson@ximian.com>
1799 * X11Dnd.cs: Use IDataObject instead of the DataObject class.
1800 - Remove some debug code.
1802 2007-01-31 Jackson Harper <jackson@ximian.com>
1804 * XplatUIX11.cs: If you set the override cursor during a grab, it
1805 should actually override the grab cursor. This comes into play
1806 when you are setting custom cursors in a DND feedback method.
1808 2007-01-31 Jackson Harper <jackson@ximian.com>
1810 * X11Dnd.cs: Add support for handling the QueryContinue and
1811 GiveFeedback events.
1812 - Cancel drag and drop actions when the escape key is clicked.
1813 * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
1814 can handle the ESCAPE key.
1815 - Allow dnd to swallow BUTTONUP messages if it needs to. This is
1816 done when dnd events are continued after the button is released.
1817 - Add a new helper method so that dnd can translate key events.
1819 2007-01-31 Alexander Olk <alex.olk@googlemail.com>
1821 * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
1822 make it more obvious what is happening.
1824 2007-01-30 Jackson Harper <jackson@ximian.com>
1826 * XplatUIX11.cs: Don't break when handling button release in drag
1827 and drop operations. We need that BUTTONUP message to get through
1828 so capture is released.
1829 * X11Dnd.cs: We don't need to manually grab the pointer anymore,
1830 this is handled automatically when the mouse is down.
1832 2007-01-30 Jackson Harper <jackson@ximian.com>
1834 * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
1835 is closed, so we need to make sure that we aren't changing the
1836 dialog result when the OK (Open or Save) button has been clicked
1837 and we are closing the window ourselves. Note we don't need to
1838 worry about the cache being written in this case, because it was
1839 already done in the previous FilOk call.
1841 2007-01-30 Rolf Bjarne Kvinge <RKvinge@novell.com>
1843 * DateTimePicker.cs: Remove a warning.
1844 * ComboBox.cs: Remove a couple of warnings.
1846 2007-01-29 Chris Toshok <toshok@ximian.com>
1848 * XplatUIX11.cs: don't crash, and remove the icon if the user has
1849 set one, if SetIcon is passed a null icon.
1851 2007-01-29 Andreia Gaita <avidigal@novell.com>
1853 * TextBox.cs: Redraw when the password characters changes
1854 * TextControl.cs: Check if textbox has a password char and draw
1855 a line of password chars instead of the text in the line. LineTag gets
1856 an extra Draw() method which allows document.Draw to override the text
1857 that will be drawn. Removes 1024 char limitation on length of passworded
1860 2007-01-29 Jackson Harper <jackson@ximian.com>
1862 * TextBoxBase.cs: Deleting sections of text is undoable. Deleting
1863 single chars is not.
1865 2007-01-28 Jonathan Pobst <monkey@jpobst.com>
1867 * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
1868 one pixel. Fix a StackOverflowException caused by an overload wrongly
1871 2007-01-26 Everaldo Canuto <everaldo@simios.org>
1873 * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
1874 also remove ProcessArrowKey and put the code inside ProcessKeys.
1876 2007-01-26 Jonathan Pobst <monkey@jpobst.com>
1878 * PaddingConverter.cs: Added.
1880 2007-01-26 Rolf Bjarne Kvinge <RKvinge@novell.com>
1882 * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
1883 ShowPanels is false (fixes #80600). Only draw up to 127 characters
1884 of text (fixes #80601). For panels clip the text to draw to the
1885 panel (fixes #80603).
1887 2007-01-26 Rolf Bjarne Kvinge <RKvinge@novell.com>
1889 * ComboBox.cs: Fixed implementation of ResetText.
1891 2007-01-25 Jackson Harper <jackson@ximian.com>
1893 * TextControl.cs: For the last char of a line we need to use the
1894 line size, not that chars width, since it won't actually be
1895 computed since the right side of a char is based on the start of
1896 the left side of the next char, and the next char does not exist.
1898 2007-01-25 Chris Toshok <toshok@ximian.com>
1900 * Splitter.cs: fix the new unit tests, and reindent some switch
1903 2007-01-25 Rolf Bjarne Kvinge <RKvinge@novell.com>
1905 * ComboBox.cs: Implemented 2.0 methods and events.
1906 * TextBoxBase.cs: Added OnTextUpdate, so that
1907 ComboBox.ComboTextBox can inform ComboBox of it.
1909 2007-01-25 Jackson Harper <jackson@ximian.com>
1911 * TextControl.cs: Respect ShowSelection when deciding whether or
1912 not to display the caret, this allows comboboxes to have carets
1913 when the combotextbox does not have focus.
1915 2007-01-25 Jackson Harper <jackson@ximian.com>
1917 * TextControl.cs: Add a Suspend/Resume for updating, basically the
1918 same as the Suspend/Resume for recalc, except this will do actual
1920 - New Undo manager, works much like the MS version.
1922 * TextBoxBase.cs: The Cut operation is undoable.
1924 2007-01-25 Rolf Bjarne Kvinge <RKvinge@novell.com>
1926 * TextBoxBase.cs: Don't antialias text. Makes it look way better
1927 on Windows (no difference on Linux).
1929 2007-01-25 Rolf Bjarne Kvinge <RKvinge@novell.com>
1931 * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
1932 we don't want to activate any windows. Fixes #79433.
1934 2007-01-25 Jonathan Pobst <monkey@jpobst.com>
1936 - ButtonBase.cs: Fix capitalization of parameter: disposing.
1939 2007-01-25 Alexander Olk <alex.olk@googlemail.com>
1942 - Move to using System.ComponentModel.EventHandlerList
1943 - Replace Refresh with Invalidate
1944 - Clear the mime filecache on closing
1945 - Some other memory reducing work. After beeing closed FD now uses
1946 only about 300 KB for the fdo mime stuff plus the memory of the
1948 * Mime.cs: Changed coding style and removed unnecessary commented
1949 code. Some more memory memory reducing work.
1951 2007-01-25 Rolf Bjarne Kvinge <RKvinge@novell.com>
1953 * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
1954 a few other missing 2.0 properties.
1955 * Theme.cs: Added DrawFlatStyleComboBox.
1956 * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
1958 2007-01-24 Chris Toshok <toshok@ximian.com>
1960 * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
1961 wake_waiting flag, not just when there's data to be read. if we
1962 don't, then future wakeup's won't reach us and we'll be doomed to
1963 wait for the entire 1 second timeout forever (unless there are X
1966 2007-01-24 Jonathan Pobst <monkey@jpobst.com>
1968 * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
1969 until you pass Items.Count, not Items.Count - 1 like 1.1.
1971 2007-01-24 Gert Driesen <drieseng@users.sourceforge.net>
1973 * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
1975 2007-01-24 Jonathan Pobst <monkey@jpobst.com>
1977 * ToolStripContainer.cs: The recent Dock fix exposed that I was
1978 adding the panels in the wrong order.
1980 2007-01-24 Jackson Harper <jackson@ximian.com>
1982 * TextBoxBase.cs: When we move the caret we also need to move the
1983 selection, this fixes some random crashing after doing select
1984 text, unselect, delete a char, paste.
1986 2007-01-24 Rolf Bjarne Kvinge <RKvinge@novell.com>
1988 * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
1990 2007-01-23 Everaldo Canuto <everaldo@simios.org>
1992 * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
1993 OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553.
1994 * ToolBar.cs: Force redraw in BackgroundImageChanged.
1996 2007-01-23 Everaldo Canuto <everaldo@simios.org>
1999 - Implement support for vertical toolbars. Fixes #80539;
2000 - Call LayoutToolBar when resize, it fix some other problems in layout.
2001 - Rename requested_height to requested_size, as we can have width on it
2002 when toolbar is vertical.
2003 - Create a private property "Vertical" that uses Dock to verify when
2004 toolbar is vertical or not.
2005 - Set ControlStyles when change Dock property.
2006 - Refactory in LayoutToolBar to have better variables names and to support
2008 - Fixes default value for ButtonSize when button count is equal zero, size
2009 must be (39, 36) test case writed.
2011 2007-01-23 Chris Toshok <toshok@ximian.com>
2013 * Control.cs: fix the checks so that they work correctly for mdi
2016 2007-01-23 Chris Toshok <toshok@ximian.com>
2018 * Control.cs: ControlCollection seems to have super-secret
2019 abstraction breaking knowledge of Mdi containers. allow MdiClient
2020 to add toplevel controls.
2022 2007-01-23 Chris Toshok <toshok@ximian.com>
2024 * Control.cs: throw an ArgumentException if a toplevel control is
2025 added to our control collection from ControlCollection.Add, as
2026 well as from ControlCollection.IList.Add. This fixes the
2027 ControlSetTopLevelTest.TestTopLevelAdd unit test.
2029 Also, in ControlCollection.IList.Add, don't through an
2030 ArgumentNullException, throw an ArgumentException, when value ==
2031 null. This matches MS.
2033 2007-01-23 Chris Toshok <toshok@ximian.com>
2035 * BindingSource.cs: initial, incomplete, implementation of
2038 2007-01-23 Jackson Harper <jackson@ximian.com>
2041 * TextBoxBase.cs: Checking in some pieces of the undo stuff so
2042 that I can fix a broken unit test (TextBoxTest::ClearUndo)
2044 2007-01-23 Everaldo Canuto <everaldo@simios.org>
2046 * ToolBar.cs: Add status fields to ToolBarButtonInfo.
2048 2007-01-23 Andreia Gaita <avidigal@novell.com>
2050 * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
2051 * TreeNodeCollection.cs: New Add() methods, ContainsKey and
2052 IndexOfKey() for 2.0
2054 2007-01-23 Rolf Bjarne Kvinge <RKvinge@novell.com>
2056 * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
2057 to prevent it from changing z-order.
2058 * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
2059 leave UI updates in MdiWindowManager.
2060 * InternalWindowManager.cs: Check for 0 sized nc areas and make them
2061 1 sized (NC handling goes weird on Linux otherwise).
2062 * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
2063 necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
2064 remove a few NCRequestRecalcs. Changed calculations in IconicBounds
2065 to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
2066 and SetWindowState(s) to allow for changing the size of an activated child
2067 before activating it (reduces a lot of flicker).
2069 2007-01-22 Jonathan Pobst <monkey@jpobst.com>
2071 * Form.cs: Changing FormBorderStyle has different semantics based
2072 on whether the Form is visible or not. If not visible, don't change
2073 the Size. But InvalidateNC needs to be called to force the window
2074 to pick up the changes and redraw itself. [Fixes bug #80574]
2076 2007-01-22 Jonathan Pobst <monkey@jpobst.com>
2079 * ContainerControl.cs: ProcessCmdKey.
2080 * ErrorProvider.cs: new constructor.
2081 * Form.cs: fix AutoValidateEvent compiler warning.
2082 * Label.cs: fix OnAutoSizeChanged compiler warning.
2083 * MenuStrip.cs: fix CanOverflow compiler warning.
2084 * TabControl.cs: SelectTab, OnSelected methods, Selected event.
2085 * TextBox.cs: Dispose.
2086 * ToolStrip.cs: CanOverflow, re-enable double buffering.
2087 * ToolStripControlHost.cs: fix CausesValidation compiler warning.
2088 * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
2089 * ToolStripItem.cs: Overflow, RightToLeft properties.
2091 2007-01-22 Rolf Bjarne Kvinge <RKvinge@novell.com>
2093 * Form.cs: Move the layout of the main form to MdiWindowManager.
2094 * MdiWindowManager.cs: If WindowState changes from or to Maximized,
2095 do a layout of the main window to update MdiClient's client area to
2096 the right area. Fixes #80533. Remove the calculation of nc size,
2097 it was just wrong and the correct one is the same as for
2098 InternalWindowManager.
2100 2007-01-20 Jonathan Pobst <monkey@jpobst.com>
2102 * Control.cs: Setting Anchor or Dock needs to reset the other
2103 to its default. [Fixes bug #80556]
2105 2007-01-20 Chris Toshok <toshok@ximian.com>
2107 * CheckedListBox.cs: class status changes.
2109 * ScrollableControl.cs: same.
2111 * RichTextBox.cs: same.
2113 * ContainerControl.cs: same.
2115 * ListView.cs: same.
2117 * NotifyIcon.cs: same.
2119 * MenuStrip.cs: same.
2121 * RadioButton.cs: same.
2123 * CheckBox.cs: same.
2125 * PrintPreviewDialog.cs: same.
2129 2007-01-19 Jonathan Pobst <monkey@jpobst.com>
2131 * TreeNode.cs: Apply Alan's patch for Name property.
2133 2007-01-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
2135 * Form.cs: Implemented SizeGripStyle.
2136 * SizeGrip.cs: Check for minimum and maximum size for the
2137 control being resized and only resize if size has actually
2140 2007-01-19 Chris Toshok <toshok@ximian.com>
2142 * DataGridColumnStyle.cs: stop setting _readonly in the
2143 PropertyDescriptor setter. fixes a unit test failure.
2145 also, rename ParentReadOnly to TableStyleReadOnly, and have it
2146 just consult our table style (if we have one). We don't need to
2147 consult the datagrid readonly attribute because that's passed in
2148 as the _ro arg to Edit. this simplifies things a little.
2150 * DataGrid.cs: use CurrentColumn instead of
2151 current_cell.ColumnNumber just to simplify some of the code.
2153 switch the order of some things in the CurrentCell setter to keep
2154 the previous cell from getting a textbox again -
2155 EnsureCellVisibility causes scrolling to happen, which calls Edit.
2156 So we need to set the new cell before calling it.
2158 call Edit in OnEnter, as does Microsoft.
2160 also, make sure the current table style isn't the one we create
2161 initially when checking to see if it's different than the one
2162 we're setting it to in BindColumns (this fixes #80421).
2164 * GridTableStylesCollection.cs: table styles can have "" for a
2165 mapping name. part of the fix for #80421.
2167 * DataGridTextBoxColumn.cs: simplify the readonly calculation in
2170 2007-01-18 Jonathan Pobst <monkey@jpobst.com>
2172 * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
2173 and less GDI object leaky-er.
2175 2007-01-18 Andreia Gaita <avidigal@novell.com>
2177 * LinkLabel.cs: Add opaque control style
2179 2007-01-18 Jackson Harper <jackson@ximian.com>
2181 * TextControl.cs: Calculate width properly.
2182 - Don't store the tag's X offset, this can be figured out very
2184 - When getting the caret tag make sure to get the last empty tag.
2186 2007-01-18 Jonathan Pobst <monkey@jpobst.com>
2188 * Form.cs: Recalculate our size after setting a new FormBorderStyle.
2191 * Control.cs: Color.Empty shouldn't count for previous transparent
2194 2007-01-18 Jackson Harper <jackson@ximian.com>
2198 * TextControl.cs: Starting to merge in some pieces of my older
2199 undo work. Basically just some slight cleanup of the undo API.
2201 2007-01-18 Rolf Bjarne Kvinge <RKvinge@novell.com>
2203 * TrackBar.cs: Fix signature of RightToLeftLayout.
2204 * StatusBar.cs: Implemented missing 2.0 methods and attributes.
2205 * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
2206 * Application.cs: Implemented UseWaitCursor.
2208 2007-01-18 Jackson Harper <jackson@ximian.com>
2210 * TextControl.cs: We can't skip tags if any part of the tag is
2213 2007-01-18 Jonathan Pobst <monkey@jpobst.com>
2215 * ContainerControl.cs: Override OnLayout.
2217 2007-01-18 Jonathan Pobst <monkey@jpobst.com>
2219 * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
2221 * ContextMenuStrip.cs: Make sure context menu is shown on top of
2224 2007-01-18 Chris Toshok <toshok@ximian.com>
2226 * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
2227 (leftover from the container_selected days, I'd wager). fixes bug
2230 2007-01-18 Jonathan Pobst <monkey@jpobst.com>
2232 * Control.cs: Apply patch from George to fix the new testcase on
2233 bug #80451. We can't just check for Color.Transparent, we need
2234 to check if the back color's alpha channel is < 255.
2236 2007-01-18 Jonathan Pobst <monkey@jpobst.com>
2238 * Form.cs: Move setting show_icon = true to before the constructor
2239 so that the base constructor has that information when it calculates
2240 the form's size. Was causing forms to be (6, 6) bigger than they
2241 were supposed to be. Thanks for catching this Rolf!
2243 2007-01-18 Jackson Harper <jackson@ximian.com>
2245 * TextControl.cs: When replacing a selection we need to invalidate
2246 from the initial selection start, because selection start is moved
2247 to the end of the replacement.
2249 2007-01-18 Andreia Gaita <avidigal@novell.com>
2251 * LinkLabel.cs: Missing ControlStyles. Fixes #80482
2253 2007-01-18 Chris Toshok <toshok@ximian.com>
2255 * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
2258 2007-01-17 Everaldo Canuto <everaldo@simios.org>
2260 * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every
2261 layout methods and properties from ToolBarButton must be available
2262 into ToolBarButtonInfo.
2264 2007-01-17 Jonathan Pobst <monkey@jpobst.com>
2266 * Control.cs: If the control has a transparent background, we
2267 need to refresh it when it moves and when it's parent's background
2268 image changes. [Fixes bug #80451]
2270 2007-01-17 Jonathan Pobst <monkey@jpobst.com>
2272 * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code! Doh!
2274 2007-01-17 Jonathan Pobst <monkey@jpobst.com>
2276 * XplatUIWin32.cs: Implement proper double buffering for Windows.
2277 [Fixes bug #80447, and probably speeds up things as well]
2279 2007-01-16 Rolf Bjarne Kvinge <RKvinge@novell.com>
2281 * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
2282 * XplatUIWin32.cs: We need to recalculate NC size after changing
2283 window style to toolwindow (otherwise the client rectangle will be
2284 3 pixels to small for some reason).
2285 * MdiWindowManager.cs: Revert NC size calculations to match how
2286 they are calculated only based on window styles (to match
2287 Win32AdjustWindowRectEx, since otherwise when setting size or
2288 location, Control will call Win32AdjustWindowRectEx to update client
2289 size, which would provoke a paint, then we'd get a NCCALCSIZE and
2290 calculate a different value of client size causing another paint
2292 * InternalWindowManager.cs: When moving or resizing a window only
2293 update size or location if they actually changed.
2294 * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
2295 (seems to match Windows behaviour better). Cleaned up
2296 ManagedWindowDecorations to draw what's needed and nothing else
2297 (was drawing borders and lines where they shouldn't be)
2298 * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
2299 (style = 0xFFFF) and takes into account caption height when
2300 calculating window rectangle.
2302 2007-01-16 Everaldo Canuto <everaldo@simios.org>
2304 * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button
2305 can be added to toolbar multiple times, we need to maintain a list of
2306 button information for each positions.
2308 2007-01-16 Everaldo Canuto <everaldo@simios.org>
2310 * ToolBar.cs: Some small stetic changes.
2312 2007-01-16 Jackson Harper <jackson@ximian.com>
2314 * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
2315 that allow us to have nested recalc = false blocks.
2316 - Add paste support for images in the RichTextBox
2317 * RichTextBox.cs: flush the text after the color is changed, so
2318 the change takes effect.
2320 - Some extra debugging info
2321 * TextControl.cs: Tags no longer track their length, it is just
2322 computed from the next tags length, this makes things a little
2323 simpler and reduces places that we have to track length changes.
2324 - Refactored the linetag class a little so we could make it
2325 a base class for different kinds of tags
2326 - Created a image tag, a tag that can have a single image inserted
2328 - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
2329 that we can call suspend multiple times.
2330 - Add some debugging methods
2332 2007-01-16 Rolf Bjarne Kvinge <RKvinge@novell.com>
2334 * MdiClient.cs: Add ActivatePreviousChild for
2335 mdi child window navigation.
2336 * Form.cs: Use MdiClient.ActivateNextChild/
2337 ActivatePreviousChild instead of Form.SelectNextControl
2338 to select the next/previous child since
2339 SelectNextControl doesn't do it in the same order
2340 as mdi children should do it.
2342 2007-01-16 Chris Toshok <toshok@ximian.com>
2344 * Control.cs: remove container_selected field.
2346 2007-01-16 Rolf Bjarne Kvinge <RKvinge@novell.com>
2348 * MdiClient.cs: Update main form's ActiveChild when
2349 updating keyboard focus for the mdi child.
2351 2007-01-16 Jonathan Pobst <jpobst@novell.com>
2353 * Control.cs: PreferredSize fix.
2355 * Form.cs: Add several 2.0 events, properties, and methods.
2357 2007-01-16 Gert Driesen <drieseng@users.sourceforge.net>
2359 * Form.cs: Provide meaningful message when MdiParent is assigned a
2360 Form that is not an MdiContainer.
2362 2007-01-16 Rolf Bjarne Kvinge <RKvinge@novell.com>
2364 * MdiClient.cs: Update main form's ActiveChild when
2365 activating a mdi child.
2367 2007-01-16 Rolf Bjarne Kvinge <RKvinge@novell.com>
2369 * MdiWindowManager.cs: Fix NRE when merging menus and main form
2370 doesn't have a menu.
2372 * Form.cs: Request NCRecalc after creating a mdi child window.
2373 Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab,
2374 Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
2376 * MdiClient.cs: Add new method SendFocusToActiveChild that either
2377 sends keyboard focus to the active child, or to the MdiClient
2378 if there are no child forms.
2380 2007-01-15 Chris Toshok <toshok@ximian.com>
2382 * ListView.cs: drop the *Internal overrides, just do our work in
2383 ItemControl's WndProc instead.
2385 * UpDownBase.cs: a few large changes. Fix up the Selectable state
2386 of the various controls, and forward the events properly (in the
2387 same manner as MS) from the textbox to the UpDown. Also the
2388 ActiveControl of the UpDownBase gets set properly now. Finally,
2389 we don't call UpdateEditText from the ctor. Fixes bug #79957.
2391 * NumericUpDown.cs: set Text in the ctor.
2393 * DomainUpDown.cs: call UpdateEditText in the ctor.
2395 * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
2396 so even a Selectable = false textbox can be focused if you click
2399 * Control.cs: remove On{Got,Lost}FocusInternal. Subclasses can
2400 just add their handling in their respective WndProc's. Also add
2401 an explicit FocusInternal method that doesn't consult CanFocus
2402 before calling Select(this).
2404 * TextBoxBase.cs: deal with removal of the FocusInternal calls -
2405 do our work in WndProc instead.
2407 * TabControl.cs: same.
2409 * ComboBox.cs: same.
2411 2007-01-15 Everaldo Canuto <everaldo@simios.org>
2413 * Menu.cs: implement MergeItems and Replace for MenuMerge method.
2416 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
2419 * ThemeWin32Classic.cs: Don't draw the item text outside
2420 item bounds in Details view, as well as use trimming.
2423 2007-01-15 Jonathan Pobst <jpobst@novell.com>
2425 * Form.cs: Implement Form.ShowIcon.
2427 * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
2428 null, which when combined with the DlgModalFrame window style removes
2429 the icon from the title bar.
2431 2007-01-15 Jonathan Pobst <jpobst@novell.com>
2433 * Control.cs: Call OnMouseClick after OnClick. (2.0)
2435 2007-01-15 Everaldo Canuto <everaldo@simios.org>
2437 * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
2438 menu when mdi child windows theres a menu, uses insert to get icon
2439 at first position. Partially fix #80006.
2441 2007-01-15 Jonathan Pobst <jpobst@novell.com>
2443 * Clipboard.cs: Implement 2.0 methods.
2445 2007-01-15 Everaldo Canuto <everaldo@simios.org>
2447 * Menu.cs: Implement Insert method of MenuItemCollection class
2450 2007-01-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>
2452 * ListView.cs: Implement 2.0 FindItemWithText method.
2454 2007-01-11 Everaldo Canuto <everaldo@simios.org>
2456 * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
2457 to calculate menu bar size. Fixes #80290.
2459 2007-01-11 Everaldo Canuto <everaldo@simios.org>
2461 * ThemeWin32Classic.cs: Fix position of menuitem check mark.
2463 2007-01-11 Chris Toshok <toshok@ximian.com>
2465 * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
2468 2007-01-11 Chris Toshok <toshok@ximian.com>
2470 * LinkLabel.cs: make sure to call base.Select in our Select method
2471 if it turns out we're going to be selected (i.e. if we have a link
2472 that is going to receive focus). That way our container's
2473 ActiveControl is updated properly.
2475 2007-01-11 Chris Toshok <toshok@ximian.com>
2477 * LinkLabel.cs: turns out that LinkLabels are only Selectable if
2478 they have 1 or more links. this fixes the crash gert reported.
2480 2007-01-11 Andreia Gaita <avidigal@novell.com>
2482 * ContainerControl.cs: Remove ContainerSelected flag, not needed
2485 * Control.cs (Controls.Add): Check if control to be added to the collection
2486 is a top level control, and throw an ArgumentException if it is.
2487 Remove ContainerSelectedFlag, not needed anymore.
2489 * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
2490 top most control doesn't activate the form. This fixes a problem in the
2491 MessageBox, where the default button wouldn't get focus because the form
2492 was activated before being Loaded - when the Owner is set, SetTopMost is
2493 called, and it would activate it.
2495 2007-01-11 Jonathan Pobst <jpobst@novell.com>
2497 * Button.cs: When clicked and setting the parent form's DialogResult,
2498 use FindForm instead of Parent, since parent could be a container
2499 control and not the Form. Fixes bug #80495.
2501 2007-01-10 Chris Toshok <toshok@ximian.com>
2503 * Form.cs: move the call to SendControlFocus into the same
2506 2007-01-10 Chris Toshok <toshok@ximian.com>
2508 * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
2509 It breaks in the face of the new ActiveControl stuff, and should
2512 * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
2513 activecontrol's focus if it's not already set, after we set
2514 ActiveControl, but before we call OnActivated. Re-fixes #79667
2515 after the previous focus/active control fixes regressed it.
2517 * Control.cs: reindent some code.
2519 2007-01-10 Chris Toshok <toshok@ximian.com>
2521 * Splitter.cs: clearing some outstanding changes from my tree.
2522 Replace all accesses (not writes) to the internal dock_style field
2523 with the Dock property.
2525 2007-01-10 Chris Toshok <toshok@ximian.com>
2527 * Control.cs: make FireEnter, FireLeave, FireValidating, and
2528 FireValidated virtual.
2530 * Form.cs: override and don't chain up calls to FireEnter and
2533 2007-01-10 Carlos Alberto Cortez <calberto.cortez@gmail.com>
2535 * ListView.cs: Add more text padding space when using
2536 auto resize for columns (the previous value didn't work fine).
2538 * ThemeWin32Classic.cs: Update text position inside columns,
2539 to match the appeareance of .Net.
2541 * ColumnHeader.cs: When using auto resize, only the Width should
2542 depend on the sub items, not the Height. Also, set width after
2543 auto resizing (the value of Width should never remain as -1 or -2).
2545 2007-01-10 Chris Toshok <toshok@ximian.com>
2547 * Application.cs: fix compilation errors when debug is enabled.
2549 2007-01-10 Chris Toshok <toshok@ximian.com>
2551 * ContainerControl.cs (set_ActiveControl): rework this a bit (and
2552 add some nice ascii art pictures and explanation of the process).
2553 (GetMostDeeplyNestedActiveControl): new utility function we need
2554 because our ActiveControl can refer to a child container with its
2557 * Form.cs (OnActivated): remove the call to SelectActiveControl
2558 from here, since you can override this method and not chain up,
2559 and winforms still sets the active control.
2560 (OnCreateControl): also remove the unnecessary SelectActiveControl
2562 (WndProc): it's actually called from the WM_ACTIVATE block, just
2563 before calling OnActivated.
2565 * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
2566 inside the else. the ActiveControl setter will end up setting
2567 focus on @control. This keeps us from setting it again (and
2568 generating an extra LostFocus/GotFocus pair).
2569 (Select (bool, bool)): reindent.
2571 2007-01-10 Jonathan Pobst <jpobst@novell.com>
2573 * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
2574 StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
2575 ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
2576 ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2577 ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
2578 ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
2579 ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
2580 ToolStripTextBox.cs: Another wave of corcompare work.
2582 2007-01-09 Carlos Alberto Cortez <calberto.cortez@gmail.com>
2584 * ColumnHeader.cs: Implement 2.0 AutoResize method using
2587 * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
2588 methods by callling Column.AutoResize method on columns.
2590 2007-01-09 Jonathan Pobst <monkey@jpobst.com>
2592 * Control.cs: Provide proper implementations of PreferredSize
2593 and GetPreferredSize (2.0).
2595 2007-01-09 Jonathan Pobst <monkey@jpobst.com>
2597 * Form.cs: Remove one character (!) to make my previous OnClosing
2598 stuff work for modal windows like MessageBox.
2600 2007-01-09 Carlos Alberto Cortez <calberto.cortez@gmail.com>
2603 * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
2604 ListView.Columns to get the last displayed column. Fixes #80452.
2606 2007-01-09 Everaldo Canuto <everaldo@simios.org>
2608 * Label.cs, LinkLabel.cs: Source code identation fixes.
2610 2007-01-08 Everaldo Canuto <everaldo@simios.org>
2612 * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
2613 we dont need to invalidate only borders because when we invalidate four
2614 border lines the invalidate's generates a complete redraw of button,
2615 because it now invalidate a complete rect some other redraws operations
2616 are fixed. Fixes #80196.
2618 * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
2619 Remove ToolBarInvalidateEntireButton as it is not used.
2621 2007-01-08 Jonathan Pobst <monkey@jpobst.com>
2623 * Form.cs: Make sure that both OnClosing and OnFormClosing are
2624 called for 2.0 profile.
2625 * CloseReason.cs: Make class internal for 1.1.
2627 2007-01-08 Jonathan Pobst <monkey@jpobst.com>
2629 * ToolStripManager.cs: Implement FindToolStrip functionality.
2630 * ToolStrip.cs: Register and unregister with ToolStripManager.
2632 2007-01-07 Jonathan Pobst <monkey@jpobst.com>
2634 * Control.cs: This was messy. 2.0 moves much of ControlCollection
2635 to ArrangedElementCollection. Implemented this with as few #if's as
2636 possible (which is still too many).
2638 2007-01-07 Jonathan Pobst <monkey@jpobst.com>
2640 * Control.cs: Implement SizeFromClientSize() [2.0].
2642 2007-01-07 Everaldo Canuto <everaldo@simios.org>
2644 * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
2645 use Theme.BorderSize to calculate area instead of static value 1,
2646 by the way use new BorderStaticSize instead Border3DSize when
2647 border_static is true. Fixes #79537.
2649 * XplatUIOSX.cs: Fix call to GetClientRectangle.
2651 * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
2654 2007-01-06 Everaldo Canuto <everaldo@simios.org>
2656 * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
2658 2007-01-06 Everaldo Canuto <everaldo@simios.org>
2660 * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
2661 WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
2664 - border_static field added, it will used to define when a control
2665 theres 3D border but it must be static (thin).
2666 - In GetWindowRectangle use Theme.BorderSize to calculate area
2667 instead of static value 1, by the way use new BorderStaticSize instead
2668 Border3DSize when border_static is true.
2670 * XplatUIX11.cs, XplatUIOSX.cs:
2671 - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
2673 * Theme.cs: BorderStaticSize field added.
2675 2007-01-05 Everaldo Canuto <everaldo@simios.org>
2677 * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
2679 2007-01-05 Everaldo Canuto <everaldo@simios.org>
2681 * Control.cs: Under InternalBorderStyle call RecreateHangle to
2682 mimic same behavior than win32 that set border only in CreateParams,
2683 it fix problems under CreateParams overrides. Fix #79442 and partial
2686 * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
2687 of thi control you must call recreate handle.
2689 * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
2690 need to do anything as RecreateHangle will take care about borders.
2692 2007-01-05 Mike Kestner <mkestner@novell.com>
2694 * ListView.cs: hack to eliminate Lost/Got focus notifications on
2695 cycles between the ItemControl and parent. Fixes #80388.
2697 2007-01-05 Gert Driesen <drieseng@users.sourceforge.net>
2699 * Control.cs: Lazy init layout engine. Do not directly use
2700 layout_engine since LayoutEngine may be overridden (on 2.0 profile).
2702 2007-01-05 Chris Toshok <toshok@ximian.com>
2704 * DataGrid.cs: don't forceably rebind columns in SetDataSource
2705 unless our list manager has changed (i.e. unless we have reason to
2706 believe our columns have changed). Fixes #80422.
2708 also, disable the call do BindColumns in
2709 OnListManagerMetaDataChanged. this breaks this test in 2.0 (in
2710 1.1 the event isn't raised in response to a column addition on a
2713 2007-01-05 Jonathan Pobst <monkey@jpobst.com>
2715 * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
2716 that inheritors can not call it if they choose. Fixes bug #80456.
2718 2007-01-05 Andreia Gaita <avidigal@novell.com>
2720 * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it
2721 doesn't blow up with a null exception on marshalling.
2723 2007-01-05 Jonathan Pobst <monkey@jpobst.com>
2725 * Control.cs: Implement several 2.0 protected properties and methods.
2726 Ensure that all necessary events are being called when properties
2729 2007-01-05 Mike Kestner <mkestner@novell.com>
2731 * ListView.cs: implement PgUp/PgDn for Details view. Also
2732 fixes First/LastVisibleIndex to use the item_control.ClientRect
2733 instead of the parent control. Fixes #80378.
2735 2006-01-05 Atsushi Enomoto <atsushi@ximian.com>
2737 * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
2738 determine whether to use yard-pound or not (bug #78399).
2740 2006-01-04 Alexander Olk <alex.olk@googlemail.com>
2742 * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
2743 problems. So it is time to bring back the old popupbutton colors.
2745 2006-01-04 Carlos Alberto Cortez <calberto.cortez@gmail.com>
2748 * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
2749 property by using the internal information of the
2750 columns order in ListView.
2752 2007-01-04 Jonathan Pobst <monkey@jpobst.com>
2754 * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
2755 Add 2.0 Tag properties.
2757 * LinkArea.cs: Add 2.0 ToString method.
2759 2007-01-03 Chris Toshok <toshok@ximian.com>
2761 * DataGrid.cs: the Alt+0 handling was wrong, it should have been
2762 Ctrl+0. Fixes bug #80367. Also, don't eat the Delete keypress
2763 when we're editing, which fixes #80047.
2765 2007-01-03 Chris Toshok <toshok@ximian.com>
2767 * Form.cs: apply patch contributed by Dominik Seichter. fixes
2770 2007-01-03 Jonathan Pobst <monkey@jpobst.com>
2772 * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
2773 property and implementation.
2775 * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
2776 for MdiWindowListItem property.
2778 * ToolStripDropDown.cs: Don't consider hidden menu items while
2779 laying out the menu.
2781 2007-01-03 Andreia Gaita <avidigal@novell.com>
2783 * SendKeys.cs: window handle is not needed in win32, so just
2784 get the active window for X after parsing keys and don't use
2785 it when building the message; it is passed by parameter to the
2786 Xplat method and used there to build the message instead. Also,
2787 wait for events to be processed on SendWait, as opposed to Send,
2788 which doesn't wait :) Playing with threads and Send() completely
2789 hangs on ms.net, only SendWait() works.
2792 X11Display.cs: Check for valid window handle.
2794 2007-01-03 Jackson Harper <jackson@ximian.com>
2796 * TextControl.cs: Need to prevent wrap calculations when replacing
2797 text (this was there before i removed it accidently).
2798 - Don't update the cursor during the positioning, just set it to
2799 selection_start at the end of the operaion.
2801 2007-01-03 Rolf Bjarne Kvinge <RKvinge@novell.com>
2804 * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
2806 2007-01-03 Rolf Bjarne Kvinge <RKvinge@novell.com>
2808 * MonthCalendar.cs: Added Click and DoubleClick events again,
2809 but this time they only hide Control's Click and DoubleClick.
2811 2007-01-03 Gert Driesen <drieseng@users.sourceforge.net>
2813 * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
2814 System.Drawing assembly. Spaces to tabs. Removed extra tabs.
2816 2007-01-02 Jackson Harper <jackson@ximian.com>
2818 * TextBoxBase.cs: We move the caret with the split now, so we
2819 don't need to explicitly move the caret after splitting. This
2820 fixes the caret bumping down an extra line on Enter.
2822 2007-01-02 Miguel de Icaza <miguel@novell.com>
2824 * ContainerControl.cs: Add AutoValidateChanged event (for PDN
2827 * ScrollableControl.cs: Add Scroll event.
2829 2007-01-02 Mike Kestner <mkestner@novell.com>
2831 * ListView.cs: one more try with help from georgegiolfan@yahoo.com
2832 to fix all hdr height padding codepaths. Fixes #80207.
2834 2007-01-02 Chris Toshok <toshok@ximian.com>
2836 * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
2837 setting it to the Control defaults anyway, and it being after the
2838 Dock set was screwing up layout.
2839 (set_Dock): don't short circuit out of setting base.Dock. Also,
2840 no need to call UpdateStatusBar here, as it'll be re-layed out if
2843 2007-01-02 Mike Kestner <mkestner@novell.com>
2845 * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
2846 to header height for width == -1. Fixes the rest of #80207.
2848 2007-01-02 Mike Kestner <mkestner@novell.com>
2850 * ListView.cs: rework the mouse event forwarding everaldo added
2851 to translate the coordinates to the parent control not
2852 raise the parent events until after we've done our work. Hover
2853 needs more work, in the case where HoverSelection is on, because
2854 the item control receives more than one MouseHover per Enter
2855 event, so we need to ensure only the "first" hover gets forwarded.
2856 Opening a minor bug for that.
2858 2007-01-02 Gert Driesen <drieseng@users.sourceforge.net>
2860 * CheckedListBox.cs: Fixed SelectionMode to match MS.
2861 * ListControl.cs: Implemented AllowSelection property. Removed extra
2863 * ListBox.cs: Implemented AllowSelection property.
2865 2007-01-02 Everaldo Canuto <everaldo@simios.org>
2867 * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
2868 SelectedItem, it prevent for errors when you must disable item
2869 before perform click. Fixes #80409.
2871 2007-01-02 Everaldo Canuto <everaldo@simios.org>
2873 * MenuAPI.cs: Prevent second level and beyond submenus to close
2874 until first level when move out side of popup.
2876 2007-01-02 Everaldo Canuto <everaldo@simios.org>
2879 - Down submenu positin in three pixels.
2880 - Closes sub menu when mouse leaves from menu. Fixes #80402.
2882 2007-01-02 Everaldo Canuto <everaldo@simios.org>
2884 * ThemeWin32Classic.cs:
2885 - Fix popup menu size adding one pixel on the top.
2886 - Down menu item border from two to one to mimic Win32.
2887 - Some source identation fixes.
2889 2007-01-01 Everaldo Canuto <everaldo@simios.org>
2891 * ThemeWin32Classic.cs: Use float numbers to calculate size and
2892 position of menu arrows, it fix wrong arrow size.
2894 2007-01-01 Everaldo Canuto <everaldo@simios.org>
2896 * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
2897 instead of line, it simplify draw operation and fix it using 3D
2898 borders to mimic Win32.
2900 2007-01-01 Jonathan Pobst <monkey@jpobst.com>
2902 * StatusStrip.cs: Add implementation of the sizing grip.
2904 * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
2905 StatusStrip rendering.
2907 2006-12-31 Chris Toshok <toshok@ximian.com>
2909 * ToolBar.cs: don't assign to dock_style in the .ctor. it doesn't
2910 override the layout style (anchor/dock) of the control. assign to
2911 Dock instead. Fixes bug #80416.
2913 * ToolStrip.cs: same.
2915 2006-12-31 Andreia Gaita <avidigal@novell.com>
2917 * ContainerControl.cs: Use ContainerSelected flag to check if
2918 a Container is directly selected, or if Select is called on a
2919 non-container. If a container is directly selected, focus events
2920 should not be raised.
2921 Apply #80411 patch to throw exception on set_ActiveControl if
2922 control is the same as the current one.
2924 * Control.cs: Use ContainerSelected flag (see above).
2925 Add invalidation check to raise event but not invalidate if
2930 2006-12-31 Everaldo Canuto <everaldo@simios.org>
2932 * MenuAPI.cs: After click, dont close popup menu when menu is
2933 ContextMenu. Fixes #80399.
2935 2006-12-30 Chris Toshok <toshok@ximian.com>
2937 * ContainerControl.cs: make sure we throw the exception if the
2938 container control doesn't contain the control we're setting
2941 2006-12-30 Chris Toshok <toshok@ximian.com>
2943 * Control.cs (SetTopLevel): fix the exception raised by
2944 SetTopLevel for child controls.
2945 (set_Anchor): call UpdateDistances when setting the anchor type.
2946 This fixes bug #80336.
2948 2006-12-29 Gert Driesen <drieseng@users.sourceforge.net>
2950 * Theme.cs: For now, revert back to 8pt font.
2952 2006-12-29 Everaldo Canuto <everaldo@simios.org>
2954 * MenuAPI.cs: Set popup as active when open a ContextMenu.
2957 2006-12-29 Chris Toshok <toshok@ximian.com>
2959 * Control.cs: reorder the code in OnResize to give the same event
2962 2006-12-29 Rolf Bjarne Kvinge <RKvinge@novell.com>
2964 * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
2965 TileHorizontally and TileVertically.
2967 2006-12-29 Alexander Olk <alex.olk@googlemail.com>
2969 * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
2970 FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
2971 SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
2972 Corrected copyright and email adress.
2974 2006-12-29 Gert Driesen <drieseng@users.sourceforge.net>
2976 * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
2977 of Exception in FullPath property if no TreeView is associated with
2980 2006-12-29 Gert Driesen <drieseng@users.sourceforge.net>
2982 * Theme.cs: Marked default_font as private, and initialize it in ctor
2983 with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
2985 * ThemeGtk.cs: Removed default_font intialization.
2986 * ThemeWin32Classic.cs: Removed default_font initialization.
2988 2006-12-28 Chris Toshok <toshok@ximian.com>
2990 * Control.cs: fix a couple of place where we were creating handles
2991 more aggressively than we should be. Fixes ControlRefresh unit
2994 2006-12-28 Chris Toshok <toshok@ximian.com>
2996 * Control.cs: contrary to what the comment said, Control.Dock does
2997 not supercede Control.Anchor - the last one you assign to decides
2998 the layout behavior. so we need to keep track of which was the
2999 last set. Also, fix some of the affected property arguments in
3000 PerformLayout calls, and remove an redundant parent.PerformLayout
3003 Add a VisibleInternal property, which returns is_visible. We
3004 can/should get rid of all the usage of this field elsewhere.
3006 2006-12-28 Rolf Bjarne Kvinge <RKvinge@novell.com>
3008 * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
3009 control style, not DoubleBuffer. Added UseDoubleBuffering property
3010 that indicates whether doublebuffering is enabled and supported.
3011 (comment from and code based on Gert Driesen's patch in #80324).
3014 2006-12-28 Rolf Bjarne Kvinge <RKvinge@novell.com>
3016 * Control.cs: Fixed a NRE.
3018 2006-12-28 Rolf Bjarne Kvinge <RKvinge@novell.com>
3020 * TrackBar.cs: Fix SmallChange and LargeChange exceptions
3023 2006-12-28 Rolf Bjarne Kvinge <RKvinge@novell.com>
3025 * Control.cs: Rewrote double buffering, now a seperate
3026 class handles all the buffering, no Graphics is disposed of
3027 until the painting is finished (earlier implementation
3028 would crash if the control was resized in the OnPaint,
3029 since it would cause the double buffer to be recreated
3030 and the old one disposed), a separate Graphics is
3031 created for every paint (MS behaviour and anyways the state
3032 of the Graphics would have to be saved and restored otherwise)
3036 * XplatUI.cs: Added and implemented GetOffscreenGraphics
3037 so that we can get the graphics for the back buffer without
3038 having to create a new one and remove the offscreen_dc parameter
3039 from CreateOffscreenDrawable and DestroyOffscreenDrawable.
3041 2006-12-27 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3043 * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
3044 Also make virtual all the key-related methods.
3046 * ListViewItem.cs: Make virtual the key related methods for
3047 ListViewSubItemCollection.
3049 2006-12-27 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3053 * ThemeWin32Classic.cs:
3054 * Theme.cs: Initial support for Tile view in ListView,
3055 as well as the implementation of the required bits for it (Item
3058 2006-12-27 Gert Driesen <drieseng@users.sourceforge.net>
3060 * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
3061 of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
3062 Provide useful exception messages.
3064 2006-12-27 Rolf Bjarne Kvinge <RKvinge@novell.com>
3066 * TrackBar.cs: Remove a warning.
3067 * MonthCalendar.cs: Moved back to using Capture to hide the calendar
3068 when used by DateTimePicker, fixes #80287. This also requires that
3069 MonthCalendar implements it's own drawing for the yearly updown control,
3070 otherwise the Capture tracking would be too complicated. Removed the Click
3071 and DoubleClick events (according to comments they were hiding the base class
3072 event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
3073 raise these events, not that they cannot be raised. It is possible to raise
3074 them by calling OnClick and OnDoubleClick). Added two internal fields in
3075 HitTestInfo in order to track give more tracking info needed by MonthCalendar.
3076 * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
3077 * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
3078 event, no longer needed.
3080 2006-12-27 Gert Driesen <drieseng@users.sourceforge.net>
3082 * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
3083 true if new value differs from current value.
3085 2006-12-27 Gert Driesen <drieseng@users.sourceforge.net>
3087 * Control.cs: ControlCollection.Count must be public. Fixed build of
3090 2006-12-27 Gert Driesen <drieseng@users.sourceforge.net>
3092 * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
3094 2006-12-27 Gert Driesen <drieseng@users.sourceforge.net>
3096 * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
3098 2006-12-26 Everaldo Canuto <everaldo@simios.org>
3100 * Control.cs: Invalidates control including when Width and Height is
3101 equal zero or is not visible, only Paint event must be care about
3104 2006-12-26 Chris Toshok <toshok@ximian.com>
3106 * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
3107 more corcompare work.
3109 * DataGridView.cs: fix compiler warning.
3111 * ColumnHeader.cs: some corcompare work, and also take the
3112 opportunity to make the internal fields private.
3114 * ListView.cs: fix the fallout from the above field change.
3116 2006-12-26 Jonathan Pobst <monkey@jpobst.com>
3118 * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
3119 ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
3120 ToolStripTextBox.cs: Fixes to events and corcompare.
3122 2006-12-26 Everaldo Canuto <everaldo@simios.org>
3124 * ListView.cs: Call owner.OnMousexx event to propagate events from
3125 item to ListView. Fixes #80367.
3127 2006-12-26 Gert Driesen <drieseng@users.sourceforge.net>
3129 * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
3130 if value is less than one. ItemHeight should not be set to a value
3131 less than 1, and throw ArgumentOutOfRangeException on 2.0 profile.
3134 2006-12-26 Jonathan Pobst <monkey@jpobst.com>
3136 * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
3137 * ToolStripStatusLabel.cs: Add Spring for Moma.
3139 2006-12-26 Gert Driesen <drieseng@users.sourceforge.net>
3141 * DataGridView.cs: Fixed several NullReferenceException in On* methods.
3142 Fixed code formatting. Removed debug code.
3143 * DataGridViewTextBoxEditingControl.cs: Removed debug code.
3145 2006-12-26 Gert Driesen <drieseng@users.sourceforge.net>
3147 * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
3148 RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
3149 ArgumentOutOfRangeException if ColumnCount is negative. In
3150 ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
3151 less than 4 or higher than 32768.
3152 * DataGridViewCellStyle.cs: Fixed default value for NullValue.
3153 Fixed FormatProvider to return CurrentCulture unless explicitly set.
3154 Fixed IsFormatProviderDefault to return true if FormatProvider has
3155 not been explicitly set.
3157 2006-12-25 Chris Toshok <toshok@ximian.com>
3159 * Application.cs: add a couple of 2.0 events.
3161 2006-12-25 Chris Toshok <toshok@ximian.com>
3163 * Control.cs: fix compiler warning.
3165 * AxHost.cs: corcompare fixes.
3167 * ApplicationContext.cs: corcompare fixes.
3169 2006-12-25 Chris Toshok <toshok@ximian.com>
3171 * Control.cs: only update dist_right/dist_bottom if the
3172 width/height is > 0. this fixes anchored controls being resized
3173 smaller until they disappear and then resized larger again.
3175 2006-12-25 Chris Toshok <toshok@ximian.com>
3177 * Control.cs: a couple of changes. Remove dist_left and dist_top,
3178 since they're nothing more than X/Left and Y/Top, respectively.
3180 Also, move back to a per-control Bitmap/Graphics for
3181 DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
3182 MT case. Go with a tiny bitmap though, 1x1, instead of Width x
3185 2006-12-25 Miguel de Icaza <miguel@novell.com>
3187 * MessageBox.cs: Implemented overload that takes a new "bool
3188 displayHelpButton" by adding a new internal field "show_help".
3189 When clicked this will raise the HelpRequested on the owner or the
3192 From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
3193 From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
3195 * ListView.cs: Add support ColumnWidthChanged and
3196 ColumnWidthChanging.
3198 Add support for ColumnReordered event.
3199 (ReorderColumn): Add NET_2_0 specific support for cancelling the
3204 * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
3206 This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
3208 2006-12-24 Chris Toshok <toshok@ximian.com>
3210 * GridTablesFactory.cs: 2.0 corcompare work.
3212 * ToolStripContainer.cs: add "override" to
3213 ContextMenuStripChanged, and remove the local event object.
3215 * ToolStripDropDown.cs: same with a couple properties.
3217 * ToolStripPanel.cs: same with AutoSizeChanged event.
3219 * TextBoxBase.cs: add "override" to AutoSizeChanged.
3221 * Form.cs: add the remaining 2.0 events, and do some corcompare
3224 * DateTimePicker.cs: add "new" to padding.
3226 * ButtonBase.cs: use Control's use_compatible_text_rendering.
3228 * ToolStripContentPanel.cs: use base.AutoSizeChanged.
3230 * DataGridView.cs: PaddingChanged is overridden.
3232 2006-12-24 Chris Toshok <toshok@ximian.com>
3234 * Control.cs: corecompare work here too.
3236 * DataGridViewElement.cs, DataGridView.cs,
3237 DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
3238 DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
3239 DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
3240 DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
3243 2006-12-24 Miguel de Icaza <miguel@novell.com>
3245 * Control.cs: Switched the error message on the console for a
3246 todo. A review of the code will have to cope with this anyways
3247 (since its a large feature, it is in our radar) and it was
3248 producing too much output when running PDN.
3250 * ToolStripComboBox.cs: Set the text when the SelectedIndex
3251 changes. Applications depend on this (PDN 2.72)
3253 2006-12-23 Chris Toshok <toshok@ximian.com>
3255 * TableLayoutSettings.cs: finish up the corcompare work for this
3258 2006-12-23 Chris Toshok <toshok@ximian.com>
3260 * Control.cs: make SetImplicitBounds internal, do some futzing
3261 with LayoutEngine so that it's available in 1.1, and remove the
3262 entire duplicated code mess from PerformLayout. Use
3263 System.Windows.Forms.Layout.DefaultLayout instead.
3265 * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
3267 2006-12-23 Jonathan Pobst <monkey@jpobst.com>
3269 * Form.cs: Add MainMenuStrip property.
3271 2006-12-23 Jonathan Pobst <monkey@jpobst.com>
3273 * Control.cs: Add ContextMenuStrip property and implementation.
3274 Fix ContextMenu implementation to show menu centered on control when
3275 activated using the keyboard instead of showing at screen (0,0).
3277 * ToolStripDropDown.cs: Fix needed overload of Show ().
3279 2006-12-23 Everaldo Canuto <everaldo@simios.org>
3281 * Menu.cs: Name property added for 2.0 profile.
3283 2006-12-23 Everaldo Canuto <everaldo@simios.org>
3285 * Menu.cs: Update information about FindMenuItem, method to be
3288 2006-12-23 Everaldo Canuto <everaldo@simios.org>
3290 * MenuAPI.cs: When deselect items deselect also selected subitems.
3292 2006-12-23 Everaldo Canuto <everaldo@simios.org>
3294 * MenuAPI.cs: When hides menu set Wnd to null, it prevents
3295 FindSubItemByCoord to found itens that is not active, also an
3296 cheking added to FindSubItemByCoord to search for items only
3297 in visible popup windows. Fixes #80274.
3299 2006-12-22 Everaldo Canuto <everaldo@simios.org>
3301 * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
3302 internal property, it be care about change ExStyle.
3304 2006-12-22 Andreia Gaita <avidigal@novell.com>
3306 * ContainerControl.cs: set activeControl for parent forms up the
3307 tree when the new activecontrol is a container.
3308 When validating the active control, if it is a container, also
3309 raise up the validation for it's active control. Fixes #80280
3311 * Control.cs: Add internal property flag and check to prevent
3312 Focus events from getting raised when Select() is called for
3313 a ContainerControl. There are still too many focus events being
3314 raised at the moment though.
3315 Cleaned up the code a bit.
3317 2006-12-22 Rolf Bjarne Kvinge <RKvinge@novell.com>
3319 * Control.cs: Added all missing 2.0 events.and
3320 fixed a couple of corcompare issues.
3321 * TrackBar.cs: Implemented missing 2.0 bits.
3323 * DateTimePicker.cs,
3324 * MdiClient.cs: Fixed some corcompare issues.
3326 2006-12-21 Jonathan Pobst <monkey@jpobst.com>
3328 * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
3329 SplitterPanel.cs: corecompare work.
3331 2006-12-21 Jonathan Pobst <monkey@jpobst.com>
3333 * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
3334 Clean up warnings for BackgroundImageChanged and PaddingChanged
3335 events now that they are implemented in Control.cs.
3337 2006-12-21 Jonathan Pobst <monkey@jpobst.com>
3339 * Control.cs: Make sure layout_engine isn't null before using it (2.0).
3341 * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
3342 TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
3343 of TableLayoutPanel and supporting cast.
3345 2006-12-21 Rolf Bjarne Kvinge <RKvinge@novell.com>
3348 - GrabWindow now confines the mouse pointer to the confine window.
3349 - Added Win32ClipCursor and Win32GetClipCursor.
3352 - Added CaptureWithConfine to be able to capture and confine
3355 * InternalWindowManager.cs:
3356 - Call CaptureWithConfine instead of Capture if we're an
3357 MdiChild (fixes #79982).
3359 2006-12-21 Chris Toshok <toshok@ximian.com>
3361 * DataGrid.cs: guard against the initial state of selection, where
3362 selection_start == -1. make sure we only select from index >= 0.
3365 2006-12-21 Chris Toshok <toshok@ximian.com>
3367 * Control.cs: we don't need to be so draconian with
3368 UpdateDistances, and we thusly don't need to call it before
3369 calling PerformLayout in ResumeLayout. Fixes bug #80289.
3371 2006-12-21 Daniel Nauck <dna@mono-project.de>
3374 TextBox.cs: Implemented AutoComplete properties.
3376 2006-12-20 Chris Toshok <toshok@ximian.com>
3378 * DataGridView*.cs: some corecompare work.
3380 2006-12-20 Jackson Harper <jackson@ximian.com>
3382 * XplatUIX11.cs: We need to hide the caret when deleting it,
3383 otherwise you get carets left lying around everywhere.
3384 * TextBoxBase.cs: Kill then redraw the caret when scrolling. This
3385 prevents getting some weird half drawn caret tracers when
3387 * TextControl.cs: Attempt to reduce the number of times we need to
3390 2006-12-20 Gert Driesen <drieseng@users.sourceforge.net>
3392 * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
3394 2006-12-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
3396 * DateTimePicker.cs:
3397 - Implemented missing 2.0 bits.
3398 - Changed some default values to match MS.
3400 2006-12-20 Jackson Harper <jackson@ximian.com>
3402 * TextBoxBase.cs: When changing the font across the document we
3403 can't recalculate after changing each line, since that will cahnge
3405 - PreferredHeight is a little different than i thought.
3406 - When backspacing, move the caret before we do the actual char
3407 delete, because when that delete crosses a wrap boundary the
3408 positional information will change.
3410 2006-12-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
3412 * Control.cs: Added some missing 2.0 bits:
3413 BackgroundImageLayout, BackgroundImageLayoutChanged,
3414 OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and
3415 add IBindableComponent and IDropTarget implementation.
3418 - Added all missing 2.0 features:
3419 BackgroundImageLayout, RightToLeftLayout,
3420 OnHandleDestroyed, RightToLeftLayoutChanged,
3421 BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
3423 - Rewrote all the BoldDate code, it was completely broken.
3424 - Fixed all the tests (the tests can now be re-enabled, the
3425 problems were not with the tests, but with the control, it was
3428 * DateTimePicker.cs: Changed the location where the
3429 MonthCalendar is shown.
3431 2006-12-19 Chris Toshok <toshok@ximian.com>
3433 * DataGridView.cs: add IDropTarget implementation.
3435 * ToolStripPanel.cs: add IDropTarget implementation.
3437 2006-12-19 Jackson Harper <jackson@ximian.com>
3439 * TextControl.cs: soft now means something different than what it
3440 used to mean, we want to move the caret regardless of whether or
3441 not this break was soft (would we really have wanted the caret
3442 to not move with the break in the old context?)
3443 * TreeView.cs: Make sure we factor in the vert scrollbar when
3444 calculating the horizontal scrollbar's maximum.
3446 2006-12-19 Andreia Gaita <avidigal@novell.org>
3448 * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
3449 check for keywords in alternate casing, close bug #80049.
3451 2006-12-19 Chris Toshok <toshok@ximian.com>
3453 * ToolStripItem.cs: add the implementation of the 4 IDropTarget
3454 methods (which all do nothing).
3456 * IDropTarget.cs: add the 4 missing methods.
3458 2006-12-19 Chris Toshok <toshok@ximian.com>
3460 * TableLayoutRowStyleCollection.cs: corcompare work.
3462 * TableLayoutSettings.cs: same.
3464 * TableLayoutStyle.cs: same.
3466 * TableLayoutColumnStyleCollection.cs: same.
3468 2006-12-19 Jonathan Pobst <monkey@jpobst.com>
3470 * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
3471 TableLayoutPanel I've had in my local tree for way too long.
3473 2006-12-19 Miguel de Icaza <miguel@novell.com>
3475 * TableLayoutSettings.cs: Finish the public API (still needs all
3476 the logic to update on changes).
3478 * TableLayoutPanelCellPosition.cs: new file.
3480 * TableLayoutRowStyleCollection.cs,
3481 TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
3482 TableLayoutSettings.cs: Track the final 2.0 table api.
3484 2006-12-19 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3486 * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
3487 and Image List 2.0 members for ColummnHeader.
3488 * ListView.cs: Add key-related 2.0 methods for
3489 ColumnHeaderCollection.
3491 2006-12-19 Gert Driesen <drieseng@users.sourceforge.net>
3493 * ListViewItem.cs: Changed AddRange overloads to match MS: throw
3494 ArgumentNullException if items argument is null. Ignore null item in
3495 arrays. Removed extra tabs.
3497 2006-12-19 Gert Driesen <drieseng@users.sourceforge.net>
3499 * MonthCalendar.cs: Fixed InvalidCastException.
3501 2006-12-19 Jackson Harper <jackson@ximian.com>
3503 * TextControl.cs: Don't increment the position here.
3504 - When calculating char positions only add in the line break size
3505 for hard line breaks.
3507 2006-12-19 Andreia Gaita <avidigal@novell.org>
3509 * SendKeys.cs: Changed some things to match ms.net behaviour
3510 when parsing shifted capital letters.
3512 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX:
3513 Add window handle as parameter to SendInput. X11 needs the
3514 window handle, and the handle being passed to it in the keys
3515 queue is the active control handle (which windows needs), not
3518 XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput
3519 to support SendKeys on X.
3521 * X11Keyboard: Implement helper method to lookup a linux keycode
3522 given the virtual keycode. Added table of keycode-2-virtualkey
3523 values to support this.
3525 2006-12-19 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3527 * ListView.cs: Add support for SelectedIndexCollection
3528 and SelectedItemCollection 2.0 methods. Implement support
3530 * ListViewItem.cs: Add support for ListViewSubItemCollection
3531 2.0 methods. Also, fix an incorrect behavior of AddRange method
3532 (it shouldn't call Clear).
3533 * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
3535 2006-12-19 Jackson Harper <jackson@ximian.com>
3538 * TextBoxBase.cs: New args for FormatText
3539 * TextControl.cs: Rewrote the main drawing method, this version
3540 feels a little easier to understand and debug to me. Hopefully it
3542 - Fix FormatText to OR in the new formating values. Added
3543 FormatSpecified param, basically this works in the same way as
3544 BoundsSpecified in Control.
3545 - Set the caret properties when the caret is positioned.
3546 - When wrapping text make sure that we calculate the width of the
3548 - when calculating alignments we might have wrapped down to the
3549 next line, so don't search for an individual tag, search for the
3551 - We need to invalidate the selection area when we replace the
3554 2006-12-19 Daniel Nauck <dna@mono-project.de>
3556 * Application.cs: add Restart () 2.0 support
3558 2006-12-18 Everaldo Canuto <everaldo@simios.org>
3560 * MenuItem.cs: Invalidate menu item rectangle after change Enable
3561 property. Fixes #80268.
3563 2006-12-18 Everaldo Canuto <everaldo@simios.org>
3565 * MenuAPI.cs: Dont trigger select event when closes top menu
3568 2006-12-18 Everaldo Canuto <everaldo@simios.org>
3570 * MenuAPI.cs: When you click on menuitem only trigger onselect
3571 event for top menu itens. Fixes #80271.
3573 2006-12-18 Rolf Bjarne Kvinge <RKvinge@novell.com>
3575 * MdiWindowManager.cs: Make IconicBounds depend on
3576 the bottom of MdiClient, not the top (fixes #80267)
3578 2006-12-18 Rolf Bjarne Kvinge <RKvinge@novell.com>
3580 * MdiClient.cs: Added missing 2.0 attribute
3582 2006-12-18 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3584 * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
3585 as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
3587 2006-12-18 Everaldo Canuto <everaldo@simios.org>
3589 * MenuAPI.cs: Fix click when menuitem is not popup,
3590 this regression was caused by last commit (#80272).
3592 2006-12-17 Everaldo Canuto <everaldo@simios.org>
3594 * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
3595 fire click event or close menu. Fixes #80272.
3597 2006-12-17 Daniel Nauck <dna@mono-project.de>
3599 * ListViewHitTestInfo.cs: add
3601 2006-12-17 Daniel Nauck <dna@mono-project.de>
3603 * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
3604 * FlatButtonAppearance.cs: add
3605 * DockingAttribute.cs: add
3607 2006-12-17 Chris Toshok <toshok@ximian.com>
3609 * DataGrid.cs: hook up MetaDataChanged event on the list manager,
3610 and rebind our columns when it does - this way, if you make
3611 changes to the DataTable (or set the Table attribute on a DataView
3612 after setting it as the DataGrid's DataSource, the changes are
3613 made visible.) Fixes bug #80107.
3615 2006-12-17 Daniel Nauck <dna@mono-project.de>
3617 * ListViewGroup.cs: add internal Location property for layouting.
3618 * Theme.cs: add abstract ListViewGroupHeight function.
3619 * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
3621 2006-12-16 Andreia Gaita <avidigal@novell.com>
3623 * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
3624 Added reset of selected index to 0 when adding first tab page.
3627 * NumericUpDown.cs: Fix NET_2_0 check
3629 2006-12-16 Daniel Nauck <dna@mono-project.de>
3631 * ListViewGroup.cs: fixed DefaultValueAttribute value
3633 2006-12-16 Daniel Nauck <dna@mono-project.de>
3635 * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
3637 2006-12-15 Miguel de Icaza <miguel@novell.com>
3639 * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
3640 TextBoxBase.cs, ListView.cs, ContainerControl.cs,
3641 ScrollableControl.cs: Add a handful of methods that are
3644 2006-12-15 Chris Toshok <toshok@ximian.com>
3646 * XplatUIWin32.cs: initial implementation of the Reversible
3647 drawing functions. there are some problems. DrawReversibleFrame
3648 doesn't seem to work at all for Dashed FrameStyle, and in the
3649 Thick case there are drawing errors at the corners (we probably
3650 need to bind Rectangle instead of doing moveto/lineto's.)
3652 2006-12-16 Andreia Gaita <avidigal@novell.com>
3654 * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput,
3655 to send blocks of key messages. Send accumulates keys to send with Flush,
3656 while SendWait sends all keys immediately.
3658 * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3659 XplatUIX11.cs, XplatUIX11-new.cs:
3660 - Define SendInput and stubs for OSX and X11, implements Win32 with a call
3662 - Added INPUT support structures to XplatUIWin32 for Win32SendInput
3664 Tests: It seems ms.net is hooking the keyboard to implement this, so doing unit
3665 testing for ms.net on this class is very tricky, as the tests run too fast
3666 to allow the hook to release, essentially freezing the keyboard and the
3667 test. So, barring a win32 miracle, they'll be commited in the ms-notworking
3670 2006-12-16 Daniel Nauck <dna@mono-project.de>
3672 * Padding.cs: fixed serialization compability to MS ("_var" field names),
3673 added missing attributes.
3675 2006-12-15 Daniel Nauck <dna@mono-project.de>
3677 * ListViewGroup.cs: Added missing attributes.
3678 * ListViewGroupCollection.cs: Added missing attributes.
3680 2006-12-15 Daniel Nauck <dna@mono-project.de>
3682 * ListViewItem.cs: fixed ListViewSubItem text property.
3684 2006-12-15 Rolf Bjarne Kvinge <RKvinge@novell.com>
3686 * Control.cs: Added missing 2.0 attributes
3688 2006-12-15 Rolf Bjarne Kvinge <RKvinge@novell.com>
3690 * MdiClient.cs: Added missing 2.0 attribute.
3691 * MonthCalendar.cs: Added some missing 2.0 attributes
3694 2006-12-15 Daniel Nauck <dna@mono-project.de>
3696 * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
3698 2006-12-15 Jonathan Pobst <monkey@jpobst.com>
3700 * MainMenu.cs: Add the new 2.0 constructor to help out people
3701 using the MainMenu in VS2005.
3703 2006-12-15 Rolf Bjarne Kvinge <RKvinge@novell.com>
3705 * MdiChildContext.cs: Removed it, no longer used.
3706 * MdiClient.cs: Added missing 2.0 attributes.
3708 2006-12-15 Rolf Bjarne Kvinge <RKvinge@novell.com>
3710 * InternalWindowManager.cs: Fix a NullRef with previous
3711 changes for toolwindows.
3713 2006-12-15 Rolf Bjarne Kvinge <RKvinge@novell.com>
3716 - Added AfterTopMostControl to allow for certain controls
3717 to always stay on top when normal controls are brought to
3721 - (DrawInversibleRectangle): Get window rectangle from Win32
3722 in stead of from control, since Win32 doesn't calculate
3723 screen coords correctly from control's Location if it
3724 have docked siblings.
3726 * MdiWindowManager.cs:
3727 - Correct the control menu popup location when clicked on
3728 the maximized form icon. (fixes #80223.1)
3729 - Don't show moving rectangle if mouse hasn't moved from
3730 the original clicked point.
3731 - Removed FormGotFocus handler (not used).
3732 - Calculate the control buttons location from the main
3733 window's size and not client size (fixes #79770).
3734 - Form is now closed when the form icon is double-clicked
3736 - Correct NCCalcSize numbers a little bit (fixes #80223.2)
3738 * InternalWindowManager.cs:
3739 - Moved some MDI-only methods to MdiWindowManager.
3740 - Removed unused properties and methods.
3741 - Unified method naming for methods handling wm messages.
3742 - Moved all message handling to seperate methods for
3745 * ThemeWin32Classic.cs:
3746 - DrawManagedWindowDecorations now draws the title bar
3747 with a gradient brush.
3748 - Add a CPDrawButtonInternal that allows us to specify
3749 light, normal and dark colors for the buttons (control
3750 buttons for MDI children were drawn with the same light
3751 color as the background, therefore loosing the 3D effect).
3754 - Add a CapturedControl property that is used to
3755 determine the control to resize (defaults to parent).
3756 Needed for MdiClient, since its SizeGrip's parent is
3757 MdiClient, but the control to resize is the main form.
3760 - Set SizeGrip's CapturedControl to the main form in order
3761 to resize the main form and not the MdiClient.
3762 - Override AfterTopMostControl to leave the scrollbars
3765 2006-12-15 Daniel Nauck <dna@mono-project.de>
3767 * ListView.cs: fixed ListViewItemCollection AddRange and
3768 implemented ListViewItemCollection AddRange 2.0 support.
3770 2006-12-15 Daniel Nauck <dna@mono-project.de>
3772 * ListViewGroup.cs: Add.
3773 * ListViewGroupCollection.cs: Add
3774 * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
3775 * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
3776 stub for ImageKey 2.0 support.
3778 2006-12-14 Mike Kestner <mkestner@novell.com>
3780 * ListView.cs: add text padding to the autocalculation for columns
3781 of width -2. Fixes #80207.
3783 2006-12-14 Mike Kestner <mkestner@novell.com>
3785 * ListView.cs: add some index guarding for partial row navigation
3786 logic. Fixes #80250.
3788 2006-12-14 Mike Kestner <mkestner@novell.com>
3790 * ListView.cs: throw ArgumentExceptions when parented ListViewItems
3791 are added or inserted to the collection. Fixes #81099.
3793 2006-12-13 Everaldo Canuto <everaldo@simios.org>
3795 * MenuAPI.cs: Closes menu when right click out side of popup
3796 it fix problem in ContextMenu and MainMenu. Fixes #80252.
3798 2006-12-13 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3800 * ListViewItem.cs: Fix dumb error.
3802 * ListView.cs: Add Find and ContainsKey methods in
3803 ListViewItemCollection, and also return true for IsReadOnly
3804 and IsFixedSize (changes for 2.0).
3806 2006-12-13 Gert Driesen <drieseng@users.sourceforge.net>
3808 * Control.cs: Allow Region to be set to null.
3810 2006-12-13 Rolf Bjarne Kvinge <RKvinge@novell.com>
3812 * MdiWindowManager.cs: Remove unused (commented out) code.
3813 * Form.cs: When the MdiChild is maximized, the form needs
3814 WM_NCMOUSELEAVE, so request it.
3815 * InternalWindowManager.cs:
3816 - Added tooltips to control buttons.
3817 - Removed duplicated control button handling code.
3818 - Removed unused (commented out) code.
3820 2006-12-12 Everaldo Canuto <everaldo@simios.org>
3822 * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor
3823 was used because we must set cursor without trigger ChangeCursor event
3824 and without change Cursor control property. Fixes #79963.
3826 2006-12-12 Andreia Gaita <avidigal@novell.com>
3828 * Control.cs: Check if Region setter value is null, and ignore
3830 2006-12-12 Jackson Harper <jackson@ximian.com>
3832 * TextControl.cs: We were almost always drawing one more line then
3833 needed, since the GetLineByPixel will return the last line found
3834 at that pixel. In most cases though, we were invalidating up to
3835 the junction between two lines.
3836 - Improve debug code.
3838 2006-12-12 Chris Toshok <toshok@ximian.com>
3840 * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
3841 and FillReversibleRectangle.
3843 * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
3844 and FillReversibleRectangle.
3846 * XplatUIWin32.cs: add stubs which do nothing for
3847 DrawReversibleFrame, DrawReversibleLine, and
3848 FillReversibleRectangle.
3850 * XplatUIOSX.cs: add stubs which raise NIE for
3851 DrawReversibleFrame, DrawReversibleLine, and
3852 FillReversibleRectangle.
3854 * XplatUIX11.cs: add working implementation for
3855 DrawReversibleFrame, DrawReversibleLine, and
3856 FillReversibleRectangle.
3858 * ControlPaint.cs: implement DrawReversibleFrame,
3859 DrawReversibleLine, and FillReversibleRectangle, by calling into
3860 the appropriate XplatUI method.
3862 2006-12-11 Rolf Bjarne Kvinge <RKvinge@novell.com>
3864 * Form.cs: Make MdiClient have the focus even if it's
3865 not selectable, since it should receive WM_KEY* and WM_MOUSE
3866 messages. Fixes #79907.
3868 2006-12-11 Rolf Bjarne Kvinge <RKvinge@novell.com>
3870 * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
3871 queried after the window is created.
3873 * XplatUIX11.cs: Added SendParentNotify to implement
3874 WM_PARENTNOTIFY logic. Fixes #79965.
3876 * Control.cs: Added MakeParam.
3878 2006-12-11 Rolf Bjarne Kvinge <RKvinge@novell.com>
3880 * MdiClient.cs: Resume Layout before setting window
3881 states (fixes #80201).
3883 2006-12-11 Rolf Bjarne Kvinge <RKvinge@novell.com>
3885 * MenuAPI.cs: Deselect a menu item after performing
3886 the click (fixes #80197).
3888 2006-12-11 Jackson Harper <jackson@ximian.com>
3890 * TextBoxBase.cs: We need to cap this value, since Maximum -
3891 ViewPortHeight can be less than zero.
3892 - Only do selection with the left mouse button.
3893 * TextBox.cs: Don't tell the world that we have a context menu.
3894 * Control.cs: New method so that we can control whether or not the
3895 context menu is visible outside MWF.
3897 2006-12-11 Everaldo Canuto <everaldo@simios.org>
3899 * ToolBarButton.cs: Fix text positon.
3901 2006-12-11 Miguel de Icaza <miguel@novell.com>
3903 * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
3905 * Control.cs (DoubleBuffered): Add implementation.
3907 * Application.cs (OpenForms): Add.
3909 2006-12-11 Jonathan Pobst <monkey@jpobst.com>
3911 * Form.cs: Use opacity instead of Opactiy to determine if we need
3912 to set the WS_EX_LAYERED bit. [Fixes bug #80185]
3914 2006-12-11 Jonathan Pobst <monkey@jpobst.com>
3916 * Control.cs: Fix NRE if Control.Site was set to null.
3918 2006-12-11 Chris Toshok <toshok@ximian.com>
3920 * Control.cs: ControlCollection.Remove should return if the arg is
3921 null, and ControlCollection.SetChildIndex should raise a ANE.
3923 2006-12-11 Gert Driesen <drieseng@users.sourceforge.net>
3925 * Control.cs: Verify value set for Dock property. Code formatting
3928 2006-12-11 Jackson Harper <jackson@ximian.com>
3930 * TextControl.cs: Draw the caret and the selection when a flag is
3932 * TextBoxBase.cs: We want to draw the caret and the selection for
3933 TextBox but not for TextBoxBase.
3934 - If the window is resized and scrolling is no longer needed (the
3935 whole doc is visible) set the scroll position to zero.
3936 - The default SelectWord (the one TextBox uses) should move the
3937 caret to the end of the word.
3938 - SelectAll moves the caret to the end of the selection.
3939 * TextBox.cs: We don't selectall on focus, we just do it when the
3942 2006-12-11 Mike Kestner <mkestner@novell.com>
3944 * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
3946 2006-12-11 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3948 * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer
3950 * ListViewItem.cs: Add Name 2.0 property.
3952 2006-12-11 Andreia Gaita <avidigal@novell.com>
3954 * TabControl.cs: Set visibility on selected or default tab
3955 when tabcontrol handle is created, so that it's contents
3956 actually show up (duh). Fixes #80193
3957 Don't redraw the control if there is no handle created, as
3958 the selected index might be completely invalid. Added some tests
3961 2006-12-11 Everaldo Canuto <everaldo@simios.org>
3963 * ToolBar.cs: Uses maximun width and height of all buttons as
3964 button rectangle when ButtonSize specified, it looks strange but
3965 is what happens in Win32. Fixes #80189.
3967 2006-12-11 Jackson Harper <jackson@ximian.com>
3969 * TextControl.cs: Need to track undo levels ourself, since
3970 compound actions will mess them up.
3972 2006-12-10 Andreia Gaita <avidigal@novell.com>
3974 * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
3975 SelectedIndex value is changed (even if it's not valid).
3976 Reset SelectedIndex to 0 when the handle is created and if
3977 the current index is invalid.
3978 Fixes SelectdeIndex unit tests and #80128
3980 2006-12-08 Chris Toshok <toshok@ximian.com>
3982 * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
3983 calls EndEdit, it needs to be called before we set current_cell to
3984 its new value. Otherwise, we end up committing the value in the
3985 textbox to the new cell as well. Fixes bug #80160.
3987 2006-12-08 Chris Toshok <toshok@ximian.com>
3989 * Form.cs (set_CancelButton): if the button's DialogResult is
3990 None, set it to Cancel. Fixes bug 80180.
3992 2006-12-08 Jackson Harper <jackson@ximian.com>
3994 * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
3995 to watch ourselves when setting the canvas size and setting the
3998 2006-12-08 Chris Toshok <toshok@ximian.com>
4000 * DataGrid.cs: comment out the two MakeTransparent calls for the
4001 time being so people using trunk (and not 1.2.2) on windows can
4002 actually use the datagrid. This deals with bug #80151.
4004 2006-12-08 Jonathan Pobst <monkey@jpobst.com>
4006 * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
4007 Graphics.DrawImage (image, int, int, int, int) overload instead
4008 of Graphics.DrawImage (image, int, int). GDI+ can't figure out
4009 the dpi difference and was blurring images it drew.
4012 2006-12-08 Chris Toshok <toshok@ximian.com>
4014 * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
4015 rowcnt is 0 (such as with an empty datasource), and make sure we
4016 initialize not_usedarea.Y to cells.Y, so we don't draw over the
4017 other areas (caption, parent row, etc, etc). Fixes bug #80095.
4019 2006-12-08 Chris Toshok <toshok@ximian.com>
4021 * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
4024 2006-12-08 Chris Toshok <toshok@ximian.com>
4026 [ Fixes bug #80167 ]
4028 * ThemeWin32Classic.cs: don't draw the image if the button's flat
4029 style is FlatStyle.System.
4031 * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
4032 ButtonBase.flat_style private, and switch uses of it to the public
4035 2006-12-08 Chris Toshok <toshok@ximian.com>
4037 [ Fixes bug #80121 ]
4039 * ThemeWin32Classic.cs: center the caption text in the datagrid
4042 * DataGrid.cs: lessen the amount we add to the caption height from
4043 6 to 2. 6 was making it huge.
4045 2006-12-08 Andreia Gaita <avidigal@novell.com>
4047 * UpDownBase: Handle MouseWheel call directly instead of capturing
4048 the inner textbox's OnMouseWheel. Fixes #80166
4050 2006-12-08 Jackson Harper <jackson@ximian.com>
4052 * TextControl.cs: We need to invalidate the textbox when we empty
4053 it (how had this not been discovered before?)
4055 2006-12-08 Jackson Harper <jackson@ximian.com>
4057 * TextBoxBase.cs: Reworked the mouse down code so I could get it
4058 to behave like MS, we now ignore the eventargs.Click and just
4059 track state ourself, which we were already doing anyways.
4060 - Constrain the double click handler to the double click size.
4062 2006-12-08 Chris Toshok <toshok@ximian.com>
4064 * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
4065 direction if that scrollbar isn't shown. fixes bug #80158.
4067 2006-12-08 Andreia Gaita <avidigal@novell.com>
4069 * NumericUpDown.cs: Update value on getter. Fixes #79950
4071 2006-12-08 Chris Toshok <toshok@ximian.com>
4073 * MenuItem.cs: add back in the event cloning code. I didn't know
4074 how to do it in the face of the EventHandlerList work i'd done
4075 last week. Fixes bug #80183.
4077 2006-12-08 Jonathan Pobst <monkey@jpobst.com>
4079 * Control.cs: Add an invalidate to the BackgroundImage setter.
4082 2006-12-07 Jonathan Pobst <monkey@jpobst.com>
4084 * ToolStrip*: Add some small properties reported by MoMA, fix event
4085 firing and default properties based off of unit tests, and add some
4086 attributes based off of the class status page.
4088 2006-12-07 Jackson Harper <jackson@ximian.com>
4090 * TextBoxBase.cs: Take HideSelection into account when determining
4091 whether or not to show the selection.
4092 * RichTextBox.cs: After inserting the RTF into the document move
4093 the cursor to the beginning of the document.
4095 2006-12-07 Jonathan Pobst <monkey@jpobst.com>
4097 * Control.cs: Remove static ArrayList "controls" which maintained
4098 a reference to every control created.
4099 * Application.cs: Create a static FormCollection to maintain a reference
4100 to every form created. Use it in places that formerly enumerated through
4101 the controls one looking for forms.
4102 * Form.cs: Add and remove self from above FormCollection.
4104 2006-12-07 Alexander Olk <alex.olk@googlemail.com>
4106 * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
4107 not libgdk (though it makes me wonder why I didn't have any
4110 2006-12-07 Chris Toshok <toshok@ximian.com>
4112 [ you had to know this was coming after that last commit...]
4114 * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
4115 XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
4116 DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
4119 2006-12-07 Chris Toshok <toshok@ximian.com>
4121 * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
4122 DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
4123 all the behavior we need for double buffering.
4125 * XplatUIDriver.cs: implement the 3 double buffer methods using a
4126 client side Bitmap, just like the old Control-based double buffer
4127 code did. The methods are virtual, so each XplatUI driver
4128 subclass can replace the implementation to use a faster, platform
4131 * Control.cs: make use of the 3 Offscreen XplatUI calls in the
4132 double buffer code, and clean things up a bit in the process.
4134 2006-12-06 Chris Toshok <toshok@ximian.com>
4136 * Control.cs: reindent WndProc.
4138 2006-12-06 Chris Toshok <toshok@ximian.com>
4140 [ I wanna be like BenM when I grow up ]
4142 * Hwnd.cs: create a single static Graphics object on the static
4143 Bitmap we create. use this for our text measurements.
4145 * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
4146 This was causing us to allocate a backbuffer for every control,
4147 even when it wasn't flagged as double buffered. Instead use the
4148 single graphics instance. This might have implications for
4149 multithreaded applications. If we run into problems we can switch
4150 to creating 1 Graphics per control, on the static Hwnd bitmap.
4152 this change nets us a 7M savings in private dirty mappings when
4153 running FormsTest.exe.
4155 2006-12-06 Chris Toshok <toshok@ximian.com>
4157 * ListView.cs: the BackgroundImage override is just to set
4158 attributes. chain up to base.BackgroundImage.
4160 * RichTextBox.cs: same.
4162 * ToolBar.cs: same, but we need to also redraw the toolbar when it
4163 changes, so instead a handler for BackgroundImageChanged.
4165 * Control.cs: make background_image private.
4167 2006-12-06 Chris Toshok <toshok@ximian.com>
4169 * ScrollBar.cs: change the assignment of cursor to Cursor. not
4170 sure we even need this assignment, but roll with it for now.
4172 * Control.cs: make the cursor field private.
4174 2006-12-06 Chris Toshok <toshok@ximian.com>
4176 * Form.cs: we don't need to explicitly set ImeMode to
4177 ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
4178 behavior in the face of ImeMode.Inherit.
4180 * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
4181 change the ctor's assignment to use ImeMode instead of ime_mode.
4183 * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
4184 ImeModeInherit. Only check for the parent's imemode (and return
4185 NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
4186 This fixes the button unit test, which sets both ImeMode and
4187 DefaultImeMode to ImeMode.Disable.
4189 also make the ime_mode field private.
4191 2006-12-06 Chris Toshok <toshok@ximian.com>
4193 * Control.cs: make control_style private.
4195 * TextBoxBase.cs: fix the HandleClick override. it was explicitly
4196 setting the styles to true, then setting them to false instead of
4197 reverting to their previous values.
4199 also, call SetStyle on the scrollbars instead of using
4200 control_style directly.
4202 2006-12-06 Jonathan Pobst <monkey@jpobst.com>
4204 * FormCollection.cs: Implement. [2.0]
4206 2006-12-06 Chris Toshok <toshok@ximian.com>
4208 * Control.cs: make tab_stop private.
4210 * Label.cs: set TabStop, not tab_stop. reformat some event
4211 add/remove methods to make them more compact.
4213 2006-12-06 Chris Toshok <toshok@ximian.com>
4215 * RadioButton.cs: fix TabStop handling.
4217 2006-12-06 Chris Toshok <toshok@ximian.com>
4219 * TextBox.cs: remove the explicit assignments to has_focus.
4222 * ButtonBase.cs: remove the assignment to has_focus. Control will
4225 2006-12-06 Chris Toshok <toshok@ximian.com>
4227 * ButtonBase.cs: remove all uses of is_enabled from this code.
4228 it's always true when any of the code containing the checks is
4231 2006-12-06 Chris Toshok <toshok@ximian.com>
4233 * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
4234 with different semantics (some are present in both 1.1 and 2.0
4235 profiles) so that we match MS's behavior in our unit tests.
4237 2006-12-06 Jackson Harper <jackson@ximian.com>
4239 * TextControl.cs: Make this operation undoable.
4240 * TextBoxBase.cs: Factor the border width into the preferred
4242 - implement Modified as per the spec.
4244 2006-12-06 Chris Toshok <toshok@ximian.com>
4246 * Timer.cs, Control.cs, Menu.cs: make control_tag private.
4248 2006-12-06 Chris Toshok <toshok@ximian.com>
4250 * Control.cs: make right_to_left and context_menu fields private.
4252 2006-12-06 Chris Toshok <toshok@ximian.com>
4254 * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
4255 XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
4256 Control.child_controls private. switch all uses over to
4259 2006-12-06 Chris Toshok <toshok@ximian.com>
4261 * System.Windows.Forms/GroupBox.cs,
4262 System.Windows.Forms/AccessibleObject.cs,
4263 System.Windows.Forms/ErrorProvider.cs,
4264 System.Windows.Forms/Control.cs,
4265 System.Windows.Forms/UpDownBase.cs,
4266 System.Windows.Forms/ScrollBar.cs,
4267 System.Windows.Forms/DateTimePicker.cs,
4268 System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
4269 System.Windows.Forms/ToolTip.cs,
4270 System.Windows.Forms/RadioButton.cs,
4271 System.Windows.Forms/LinkLabel.cs,
4272 System.Windows.Forms/Splitter.cs,
4273 System.Windows.Forms/TextBoxBase.cs,
4274 System.Windows.Forms/ToolStripTextBox.cs,
4275 System.Windows.Forms/ContainerControl.cs,
4276 System.Windows.Forms/ThemeWin32Classic.cs,
4277 System.Windows.Forms/SizeGrip.cs,
4278 System.Windows.Forms/ToolStripDropDown.cs,
4279 System.Windows.Forms/ScrollableControl.cs: Make Control.parent
4280 private. switch all uses over to Control.Parent.
4282 2006-12-06 Chris Toshok <toshok@ximian.com>
4284 * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
4285 Control does this before calling emitting these events.
4287 * TabControl.cs: same.
4289 * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
4290 Control.client_rect.
4292 * ButtonBase.cs: use the ClientSize property instead of the
4295 * ScrollableControl.cs: same.
4297 * Control.cs: another pass at making properties private. also,
4298 move the initialization of tab_stop to the ctor.
4300 2006-12-05 Andreia Gaita <avidigal@novell.com>
4302 * TabControl.cs: Let the selected index be set freely if the
4303 control handle is not yet created.
4305 2006-12-05 Jonathan Pobst <monkey@jpobst.com>
4307 * Control.cs: Revert dist_top, dist_right, and dist_bottom to
4308 internal until I can rewrite DefaultLayout.
4309 * ToolStrip.cs: Fix build error and some general cleaning.
4310 * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
4311 Fix build errors caused by making some of Control's fields private.
4313 2006-12-05 Jackson Harper <jackson@ximian.com>
4315 * TextControl.cs: Redo Insert a little so that it use IndexOf
4316 instead of Split, this prevents it from messing up on things like
4317 \n\n\n. Also more effecient since the split array doesn't need to
4319 * TextBoxBase.cs: AppendText doesnt handle multiline and non
4320 multiline text differently, this is the first of many fixes that
4321 will make multiline/non-multiline the same thing as far as the
4322 TextBoxBase is concerned.
4323 - Don't split the text and insert lines, this can lose some line
4324 endings (like is the last line a soft or hard break). Instead use
4326 - Fix an off by one when combining all the lines in the Text
4328 - Remove separate multiline handling from the Text getter/setter.
4330 2006-12-05 Chris Toshok <toshok@ximian.com>
4332 * ButtonBase.cs: a few changes:
4334 - don't reinitialize internal Control fields in the ctor when they
4335 have the same values as Control sets them.
4337 - don't set has_focus in OnGotFocus/OnLostFocus. Control does
4338 this before calling those methods.
4340 - we don't need to call Refresh for anything. use Invalidate
4343 - OnEnabledChanged doesn't need to redraw at all - Control.cs
4344 calls Refresh in its OnEnabledChanged.
4346 - several of the events we were registered for in the ctor to
4347 redraw ourselves already include calls to Invalidate in the
4348 property setters that raise the events. remove the extra
4351 - reformat a switch statement that was 83274658 columns wide.
4353 2006-12-05 Mike Kestner <mkestner@novell.com>
4355 * ComboBox.cs: fix a unit test regression from a TextBox
4356 SelectionLength return of -1 when there's no selection.
4358 2006-12-05 Chris Toshok <toshok@ximian.com>
4360 * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
4361 ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
4362 cleaning up some of the internal Control fields being used by
4365 2006-12-05 Mike Kestner <mkestner@novell.com>
4367 * ComboBox.cs: fix some Simple mode regressions. Set Visible on the
4368 listbox after AddImplicit calls since it defaults to hidden. Add a
4369 hack to preserve requested heights across DropDownStyle changes.
4371 2006-12-05 Jonathan Pobst <monkey@jpobst.com>
4373 * PropertyGrid.cs: Hide FindFirstItem method from public API.
4375 2006-12-05 Chris Toshok <toshok@ximian.com>
4377 * DataGridView.cs: fix compiler warnings.
4379 * PrintControllerWithStatusDialog.cs: same.
4383 * FolderBrowserDialog.cs: same.
4385 * Splitter.cs: same.
4387 * DataGridViewComboBoxCell.cs: same.
4389 * XplatUIWin32.cs: same.
4391 * PictureBox.cs: same.
4393 * Win32DnD.cs: same.
4395 * PageSetupDialog.cs: same.
4397 * FileDialog.cs: same.
4399 * PrintDialog.cs: same.
4401 * DataGridTextBoxColumn.cs: same.
4403 * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
4405 2006-12-05 Chris Toshok <toshok@ximian.com>
4407 * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
4408 MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
4409 System.ComponentModel.EventHandlerList work.
4411 2006-12-05 Jonathan Chambers <joncham@gmail.com>
4413 * DrawTreeNodeEventArgs.cs: Added.
4415 2006-12-05 Rolf Bjarne Kvinge <RKvinge@novell.com>
4417 * InternalWindowManager.cs: Remove an unused field.
4419 2006-12-05 Rolf Bjarne Kvinge <RKvinge@novell.com>
4421 * InternalWindowManager.cs:
4422 - Save the point where the title bar is clicked.
4424 * MdiWindowManager.cs:
4425 - Only allow moving of the window as long as the
4426 clicked point on the title bar does not get out of
4427 MdiClient's rectangle. Fixes #79982.
4430 - Added Horizontal/VerticalScrollbarVisible.
4431 - Simplified the scrollbar sizing algorithm.
4432 - Cache the difference in scrolled value in
4433 H/VBarValueChanged and move the calculation out
4436 2006-12-05 Rolf Bjarne Kvinge <RKvinge@novell.com>
4438 * Control.cs: Make the Console.WriteLine in WndProc
4441 2006-12-05 Chris Toshok <toshok@ximian.com>
4443 * ToolStripManager.cs, ToolStripButton.cs,
4444 ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
4445 ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
4446 ToolStripSplitButton.cs, ToolStripSeparator.cs,
4447 ToolStripRenderer.cs, ToolStripDropDownItem.cs,
4448 ToolStripProgressBar.cs, ToolStripContainer.cs,
4449 ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
4450 to using System.ComponentModel.EventHandlerList.
4452 2006-12-04 Chris Toshok <toshok@ximian.com>
4454 * LinkLabel.cs: fix up compiler warnings.
4456 * TableLayoutSettings.cs: same.
4458 * TreeView.cs: same.
4462 * TabControl.cs: same.
4464 * RichTextBox.cs: same.
4466 * ListViewItem.cs: same.
4468 * PropertyGrid.cs: same.
4470 * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
4474 * TextRenderer.cs: fix up compiler warnings.
4478 * Form.cs: corcompare fixes.
4480 * PictureBox.cs: fix up compiler warnings.
4482 * ImageListStreamer.cs: same.
4484 * TrackBar.cs: corcompare fix.
4486 * Control.cs: fix up compiler warnings.
4488 * SplitterPanel.cs: same.
4490 * NumericTextBox.cs: same.
4492 * ImageList.cs: same.
4494 * StatusStrip.cs: same.
4496 * ProgressBar.cs: corcompare fix.
4498 * ToolStripButton.cs: fix up compiler warnings.
4500 * ToolStripStatusLabel.cs: same.
4502 * ToolStripSplitButton.cs: same.
4504 * ToolStripSeparator.cs: same.
4506 * ToolStripProgressBar.cs: same.
4508 * ToolStripDropDownMenu.cs: same
4510 * ToolStripDropDown.cs: same.
4512 * ToolStripDropDownButton.cs: same.
4514 * ToolStrip.cs: same.
4516 * ToolStripControlHost.cs: same.
4518 * ToolStripContentPanel.cs: same.
4520 * ToolStripDropDown.cs: same.
4522 * ToolStripContainer.cs: same.
4524 * ToolStripPanel.cs: same, and add "new" where we need it to work
4525 with the new ArrangedElementCollection.
4527 * ToolStripItemCollection.cs: add "new" where we need it to work
4528 with the new ArrangedElementCollection.
4530 2006-12-04 Andreia Gaita <avidigal@novell.com>
4532 * TabControl.cs: Fix default tab selection to after TabControl
4533 gets focus and not before. Fixes #80128
4535 2006-12-04 Chris Toshok <toshok@ximian.com>
4537 * DataGridTableStyle.cs: remove the gross calling of
4538 datagrid.Refresh from here. It's a broken idea and it doesn't
4541 * DataGrid.cs: instead, just register/unregister from the
4542 DataGridTableStyle events in CurrentTableStyle. we play it
4543 conservatively and EndEdit + CalcAreasAndInvalidate on any event,
4544 even though some would most likely not require it. Fixes bug
4545 #80115 (and one portion of #80117 as a side effect).
4547 2006-12-04 Chris Toshok <toshok@ximian.com>
4549 * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
4550 so the textbox (if any) goes away. Fixes bug #80117.
4552 2006-12-04 Chris Toshok <toshok@ximian.com>
4554 * DataGridColumnStyle.cs: set the column's readonly property
4555 initially based on the property descriptor's IsReadOnly. Fixes
4558 2006-12-04 Chris Toshok <toshok@ximian.com>
4560 * ComboBox.cs: wrap the dropdown style changing work in
4561 SuspendLayout/ResumeLayout. Fixes bug #79968.
4563 2006-12-04 Jackson Harper <jackson@ximian.com>
4565 * TextBoxBase.cs: Fix off by one, since these are one-based.
4566 * TextBox.cs: Select all the text when we get focus. The TextBox
4567 does this but the RTB does not.
4569 2006-12-04 Chris Toshok <toshok@ximian.com>
4571 * DataGridTextBoxColumn.cs: remove some spew.
4573 * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
4574 but some part of me is saying "it shouldn't be here.." At any
4575 rate, it fixes bug #80046. Call IEditableObject.EndEdit after
4578 2006-12-04 Chris Toshok <toshok@ximian.com>
4580 * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
4581 to reassign the propertydescriptor.
4583 2006-12-04 Jackson Harper <jackson@ximian.com>
4586 * TextControl.cs: Remove some unused variables. Maybe this will
4587 patch things up between mike and I.
4588 - don't split lines less then one char wide, if the viewport is
4589 that small text won't be visible anyways.
4591 2006-12-04 Jackson Harper <jackson@ximian.com>
4593 * TextBoxBase.cs: Default selection length is -1, need to do some
4594 more testing on windows to see when this is used for the property.
4595 - Redid the Lines [] property to that we properly remove soft line
4597 - added support for preserving carriage returns
4598 - CanUndo is not a variable like 'is undo enabled' it just returns
4599 true if there is undo operations available.
4600 - AppendText doesn't need to grab the last tag itself anymore,
4601 this happens automatically when we move the cursor.
4602 * TextControl.cs: Add CompoundActions to the undo class. This
4603 allows combining the other operations into one big option. ie a
4604 paste will combine { delete old, insert new, move cursor }
4605 - Add InsertString undo operation
4606 - New method for deleting multiline text
4607 - Add carriage returns to lines. So we can preserve carriage
4608 returns when text is 'roundtripped'
4610 2006-12-04 Chris Toshok <toshok@ximian.com>
4612 * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
4613 minimum 0. Fixes the scrollbar exception in bug #80136.
4615 2006-12-04 Rolf Bjarne Kvinge <RKvinge@novell.com>
4618 * MdiWindowManager: Removed unused fields and methods.
4620 2006-12-04 Rolf Bjarne Kvinge <RKvinge@novell.com>
4622 * StatusBar.cs: Update all panels when a AutoSize=Contents
4623 panel needs updating.
4625 * StatusBarPanel.cs: Remove twidth and only use initialize.
4628 2006-12-04 Rolf Bjarne Kvinge <RKvinge@novell.com>
4630 * Form.cs: When a form's MdiParent is set add it directly
4631 on top of the z-order in stead of relying on MdiClient's
4632 ActivateChild to do it. Fixes #80135.
4635 - Remove original_order, mdi_child_list is already doing
4637 - Create mdi_child_list on construction in
4638 stead of first use (avoids a few null checks).
4640 * MenuItem.cs: Use an already existing list of mdi children
4641 to get the correct order of children and remove the other
4644 2006-12-04 Chris Toshok <toshok@ximian.com>
4646 * PropertyGridView.cs: cached_splitter_location is only used in
4649 * PropertyGrid.cs: implement the ComComponentNameChanged event
4650 using Events, hoping that would fix the warning. Looks like a
4651 compiler bug instead (#80144).
4653 * PropertyManager.cs: remove unused method.
4655 2006-11-04 Everaldo Canuto <everaldo@simios.org>
4657 * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar,
4658 include parentesis to fix expression evaluation. Fixes #79634.
4660 2006-11-02 Everaldo Canuto <everaldo@simios.org>
4663 - Changes to fix behavior in Menu control, some reported in #80097
4664 and other detected during behavior refactory like a select event
4666 - Remove unneded "if's" conditions.
4667 - Created an internal to flag when popup is active in control, we need
4668 it because in .NET you can have menu active but without popup active
4669 when you active menu using popup without visible items.
4670 - Mimic win32 behavior for Select and Popup events.
4671 - Dont open popup menu when you dont have visible subitems.
4672 - Do nothing when click on disabled menu item.
4673 - Some small changes to follow the coding style guidelines.
4674 - Unselect menu only when another control gives focus. Fixes #80097.
4675 - Remove unused code.
4677 * MenuItem.cs: internal VisibleItems method to check if menu
4678 theres visible subitems, it will be usefull to fix some
4679 behavior in Menu control.
4681 2006-11-01 Everaldo Canuto <everaldo@simios.org>
4683 * Timer.cs: Tag property for 2.0 profile.
4685 2006-12-01 Chris Toshok <toshok@ximian.com>
4687 [ after removing all warning suppressions, this cleans up over 100 warnings. ]
4689 * Win32DnD.cs: comment out some unused fields.
4691 * XplatUIWin32.cs: comment out some unused pinvokes, and remove
4692 some unused properties/methods.
4694 * XplatUIX11.cs: fix MousePosition so we override the base class's
4695 property instead of conflicting with it.
4697 * PictureBox.cs: comment out some unused fields
4699 * OSXStructs.cs: make some struct fields public.
4701 * XplatUIOSX.cs: comment out some unused pinvokes, and fix
4702 MousePosition so we override the base class's property instead of
4703 conflicting with it.
4705 * X11Dnd.cs: comment out some unused fields
4707 * X11DesktopColors.cs: fix some struct field visibility to quiet
4710 * X11Dnd.cs: remove some debug code.
4712 * ThemeClearlooks.cs: comment out unused field.
4714 * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
4716 * ThemeGtk.cs: comment out some unused pinvokes.
4718 * Timer.cs: remove some unused fields.
4720 * ThemeClearlooks.cs: comment out unused field.
4722 * UpDownBase.cs: comment out unused field.
4724 * DataObject.cs: comment out unused field.
4726 * DataGridBoolColumn.cs: reomve unused field.
4728 * DataGrid.cs: remove unused field.
4730 * Cursor.cs: remove old ToBitmap code.
4732 * ControlPaint.cs: remove unused method.
4734 * ScrollBar.cs: remove unused fields.
4736 * ComboBox.cs: remove unused field, and chain up to
4737 AccessibleObject ctor.
4739 * ListBox.cs: remove unused field.
4741 * ButtonBase.cs: wrap a couple fields in NET_2_0.
4743 * GridEntry.cs: remove unused fields.
4745 * Binding.cs: remove unused fields.
4747 * AxHost.cs: remove unused method.
4749 * ContainerControl.cs: remove unused field.
4751 * ScrollableControl.cs: remove unused fields.
4753 2006-12-01 Chris Toshok <toshok@ximian.com>
4755 * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
4756 the Where/WhereString stuff. it's easy enough to CWL
4757 Environment.StackTrace.
4759 * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
4760 unused private fields.
4762 2006-12-01 Jackson Harper <jackson@ximian.com>
4764 * TextControl.cs: Do not update the view while inserting multiline
4765 text. If we update the view we might wrap lines, before entering
4766 the new lines, which causes the new line insertion calculations to
4768 - Remove an old TODO
4769 - Make debug output a little nicer
4771 2006-12-01 Chris Toshok <toshok@ximian.com>
4773 * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
4775 2006-12-01 Chris Toshok <toshok@ximian.com>
4777 [ fix the majority of the CS0108 warnings we've been suppressing ]
4779 * TreeView.cs: mark BackgroundImageChanged as 'new'.
4781 * ToolBar.cs: ImeMode just passes stuff to Control. Rename Layout
4782 to "LayoutToolBar" to quiet mcs.
4784 * TabControl.cs: mark our ControlCollection class as 'new'.
4786 * TextBoxBase.cs: mark some events as 'new'.
4788 * Splitter.cs: TabStop is 'new'.
4790 * ControlBindingsCollection.cs: mark a few methods as new since
4791 they change the visibility from protected to public.
4793 * RadioButton.cs: DoubleClick -> base class, and remove unused
4796 * MonthCalendar.cs: ImeMode property -> base class, and mark many
4799 * NumericUpDown.cs: TextChanged -> base class.
4801 * CheckedListBox.cs: mark our ObjectCollection class as new to
4804 * FolderBrowserDialog.cs: make HelpRequest event new and have it
4805 muck with the base class.
4807 * StatusBar.cs: fix some mcs warnings about Update being the same
4808 name as a base class method.
4810 * RichTextBox.cs: mark some events as new, and make them do things
4811 to the base class impl.
4813 * UserControl.cs: mark TextChanged as new, and have it manipulate
4816 * UpDownBase.cs: mark some things new.
4818 * CheckBox.cs: mark DoubleClick "new", and add some text about
4819 what we need to look at.
4821 * Panel.cs: make the events "new", and manipulate the base
4822 version. these are just here for attributes.
4824 * AccessibleObject.cs: make owner private.
4826 * Control.cs: deal with AccessibleObject.owner being private.
4827 cache our own copy if we need it.
4829 * Button.cs: add "new" to the DoubleClickEvent.
4831 * ListBox.cs: no need to track our own has_focus here. let
4832 Control.has_focus do it for us. Also some other work to clear up
4833 warnings about not overriding base class methods of the same name.
4835 * ComboBox.cs: clear up some warnings about not override base
4836 class methods of the same name.
4838 2006-12-01 Chris Toshok <toshok@ximian.com>
4840 * Form.cs: flag a few things as "new" to quiet some of the mcs
4845 * PrintPreviewDialog.cs: same.
4847 * DataGridView.cs: fix a ton of corcompare warnings. not all, but
4848 now DGV isn't so horrible on the class status page. also, move
4849 all events to using System.ComponentModel.EventHandlerList. my
4852 2006-12-01 Rolf Bjarne Kvinge <RKvinge@novell.com>
4854 * MdiWindowManager.cs:
4855 - Set form to active mdi child if shown,
4856 and update the active mdi child to the next
4857 remaining child in the z-order if the form is hidden.
4860 - Track if the form has been visible and if its
4861 visibility is beeing changed, so that the MdiClient
4862 can properly decide the ActiveMdiChild. The MdiClient
4863 cannot track this since the form can change visibility
4864 before MdiClient is created.
4867 - Don't activate anything of the parent form is changing
4869 - Rework ActiveMdiChild to only return visible mdi
4870 children and take into account several other corner
4873 2006-12-01 Chris Toshok <toshok@ximian.com>
4875 * IBindableComponent.cs: new 2.0 interface.
4877 2006-12-01 Gert Driesen <drieseng@users.sourceforge.net>
4879 * DataGrid.cs: Font for caption area is bold by default.
4881 2006-12-01 Everaldo Canuto <everaldo@simios.org>
4883 * Menu.cs: Tag property for 2.0.
4885 2006-11-01 Everaldo Canuto <everaldo@simios.org>
4887 * ThemeWin32Classic.cs: Adjust menu separator drawing.
4889 2006-12-01 Chris Toshok <toshok@ximian.com>
4891 * TreeView.cs: doh, the Begin* events should be
4892 TreeViewCancelEventHandler.
4894 2006-12-01 Chris Toshok <toshok@ximian.com>
4896 * Form.cs: Form.ControlCollection already stores off the
4897 form_owner field. don't access the base class's internal "owner"
4900 * Control.cs: make all the fields in Control.ControlCollection
4901 private. there's no need for any internal fields here.
4903 2006-12-01 Chris Toshok <toshok@ximian.com>
4905 * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
4906 OnHandleCreated. Fixes bug #80109.
4908 2006-12-01 Chris Toshok <toshok@ximian.com>
4910 * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
4911 SplitContainer.cs, Control.cs, StatusStrip.cs,
4912 DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
4913 NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
4914 DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
4915 DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
4916 Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
4917 LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
4918 MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
4919 TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
4920 PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
4921 DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
4923 do most of the work to convert our code over to use
4924 System.ComponentModel.Component.Events for
4925 adding/removing/dispatching events.
4928 2006-11-30 Jonathan Pobst <monkey@jpobst.com>
4930 * DataGridView.cs: Fix an ArgumentNullException reported
4933 2006-11-30 Mike Kestner <mkestner@novell.com>
4935 * ComboBox.cs: fix the scrollbar mouse event forwarding in the
4936 grabbed listbox. Fixes #80036 and #80101.
4938 2006-11-30 Rolf Bjarne Kvinge <RKvinge@novell.com>
4940 * Message.cs: Changed ToString() to match MS.
4942 2006-11-30 Jackson Harper <jackson@ximian.com>
4944 * TextBoxBase.cs: You can still change the selected text on a read
4946 * TextControl.cs: Lower magic number for wrap calculations. This
4947 lets text get closer to the right (far) edge.
4949 2006-11-30 Jonathan Pobst <monkey@jpobst.com>
4951 * Control.cs: Tweak 2.0 layout properties.
4952 * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
4953 * TextRenderer.cs: Add a new overload.
4954 * ToolStrip*: Huge amount of changes and new features.
4956 2006-11-30 Mike Kestner <mkestner@novell.com>
4958 * ComboBox.cs: fixes for LargeChange and Maximum to get the
4959 scroll range correct. Fixes #79994.
4961 2006-11-30 Rolf Bjarne Kvinge <RKvinge@novell.com>
4963 * MdiWindowManager.cs: Update main form's text when
4964 a form is closed. (fixes #80038)
4966 2006-11-30 Everaldo Canuto <everaldo@simios.org>
4969 - Fix an regression in ButtonSize.
4970 - Get ImeMode default value change to "Disable".
4971 - Get ShowTooltips default value change to true, default value is
4972 "false" but after make a test in .NET we get "true" result as default.
4974 2006-11-29 Jonathan Pobst <monkey@jpobst.com>
4976 * ToolStripDropDown.cs: Fix for SupportsTransparency change.
4978 2006-11-29 Chris Toshok <toshok@ximian.com>
4980 * XplatUIWin32.cs (GetWindowTransparency): check return value of
4981 GetLayeredWindowAttributes. if it's 0, return 1.0, as
4982 SetWindowTransparency hasn't been called.
4984 2006-11-29 Chris Toshok <toshok@ximian.com>
4986 * Form.cs (set_TransparencyKey): only call SetWindowTransparency
4988 (set_AllowTransparency): reorder things a little so that the
4989 WS_EX_LAYERED style is removed properly.
4991 2006-11-29 Chris Toshok <toshok@ximian.com>
4993 [ totally cosmetic eye-candy feature, fixes bug #80089 ]
4995 * Form.cs: only call the XplatUI transparency method (get/set) if
4996 SupportsTransparency says it's supported. Otherwise fallback to
4997 doing nothing (in the set case) or returning the instance field we
4998 cache (in the get case).
5000 * XplatUIStructs.cs: add TransparencySupport flag enum.
5002 * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
5003 change to SupportsTransparency.
5005 * XplatUIOSX.cs: stub out GetWindowTransparency, and return
5006 TransparencySupport.None from SupportsTransparency.
5008 * XplatUIX11.cs: Stub out GetWindowTransparency, and return
5009 TransparencySupport.Set from SupportsTransparency.
5011 * XplatUIWin32.cs: implement GetWindowTransparency calling
5012 GetLayeredWindowAttributes, and implement SupportsTransparency by
5013 checking whether or not both
5014 GetWindowTransparency/SetWindowTransparency are available
5015 entrypoints. We need to do this since SetWindowTransparency is
5016 available as of win2k, but GetWindowTransparency requires winxp.
5019 * XplatUI.cs: Add GetWindowTransparency, and change
5020 SupportsTransparency to allow for either/both Get/Set.
5022 2006-11-29 Chris Toshok <toshok@ximian.com>
5024 * DataGrid.cs: keep from going into an infinite loop redrawing a
5025 datagrid that has no datasource. Fixes bug #80033.
5027 2006-11-29 Chris Toshok <toshok@ximian.com>
5029 * MenuItem.cs: fix the NRE when we assign text (and therefore call
5030 Invalidate) before the mainmenu has been assigned to a control.
5032 2006-11-29 Chris Toshok <toshok@ximian.com>
5034 * DataGrid.cs: detect when we should be double the double click
5035 row/column autosize stuff, although that codepath has yet to be
5036 written. part of the work for bug #79891.
5038 2006-11-29 Chris Toshok <toshok@ximian.com>
5040 * Binding.cs (SetControl): fix unit test.
5042 2006-11-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>
5044 * PageSetupDialog.cs: Validate the margins and set them in
5046 * NumericTextBox.cs: New class to mimic the behavior of the
5047 textboxes used in the printing dialogs.
5049 2006-11-29 Andreia Gaita <avidigal@novell.com>
5051 * Form.cs: Revert previous change (remove call UpdateBounds
5052 from form constructor), because it messes with the handle creation
5053 order, and that one needs lots and lots of love.
5054 * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
5055 for valid printer and throw InvalidPrinterException if document
5056 is set but printer not valid), adding a MonoTODO. Once
5057 handle creation is done properly, we can put this back in.
5059 2006-11-28 Everaldo Canuto <everaldo@simios.org>
5061 * MenuItem.cs: Create a invalidate method for menu item, to be
5062 calling from set text, it make text changes to imadiate update
5063 on screen. Fixes #80013.
5065 2006-11-28 Everaldo Canuto <everaldo@simios.org>
5067 * ToolBar.cs: Fixes and simplify toolbar button layout, it
5068 fixes bug #80070 and some other problem on toolbar buttons
5071 2006-11-28 Everaldo Canuto <everaldo@simios.org>
5073 * ThemeWin32Classic.cs: Paint toolbar toggle button background
5074 with dotted brush. Fixes #79564
5076 2006-11-28 Andreia Gaita <avidigal@novell.com>
5078 * Form.cs: Removed call to UpdateBounds on Form
5079 constructor, it was causing a call to CreateHandle
5080 before it was supposed to.
5081 * PrintControllerWithStatusDialog: Applied patch
5082 by Chris Toshok to hide controller when there are
5083 no printers available.
5084 PrintDialog.cs: initialize printer settings to
5085 null - correct DefaultValues test #5
5086 * PrintPreviewControl.cs: Move PrintController
5087 initialization to GeneratePreview
5088 * PrintPreviewDialog.cs:
5089 - Remove Preview generation from Document_set(). It is
5091 - Throw InvalidPrinterException on CreateHandle if
5092 a Document is set but there are no printers or
5093 printer is not valid.
5094 * ThemeWin32Classic: don't paint PrintPreviewControl
5095 if there is nothing to paint
5097 2006-11-28 Miguel de Icaza <miguel@novell.com>
5099 * Form.cs: Add another popular method.
5101 * TabPage.cs: ditto.
5103 2006-11-28 Rolf Bjarne Kvinge <RKvinge@novell.com>
5105 * MenuItem.cs: Fixed a warning.
5106 * InternalWindowManager: Fixed a warning.
5108 2006-11-28 Rolf Bjarne Kvinge <RKvinge@novell.com>
5111 - When cloning a menu also clone MdiList and clone the
5112 window menu items properly (as the forms and menuitems
5113 are kept in an internal hashtable, these need updating
5115 - Rewrote the window menu code, menu items are added in the
5116 order the forms were added to their parent, and they are
5117 updated every time the window menu is shown (before the
5118 list was only generated once, in the current order of the
5119 forms, and would never be updated). A checkmark is shown
5120 next to the item corresponding to the active mdi child.
5122 2006-11-28 Rolf Bjarne Kvinge <RKvinge@novell.com>
5124 * XplatUIStructs.cs:
5125 - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
5128 - Added TME_NONCLIENT to TMEFlags.
5129 - Handles WM_NCMOUSEMOVE in GetMessage to
5130 generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
5133 - Now merges mdi child menu to parent menu when maximized.
5134 - Recalculate NC areas of both mdi child and mdi parent.
5136 on window state and size changes.Fixes #79844 (3).
5137 - Handle WM_NCCALCSIZE to properly calculate borders.
5140 - Add/remove to the mdi containers list of mdi children
5141 in the order they are added.
5142 - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE
5143 to the maximized mdi child.
5145 * InternalWindowManager.cs:
5146 - Only execute a click on the control buttons on the mouse up,
5147 not on the mouse down. Show the state of the button
5148 (was only showing Normal state, never Pressed state). The
5149 pressed button now follows the mouse (if you click the Close
5150 button and move the mouse over the Maximize button, the
5151 Maximize button will be shown as pressed). Since Win32 does
5152 not generate WM_NCLBUTTONUP if you release the button outside
5153 of the nc area, we need to handle WM_NCMOUSELEAVE and treat
5156 * ThemeWin32Classic.cs:
5157 - Draw a missing border around mdi child forms. Fixes #79844 (2).
5160 - Added a list of forms which contains the order the forms are
5161 added to the mdi parent.
5162 - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
5163 - Handle WM_NCCALCSIZE to properly calculate the 3D border.
5164 - If the active form changes set the scrollbars to the top
5165 of the Z order, otherwise the form could hide them.
5166 - Scrollbars are now sized according to ClientSize, not
5167 to Size, and they take into account the other scrollbar
5168 to determine maximum.
5170 2006-11-28 Rolf Bjarne Kvinge <RKvinge@novell.com>
5177 - Added RequestAdditionalWM_NCMessages for windows to
5178 opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
5179 Currently only implemented in XplatUIWin32.
5181 2006-11-27 Chris Toshok <toshok@ximian.com>
5183 * Hwnd.cs: only add the hwnd to the windows hash in
5184 set_WholeWindow and set_ClientWindow if whole_window/client_window
5185 are not IntPtr.Zero. also, remove the unused SetObjectWindow.
5187 2006-11-27 Mike Kestner <mkestner@novell.com>
5189 * ComboBox.cs: remove redundant OnDropDown call. It is called
5190 from the ComboListBox.ShowWindow code. Fixes #79969.
5192 2006-11-27 Chris Toshok <toshok@ximian.com>
5194 * Hwnd.cs: remove the setters for ExposePending and
5195 NCExposePending - noone uses them.
5197 2006-11-27 Jackson Harper <jackson@ximian.com>
5199 * TextControl.cs: new param for ReplaceSelection which determines
5200 whether we select the new selection, or set the cursor to the end
5201 of the new selection.
5202 * TextBoxBase.cs: Use new param for ReplaceSelection. When
5203 pasting, select the new text.
5204 * RichTextBox.cs: Use new param for ReplaceSelection.
5206 2006-11-27 Jackson Harper <jackson@ximian.com>
5208 * TextBoxBase.cs: Set the selection to the caret after the caret
5209 is moved, otherwise they get out of sync.
5211 2006-11-26 Everaldo Canuto <everaldo@simios.org>
5213 * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
5216 2006-11-26 Everaldo Canuto <everaldo@simios.org>
5218 * ThemeWin32Classic.cs:
5219 - Fix toolbar drop down arrow position.
5220 - Fix drop down appearance when ToolBar.Appearance is normal,
5223 2006-11-26 Gert Driesen <drieseng@users.sourceforge.net>
5225 * ProgressBar.cs: GetStyle fixes for 2.0 profile.
5227 * UpDownBase.cs: Same.
5228 * ButtonBase.cs: Same.
5229 * ScrollBar.cs: Same.
5230 * TrackBar.cs: Same.
5231 * PictureBox.cs: Same.
5232 * UserControl.cs: Same.
5234 * ListControl.cs: Same.
5235 * TextBoxBase.cs: Same.
5236 * ListView.cs: Same.
5237 * RichTextBox.cs: Same.
5238 * TreeView.cs: Same.
5240 2006-11-25 Jordi Mas i Hernandez <jordimash@gmail.com>
5243 - Text label for where
5244 - Text label comment was not shown
5246 2006-11-23 Everaldo Canuto <everaldo@simios.org>
5248 * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
5250 2006-11-23 Rolf Bjarne Kvinge <RKvinge@novell.com>
5252 * InternalWindowManager.cs:
5253 - Handle WM_PARENTNOTIFY to activate the form
5254 if any child control is clicked.
5255 - The form is only sizable if not minimized.
5257 * MdiWindowManager.cs:
5258 - Save the IconicBounds if the form is moved.
5259 - Rework SetWindowState, now the window bounds
5260 are stored only if the old window state is Normal.
5263 - In SetWindowStates store the old window state if
5264 the window is maximized and restore window state if
5265 the window looses focus.
5266 - Don't handle any scrollbar value changes if
5267 initializing the scroll bars. Fixes #79771.
5268 - Reworked ArrangeIconicWindows. Current algorithm
5269 tests bounds agains all other minimized windows, if
5270 any intersections create new bounds (going left to
5271 right, bottom to top) and then test again. When
5272 successful the bounds are saved and never computed
5273 again. Fixes #79774.
5275 2006-11-23 Rolf Bjarne Kvinge <RKvinge@novell.com>
5277 * InternalWindowManager.cs: Added HandleTitleBarUp.
5279 2006-11-23 Gert Driesen <drieseng@users.sourceforge.net>
5281 * NumericUpDown.cs: In .NET 1.1, user entered text is still
5282 hexadecimal in ParseUserEdit.
5285 2006-11-23 Rolf Bjarne Kvinge <RKvinge@novell.com>
5287 * MdiWindowManager.cs:
5288 - Handle a click on the form's icon to show the
5289 system menu (when maximized). Fixes #79775.
5290 - Change the existing click handler for the form's
5291 icon when not maximized to show on MouseUp.
5294 * Form.cs: In OnResize only layout the mdi child's
5295 parent if it actually has a parent. Might not if
5296 the window is closing.
5299 2006-11-23 Gert Driesen <drieseng@users.sourceforge.net>
5301 * MdiClient.cs: Ignore active MDI client for text of parent, if
5302 child has no text set.
5304 2006-11-23 Gert Driesen <drieseng@users.sourceforge.net>
5306 * ToolBar.cs: Fixed ToString to match MS.
5308 2006-11-22 Andreia Gaita <avidigal@novell.com>
5311 - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to
5312 update inner values on set. Fixes #79966.
5313 - Override OnLostFocus to update value on NET 2. Fixes #79950.
5314 - Fix hexadecimal parsing.
5316 * UpDownBase: Override OnGotFocus and OnLostFocus to notify
5317 parent. Fixes #79957
5319 2006-11-22 Rolf Bjarne Kvinge <RKvinge@novell.com>
5321 * Control.cs: After calling SetWindowsPos in SetBoundsCore
5322 the actual size has to be queried, since if height /
5323 width is negative Win32 changes it to 0.
5324 Fixes #79999 on Windows.
5326 * XplatUIX11.cs: Set height / width to 0 if negative
5327 in SetWindowPos. Fixes #79999 on Linux.
5329 2006-11-22 Everaldo Canuto <everaldo@simios.org>
5331 * ThemeWin32Classic.cs: Fix text redenring when button is
5334 2006-11-22 Everaldo Canuto <everaldo@simios.org>
5336 * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
5337 and later navigate by mouse. Fixes #79528.
5339 2006-11-21 Everaldo Canuto <everaldo@simios.org>
5341 * ToolBar.cs: Set default value for TabStop to false in
5342 constructor, it fixes remaining behavior of bug #79863.
5344 2006-11-21 Rolf Bjarne Kvinge <RKvinge@novell.com>
5346 * MdiWindowManager.cs:
5347 * InternalWindowManager.cs:
5348 - Moved a few methods specific to Mdi from
5349 InternalWindowManager to MdiWindowManager.
5352 2006-11-21 Chris Toshok <toshok@ximian.com>
5354 * XplatUIOSX.cs: stub out InvalidateNC.
5356 * XplatUIWin32.cs: implement InvalidateNC using the call I found
5357 at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
5359 * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
5361 * XplatUIDriver.cs: add InvalidateNC abstract method.
5363 * XplatUI.cs: add InvalidateNC.
5365 2006-11-21 Everaldo Canuto <everaldo@simios.org>
5367 * ToolBar.cs: Invalidate complete button area when pressed status
5369 * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
5370 * ThemeWin32Classic.cs: Increase vertical and horizontal position
5371 by 1 when button is pressed.
5373 2006-11-20 Everaldo Canuto <everaldo@simios.org>
5375 * ToolButton.cs: Invalidate middle of DropDown button when
5376 ToolBar theres DropDownArrows.
5377 * ThemeWin32Classic.cs: Change position of DropDown arrow and
5378 fix DropDown drawing operations.
5380 2006-11-20 Chris Toshok <toshok@ximian.com>
5382 * NativeWindow.cs: fix the formatting of functions ('{' on the
5383 following line), and enable the thread exception dialog.
5385 * Application.cs: remove the duplicate exception catching from
5388 2006-11-20 Everaldo Canuto <everaldo@simios.org>
5390 * Toolbar.cs: Triggers button click event when click on icon
5391 of dropdown ToolBarButton. Fixes #79912.
5393 2006-11-20 Rolf Bjarne Kvinge <RKvinge@novell.com>
5396 * ThemeWin32Classic.cs:
5397 - Added a property WindowBorderFont to enable themeing
5398 of mdi child windows' Text.
5400 2006-11-20 Rolf Bjarne Kvinge <RKvinge@novell.com>
5402 * InternalWindowManager.cs:
5405 * MdiWindowManager.cs:
5406 - If mdi child is maximized, set mdi parent's
5407 text to "Parent - [Child]". Fixes #79770.
5408 - If there is any maximized mdi child windows, only the active
5409 window (and any new windows) is maximized, the rest are normal.
5410 - On a WindowState change only save mdi child's window bounds
5411 if the old window state was normal. Fixes #79774.
5412 - The scroll bars are now calculated on hopefully all
5413 necessary events. Fixed #79771 / #79844->6 / #79906.
5414 - MdiClient.SizeScrollBars() now takes into account docked
5415 controls in the parent when calculating available space.
5416 - InternalWindowManager now always repaints the entire title
5417 area. Fixes #79844->1/4/5.
5418 - Added RequestNCRecalc on mdi child windowstate changes.
5421 2006-11-20 Mike Kestner <mkestner@novell.com>
5423 * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
5424 in the MouseUp handler of the listbox and move the return handling
5425 code to FireMouseUp to avoid scrolling on ups. Fixes #79952.
5427 2006-11-20 Everaldo Canuto <everaldo@simios.org>
5429 * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855.
5431 2006-11-17 Alexander Olk <alex.olk@googlemail.com>
5433 * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
5434 working in 1.2.x anymore. So, updated.
5436 2006-11-19 Gert Driesen <drieseng@users.sourceforge.net>
5438 * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
5439 NumberGroupSeparator of current culture instead of assuming en-US.
5442 2006-11-17 Mike Kestner <mkestner@novell.com>
5444 * Control.cs: Add the concept of implicit bounds setting so that
5445 dock/undock round trips preserve explicitly set size/locations.
5448 2006-11-17 Alexander Olk <alex.olk@googlemail.com>
5450 * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
5451 can't handle those filters. (Fixes bug #79961)
5453 2006-11-17 Chris Toshok <toshok@ximian.com>
5455 [ fixes the exit/crashes associated with #79835. it's clearly
5456 suboptimal though, we need to figure out a better way to solve
5459 * PrintPreviewControl.cs: deal with the new invalid printer
5462 * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
5463 and return false (so CommonDialog.ShowDialog doesn't actually show
5466 * PrintDialog.cs: enable/disable the Ok button depending on
5467 whether or not the printer is valid.
5469 * CommonDialog.cs (ShowDialog): only actually show the form if
5470 RunDialog returns true.
5472 2006-11-17 Jackson Harper <jackson@ximian.com>
5474 * TextControl.cs: When soft splitting a line, mark it as a soft
5475 split line. Also carry over the current line break to the next
5478 2006-11-17 Chris Toshok <toshok@ximian.com>
5480 * XplatUIX11.cs: when scrolling a window with an invalid area, we
5481 only want to shift the part of the invalid area that overlaps the
5482 area we're scrolling. we also don't want to clear the invalid
5483 area unless the invalid area was entirely contained within the
5486 2006-11-16 Chris Toshok <toshok@ximian.com>
5488 * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
5489 also make sure to free the memory returned by XGetWindowProperty
5492 * X11Structs.cs: remove the TimerEvent stuff, it's unused.
5494 2006-11-16 Chris Toshok <toshok@ximian.com>
5496 * XplatUI.cs: add a new super secret way to get at the totally
5497 unsupported X11 backend.
5499 2006-11-16 Gert Driesen <drieseng@users.sourceforge.net>
5501 * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
5503 2006-11-16 Jackson Harper <jackson@ximian.com>
5505 * TreeView.cs: Allow more explicit setting of top node position
5506 for scrollbars. Slower algo, but more accurate.
5507 - CollapseAll should maintain the current top node.
5508 * TextBoxBase.cs: When positioning the caret, use the line, pos
5509 method, since the x, y method does not grab the correct tag, and
5510 the caret height never gets set correctly. (Maybe I should just do
5511 away with the caret having its own height, and always use the
5512 carets current tag for height).
5514 2006-11-16 Jonathan Pobst <monkey@jpobst.com
5516 [Fixes 79778, 79923]
5518 * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
5519 Parent to the FosterParent instead.
5521 2006-11-16 Jackson Harper <jackson@ximian.com>
5523 * TreeView.cs: Need to recalc the topnode when we expand or
5524 collapse. The scrolling methods can't handle this on their own,
5525 since they use differences between the last scroll position, and
5526 those difference get completely messed up since we are expanding
5527 nodes. This problem should probably be fixed in the scrolling
5528 methods, so they can figure out exactly where they are, but this
5529 will slow things down a little.
5530 * ThemeWin32Classic.cs: Special case for groupboxes with empty
5531 strings, makes nunit-gui look a lot nicer.
5533 2006-11-16 Chris Toshok <toshok@ximian.com>
5535 * XplatUIX11.cs: nasty, nasty, nasty changes required because of
5536 the broken multithreaded event handling we have in here. File
5537 this entry under "Why we should move to the new X11 backend".
5539 Any thread can make it into UpdateMessageQueue, which gets events
5540 from the X socket - some of which could belong to hwnds being
5541 managed by a different thread. We can also have multiple threads
5542 in UpdateMessageQueue at the same time, with each one reading from
5543 the X socket. This leads to many problems, with the following
5546 We can't use hwnd.Queue.Enqueue anywhere in here and must use
5549 The MotionNotify compression we do can't work across threads
5550 (without locking the entire queue, perhaps) since we call
5551 hwnd.Queue.Peek, so we just punt and don't compress motion events
5552 unless the owning thread is the one which got the X event.
5554 ConfigureNotify is another fun one, since it modifies the hwnd's
5555 bounds and then enqueues the event. We add a lock to Hwnd which
5556 is held when setting configure_pending to true (and enqueuing the
5559 There is a race wrt the wake socket. we need to make sure that
5560 only 1 thread is waiting on that socket, or else a thread could
5561 sleep waiting for data that never comes. It's difficult (but not
5562 impossible) to make happen, because it seems to require something
5565 1. Thread 1 polls on wake_receive
5567 2. poll returns saying there's data to be read on
5570 3. Thread 2 polls on wake_receive and immediately returns
5571 saying there's data to be read.
5573 4. Thread 2 reads the wakeup byte from wake_receive
5575 5. Thread 1 attempts to read the wakeup byte from
5578 6. Thread 2 exits (due to a form closing, perhaps).
5580 7. Thread 1 blocks forever.
5584 Fixing the Expose handling isn't done yet, and the races inherent
5585 in that piece of code are responsible for the drawing mistakes you
5586 see when generating expose events in a MT app (like NPlot). This
5587 one is the likely to be the hardest to bandaid, and it doesn't
5588 appear to cause anything but drawing problems. The other issues
5589 caused apps to exit or hang.
5591 * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
5592 called from a different thread than the one that should be calling
5595 * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
5597 2006-11-15 Chris Toshok <toshok@ximian.com>
5599 * Application.cs: null out the context's MainForm when we exit
5600 RunLoop. Fixes a newly checked in unit test as well as the last
5601 ODE from bug #79933.
5603 2006-11-15 Chris Toshok <toshok@ximian.com>
5605 * Form.cs (set_Owner): allow a null value so we can clear the
5607 (Dispose): set all our owned_form's Owner properties to null, and
5608 clear the owned_forms collection.
5609 (WM_CLOSE): clean up this a little bit.. still not right though.
5611 * ApplicationContext.cs: OnMainFormClosed should only call
5612 ExitThreadCore if the main form isn't recreating. Fixes unit
5615 2006-11-15 Jonathan Pobst <monkey@jpobst.com>
5619 * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
5621 2006-11-15 Jonathan Pobst <monkey@jpobst.com>
5625 * Hwnd.cs: Add a flag to show a window, but not activate it, to
5626 keep popup window types from stealing focus from the main form
5629 * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
5631 * MenuAPI.cs: Set above flag to true.
5633 2006-11-15 Chris Toshok <toshok@ximian.com>
5635 * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
5636 the button being released is not in wParam.
5638 2006-11-15 Jonathan Pobst <monkey@jpobst.com>
5640 * Form.cs: Add the released button to MouseEventArgs.Button
5641 for the OnMouseUp call to the MenuTracker. Fixes menu clicking
5644 2006-11-15 Chris Toshok <toshok@ximian.com>
5646 * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
5647 GetText(). untested because it's unused in our implementation.
5648 Control.Text always caches the text, even if
5649 ControlStyles.CacheText is not set.
5653 2006-11-15 Chris Toshok <toshok@ximian.com>
5657 * Form.cs: in Close() don't do anything after we send the WM_CLOSE
5658 message. no hiding, no disposing.
5660 in the WM_CLOSE handler, hide the form if it's modal.
5662 2006-11-15 Chris Toshok <toshok@ximian.com>
5664 * XplatUIX11.cs: use AddExpose instead of sending a message.
5665 fixes textbox border drawing.
5667 2006-11-15 Chris Toshok <toshok@ximian.com>
5669 * PropertyGridView.cs: keep from crashing on mouse move/down when
5670 the property grid is empty.
5672 2006-11-14 Jackson Harper <jackson@ximian.com>
5674 * TextControl.cs: Make PageUp and PageDown more like the MS
5676 * TextBoxBase.cs: When we set the text property position the
5677 cursor at the beginning of the document.
5679 2006-11-14 Rolf Bjarne Kvinge <RKvinge@novell.com>
5681 * Form.cs: if a mdi child's WindowState has changed
5682 before it's creation, it would display wrong control
5685 2006-11-14 Alexander Olk <alex.olk@googlemail.com>
5687 * TreeView.cs: De-uglify TreeView checkbox checkmarks.
5690 2006-11-14 Rolf Bjarne Kvinge <RKvinge@novell.com>
5692 * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that
5693 the window gets to paint its borders even if the window is
5696 * Form.cs: on a WM_NCPAINT invalidate the entire menu,
5697 otherwise the old control buttons would still be painted
5698 if the window gets bigger.
5700 * PaintEventArgs.cs: add an internal method so that the clip
5701 rectangle can be changed.
5703 2006-11-13 Chris Toshok <toshok@ximian.com>
5705 [ fixes bug #79745 ]
5707 * NotifyIcon.cs: lots of cleanup.
5709 * X11Structs.cs: add an enum for XEMBED messages.
5711 * XplatUIX11.cs: reindent one of the giant switch statements, it
5712 was taking up an additional tab stop, and this file is already way
5713 too wide for my laptop's screen.
5715 Also, add handling for the XEmbed EMBEDDED_NOTIFY message. When
5716 we get it, resize the hwnd to the WMNormalHints max_width/height.
5718 2006-11-13 Jackson Harper <jackson@ximian.com>
5720 * TextBoxBase.cs: Compute the value changes for the mouse wheel
5723 2006-11-13 Chris Toshok <toshok@ximian.com>
5725 * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
5726 #79898. force a reference to the Region to stick around so the
5727 unmanaged object isn't collected (rendering our handle in the MSG
5730 2006-11-13 Chris Toshok <toshok@ximian.com>
5732 * XplatUIX11.cs: fix #79917 for window managers which support
5734 using XStoreName on the raw utf8, and we need to convert to
5735 COMPOUND_TEXT if it's non-latin1.
5737 2006-11-13 Chris Toshok <toshok@ximian.com>
5739 * Form.cs (set_DialogResult): we need to set closing to false if
5740 we're setting our result to None. fixes bug #79908.
5742 2006-11-13 Jackson Harper <jackson@ximian.com>
5744 * TextControl.cs: When formatting text, compute the adjusted tag
5745 lengths correctly, using FindTag for the end tag instead of trying
5746 to figure it out outselves.
5747 * TreeNode.cs: Use ActualItemHeight, which is the actual height of
5748 the item, ItemHeight doesn't work, because trees with large
5749 imagelists use those for their height
5750 * TreeView.cs: ActualItemHeight factors in the image height
5751 - compute left edge of checkboxes correctly
5752 - when expanding/collapsing move the bottom down one pixel, so we
5753 aren't moving part of the node
5755 2006-11-13 Rolf Bjarne Kvinge <RKvinge@novell.com>
5757 * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
5758 stack in PaintEventStart so that it won't get disposed by the gc
5759 before reaching PaintEventEnd.
5761 2006-11-13 Jackson Harper <jackson@ximian.com>
5763 * TextBoxBase.cs: Don't select the word if we are on a line with
5765 - We don't need to position the caret on mouse up, since the mouse
5766 move handler should be doing this
5767 - When double clicking a blank line, the caret is advanced to the
5770 2006-11-13 Gert Driesen <drieseng@users.sourceforge.net>
5772 * TreeNodeCollection.cs: Avoid duplicating indexer code.
5774 2006-11-12 Gert Driesen <drieseng@users.sourceforge.net>
5776 * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
5777 Fixes part of bug #79910.
5779 2006-11-11 Alexander Olk <alex.olk@googlemail.com>
5781 * ColorDialog.cs: Fix a NRE when adding a color to custom colors
5782 (bug #79903). Some minor string updates to match ms.
5784 2006-11-10 Alexander Olk <alex.olk@googlemail.com>
5786 * FileDialog.cs: Don't add an extension if the filename
5787 already ends with that extension.
5789 2006-11-10 Jackson Harper <jackson@ximian.com>
5791 * TreeView.cs: Use the currently highlighted node for the
5793 * TextBoxBase.cs: There is no need to expand selection on
5795 - CanUndo means 'is there any undo operations', not 'is undo
5796 allowed on this textcontrol. Fixed ClearUndo unit test.
5798 2006-11-10 Andreia Gaita <shana.ufie@gmail.com>
5800 * Button.cs: only perform click when button is Selectable (so as
5801 not to activate default buttons when they're disabled)
5803 * Control.cs: Rewrite of the SelectNextControl and related
5804 methods. HandleClick now selects next control if the current one
5807 * Form.cs: OnActivated selects next active control only if Load
5808 has already occurred. If Load hasn't run, there's no point in
5809 selecting here, Load might change the state of controls.
5811 * FocusTest.cs: Tests marked as working again for these fixes
5813 2006-11-10 Chris Toshok <toshok@ximian.com>
5815 * XplatUIX11.cs: a couple of fixes.
5817 - use XInternAtoms with almost all the atoms we need to register,
5818 instead of many, many calls to XInternAtom. should help a bit on
5819 startup time, at the expense of making the code look a little
5822 - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
5823 isn't reparented (which seems to be a clue that we're running fon
5824 compiz) and they have an Owner form. This fixes the tool windows
5825 in paint.net when running under compiz.
5827 - when setting the opacity of a window, support both the case
5828 where the window has been reparented and also when it hasn't been.
5829 Since compiz/beryl doesn't seem to reparent windows, and these are
5830 the only window managers which support translucency, I'm not sure
5831 why we need the hwnd.reparented case at all.. but leave it in.
5832 now we get translucent windows in paint.net under compiz/beryl.
5834 2006-11-10 Alexander Olk <alex.olk@googlemail.com>
5836 * FileDialog.cs: Always return the value for FilterIndex that
5837 was set. Internally convert it to values that make sense.
5839 2006-11-10 Everaldo Canuto <everaldo@simios.org>
5841 * ThemeWin32Classic.cs: Fix drowp down arrow borders.
5843 2006-11-10 Everaldo Canuto <everaldo@simios.org>
5845 * Toolbar.cs: Change default value of DropDownArrows to true, the
5846 signature still using false to make it compatible with MS but the
5847 initial value is true. Fixes #79855.
5849 2006-11-10 Alexander Olk <alex.olk@googlemail.com>
5851 * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
5852 only available on Linux.
5854 2006-11-09 Everaldo Canuto <everaldo@simios.org>
5856 * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
5857 reduce number of calls to redraw method during toolbar creation.
5859 2006-11-09 Mike Kestner <mkestner@novell.com>
5861 * ListView.cs : raise SelectedIndexChanged when an item is selected
5862 programmatically via the Item.Selected property. Gert's nice
5863 ListViewSelectedIndexChanged test fixture now runs clean.
5865 2006-11-09 Mike Kestner <mkestner@novell.com>
5867 * ListView.cs : raise SelectedIndexChanged when a selected item is
5868 removed from the item collection using Remove or RemoveAt.
5870 2006-11-09 Mike Kestner <mkestner@novell.com>
5872 * ListView.cs : raise SelectedIndexChanged once per selected item
5873 for compat with MS. Fixes #79849+.
5875 2006-11-09 Chris Toshok <toshok@ximian.com>
5877 * TabControl.cs: initialize row_count to 0, and set it to 1 when
5878 we need to (if we have any tab pages). Fixes unit test.
5880 2006-11-09 Chris Toshok <toshok@ximian.com>
5882 * Label.cs (CalcPreferredWidth): if Text == "", our preferred
5883 width is 0, not 3. Fixes a unit test.
5885 2006-11-09 Mike Kestner <mkestner@novell.com>
5887 * ListView.cs : use Implicit scrollbars so that focus isn't
5888 stolen from the listview when they are clicked. Fixes #79850.
5890 2006-11-09 Chris Toshok <toshok@ximian.com>
5892 * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
5893 have a root item. Fixes #79879.
5895 2006-11-09 Alexander Olk <alex.olk@googlemail.com>
5899 - An ArgumentException is now thrown if a wrong filter
5900 is applied (matches ms). The previous filter doesn't change
5901 anymore if an exception is thrown.
5902 - Changing the FileName property also affects FileNames
5903 * ColorDialog.cs: The length of the CustomColors array is always
5904 16. It doesn't matter if we use a smaller array or null to update
5905 or change the custom colors property.
5906 * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
5907 for RootFolder if we get a undefined value.
5909 2006-11-09 Rolf Bjarne Kvinge <RKvinge@novell.com>
5911 * StatusBarPanel.cs:
5912 - Width is set to MinWidth if Width is smaller than
5913 MinWidth. Fixes #79842.
5914 - MinWidth now always overrides Width (MSDN says MinWidth
5915 is set to Width when AutoSize = None, but they do not
5917 - Style has now the the correct default value.
5919 2006-11-09 Rolf Bjarne Kvinge <RKvinge@novell.com>
5922 - The control is completely invalidated on
5923 Got/LostFocus to draw the focus rectangle correctly.
5924 - When AutoSize then height is always 45 (width for
5927 * ThemeWin32Classic.cs: The TrackBar thumb is now centered
5928 on the mouse when moved and it doesn't move when grabbed
5929 until the mouse moves as well. Also fixed some wrong
5930 calculations when clicking on the thumb (control thought
5931 click was outside of thumb and didn't grab it).
5932 Fixes some of the issues in #79718.
5934 2006-11-08 Everaldo Canuto <everaldo@simios.org>
5936 * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
5938 2006-11-08 Chris Toshok <toshok@ximian.com>
5940 * PropertyGridView.cs: only call ToggleValue if the item is not
5943 2006-11-08 Jackson Harper <jackson@ximian.com>
5945 * TextBoxBase.cs: The RichTextBox and textbox have very different
5946 word selection methods. Implement the textbox's simple word
5947 selection here, and let the RichTextBox override and provide it's
5949 - Don't do extra selection on mouseup
5950 * RichTextBox.cs: Use the documents word selection algorithm, I
5951 think ideally, this function will be pulled into the
5952 RichTextBox.cs code someday.
5954 2006-11-08 Chris Toshok <toshok@ximian.com>
5956 * RootGridEntry.cs: new class to represent GridItemType.Root.
5958 * CategoryGridEntry.cs: reformat, and add boilerplate.
5960 * GridEntry.cs: remove the UIParent stuff - turns out .Parent
5961 returns the UI parent anyway, and we need special handling to
5962 implement the GetTarget method in the face of it. Also, implement
5965 * PropertyGrid.cs, PropertyGridView.cs: a number of fixes. create
5966 a root grid item, and use that instead of PropertyGrid.grid_items.
5967 Also, make use of TypeConverters (and add limitted support for
5968 ICustomTypeDescriptors) when initially populating the grid.
5969 Arrays now show up more or less properly.
5971 2006-11-08 Chris Toshok <toshok@ximian.com>
5973 * Application.cs: set the modal dialog to non modal after we close
5974 it. Fixes bug #79866.
5976 2006-11-08 Jackson Harper <jackson@ximian.com>
5978 * TextControl.cs: When combining lines carry over the line end
5979 style from the end line.
5980 - Invalidate the selected area when setting it, if it is visible.
5981 * TextBoxBase.cs: Only rich text box can do full line selects.
5982 - Make sure to set the cursor position when there is a click,
5983 otherwise two clicks in separate areas could cause a large chunk
5986 2006-11-07 Everaldo Canuto <everaldo@simios.org>
5988 * Toolbar.cs: Release flat button borders when Toolbar lost focus.
5991 2006-11-07 Everaldo Canuto <everaldo@simios.org>
5993 * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
5994 time. Remove tooltips when ToolButton click events. Fixes #79856.
5996 2006-11-07 Everaldo Canuto <everaldo@simios.org>
5998 * MenuAPI.cs: Ignore right click for menu actions and fixes
5999 menu border when clicked. Fixes #79846.
6001 2006-11-07 Everaldo Canuto <everaldo@simios.org>
6003 * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
6004 MouseState after create wParam for message, this fixes mouse button
6005 equal none in mouse up events.
6007 2006-11-07 Andreia Gaita <shana.ufie@gmail.com>
6009 * Control.cs : Focus() now calls Select to set the Container's
6010 Active Control and to give it focus. To avoid infinite recursion
6011 (because ActiveControl also calls Focus at one point), a check
6012 is made in Focus with the help of a new internal variable
6015 2006-11-07 Mike Kestner <mkestner@novell.com>
6017 * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
6018 if there's a selection. Fixes #79849.
6020 2006-11-07 Gert Driesen <drieseng@users.sourceforge.net>
6022 * PropertyGrid.cs: Avoid fixed height of help description label.
6023 Fixes part of bug #79829.
6025 2006-11-07 Chris Toshok <toshok@ximian.com>
6027 * XplatUIX11.cs: fix #79790 again, by using the
6028 _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
6030 2006-11-07 Everaldo Canuto <everaldo@simios.org>
6032 * ToolBar.cs: Fix left click checking.
6034 2006-11-07 Chris Toshok <toshok@ximian.com>
6036 * ProgressBar.cs: fix a typo in ToString(). fixes a unit test.
6038 2006-11-07 Chris Toshok <toshok@ximian.com>
6040 * RelatedPropertyManager.cs: set property_name in our ctor. fixes
6041 PropertyManager unit tests.
6043 * PropertyManager.cs: make property_name internal.
6045 2006-11-07 Chris Toshok <toshok@ximian.com>
6047 * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
6048 pass a unit test. Also, don't set image_index to anything in
6049 response to setting the ImageList property.
6051 2006-11-07 Everaldo Canuto <everaldo@simios.org>
6053 * ToolBar.cs: Ignore click events when mouse button is not a
6054 left button, only accepts other button for dropdown menus.
6057 2006-11-07 Chris Toshok <toshok@ximian.com>
6059 * DataGrid.cs: make the back and parent row buttons a little less
6062 2006-11-07 Jackson Harper <jackson@ximian.com>
6064 * TextBoxBase.cs: When converting to Text don't put line breaks in
6065 for soft line breaks.
6066 * TextControl.cs: There is an initial "fake" line in the document,
6067 this is now a soft break line, so that an extra line feed doesn't
6068 get added to the end of documents.
6070 2006-11-07 Chris Toshok <toshok@ximian.com>
6074 * CurrencyManager.cs: if the list is readonly, don't bother
6075 checking if IBindingList.AllowNew is true.
6077 * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
6078 for non-DataRowView datasources.. or rather, make it not crash.
6079 (DataGridPaintRelationRow): make sure we limit the row painting to
6080 the area not covered by the row header, and make our cell width at
6081 least large enough to cover the relation area. This allows grids
6082 that have relations but no rows to render correctly.
6083 (DataGridPaintRowContents): same type of changes here.
6084 (SetDataSource): move back to always calling
6085 CalcAreasAndInvalidate. this fixes a crash/drawing problem when
6086 navigating back through relations.
6087 (HitTest): handle the case where we have no cells but have
6088 relations. Right now we generate a hit in cell 0 of whatever the
6089 row is, not sure if this is strictly correct, but it works for our
6092 * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
6093 bother doing anything.
6095 2006-11-07 Jonathan Pobst <monkey@jpobst.com>
6097 * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
6098 early version of StatusStrip. Not responsible for eaten
6099 application or firstborn children.
6101 2006-11-06 Chris Toshok <toshok@ximian.com>
6103 * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
6104 call GetTabRect with a -1 index. Fixes #79847.
6106 2006-11-06 Jackson Harper <jackson@ximian.com>
6108 * TreeNodeCollection.cs: Update scrollbars after clearing.
6110 2006-11-06 Chris Toshok <toshok@ximian.com>
6112 * NumericUpDown.cs: fix the ToString method for some unit test
6115 2006-11-06 Chris Toshok <toshok@ximian.com>
6118 - set the initial SelectedGridItem if we can.
6120 - Exclude non-mergable properties only if we're merging > 1
6121 object. Merging 1 object isn't really merging, obviously.
6123 - Handle PropertySort.NoSort just like Alphabetical, which is
6124 wrong of course, but at least gets things on the screen.
6126 * PropertyGridView.cs:
6127 - Add method "FindFirstItem" which finds the first property grid
6128 item, so we can select it by default.
6130 - make use of GridEntry.CanResetValue.
6132 - Don't call RedrawBelowItemOnExpansion here anymore, the
6133 individual GridEntry's will do that.
6135 - Remove the ITypeDescriptorContextImpl internal class.
6138 - this class needs to implement ITypeDescriptorContext, as it's
6139 what MS's PropertyDescriptorGridEntry does, which means we can
6140 remove the ITypeDescriptorContextImpl internal class from
6141 PropertyGrid.cs. This fixes the crashing portion of bug #79829.
6143 - keep a reference to our PropertyGridView, and move the call to
6144 RedrawBelowItemOnExpansion here from PGV. This means
6145 programmaticly setting Expanded actually does something visible.
6147 - add a CanResetValue() function which takes into account our
6148 possibly multiple "selected_objects" in the merged case. Shifting
6149 PropertyGridView to use this method fixes another unreported
6150 crasher found running the test for #79829.
6152 - when Top or Bounds is updated, make sure the PropertyGridTextBox
6153 is updated to reflect this.
6155 * CategoryGridEntry.cs: the ctor takes the PGV now.
6157 2006-11-06 Jackson Harper <jackson@ximian.com>
6159 * TextControl.cs: These are 1 based.
6160 * TextBoxBase.cs: When setting the selected text, don't change the
6161 selected text tags, this is done by ReplaceText, just position the
6162 cursor at the end of the new text.
6164 2006-11-06 Alexander Olk <alex.olk@googlemail.com>
6166 * ListView.cs: Allow label edit only when, when LabelEdit is
6169 2006-11-06 Jackson Harper <jackson@ximian.com>
6171 * TextControl.cs: If a suitable wrapping position isn't found,
6172 just wrap right in the middle of a word.
6174 2006-11-06 Alexander Olk <alex.olk@googlemail.com>
6176 * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
6179 2006-11-06 Jackson Harper <jackson@ximian.com>
6181 * TreeView.cs: Can't use the VisibleCount property when setting
6182 scrollbar heights, because this doesn't take into account whether
6183 or not the horz scrollbar just came visible.
6185 2006-11-05 Everaldo Canuto <everaldo@simios.org>
6187 * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
6188 activated. Fixes #79369, #79832.
6190 2006-11-05 Alexander Olk <alex.olk@googlemail.com>
6192 * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
6193 had to remove support for links that point to a directory. FileInfo
6194 returns no usefull information (means, the directory they point to)
6195 for such links. Replaced some empty string ("") with String.Empty.
6197 2006-11-04 Gert Driesen <drieseng@users.sourceforge.net>
6199 * TreeNodeCollection.cs: To match MS, in 1.0 profile throw
6200 NullReferenceException when attempting to remove node that is not in
6201 collection. Throw NullReferenceException when null is passed to
6202 Remove. Allow first element of the collection to be removed. Fixes
6203 bug #79831. In GetEnumerator ().Current return null if positioned
6204 before the first element of the collection. In GetEnumerator ().Reset,
6205 position before first element of the collection.
6207 2006-11-04 Gert Driesen <drieseng@users.sourceforge.net>
6209 * PropertyGrid.cs: To match MS, remove default title and description
6210 for panel. Fixed tooltips for Categorized and Alphabetic toolbar
6213 2006-11-04 Chris Toshok <toshok@ximian.com>
6215 * Theme.cs: add a Clamp method, just for kicks.
6217 * ThemeWin32Classic.cs: clamp all color components to [0..255].
6219 2006-11-04 Chris Toshok <toshok@ximian.com>
6221 * Form.cs: if the form isn't visible, Close() does nothing.
6223 2006-11-03 Chris Toshok <toshok@ximian.com>
6225 * Form.cs (Close): if the form is modal, don't Dispose of it, only
6227 (WndProc): don't Dispose after handling the WM_CLOSE message.
6229 * Application.cs (RunLoop): toplevels is a list of Forms, so treat
6230 them as such, instead of using casts from Control to Form. Also,
6231 don't Dispose of the modal dialog when we fall out of the loop -
6236 2006-11-03 Chris Toshok <toshok@ximian.com>
6238 * Control.cs (Dispose): only go through the dispose thing if we're
6239 @disposing, and we haven't already been disposed. Fixes bug
6242 * Form.cs: no reason to call "base.Dispose()" here instead of
6245 2006-11-03 Mike Kestner <mkestner@novell.com>
6247 * ComboBox.cs : use ToString instead of casts in AddItem for
6248 sorting functionality. Fixes #79812.
6250 2006-11-03 Chris Toshok <toshok@ximian.com>
6252 * Application.cs: pave the way for actually using the thread
6253 exception dialog. it's ifdefed out at the moment.
6255 2006-11-03 Chris Toshok <toshok@ximian.com>
6257 * ThreadExceptionDialog.cs: until we get a better layout, actually
6258 hide the details textbox and label when we shouldn't see them.
6260 2006-11-03 Jackson Harper <jackson@ximian.com>
6262 * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
6263 multiline textboxes anymore. This method also determines the
6264 width/height of a textboxes canvas area.
6265 - Sorta a revert of the last patch. For multiline just position
6266 the controls, then bail. This way the scrollbar width won't be
6269 2006-11-03 Everaldo Canuto <everaldo@simios.org>
6271 * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
6272 it dont need. Fixes #79537.
6274 2006-11-02 Jackson Harper <jackson@ximian.com>
6276 * X11Dnd.cs: We always allow copy, since XDND implies Copy. Also
6277 send the status after firing the DndOver event.
6279 2006-11-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
6281 * TrackBar.cs: Now orientation only switches height / width if
6282 the control's handle is created (Win32 does it like this). Also
6283 fixed a typo in ToString() for a test to pass, changed the
6284 exception thrown in set_LargeChange and set_SmallChange to
6285 match Win32 behaviour, and added TrackBar tests to the unit
6288 2006-11-02 Chris Toshok <toshok@ximian.com>
6290 * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
6291 not _NET_WM_STATE_NO_TASKBAR.
6293 2006-11-02 Jackson Harper <jackson@ximian.com>
6295 * TextControl.cs: Increment count by one, since in the update view
6298 2006-11-02 Jackson Harper <jackson@ximian.com>
6300 * TextBoxBase.cs: Use client rectangle not bounds for checking if
6301 the mouse is in the client rectangle (duh).
6303 2006-11-02 Rolf Bjarne Kvinge <RKvinge@novell.com>
6305 * TrackBar.cs: Fixed trackbar jumping around when clicking
6306 on it - the trackbar was not detecting correctly at which
6307 side of the thumb the click was done. (fixes #79718)
6309 2006-11-02 Everaldo Canuto <everaldo@simios.org>
6311 * ListBox.cs: scroll visible area when change SelectedIndex to
6312 a non visible area. Fixes #79481.
6314 2006-11-01 Jackson Harper <jackson@ximian.com>
6316 * TextControl.cs: When replacing the selection move the selection
6317 start/end/anchor to the end of the new text.
6319 2006-11-01 Jackson Harper <jackson@ximian.com>
6321 * XplatUIWin32.cs: When setting the parent change the controls
6322 visibility to it's visibility flag, not to it's old parents
6323 visibility (.Visible walks the parent chain).
6325 2006-11-01 Chris Toshok <toshok@ximian.com>
6327 * XplatUIX11.cs: revert the #79790 fix, as the simple.
6328 XSetTransientForHint fix breaks paint .net's tool windows. more
6329 work needed for that one.
6331 2006-11-01 Chris Toshok <toshok@ximian.com>
6333 * ScrollBar.cs: throw ArgumentException instead of Exception in
6334 LargeChange/SmallChange setters. fixes unit tests.
6336 2006-10-31 Andreia Gaita <shana.ufie@gmail.com>
6338 * ContainerControl.cs: reverted rev.67183 (which was itself
6339 a reversion of rev.66853... eh).
6341 * Control.cs: Fixes Reflector hang by changing Focus() call
6342 to what it was before rev.66643 (calling Select() here sets
6343 ActiveControl, which in some situations calls back Focus and
6344 eventually does a stack overflow). Temp fix.
6345 Changes to GetNextControl() to not look for children to select when
6346 parent cannot be selectable (so it looks for siblings instead)
6348 2006-10-31 Mike Kestner <mkestner@novell.com>
6350 * CheckedListBox.cs : off by one error in returned index from
6351 ObjectCollection.Add. Fixes #79758.
6353 2006-10-31 Chris Toshok <toshok@ximian.com>
6355 * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
6356 calls for the textbox/spinner, to keep from recursing to the point
6357 where we crash. Fixes #79760.
6359 2006-10-31 Chris Toshok <toshok@ximian.com>
6361 * ListControl.cs (set_SelectedValue): don't throw exceptions on
6362 null/"" value, just return. matches ms's behavior and fixes some
6365 2006-10-31 Chris Toshok <toshok@ximian.com>
6367 * Control.cs (set_Capture): make a logic a little easier to
6370 * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
6371 if it's being destroyed. A necessary fix surely, but a bandaid
6372 also, to fix the stuck capture problem in bug #78413.
6374 2006-10-31 Chris Toshok <toshok@ximian.com>
6376 * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
6377 convention of clearing hwnd.ClientRect when we set the
6378 width/height (so it'll be recalculated by Hwnd).
6380 2006-10-31 Andreia Gaita <shana.ufie@gmail.com>
6382 * ContainerControl.cs: reversed Contains check from
6383 ActiveControl due to hanging problems. This fix
6384 partly regresses #79667 (button does not have
6385 initial focus), so this might be a symptom for
6386 a larger parenting problem (set_ActiveControl
6387 is being called but the child control does
6388 not have the parent set yet?)
6390 2006-10-31 Mike Kestner <mkestner@novell.com>
6392 * MenuAPI.cs : fix keynav when menu is click activated.
6394 2006-10-31 Jonathan Pobst <monkey@jpobst.com>
6396 * ToolStrip*: Version 0.2.
6398 * MenuStrip.cs: Version 0.1.
6400 * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
6402 2006-10-30 Chris Toshok <toshok@ximian.com>
6404 [ fixes the oversized notify icon issue in bug #79745 ]
6406 * NotifyIcon.cs: scale the icon down to the size we're given by
6407 the XplatUI layer (this would be faster if we did it once instead
6408 of whenever we paint..) Also, remove the WM_NCPAINT handling,
6409 since it's never invoked.
6411 * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
6412 pixels high by default, so let's hardcode our systray icon to that
6413 size. The SYSTEM_TRAY protocol should really have a way for
6414 client apps to query for the correct icon size.. but oh well. A
6415 couple of patches to deal with the screwy client_window ==
6416 whole_window notifyicon stuff (we don't want to PerformNCCalc, for
6417 instance, and also make sure we don't XSelectInput twice).
6419 2006-10-30 Chris Toshok <toshok@ximian.com>
6421 * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
6422 recreating forms. Control recreation is the bane of my existence.
6423 Fix it in a way that keeps everyone happy.
6425 2006-10-30 Chris Toshok <toshok@ximian.com>
6427 * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
6428 just non-CHILD ones. otherwise sometimes scrollbars end up with
6429 client_windows not being resized to the proper size (ReportBuilder
6430 shows this extremely well).
6432 2006-10-30 Chris Toshok <toshok@ximian.com>
6434 * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
6435 for non-WS_EX_APPWINDOW windows. This is what keeps them from
6436 showing up in the gnome taskbar. Fixes bug #79790.
6438 2006-10-30 Chris Toshok <toshok@ximian.com>
6440 * ApplicationContext.cs: guard against a NRE.
6442 * Application.cs: null out the old MainForm for the context, so we
6443 don't try to use it again once it's disposed. Fixes bug #79783.
6445 2006-10-30 Chris Toshok <toshok@ximian.com>
6447 * DataGrid.cs (set_DataSource, set_DataMember): if we have a
6448 BindingContext, set the data source directly, otherwise do the
6449 lazy approach - the actual ListManager will be created when we get
6450 a BindingContext. Fixes bug #79700.
6452 2006-10-30 Jonathan Pobst <monkey@jpobst.com>
6454 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
6455 XplatUIX11.cs: Remove old 2 parameter SetVisible.
6457 * Control.cs: Use the new 3 parameter SetVisible with activate = true.
6459 2006-10-30 Jonathan Pobst <monkey@jpobst.com>
6461 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
6462 of SetVisible that allows a window to be shown, but not activated.
6463 This is needed on Windows for MenuStrip, and can probably be used
6464 with MainMenu and ComboBox to fix the focus stealing issues on
6467 * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
6469 2006-10-30 Alexander Olk <alex.olk@googlemail.com>
6471 * PictureBox.cs: Fix the output of the ToString method.
6473 2006-10-29 Chris Toshok <toshok@ximian.com>
6475 * Control.cs (get_TopLevelControl): fix bug #79781.
6477 2006-10-29 Chris Toshok <toshok@ximian.com>
6479 * ListControl.cs (set_DataSource): throw Exception here, not
6480 ArgumentException, to match MS behavior.
6482 2006-10-29 Chris Toshok <toshok@ximian.com>
6484 * Form.cs: remove the try-catch's around calls to GetWindowState.
6485 We can just check the return value.
6487 * XplatUIX11.cs: don't throw exceptions from GetWindowState.
6490 * XplatUI.cs: Add note about additional return value for
6493 2006-10-29 Chris Toshok <toshok@ximian.com>
6495 * Control.cs (CreateHandle): when we create our handle, we also
6496 create the handles of our child controls. Fixes one of the
6497 Control unit tests (CH11).
6499 2006-10-28 Alexander Olk <alex.olk@googlemail.com>
6501 * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
6503 2006-10-28 Alexander Olk <alex.olk@googlemail.com>
6505 * ThemeClearlooks.cs: A little speedup.
6507 2006-10-27 Chris Toshok <toshok@ximian.com>
6509 * Control.cs: implement Control.FromChildHandle in a way that
6510 matches the docs (and fixes the failed test.)
6512 2006-10-27 Chris Toshok <toshok@ximian.com>
6514 * DataGridTableStyle.cs: reproduce buggy MS behavior (with
6517 * DataGrid.cs: implement ResetForeColor such that the tests
6520 2006-10-27 Chris Toshok <toshok@ximian.com>
6522 * ToolBarButton.cs: setting text/tooltiptext to null results in it
6523 being set to "". Fixes bug #79759.
6525 2006-10-27 Jackson Harper <jackson@ximian.com>
6527 * TextControl.cs: We need to clear the entire selection area when
6528 setting the start, otherwise multiline selections are still
6531 2006-10-26 Chris Toshok <toshok@ximian.com>
6533 * PropertyGridView.cs:
6535 - ifdef all the code specific to the double
6536 buffer case, and provide some alternatives in the non-doublebuffer
6537 code, which makes heavy use of XplatUI.ScrollWindow to move things
6538 around without having to invalidate (and cause flicker). There
6539 are still some drawing problems in the non-doublebuffered case, so
6540 DOUBLEBUFFER is defined by default.
6542 - Fix the way dropdowns are handled. now we explicitly watch for
6543 the events which might cause the dropdown to close, and break out
6544 of the nested event loop there. This gets rid of all Capture
6545 code, at the expense of the Msg special casing. Seems to work,
6546 though, and fixes bug #79743.
6548 2006-10-27 Rolf Bjarne Kvinge <RKvinge@novell.com>
6549 * Control.cs: SetIsRecreating now recreates implicitly added
6550 child controls as well. Finally fixes #79629. The flag passed to
6551 SetIsRecreating has also been removed since it wasn't used.
6553 2006-10-26 Carlos Alberto Cortez <calberto.cortez@gmail.com>
6555 * PageSetupDialog.cs: Clean some code, fix some bits,
6556 add some checks, and add a printer sub-dialog.
6558 2006-10-26 Chris Toshok <toshok@ximian.com>
6560 * PropertyGrid.cs: make set_SelectedObject call
6561 set_SelectedObjects, and move the duplicate logic to the
6562 SelectedObjects setter. Also, raise SelectedObjectsChanged.
6564 * PropertyGridView.cs: hide the textbox when we get a
6565 SelectedObjectsChanged event.
6569 2006-10-26 Chris Toshok <toshok@ximian.com>
6571 * PropertyGridView.cs: deal with the type converter not supporting
6572 GetStandardValues() or GetStandardValues() returning null, which
6573 is does in the default case. Fixes #79742.
6575 2006-10-25 Andreia Gaita <shana.ufie@gmail.com>
6577 * CheckedListBox.cs: nunit no longer crashes when selecting
6578 Project/Edit menu option
6580 2006-10-25 Andreia Gaita <shana.ufie@gmail.com>
6582 * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
6583 is no menu selected. fixes #79739
6585 2006-10-25 Chris Toshok <toshok@ximian.com>
6587 * PropertyGridView.cs: factor out the splitter invalidation code
6588 into the SplitterPercent setter, and for kicks implement the
6589 Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
6590 amount in either direction.
6592 2006-10-25 Chris Toshok <toshok@ximian.com>
6594 * PropertyGridView.cs: do some cleanup of the brush used to draw
6595 text - read only fields should be grayed out. not sure how to do
6596 this with the textbox, though. but the textbox's should also be
6597 readonly now at least. Also, hide/show the textbox when resizing
6600 * CursorConverter.cs: use System.Reflection when getting the
6601 properties of Cursors, as TypeDescriptor.GetProperties isn't
6602 returning static properties.
6604 2006-10-25 Chris Toshok <toshok@ximian.com>
6606 * PropertyGridView.cs: factor out the up/down handling, and reuse
6607 it for page up/down. also add End/Home support.
6609 2006-10-25 Chris Toshok <toshok@ximian.com>
6611 * PropertyGridView.cs:
6613 - ensure the selected grid item is visible in the scrolled area,
6616 - fix Keys.Down handling when you're on the last item in the
6619 2006-10-25 Mike Kestner <mkestner@novell.com>
6621 * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup
6622 clicks too. Fixes #79725.
6624 2006-10-24 Chris Toshok <toshok@ximian.com>
6626 * PropertyGrid.cs: use property.Converter instead of
6627 TypeDescriptor.GetConverter(property.PropertyType), so we catch
6628 TypeConverters declared on the property as well as on the
6629 PropertyType. Fixes bug #79678.
6631 2006-10-24 Alexander Olk <alex.olk@googlemail.com>
6633 * MimeIcon.cs, Mime.cs:
6634 Fallback to the default platform handler if no shared mime info
6635 stuff exists (fixes #79693).
6637 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
6638 * ContainerControl.cs: Incorrect contains check in ActiveControl
6639 from previous fix (duh).
6641 2006-10-20 Chris Toshok <toshok@ximian.com>
6643 * PropertyGridView.cs: the dropdown should be MIN(number of items
6644 in list, 15). Fixes #79551.
6646 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
6647 Fixes #79384, #79394, #79652, #79667
6650 - Modal windows are now destroyed in the proper order for windows
6652 * ContainerControl.cs:
6654 - ActiveControl setter has more conditions on when to return:
6655 - if we're reselecting the active control, but it actually
6656 didn't have focus (window hidden or some such), it runs
6657 - if the active control being selected doesn't actually
6658 exist in the container, it returns
6662 - The ShowDialog now gets the current form as the owner when
6663 invoking without parameters, and correctly activates the owner
6668 - MessageBox now catches the Escape key to exit
6670 2006-10-20 Chris Toshok <toshok@ximian.com>
6672 * PropertyGridView.cs: fix a number of issues (bug #78565, and
6673 most of bug #79676):
6675 - you can navigate around the property grid with the arrow keys.
6677 - the dropdown is sized properly when the pg has a vertical
6680 - fix the indentation for subentries, and properly select the
6683 - fix the gray bar's drawing (only draw it to the last element,
6684 not for the height of the control. Also make sure we draw that
6685 last horizontal grid line.
6687 - use the same mechanism the datagrid uses wrt the editing textbox
6688 when scrolling/resizing/etc. Namely, we hide it first, do the
6689 operation, then show it again (if it's still visible).
6691 - aggressively remove a lot of unnecessary refreshes (and also
6692 calls to Invalidate(). call more limited variants, and only redraw
6697 - when we're populating the merged collection, fill in the UI
6698 parent with either the passed in item, or the category item we
6701 - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
6703 * GridItem.cs: drop some fully qualified names.
6705 * GridEntry.cs: add a "UIParent", which is basically the parent
6708 * GridItemCollection.cs: add an IndexOf method.
6710 2006-10-20 Mike Kestner <mkestner@novell.com>
6712 * MainMenu.cs : go back to Draw in OnMenuChanged. Until we get
6713 a working win32 NC invalidation mechanism, we can't invalidate
6714 menus. [Fixes #79705]
6716 2006-10-20 Mike Kestner <mkestner@novell.com>
6718 * ListBox.cs : don't update the VScrollbar if the list is empty,
6719 just hide it. [Fixes #79692]
6721 2006-10-20 Jackson Harper <jackson@ximian.com>
6723 * RichTextBox.cs: Handle some special chars better, and don't skip
6724 the entire group when we encounter a special char that we don't
6727 2006-10-18 Chris Toshok <toshok@ximian.com>
6729 * PropertyGridView.cs: address a number of issues from bug #79676,
6730 mostly of the cosmetic variety.
6732 - The highlight rectangle for indented items not extends all the
6735 - Indented items aren't indented so much.
6737 - the dropdown is properly sized width-wise if the pg has a
6740 2006-10-18 Chris Toshok <toshok@ximian.com>
6742 * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
6743 systray stuff is rather convoluted to begin with.
6745 systray icons are a single window for some reason (that I haven't
6746 figured out yet), and for them, client_window == whole_window.
6747 Given the way the tests are structured elsewhere to determine
6748 which paints are pending (client vs. nc), that situation will
6749 always yield PAINT, not NCPAINT. So, if we have a pending
6750 nc_expose and no pending expose, remove the hwnd from the paint
6751 queue, and also set nc_expose_pending to false, to keep us from
6752 blocking further expose's adding the hwnd to the paint queue.
6754 phew. like i said, a rather convoluted change. Fixes the
6755 notifyicon repaint issues in bug #79645.
6757 2006-10-18 Chris Toshok <toshok@ximian.com>
6759 * Form.cs: when getting the backcolor of the form, don't get
6760 base.BackColor, as this allows parents to influence the background
6761 color. This breaks mdi forms. Instead, if the background_color
6762 is empty, return the default.
6764 2006-10-18 Chris Toshok <toshok@ximian.com>
6766 * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
6767 to being private instead of internal static.
6769 * Control.cs: remove all the stupid ParentWaitingOnRecreation
6770 crap, it wasn't working for more deeply nested controls anyway,
6771 and we already have the is_recreating flag - use that instead.
6772 Before calling DestroyHandle in RecreateHandle, recurse through
6773 the control tree setting it to true. this returns the recreate
6774 code to much of its original simplicity, while now guaranteeing we
6775 actually recreate everything we're supposed to. This change gets
6776 fyireporting actually showing mdi children.
6778 2006-10-17 Chris Toshok <toshok@ximian.com>
6780 * Form.cs: remove some debug spew, and collapse some duplicate
6781 code at the end of SetClientSizeCore.
6784 - add some more debug spew here too wrt Destroy handling.
6785 - don't call hwnd.Dispose in DestroyWindow, it's effectively done
6786 in Control's handling of WM_DESTROY.
6787 - Remove the handling of zombie window DestroyNotifies from the
6788 event loop - we don't need it. Now the only DestroyNotifies we
6789 actually handle are ones generated by X.
6790 - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
6791 match gtk's (functioning) handling of this. This keep metacity
6792 from leaving droppings in the form of wm borders with no window
6793 contents all over the place.
6796 - add a bunch of debug spew wrt control recreation.
6797 - fix a bug where we weren't tracking Visible properly on
6799 - fixed the WM_PAINT double buffer handling to support re-entrant
6800 calls (yes, i know it's gross, but it's happening to us).
6802 2006-10-17 Rolf Bjarne Kvinge <rolfkvinge@ya.com>
6803 * ThemeWin32Classic.cs: changed drawing of selected days
6804 to make them look better.
6806 2006-10-16 Chris Toshok <toshok@ximian.com>
6808 * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
6809 drawing_stack. Nuke the ClientDC/NonClientDC properties.
6811 * XplatUIX11.cs: move away from using hwnd.client_dc and
6812 hwnd.non_client_dc and on to a stack of dc's (and in window's
6813 case, PAINTSTRUCT's), so we can deal with nested Paint calls
6814 without puking or not disposing of Graphics objects.
6816 * XplatUIOSX.cs: same.
6818 * XplatUIWin32.cs: same.
6820 2006-10-03 Alexander Olk <alex.olk@googlemail.com>
6822 * FileDialog.cs: Don't call on_directory_changed inside
6823 OnSelectedIndexChanged (it changes the SelectedIndex too).
6824 Instead move it to OnSelectionChangeCommitted.
6826 2006-10-13 Chris Toshok <toshok@ximian.com>
6828 * XplatUIX11.cs: more Destroy work. the current code does the
6829 following things, in order:
6831 1. Enumerates all handles of all controls at or below the one
6832 being destroyed, in pre-order. As it is doing this, it marks the
6833 handles as zombie and clears all references to them.
6835 2. calls XDestroyWindow on the window passed in.
6837 3. SendMessage's WM_DESTROY to all he handles in the accumulated
6840 2006-10-13 Chris Toshok <toshok@ximian.com>
6842 * XplatUIX11.cs: set hwnd.zombie to true before calling
6843 SendMessage (WM_DESTROY). this keeps us from marking the new
6844 window a zombie, and also keeps us from calling sendmessage at
6847 2006-10-13 Jackson Harper <jackson@ximian.com>
6849 * TextControl.cs: Do not show the caret and selection at the same
6850 time. Reduces ugliness by 35%.
6852 2006-10-13 Chris Toshok <toshok@ximian.com>
6854 * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
6855 zombie after we do the recursive call, so we actually do call
6856 SendMessage on the children controls.
6857 (GetMessage): if we find a pending paint event for a zombie hwnd,
6858 remove the hwnd from the paint queue, or else it will always be
6859 there (and we'll effectively loop infinitely)
6861 2006-10-13 Mike Kestner <mkestner@novell.com>
6863 * MenuItem.cs : add Selected format under keynav too.
6866 2006-10-13 Gert Driesen <drieseng@users.sourceforge.net>
6868 * PropertyGrid.cs: Fixed some NRE's and small difference between our
6869 implementation and that of MS.
6871 2006-10-13 Chris Toshok <toshok@ximian.com>
6873 * Control.cs (OnInvalidated) only futz with the invalid_region if
6874 the control is double buffered. this fixes the apparent hang in
6875 the ListView unit tests. Someone needs to make the
6876 BeginEndUpdateTest not call OnInvalidated 15004 times, though..
6878 2006-10-13 Chris Toshok <toshok@ximian.com>
6880 * PropertyGridView.cs:
6882 - do a little refactoring so that only one place calls
6883 dropdown_form.Hide, and that is CloseDropDown. make everywhere
6884 else call that. Also make it Refresh, since there are redraw bugs
6885 otherwise (we should take a look at that...)
6887 - do a little more refactoring work to share the body of code
6888 involved with the drop down. it was duplicated in the code
6889 dealing with the listbox handling and in the code dealing with the
6892 - add a Capture to the dropdown form's control once it's
6893 displayed, and add a MouseDown handler that checks to make sure
6894 the position is inside the control. If it's not, close the
6895 dropdown. This fixes #78190.
6897 - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
6898 if the value is different than the initial value.
6900 2006-10-13 Andreia Gaita <shana.ufie@gmail.com>
6902 * Control.cs: see #78650
6903 - Fixed GetNextControl for several cases:
6904 - Changed FindFlatForward to return
6905 correct sibling control when more than one
6906 control has same TabIndex as the currently
6908 - Changed FindFlatBackward to loop children
6909 from last to first and apply same logic as in
6911 - Changed FindControlForward to search for
6912 children when control is not a container
6913 but has children, or search for siblings if
6914 control is a container...
6915 - Changed FindControlBackward to continue
6916 searching for child controls when hitting
6919 - Fixed Focus method to update ActiveControl
6920 (FocusTest.FocusSetsActive failure)
6923 - Focus rectangle now refreshes when gaining
6925 - Removed grab for Tab key on IsInputKey that
6926 was keeping tab navigation from working (#78650)
6928 2006-10-13 Chris Toshok <toshok@ximian.com>
6930 * PropertyGridView.cs:
6931 - Rewrite SetPropertyValue to loop over SelectedGridItem's
6934 - Deal with GridItem.Value == null a few places.
6937 - replace the PopulateGridItemCollection with a pair of methods
6938 which compute the intersection of all the properties in the
6939 SelectedObjects array. Fixes #79615.
6941 - Throw ArgumentException from set_SelectedObjects if there's a
6944 - Add GetTarget method which can be used to traverse up the
6945 GridItem.Parent chain. It depends on the assumption that
6946 selected_objects for different GridEntries are always in the same
6947 order (a safe assumption). Use this method and loop over all the
6948 selected objects in the entry when calling RemoveValueChanged and
6951 * GridEntry.cs: Make this handle multiple selected objects.
6952 .Value returns null if not all the selected objects share the same
6955 2006-10-12 Jonathan Pobst <monkey@jpobst.com>
6956 * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
6957 ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
6958 ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
6959 ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
6960 ToolStripTextBox.cs: Add accessibility, fix attributes/API and
6961 add additional functionality.
6963 2006-10-12 Mike Kestner <mkestner@novell.com>
6965 * ErrorProvider.cs : new ToolTipWindow ctor sig.
6966 * HelpProvider.cs : new ToolTipWindow ctor sig.
6967 * ToolTip.cs : remove ToolTip param from Window sig since it is
6969 * ToolBar.cs : add tooltip support. Fixes #79565.
6971 2006-10-12 Rolf Bjarne Kvinge <rolfkvinge@ya.com>
6973 * ComboBox.cs: move the events in set_SelectedIndex to
6974 after the call to HighlightIndex in order to avoid
6975 possible recursion and subsequent problems with the call
6976 to HighlightIndex and include a range check in
6977 set_HighlightIndex. Fixes #79588
6979 2006-10-12 Rolf Bjarne Kvinge <rolfkvinge@ya.com>
6981 * MonthCalendar.cs: When FirstDayOfWeek is default set firstday
6982 to ui thread's settings instead of sunday.
6983 * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
6985 2006-10-12 Rolf Bjarne Kvinge <rolfkvinge@ya.com>
6989 * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
6990 and implement missing functionality (selecting different parts
6991 of the date and edit them individually with the keyboard).
6993 2006-10-11 Chris Toshok <toshok@ximian.com>
6995 * Control.cs (OnInvalidated): fix NRE relating to last change.
6997 2006-10-11 Chris Toshok <toshok@ximian.com>
6999 * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
7000 atoms in _NET_WM_STATE here if the window is maximized. We need
7001 to do this because we're *replacing* the existing _NET_WM_STATE
7002 property, so those atoms will be lost otherwise, and any further
7003 call to GetWindowState will return Normal for a window which is
7004 actually maximized. Fixes #79338.
7006 2006-10-11 Jackson Harper <jackson@ximian.com>
7008 * TextControl.cs: Special case for setting selection end to
7009 selection start, we basically kill the anchor.
7010 - some todo comments.
7012 2006-10-11 Chris Toshok <toshok@ximian.com>
7014 * Control.cs: switch to using an "invalid_region" to track which
7015 parts of the image buffer need updating. This is more code than
7016 the simple fix from r66532. That version just attempted to always
7017 fill the entire buffer on redraw, which turns out to be
7018 inefficient when invalidating small rectangles. This version
7019 simply adds the invalid rectangle to the invalid region. When we
7020 get any WM_PAINT message we see if it can be filled using the
7021 image buffer, and if it can't (if the paint event's clip rectangle
7022 is visible in the invalid region) we first fill the image buffer.
7023 So, the image buffer is still a cache, we just fill it lazily.
7025 * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
7028 2006-10-11 Chris Toshok <toshok@ximian.com>
7030 * XplatUIX11.cs (SetWindowPos): we need to update both position as
7031 well as size after calling XMoveResizeWindow. This keeps us from
7032 ignoring future SetWindowPos calls. Fixes the disappearing
7033 DateTimePicker in the ToolBarDockExample from bug #72499.
7035 2006-10-11 Chris Toshok <toshok@ximian.com>
7037 * TextBoxBase.cs: reorder things a bit when it comes to
7038 resizing-causing-recalculation. we were recalculating the
7039 document when our position was changed, which shouldn't happen.
7040 We only care about size changes. Clear up some more redundant
7041 recalculation calls while I'm at it. This makes the toolbar dock
7042 example snappy when you're just dragging toolbars around (since it
7043 causes a relayout whenever you move one.)
7045 2006-10-11 Chris Toshok <toshok@ximian.com>
7047 * ToolBarButton.cs (get_Rectangle): this only returns
7048 Rectangle.Empty if Visible == false, or Parent == null.
7049 Parent.Visible doesn't matter.
7051 2006-10-10 Chris Toshok <toshok@ximian.com>
7053 * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
7054 by .net 1.1, so switch to an internal method instead.
7056 2006-10-10 Chris Toshok <toshok@ximian.com>
7058 * Control.cs (WM_PAINT): when a control is double buffered we draw
7059 initially to the ImageBuffer and then copy from there. But when a
7060 parent control which has child controls is double buffered, the
7061 initial drawing doesn't encompass the entire ClientRectangle of
7062 the parent control, so we end up with uninitialized bits (this is
7063 easily seen by dragging the top toolbar in
7064 wf-apps/ToolBarDockExample to the right, quickly). The fix is to
7065 manually set the ClipRectangle of the paint_event (only the one we
7066 use to populate the ImageBuffer) to ClientRectangle. Fixes more
7067 of the nastiness in bug #72499.
7069 * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
7070 which we use in Control.cs's WM_PAINT handling.
7072 2006-10-10 Jackson Harper <jackson@ximian.com>
7074 * TextBoxBase.cs: Finish off the autoscrolling stuff.
7076 2006-10-10 Chris Toshok <toshok@ximian.com>
7078 * Cursor.cs: Apply a slightly different patch to the one suggested
7081 2006-10-10 Jackson Harper <jackson@ximian.com>
7083 * MenuItem.cs: Make sure to put the mdi child in the hashtable,
7084 not the parent form.
7085 * TextControl.cs: use difference in old line count vs new count to
7086 calculate how many lines were added, this takes into account soft
7087 line breaks properly.
7089 2006-10-10 Chris Toshok <toshok@ximian.com>
7091 * LinkLabel.cs: don't call MeasureCharacterRanges against a
7092 rectangle located at 0,0 and the size of the text. Use
7093 ClientRectangle instead. This fixes rendering of non-left aligned
7096 2006-10-10 Jackson Harper <jackson@ximian.com>
7098 * TextBoxBase.cs: When we set the selection start position the
7100 * TextControl.cs: Need to update the caret when we decrement it to
7102 - Make sure that the selection_visible flag gets reset to false if
7103 the selection isn't visible. Before this you could get it set to
7104 visible by changing the selection start, then changing the end to
7107 2006-10-09 Jackson Harper <jackson@ximian.com>
7109 * TreeView.cs: Don't update scrollbars when we aren't visible.
7110 * TreeNodeCollection.cs: Only need to update scrollbars if being
7111 added to an expanded visible node or the root node.
7113 2006-10-09 Chris Toshok <toshok@ximian.com>
7115 * XplatUIX11.cs (SendMessage): fix NRE.
7117 2006-10-09 Jackson Harper <jackson@ximian.com>
7119 * TextBoxBase.cs: Implement horizontal autoscrolling.
7120 * TextControl.cs: Add a movement types that allows moving forward
7121 and backwards without wrapping.
7123 2006-10-09 Mike Kestner <mkestner@novell.com>
7125 * ListViewItem.cs : layout changes for wrapped LargeIcon labels
7126 with focus "expansion" of labels. Fixes #79532 and then some.
7127 * ThemeWin32Classic.cs : add LineLimit to ListView label format
7130 2006-10-09 Jackson Harper <jackson@ximian.com>
7132 * TextBoxBase.cs: Set the default max values to MaxValue since
7133 we use the scrollbar for autoscrolling and the default value is
7134 100. If we don't do this the caret won't keep up with typing
7135 after about 18 characters.
7136 * TextControl.cs: Make sure the selection is offset by the
7137 viewport x. This fixes selection when using auto scrolling.
7139 2006-10-07 Andreia Gaita <shana.ufie@gmail.com>
7141 * Form.cs: The active control should be selected after the
7142 OnLoad so that any child control initialization that affects
7143 the selection is done. Fixes #79406
7145 2006-10-06 Chris Toshok <toshok@ximian.com>
7147 * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
7148 to have no evil effects.
7150 - Stop selecting StructureNotifyMask on non-toplevel windows.
7152 The only way children should be resized is by using the SWF api,
7153 and we already send WM_WINDOWPOSCHANGED messages in those cases.
7154 Toplevel windows can be interacted with via the window manager,
7155 and so we keep the input mask there.
7157 The other event StructureNotifyMask gives us (that we care
7158 about) is DestroyNotify. The code is already structured such
7159 that it assumes we won't be getting a DestroyNotify event for
7160 the window we pass to XDestroyWindow (which is what
7161 StructureNotifyMask is supposed to guarantee.) So, that code
7162 shouldn't be affected by this either.
7164 - Stop selecting VisibilityChangeMask altogether.
7166 We weren't doing anything with the resulting events anyway.
7168 This vastly reduces the number of X requests and events we see
7169 when resizing/laying out a large ui.
7171 2006-10-06 Chris Toshok <toshok@ximian.com>
7173 * ScrollableControl.cs (DisplayRectangle): we need to take into
7174 account the DockPadding regardless of whether or not auto_scroll
7175 == true. rework this slightly to this effect, and fix bug #79606,
7176 and part of #72499 (you can now see the drag handles and drag
7179 2006-10-06 Gert Driesen <drieseng@users.souceforge.net>
7181 * ListViewItem.cs: Collections of selected and checked items are now
7182 dynamically rebuilt. Whenever an item is (un)checked or (de)selected
7183 we mark the collection "dirty".
7184 * ListView.cs: Marked collections readonly. Modified UpdateSelection
7185 to only clear SelectedItems when a new item is selected and MultiSelect
7186 is enabled. CheckedItems and SelectedItems now subscribe to Changed
7187 event of ListViewItemCollection, and mark its list dirty whenever
7188 that event is fire. This allows us to return selected/checked items
7189 in the same order as they are in the Items collection. This matches
7192 2006-10-06 Chris Toshok <toshok@ximian.com>
7194 * NotifyIcon.cs (HandleMouseUp): only show the context menu on
7195 right mouse clicks. Fixes bug #79593.
7197 2006-10-06 Chris Toshok <toshok@ximian.com>
7199 * Splitter.cs: doh, fix splitters that don't want to cancel the
7200 movement when you drag them. Also, impose the limits on the
7201 values we send to the SplitterMovingEvent. Fixes #79598.
7203 2006-10-06 Jackson Harper <jackson@ximian.com>
7205 * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
7206 since we use this for auto scrolling also.
7208 2006-10-05 Chris Toshok <toshok@ximian.com>
7210 * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus. I'm
7211 beginning to think that most datagrid column types don't need this
7212 method. Fixes bug #79392.
7214 2006-10-05 Chris Toshok <toshok@ximian.com>
7216 * DataGrid.cs: move back to a more lazy scheme for creating the
7217 CurrencyManager, so we aren't updating it every time you set
7218 either DataSource or DataMember. Also, don't call
7219 RecreateDataGridRows if the currency manager hasn't changed.
7221 2006-10-05 Chris Toshok <toshok@ximian.com>
7223 * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
7224 emitted, SelectedIndex should already be updated. Fixes bug
7227 2006-10-05 Jonathan Pobst <monkey@jpobst.com>
7229 * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
7230 ToolStripTextBox.cs: Initial commit.
7231 * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
7233 2006-10-05 Jackson Harper <jackson@ximian.com>
7235 * TabControl.cs: We need to invalidate the tab control area when
7236 new ones are added (duh).
7238 2006-10-03 Chris Toshok <toshok@ximian.com>
7240 * Form.cs (ProcessDialogKey): if the focused control is in this
7241 form and is a button, call its PerformClick method here. Fixes
7244 2006-10-04 Jackson Harper <jackson@ximian.com>
7246 * TabPage.cs: Ignore setting of Visible, and add an internal
7247 method for setting the controls visibility. TabPage's Visible
7248 property is a little strange on MS, this seems to make us
7249 compatible, and fixes cases where people set all the tab pages to
7251 * TabControl.cs: Use the new internal setting on tab pages
7254 2006-10-03 Mike Kestner <mkestner@novell.com>
7256 * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
7258 2006-10-03 Mike Kestner <mkestner@novell.com>
7260 * ListView.cs : use is_visible instead of Visible to check if
7261 scrollbars should be placed/sized. Also some max_wrap_width
7262 love for LargeIcon view. [Fixes #79533]
7264 2006-10-03 Atsushi Enomoto <atsushi@ximian.com>
7267 Make set_TextAlign() do actually update the align. Fixed #78403.
7269 2006-10-03 Chris Toshok <toshok@ximian.com>
7271 * DataGrid.cs: fix a crash when switching datasources if the
7272 vertical scrollbar is at someplace other than Value = 0. Also,
7273 reduce the number of recalculation passes we do in SetDataSource
7276 2006-10-03 Jackson Harper <jackson@ximian.com>
7278 * TextBoxBase.cs: Move the if value the same bail check up, we
7279 don't want to empty the document if it is already empty, this
7280 seems to severly mess up the caret. TODO: I should probably fix
7281 the empty statement to update teh caret somehow.
7283 2006-10-03 Chris Toshok <toshok@ximian.com>
7285 * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
7286 incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
7287 reflection, an internal row type, properties on said type, etc.)
7288 will work with our datagrid. Fixes #79531.
7290 2006-10-03 Alexander Olk <alex.olk@googlemail.com>
7292 * FileDialog.cs: Don't crash if a path is not accessible
7293 (System.UnauthorizedAccessException). Fixes #79569.
7294 * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
7295 a ':' too. Return unknown icon for those paths/files.
7297 2006-10-03 Sebastien Pouliot <sebastien@ximian.com>
7299 * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when
7300 GetContainerControl returns null.
7302 2006-10-02 Chris Toshok <toshok@ximian.com>
7304 * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
7305 call to XGetWindowAttributes instead of "handle". fixes an X
7306 error using notifyicon after the NotifyIconWindow to Form base
7309 2006-10-02 Chris Toshok <toshok@ximian.com>
7311 * XplatUIX11.cs (QueryPointer): new function, encapsulating the
7312 server grab and looping we need to do to get down to the most
7313 deeply nested child window.
7314 (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
7315 QueryPointer again after the WarpPointer so we can generate a
7316 proper (fake) MotionNotify event to be enqueued in the destination
7318 (GetCursorPos): call QueryPointer.
7322 2006-10-02 Jackson Harper <jackson@ximian.com>
7324 * NotifyIcon.cs: Derive the notify icon from a form, so things
7325 like FindForm work on it.
7326 - Swallow the WM_CONTEXTMENU message, since that is generated on
7327 mouse down, and context menu is a mouse up kinda guy. I believe
7328 the correct fix here is probably to make the notify icon entirely
7329 NC area, but this seems to work fine for anyone not manipulating
7332 2006-10-02 Jonathan Pobst <monkey@jpobst.com>
7334 * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
7335 ToolStripItemCollection.cs, ToolStripLabel.cs,
7336 ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
7337 ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
7338 Initial implementation.
7339 * TextRenderer.cs: Provide padding to MeasureText.
7341 2006-10-02 Sebastien Pouliot <sebastien@ximian.com>
7343 * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
7344 of ButtonBaseAccessibleObject. Fix bug #79552.
7346 2006-10-02 Jackson Harper <jackson@ximian.com>
7348 * MdiWindowManager.cs: When maximizing use the containers client
7349 rect, not it's bounds, so nc area is accounted correctly.
7350 - Use the parent form's size for the menu position, since the
7351 client isn't always the full form size.
7353 2006-10-01 Chris Toshok <toshok@ximian.com>
7355 * ScrollableControl.cs: make sure neither right_edge or
7356 bottom_edge are < 0, since they're used as LargeChange for the
7357 horiz/vert scrollbars respectively. Fixes #79539.
7359 2006-10-01 Chris Toshok <toshok@ximian.com>
7361 * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
7362 the xplatuix11 code can cause us to destroy/recreate our handle.
7366 - this code can be invoked many times for the same Hwnd. Make
7367 sure we only destroy the client window once (the first time this
7368 method is called). This fixes bug #79544.
7369 - Remove the call to the improperly bound XSync. why we had two
7370 bindings to this, I will never know, but this call resulted in
7371 events being discarded from the queue(!).
7372 - correct a misunderstanding of _XEMBED_INFO - the second atom is
7373 not our current state but the state we wish to be in. So, 0 if
7374 we don't want to be mapped. Change it to 1.
7375 (SystrayRemove): The XEMBED spec makes mention of the fact that
7376 gtk doesn't support the reparent of client windows away from the
7377 embedder. Looking at gtksocket-x11.c seems to agree with this.
7378 The only avenue we have for removing systray icons is to destroy
7379 them. We don't want the handle to go away for good, though, so
7380 call InternalRecreateHandle on the NotifyIconWindow. Fixes
7383 2006-10-01 Chris Toshok <toshok@ximian.com>
7385 * Form.cs (WndProc): inline the native_enabled variable usage into
7386 the cases in which it's used. Fixes #79536.
7388 2006-09-29 Mike Kestner <mkestner@novell.com>
7390 * ListView.cs : toggle the selection state for ctrl clicks in
7391 multiselect mode. [Fixes #79417]
7393 2006-09-29 Mike Kestner <mkestner@novell.com>
7395 * ListView.cs : kill CanMultiSelect and refactor the selection
7396 code to support multiselection in the absence of mod keys. Steal
7397 arrow/home/end keys by overriding InternalPreProcessMessage to
7398 restore regressed keynav behavior.
7401 2006-09-29 Jackson Harper <jackson@ximian.com>
7403 * MdiClient.cs: Repaint the titlebars when the active window is
7406 2006-09-29 Chris Toshok <toshok@ximian.com>
7408 * Application.cs: when entering a runloop with a modal, make sure
7409 the hwnd is enabled. Fixes #79480.
7411 2006-09-29 Chris Toshok <toshok@ximian.com>
7413 * DataGrid.cs (CurrentCell): if we try to navigate to the add row
7414 when ListManager.CanAddRows == false, bump us back one.
7416 * DataGridColumnStyle.cs (ParentReadOnly): remove the
7417 listmanager.CanAddRows check. This makes ArrayLists uneditable
7418 using a datagrid, which is not right.
7419 (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
7420 is an IEditable, but call property_descriptor.SetValue regardless.
7423 2006-09-29 Chris Toshok <toshok@ximian.com>
7425 * DataGridBoolColumn.cs: we need to test equality in the face of
7426 possible null values (as is the case with the default NullValue).
7427 This patch keeps us from crashing in that case.
7429 2006-09-29 Jackson Harper <jackson@ximian.com>
7431 * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
7432 here, since it will get called for every node collection in the
7433 tree. This is now done in the treeview once the sorting is
7435 * TreeView.cs: Recalculate the visible order, and update the
7436 scrollbars after sorting, set the top nope to the root so that the
7437 recalc actually works.
7439 2006-09-29 Chris Toshok <toshok@ximian.com>
7441 * LinkLabel.cs: more handling of the default link collection in
7442 the face of LinkArea manipulation. The default link collection
7443 contains 1 element (start=0,length=-1). If the user sets LinkArea
7444 to anything and the links collection is the default, clear it.
7445 Then only add the link if its nonempty. Fixes #79518.
7447 2006-09-29 Chris Toshok <toshok@ximian.com>
7449 * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
7450 piece correctly when we hit a '\n'. Fixes #79517.
7452 2006-09-29 Chris Toshok <toshok@ximian.com>
7454 * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
7455 change the binding of gdk_init_check to take two IntPtr's, and
7456 pass IntPtr.Zero for both of them. Fixes #79520.
7458 2006-09-29 Mike Kestner <mkestner@novell.com>
7460 * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
7463 2006-09-28 Jackson Harper <jackson@ximian.com>
7465 * XplatUIX11.cs: When translating NC messages make sure we go from
7466 whole window to screen, not client window to screen.
7467 * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
7468 method doesn't exist
7469 - Skip over controls that aren't forms when arranging.
7471 2006-09-28 Jackson Harper <jackson@ximian.com>
7473 * XplatUIWin32.cs: Clip the rect to the parent window.
7474 * XplatUIStructs.cs: Add clipping modes struct.
7475 * InternalWindowManager.cs: New private method that factors title
7476 bar heights in when calculating the pos of an NC mouse message.
7477 - Use SendMessage to force a paint when the form's size is changed
7478 instead of painting the decorations immediately.
7479 - Don't let the NC button click messages get to DefWndProc,
7480 because they will attempt to handle windowing themself, and this
7481 messes up z-order (it will put them in front of the scrollbars).
7482 * XplatUIX11.cs: Make sure that we don't reset window managers if
7483 we already have one (ie the window is an MDI window).
7485 2006-09-28 Chris Toshok <toshok@ximian.com>
7487 * MainMenu.cs: fix #79405 by way of a disgusting hack. all the
7488 menu code really needs going over.
7490 2006-09-27 Chris Toshok <toshok@ximian.com>
7492 * XplatUIX11.cs (SetWMStyles): more metacity wonderment. turns
7493 out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
7494 window is maximizable. So, we need to make sure that even if we
7495 clear the border/wm frame of those functions, they're still
7496 available (basically, we remove the decoration without removing
7497 the function). Half the fix for #79338.
7499 2006-09-27 Chris Toshok <toshok@ximian.com>
7501 * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
7504 2006-09-27 Chris Toshok <toshok@ximian.com>
7506 * Splitter.cs: reorder things a bit so that we don't actually
7507 draw/move the splitter until after calling OnSplitterMoving. This
7508 lets users cancel/disallow the movement by explicitly setting
7509 event.SplitX/SplitY. Fixes #79372.
7511 2006-09-27 Jackson Harper <jackson@ximian.com>
7513 * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
7514 because it is most likely on a window being destroyed, and that
7515 will give us an X11 error.
7517 2006-09-27 Chris Toshok <toshok@ximian.com>
7519 * PropertyGridView.cs: half of the fix for #78190. Clicking on
7520 the dropdown button now toggles between showing and hiding the
7521 dropdown. Also, get rid of dropdown_form_showing and just use
7522 dropdown_form.Visible. We still don't do a grab, but I'll leave
7523 that part to someone who has handled Capture-fu before.
7525 2006-09-27 Chris Toshok <toshok@ximian.com>
7527 * DataGrid.cs: return false if alt isn't pressed when '0' is
7528 pressed. this keeps the '0' key from being swallowed, and fixes
7531 2006-09-27 Chris Toshok <toshok@ximian.com>
7533 * ComboBox.cs: use Invalidate when scrolling the dropdown list.
7534 Calling Refresh (in response to a scrollbar event) screws up the
7535 scrollbar painting. Fixes bug #78923.
7537 2006-09-27 Chris Toshok <toshok@ximian.com>
7539 * Theme.cs (SystemResPool): make the "if hashtable[key] == null
7540 then insert into hashtable" blocks threadsafe.
7542 2006-09-27 Chris Toshok <toshok@ximian.com>
7544 * MessageBox.cs (CreateParams): the styles should be |'ed with our
7545 baseclass's, since otherwise the
7546 ControlBox/MinimizeBox/MaximizeBox assignments above have no
7547 effect. This gets the close button back in messageboxes.
7549 2006-09-27 Chris Toshok <toshok@ximian.com>
7551 * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
7552 flag, not just != 0. this makes flags that are actually multiple
7553 bits (like WS_CAPTION) work. fixes bug #79508.
7555 2006-09-27 Jordi Mas i Hernandez <jordimash@gmail.com>
7557 * PageSetupDialog.cs: add support for getting and settings the
7558 paper size, source and orientation.
7560 2006-09-26 Chris Toshok <toshok@ximian.com>
7562 * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
7563 and caption == "", we need to remove the resize handles as well as
7566 * Control.cs (set_Text): turns out that setting Text on a form
7567 should change the WM styles on the window, since if ControlBox ==
7568 false, the only way to get a window border is to have a non-""
7569 Text property. check winforms/forms/text.cs for an example. so,
7570 call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
7571 update both window styles and title. This fixes a lot of dialogs
7572 (including the preferences dialog in MonoCalendar.)
7574 2006-09-26 Chris Toshok <toshok@ximian.com>
7576 * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
7577 control isn't a Form), call Win32ShowWindow to hide the window,
7578 but don't update the control Visible property. When we reparent
7579 back to a parent control, call SetVisible in order for the
7580 window's visibility to be reinstated.
7582 * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
7585 * Control.cs (ControlCollection.Remove): remove that value.Hide()
7586 call for good, since it breaks MonoCalendar (and other things I'm
7587 sure.) Also, set all_controls to null *after* the owner calls,
7588 which end up regenerating it.
7589 (ChangeParent): allow new_parent to be == null, passing
7590 IntPtr.Zero down to XplatUI.
7592 this fixes #79294 the right way.
7594 2006-09-26 Mike Kestner <mkestner@novell.com>
7596 * GridEntry.cs : internal SetParent method.
7597 * PropertyGrid.cs : attach to property changed on the proper
7598 target if we have a hierarchical grid with subobjects. Setup
7599 GridItem.Parent for hierarchical items.
7600 * PropertyGridView.cs : Set value on the correct target for
7601 hierarchical grids. [Fixes #78903]
7603 2006-09-26 Chris Toshok <toshok@ximian.com>
7605 * Control.cs (ChildNeedsRecreating): this should return true if
7606 either we're being recreated and the child is in our list, or our
7607 parent is waiting for our recreation.
7609 2006-09-26 Chris Toshok <toshok@ximian.com>
7611 * Control.cs (ControlCollection.Remove): reinstate the
7612 value.Hide() call as suggested in bug #79294.
7614 2006-09-26 Sebastien Pouliot <sebastien@ximian.com>
7616 * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
7617 coordinates (versus a relative move).
7619 2006-09-26 Chris Toshok <toshok@ximian.com>
7621 * Control.cs: rework child recreation a little bit. It turns out
7622 that we race between the DestroyNotify the WM_DESTROY message. If
7623 the parent gets its DestroyNotify before the child gets the
7624 WM_DESTROY message, the child ends up not recreating (since the
7625 parent finishes its recreation on DestroyNotify, and the child
7626 checks ParentIsRecreating.)
7628 So, instead we store off a list of all the child controls which
7629 need to be recreated when the parent control starts to recreate
7630 itself. Then, when child controls get their WM_DESTROY message we
7631 check to see if they're in the parent's pending recreation list,
7632 and if so, we recreate. This removes all dependency on ordering
7633 from the code and fixes the initial MonoCalendar upgrade dialog.
7635 2006-09-26 Jackson Harper <jackson@ximian.com>
7637 * TextControl.cs: Use the Line to get the length of the line,
7638 since soft line breaks can change the end line.
7640 2006-09-26 Chris Toshok <toshok@ximian.com>
7642 * Control.cs (ControlCollection.AddImplicit): don't add the
7643 control again if it's already in one of our lists. This keeps us
7644 from adding controls over and over again for comboboxes when their
7645 handle gets recreated (as the combobox adds implicit controls in
7646 OnHandleCreated). Fixes the X11 errors in bug #79480.
7648 2006-09-26 Jackson Harper <jackson@ximian.com>
7650 * TextControl.cs: When deleting characters make sure that any
7651 orphaned zero lengthed tags get deleted.
7652 - Fix ToString for zero lengthed tags.
7654 2006-09-25 Jackson Harper <jackson@ximian.com>
7656 * TextControl.cs: When getting a tag at the location there can be
7657 multiple tags at the same spot, these are 0-lengthed tags that
7658 appear when extra formatting has been stuck in a location. We
7659 need to pull out the last of these 0 lengthed tags.
7661 2006-09-25 Jackson Harper <jackson@ximian.com>
7663 * TextControl.cs: Fix print out in debug method.
7664 * TextBoxBase.cs: When text is set bail if we are setting to the
7667 2006-09-24 Alexander Olk <alex.olk@googlemail.com>
7669 * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
7670 It is now possible to change the selected index in a FontXXXListBox
7671 with the up and down arrow keys from the FontXXXTextBoxes.
7672 Also, send the FontXXXTextBox mouse wheel event to the corresponding
7673 FontXXXListBoxes to match ms.
7675 2006-09-22 Sebastien Pouliot <sebastien@ximian.com>
7677 * SystemInformation.cs: Return a clone of the theme's MenuFont because
7678 anyone can dispose it, anytime. All other properties returns enums,
7679 structs or basic types so they don't need such tricks.
7681 2006-09-22 Jackson Harper <jackson@ximian.com>
7688 * XplatUIDriver.cs: Update interface to add a primary selection
7689 flag, so the driver can use the primary selection buffer if
7691 * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
7693 * RichTextBox.cs: We need to supply the data object to paste now
7694 (so we can choose to supply CLIPBOARD or PRIMARY).
7695 * TextBoxBase.cs: Supply data object to paste (see above).
7696 - Middle click uses the primary selection data object.
7698 2006-09-21 Chris Toshok <toshok@ximian.com>
7700 * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
7701 of SetWMStyles. It's still a rat's nest and is largely
7702 order-dependent which I dislike immensely. This also fixes the X
7703 button disappearing from toplevel forms.
7705 2006-09-21 Mike Kestner <mkestner@novell.com>
7707 * ListBox.cs: move Jordi's click/dblclick raising code to the
7710 2006-09-21 Jordi Mas i Hernandez <jordimash@gmail.com>
7712 * ListBox.cs: Fixes 79450
7714 2006-09-21 Mike Kestner <mkestner@novell.com>
7716 * TreeView.cs: guard against disposed conditions in UpdateScrollbars
7717 to deal with people updating the TreeNodeCollection after the tree
7718 is disposed. "Fixes" 79330.
7720 2006-09-20 Jackson Harper <jackson@ximian.com>
7722 * TextControl.cs: Push the cursor record onto the undo stack
7723 before the delete action. This fixes 78651.
7725 2006-09-20 Jonathan Chambers <joncham@gmail.com>
7727 * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
7728 CreateParams. Fixes 79329.
7730 2006-09-19 Chris Toshok <toshok@ximian.com>
7732 * XplatUIX11.cs: a couple of blanket code massage passes to clean
7733 things up a bit. First, get rid of the NetAtoms array (and the NA
7734 enum), and just embed the atoms as static fields. Also, add a
7735 couple of functions (StyleSet and ExStyleSet) to clean up all the
7736 bitmask testing of styles.
7738 * X11Structs.cs: remove the NA enum, not needed anymore.
7740 2006-09-19 Chris Toshok <toshok@ximian.com>
7742 * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
7743 (mapping them to _NET_WM_WINDOW_TYPE_UTILITY). and add a little
7744 added cleanup to get MessageBox titles appearing again, which were
7745 broken by my earlier fix for caption-less/ControlBox-less windows.
7747 2006-09-18 Jonathan Pobst <monkey@jpobst.com>
7749 * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
7750 ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
7751 ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
7752 ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
7753 ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
7754 ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
7755 ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
7756 ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
7757 ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
7758 ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
7759 ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
7761 * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
7762 ToolStripButton.cs: Stubs needed for above.
7763 * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
7765 2006-09-15 Chris Toshok <toshok@ximian.com>
7768 - make the MessageQueues hashtable Synchronized.
7770 - SendMessage: if the Hwnd is owned by a different thread, use the
7771 AsyncMethod stuff to dispatch the SendMessage on the hwnd's
7772 thread. Fixes bug #79201.
7774 2006-09-15 Chris Toshok <toshok@ximian.com>
7776 * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly. If
7777 ControlBox == false, we disallow maximize/minimize/close. If the
7778 form Caption is "" we also disallow move (and get rid of the Title
7779 decoration). Unfortunately, regardless of how things are set,
7780 we're stuck with the Title and WM menu.
7782 2006-09-15 Chris Toshok <toshok@ximian.com>
7784 * Application.cs: add locking around the static message_filters
7785 ArrayList, part of #79196.
7787 2006-09-15 Chris Toshok <toshok@ximian.com>
7789 * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
7790 Form.ControlBox == false, the window has no titlebar nor resize
7791 handles. fixes bug #79368.
7793 2006-09-15 Chris Toshok <toshok@ximian.com>
7795 * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
7796 >= 0. Fixes bug #79370.
7798 2006-09-15 Jonathan Pobst <monkey@jpobst.com>
7799 * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
7801 Add properties: LayoutEngine, Margin, DefaultMargin.
7802 Add method: GetPreferredSize.
7803 Move layout logic from PerformLayout to layout engines.
7805 2006-09-13 Chris Toshok <toshok@ximian.com>
7807 * XplatUIX11.cs: more destroy work. Jackson pointed out that my
7808 fix for #79326 broke #78718, so this change addresses that.
7810 - in SendWMDestroyMessages remove the call to
7811 CleanupCachedWindows, since we might be recreating the control and
7812 need to maintain the references to right Hwnd handles. Also, set
7813 the zombie flag to true for each of the children in the hierarchy
7814 instead of calling hwnd.Dispose. This will cause GetMessage to
7815 ignore all events for the window except for DestroyNotify.
7817 - In GetMessage, ignore messages except for DestroyNotify for
7820 * Control.cs: revert the is_recreating fix from the last
7821 ChangeLog. It's definitely "right", but it breaks switching from
7822 an MDI form to a non-MDI form. Will need to revisit that.
7824 * Hwnd.cs: add a zombie flag, which means "the
7825 client_window/whole_window handles are invalid, but we're waiting
7826 for the DestroyNotify event to come in for them". Set the flag to
7827 false explicitly if setting WholeWindow/ClientWindow, and also
7830 2006-09-13 Chris Toshok <toshok@ximian.com>
7832 * XplatUIX11.cs: rework window destruction slightly.
7834 - when destroying the windows associated with a control, we don't
7835 need 2 separate XDestroyWindow calls. Just the one for the
7836 whole_window (or for client_window if whole_window is somehow
7837 IntPtr.Zero -- can this happen?) is enough.
7839 - reworked SendWMDestroyMessages slightly, so we always dispose
7840 the child control hwnd's after sending the messages.
7842 - refactored out the ActiveWindow/FocusWindow/Caret clearing from
7843 the two places it was used (one was even using hwnd.Handle and the
7844 other hwnd.client_window. ugh), adding another call in
7845 SendWMDestroyMessages. We need this new call because now the
7846 DestroyNotify events in the queue will be ignored for the child
7847 controls (as their hwnd's were disposed, and the window id's
7848 removed from the hashtable in SendWMDestroyMessages.) fun, eh?
7850 - this fixes bug #79326.
7852 2006-09-13 Chris Toshok <toshok@ximian.com>
7854 * Control.cs: don't always set is_recreating to false at the end
7855 of RecreateHandle, since sometimes we're not done (and won't be
7856 until WndProc handles the WM_DESTROY message). Also, set
7857 is_recreating to false in the WM_DESTROY handling code. Part of
7858 the fix for bug #79326.
7860 2006-09-13 Miguel de Icaza <miguel@novell.com>
7862 * X11DesktopColors.cs: Start the droppage of debugging messages.
7864 * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
7866 2006-09-13 Jonathan Pobst <monkey@jpobst.com>
7868 * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
7870 2006-09-12 Chris Toshok <toshok@ximian.com>
7872 * DataGrid.cs (get_ListManager): if the list_manager is null, try
7873 to create it using SetDataSource. Fixes bug #79151.
7875 2006-09-11 Chris Toshok <toshok@ximian.com>
7877 * XEventQueue.cs: add a DispatchIdle property.
7879 * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
7880 either the queue is null, or the queue has DispatchIdle set to
7882 (DoEvents): set queue.DispatchIdle to false around the
7883 peek/translate/dispatch message loop in this method. This keeps
7884 Application.Doevents from emitting idle events. Part of the fix
7887 2006-09-11 Chris Toshok <toshok@ximian.com>
7889 * DataGrid.cs (set_DataSource): make this work for both the
7890 winforms/datagrid test and ReportBuilder. It seems as though when
7891 we've created a ListManager (or maybe it's if we have a
7892 BindingContext?), when we set the DataSource it clears the
7893 DataMember to "". otherwise we reuse the datamember. Fixes bug
7896 2006-09-11 Chris Toshok <toshok@ximian.com>
7898 * XplatUIX11.cs: deal with queue being null, which happens in all
7899 the Clipboard functions. Fixes one of the two problems mentioned
7902 2006-09-11 Chris Toshok <toshok@ximian.com>
7904 * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
7905 button on various spots (including outside the menu) works closer
7906 to MS, and doesn't crash. Fixes #79343.
7908 2006-09-11 Gert Driesen <drieseng@users.sourceforge.net>
7910 * ListView.cs: Do not initialize item_sorter in init. To match MS,
7911 return null for ListViewItemSorter if View is SmallIcon or LargeIcon
7912 and the internal comparer is set. When a new ListViewItemSorter is set,
7913 sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
7914 was specified. No further processing is necessary if SortOrder is set
7915 to it's current value. If Sorting is modified to None, and View is
7916 neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
7917 (either custom or our internal ItemComparer) to null, on 1.0 profile
7918 only set item_sorter to null if its our internal IComparer. If Sorting
7919 is modified to Ascending or Descending, then use our internal IComparer
7920 if none is set, and if the current IComparer is our internal one then:
7921 on 2.0 profile always replace it with one for new Sorting, and on 1.0
7922 profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
7923 Enum.IsDefined to verify whether a valid View value is specified in
7924 its setter. Automatically sort listview items when listview is
7925 created. In Sort, do nothing if ListView is not yet created, or if
7926 no item_sorter is set (no Sorting was set, Sorting was explicitly set
7927 to None or ListViewItemSorter was set to null). Added Sort overload
7928 taking a bool to indicate whether the ListView should be redrawn when
7929 items are sorted (we use this in ListViewItemCollection to avoid double
7930 redraws). Modified our internal IComparer to take the sort order into
7931 account. In Add and AddRange methods of ListViewItemCollection, also
7932 call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
7933 view), but use overload with noredraw option to avoid double redraw.
7934 On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
7935 true when View is Tile, and do the same when attempting to set View to
7936 Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
7937 for selected/checked indices, as it involves overhead when sorting is
7938 done while these collections are not used all that often. Instead
7939 we'll build the indices on demand. Modified IList implementation of
7940 CheckedIndexCollection to use public methods if object is int.
7941 Modified CheckedListViewItemCollection to hide checked items if
7942 ListView.CheckBoxes is false. Removed LAMESPEC remark in
7943 ListViewItemCollection as the .NET SDK docs have been fixed. Modified
7944 IList implementation in SelectedIndexCollection to use public methods
7945 if object is int. Modified SelectedListViewItemCollection to hide
7946 selected items if listview is not yet created.
7947 * ListViewItem.cs: CheckedIndices list no longer needs to be
7948 maintained separately (see ListView changes). Also clone font, fixes
7951 2006-09-11 Mike Kestner <mkestner@novell.com>
7953 * ComboBox.cs: if we are updating the contents of the currently
7954 selected index, refresh the control or the textbox selection.
7957 2006-09-11 Mike Kestner <mkestner@novell.com>
7959 * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since
7960 the 'specified' logic has been moved there. This seems like a bug
7961 in Control.cs, since our current SetBoundsCore completely ignores
7962 the specified parameter. Peter's commit seems to indicate that is
7963 the way the MS control implementation works. [Fixes #79325]
7965 2006-09-10 Jonathan Chambers <joncham@gmail.com>
7967 * XplatUI.cs: Set default_class_name to be composed
7968 of current domain id. This allows MWF to be loaded in multiple
7971 2006-09-09 Miguel de Icaza <miguel@novell.com>
7973 * X11Keyboard.cs: If we are unable to obtain the input method, do
7974 not call CreateXic to create the input context. Should fix
7977 2006-09-08 Alexander Olk <alex.olk@googlemail.com>
7979 * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
7980 Simplified gnome support by adding more pinvokes to get the
7981 icon for a file or mime type.
7983 2006-09-08 Jackson Harper <jackson@ximian.com>
7985 * MenuAPI.cs: Deslect popup context menu items before closing the
7986 window, so that you don't see the previously selected item
7987 selected when you reopen the menu.
7988 * TextControl.cs: Update the cursor position even if we don't have
7989 focus. This fixes typing in things like the ComboBox. I'm not
7990 totally sure we should always set the visibility if we don't have
7991 focus, but couldn't find any corner cases where the cursor showed
7992 up when it shouldn't.
7994 2006-09-08 Chris Toshok <toshok@ximian.com>
7996 * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
7997 our arrays are length 256. & 0xff before indexing. Fixes the
7998 crash in bug #78077.
8000 2006-09-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8002 * ThemeWin32Classic.cs:
8003 * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
8004 is true. Handle that check box too.
8006 2006-09-07 Chris Toshok <toshok@ximian.com>
8008 * MenuAPI.cs: move the PerformClick call to OnMouseUp. Fixes bug
8011 2006-09-07 Chris Toshok <toshok@ximian.com>
8013 * Control.cs: in set_BackColor only do the work if
8014 background_color != value.
8016 * XplatUIX11.cs: move the clearing of invalid areas (both client
8017 and nc) to the same block of code where we set (nc_)expose_pending
8018 to false. That is, move it from PaintEventEnd to PaintEventStart,
8019 so things that cause invalidates from within OnPaint will trigger
8020 another call to OnPaint. Fixes bug #79262.
8022 2006-09-07 Alexander Olk <alex.olk@googlemail.com>
8024 * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
8025 * FileDialog.cs: Fix typo
8027 2006-09-07 Jackson Harper <jackson@ximian.com>
8029 * ThemeWin32Classic.cs: oops, forgot to commit. Draw the images
8030 for tab pages if they have any.
8032 2006-09-06 Mike Kestner <mkestner@novell.com>
8034 * Splitter.cs: use the "current" rect when finishing drag handle
8035 to avoid an artifact demonstrated by resedit.exe. [Fixes #79251]
8037 2006-09-06 Mike Kestner <mkestner@novell.com>
8039 * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
8040 support offset splitters. [Fixes #79298]
8042 2006-09-06 Alexander Olk <alex.olk@googlemail.com>
8044 * Mime.cs: Fixed a bug that could override the global mime type
8047 2006-09-05 Jackson Harper <jackson@ximian.com>
8049 * TabControl.cs: Better calculation method for setting the slider
8050 pos. Prevents crashes on really wide tabs.
8051 - Draw Image on tab pages if an image list is used.
8053 2006-09-02 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8055 * MonthCalendar.cs: When Font changes, the Size should be
8056 updated to fit the new font's space requirements.
8058 2006-09-02 Alexander Olk <alex.olk@googlemail.com>
8060 * ListBox.cs: If the items are cleared with Items.Clear set
8063 2006-09-01 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8065 * MonthCalendar.cs: Handle arrow keys as input keys. Also
8066 fire DateChanged event instead of DateSelected event when
8067 the date was changed by keyboard interaction.
8069 2006-09-01 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8071 * DateTimePicker.cs: Handle DateChanged for the associated
8072 month_calendar control, and set month_calendar.Font from
8073 OnFontChanged method, as well as resize the height of the
8074 control when needed. Make PreferredHeight proportional.
8076 2006-09-01 Chris Toshok <toshok@ximian.com>
8078 * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
8081 * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
8083 2006-09-01 Peter Dennis Bartok <pbartok@novell.com>
8085 * FileDialog.cs: Set ClientSize instead of window size, to allow space
8086 for decorations (Fixes #79219)
8088 2006-09-01 Mike Kestner <mkestner@novell.com>
8090 * ComboBox.cs: first stab at sorting plus some selection handling
8091 fixes to bring us more in line with MS behavior. Also switches back
8092 to index based selection. Alternative patches for index-based
8093 selection were provided by Jackson Harper, Carlos Alberto Cortez,
8094 and latency@gmx.de on bug 78848. I assume they were similar to this
8095 code I've had simmering in my tree forever.
8098 2006-09-01 Chris Toshok <toshok@ximian.com>
8100 * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
8101 when setting list position guard against ending up with a -1 index
8102 (the other part of the fix for #78812). Should probably make sure
8103 we don't need the analogous fix in the ItemDeleted case.
8106 - in SetDataSource, work around the fact that the way
8107 OnBindingContextChanged is invoked will cause us to re-enter this
8108 method. I'll remove the hack once I investigate
8109 OnBindingContextChanged.
8111 - fix the logic in set_DataSource and set_DataMember (basically
8112 what to do if the other of the two is null.)
8114 - in OnListManagerItemChanged, we need to take into account the
8115 edit row when deciding whether or not to call RecreateDataGridRows
8116 (part of the fix for #78812).
8118 2006-09-01 Jackson Harper <jackson@ximian.com>
8120 * Splitter.cs: Don't do anything if there is no control to affect
8121 (prevents us from crashing in weird tet cases).
8122 * TreeView.cs: Bounding box for the mouse movement reverting
8123 focus/selection back to previously selected node. This matches
8124 MS, and makes the tree a lot more useable.
8125 * GroupBox.cs: Instead of drawing over the lines of the groupbox,
8126 use clipping so they are not drawn. This fixes when the control
8127 is set to have a transparent background, or if it was over an
8130 2006-09-01 Alexander Olk <alex.olk@googlemail.com>
8132 * MimeIcon.cs: Improved handling for reading default icons when
8133 using gnome (2.16 made it necessary). Check and read svg icons
8134 first, then 48x48 and then 32x32 icons.
8136 2006-08-31 Chris Toshok <toshok@ximian.com>
8138 * DataGridTextBoxColumn.cs: only hide the textbox if it's still
8141 * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
8142 ProcessKeyPreview. Fixes part of #77806.
8144 * DataGrid.cs: big patch.
8146 - revert the queueing up of DataSource/DataMember if inside
8147 BeginInit/EndInit calls. That's not the way the datagrid achieves
8148 its delayed databinding. Instead, call SetDataSource in
8149 OnBindingContextChanged. This mimic's MS's behavior, and fixes
8152 - Also, it wasn't mentioned in #78811, but the test case exhibits
8153 behavior that was lacking in our datagrid implementation - Columns
8154 that have mapping names that don't exist in the datasource's
8155 properties aren't shown. Yuck. To fix this I added the bound
8156 field to the column style, and basically any calculation to figure
8157 out anything about columns uses a loop to find the bound columns.
8158 still need to investigate if I can cache an array of the bound
8159 columns or if the indices must be the same.
8161 - When setting CurrentCell, we no longer abort if the cell being
8162 edited was in the add row. This fixes the other part of #77806.
8164 - The new code also fixes #78807.
8166 * ThemeWin32Classic.cs: perpetrate the same disgusting
8167 column.bound field hack, and only render bound fields.
8169 2006-08-31 Chris Toshok <toshok@ximian.com>
8171 * DataGridColumnStyle.cs: add bound field. this field is true if
8172 the datasource has a property corresponding to the mapping name.
8174 * DataGridTableStyle.cs: set the bound field on the column styles
8175 depending on whether or not we have a column for that property.
8177 2006-08-31 Peter Dennis Bartok <pbartok@novell.com>
8179 * Splitter.cs (SetBoundsCore): Don't ignore width/height of the
8180 splitter control (fixes #79228)
8182 2006-08-31 Chris Toshok <toshok@ximian.com>
8184 * DataGridColumnStyle.cs: we need to delay the assignment of
8185 property descriptor until the last possible moment due to the lazy
8186 databinding stuff in the datagrid. Also, fix the exceptions
8187 thrown by CheckValidDataSource to match MS.
8189 2006-08-31 Jackson Harper <jackson@ximian.com>
8191 * Form.cs: When activated select the active control, if there is
8192 no active control, we select the first control.
8193 * XplatUIX11.cs: If there is no focus control when we get a
8194 FocusIn event, find the toplevel form and activate it. This
8195 occurs when you popup a window, it becomes the focus window, then
8196 you close that window, giving focus back to the main window.
8198 2006-08-21 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8201 * ThemeWin32Classic.cs: Cache Font in bold style, as well
8202 as StringFormat with Center alignments in MonthCalendar,
8203 instead of creating new ones when drawing the control.
8204 Also, draw the month name in bold style.
8206 2006-08-30 Peter Dennis Bartok <pbartok@novell.com>
8209 - PerformLayout(): It would seem MS performs the fill even if the
8210 control is not visible (part of #79218 fix)
8211 - ResetBackColor(): Use the setter to reset the color, to allow
8212 overriders to catch the change.
8214 - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
8215 - CreateHandle(): dito (part of $79218 fix)
8216 - Don't set an icon if we have a dialog
8217 * ScrollableControl.cs:
8218 - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
8219 - ScrollIntoView(): No need to scroll if control is already visible
8220 (resolves fixme and fixes #79218)
8222 2006-08-30 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8224 * MonthCalendar.cs: Change proportions in SingleMonthSize
8225 to match the aspect of the original control.
8227 2006-08-29 Alexander Olk <alex.olk@googlemail.com>
8229 * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
8230 get updated when they get maximized.
8232 2006-08-29 Peter Dennis Bartok <pbartok@novell.com>
8234 * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
8236 2006-08-29 Chris Toshok <toshok@ximian.com>
8238 * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
8240 2006-08-29 Jackson Harper <jackson@ximian.com>
8242 * TreeView.cs: Need to track selected node and highlighted node,
8243 they aren't always the same thing, when the mouse is down on a
8244 node it is hilighted, but not selected yet.
8245 - Do the HideSelection stuff right
8246 - Need to focus on rbutton mouse down. And redraw selection when
8247 right click is mouse upped.
8249 2006-08-29 Mike Kestner <mkestner@novell.com>
8251 * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
8252 when SubItems.Count < Columns.Count. [Fixes #79167]
8254 2006-08-28 Peter Dennis Bartok <pbartok@novell.com>
8256 * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
8258 2006-08-28 Peter Dennis Bartok <pbartok@novell.com>
8260 * XplatUIX11.cs: Preempt the roundtrip for getting the location back
8261 from X. Only send based on ConfigureNotify if we don't have the
8262 correct location in hwnd (if the window manager moved us)
8264 2006-08-28 Mike Kestner <mkestner@novell.com>
8266 * ListView.cs: remove a TODO.
8267 * ThemeWin32Classic.cs: implement HideSelection support for ListView.
8268 [Fixes ListView part of #79166]
8270 2006-08-28 Mike Kestner <mkestner@novell.com>
8272 * ListView.cs: move wheel handler to parent since it is focused
8273 instead of the item_control now. [Fixes #79177]
8275 2006-08-28 Mike Kestner <mkestner@novell.com>
8277 * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
8278 when the control is focused. [Fixes #79171]
8280 2006-08-28 Mike Kestner <mkestner@novell.com>
8282 * ListView.cs: size the item and header controls for empty and
8284 * ThemeWin32Classic.cs: draw disabled backgrounds.
8287 2006-08-28 Chris Toshok <toshok@ximian.com>
8289 * Form.cs: remove unused "active_form" static field.
8291 * Hwnd.cs: lock around accesses to static windows collection.
8293 * Application.cs: lock threads in Exit ().
8295 2006-08-28 Chris Toshok <toshok@ximian.com>
8297 * NativeWindow.cs: lock around accesses to window_collection.
8299 2006-08-28 Chris Toshok <toshok@ximian.com>
8301 * Control.cs: err, fix this the right way, by locking on controls
8302 when using it. not by making it synchronized.
8304 2006-08-28 Chris Toshok <toshok@ximian.com>
8306 * Control.cs: make the static "controls" field synchronized, as it
8307 gets updated from multiple threads.
8309 2006-08-27 Peter Dennis Bartok <pbartok@novell.com>
8311 * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
8312 Prevent other threads from exiting when calling thread sets quit state.
8313 * XEventQueue.cs: Added PostQuitState property
8315 2006-08-27 Chris Toshok <toshok@ximian.com>
8317 * AsyncMethodData.cs: add a slot for the window handle.
8319 * XplatUIX11.cs (SendAsyncMethod): send the event to the right
8320 window (the destination control's window, not the foster window).
8322 * Control.cs (BeginInvokeInternal): store the window's handle in
8323 the AsyncMethodData.
8326 2006-08-27 Peter Dennis Bartok <pbartok@novell.com>
8329 - PostQuitMessage: Removed resetting S.D display handle, we might have
8330 another loop started after calling PostQuitMessage (Fixes #79119)
8331 - Created destructor to reset S.D handle
8333 2006-08-27 Peter Dennis Bartok <pbartok@novell.com>
8335 * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
8337 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8339 * TextControl.cs (Insert): Update the caret position even if we don't
8340 have a handle yet, just don't call the driver in that case.
8341 * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
8342 to the end of the new selection text (Fixes #79184)
8344 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8346 * Form.cs (Activate): Only activate if the handle is created)
8348 - Mark window as invisible when it's disposed
8349 - Check if window handle is created when setting window visible,
8350 instead of relying just on the is_created variable
8351 - Check if object is disposed when creating the control (Fixes #79155)
8353 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8355 * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
8356 when allowing layout again. Otherwise we re-generate the anchoring
8357 distance to the border again and actually alter what the user wanted
8358 This is ugly, it'd be better if we used DisplayRectangle instead of
8359 ClientRectangle for Control.UpdateDistances, but that causes us to
8360 have other problems (initial anchoring positons would be wrong)
8363 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8366 - The size and location setters shouldn't go directly to
8367 SetBoundsCore, but to SetBounds, which triggers layout on the
8368 parent, then calls SetBoundsCore. (Related to fix for #78835)
8369 - SetBounds: Moved actual location update code into this function
8370 from SetBoundsCore, to match MS. Added call to PerformLayout if
8371 we have a parent (to trigger resizing of anchored parents if the
8372 child size has changed (see testcase for #78835)
8373 * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match
8375 * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
8377 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8379 * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
8380 System.Drawing when a toplevel window gets closed; there might
8381 be other toplevel windows belonging to the same app (Fixes #78052)
8383 2006-08-26 Alexander Olk <alex.olk@googlemail.com>
8385 * FileDialog.cs: After reading FileDialog settings from mwf_config
8386 use Desktop prefix only if a real folder doesn't exist anymore.
8387 * FontDialog.cs: Added char sets.
8388 It is now possible to select the font, size or style with the
8391 2006-08-25 Kornél Pál <kornelpal@gmail.com>
8393 * PrintPreviewDialog.cs: Use assembly name constants.
8395 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8397 * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
8398 scrollbar from whacking it's buttons)
8400 2006-08-24 Chris Toshok <toshok@ximian.com>
8402 * ScrollableControl.cs: fix #78271. There's a lot of misc stuff
8403 in this patch (aggregating setting Left/Top/Width/Height to
8404 setting Bounds on the scrollbars), but the crux of the fix is in
8405 Recalculate, where we scroll by the remaining scroll_position if
8406 we're hiding a scrollbar. The 2*$5 reward in the comment is
8409 2006-08-24 Jackson Harper <jackson@ximian.com>
8412 * MdiWindowManager.cs: If the form is made a non-mdi window we
8413 need to remove the form closed event so that closing forms works
8416 2006-08-24 Jackson Harper <jackson@ximian.com>
8418 * Control.cs: Make IsRecreating internal so that the driver can
8420 - Temporarily remove the Hide when controls are removed, its
8421 making a whole bunch of things not work because visibility isn't
8422 getting reset elsewhere correctly
8423 * Form.cs: Need to do a full handle recreation when the mdi parent
8425 * XplatUIX11.cs: If we are recreating handles don't dispose the
8426 HWNDs. What was happening is the handles were being recreated in
8427 SendWMDestroyMessages, but then flow continued on in that method
8428 and destroyed the new handles.
8430 2006-08-23 Jackson Harper <jackson@ximian.com>
8432 * Form.cs: MdiClient is always at the back of the bus
8433 * Control.cs: When the order of items in the collection is changed
8434 we need to reset the all_controls array
8435 - do the same sorta setup thats done when adding a control when a
8436 control is set on the collection.
8438 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8440 * TextBoxBase.cs (get_Text): Return an empty array if our document
8441 is empty (fixes #79052)
8443 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8445 * Control.cs: We should call IsInputChar on only on WM_CHAR but not
8446 on WM_SYSCHAR messages (fixes #79053)
8448 2006-08-23 Chris Toshok <toshok@ximian.com>
8450 * DataGrid.cs: fix flickering when scrolling vertically.
8452 2006-08-23 Chris Toshok <toshok@ximian.com>
8454 * DataGrid.cs (EndEdit): only invalidate the row header when we
8457 2006-08-23 Chris Toshok <toshok@ximian.com>
8459 * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
8460 methods. fixes the flicker when scrolling around.
8462 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8464 * FileDialog.cs: Making sure the control is created before we get a
8465 chance to use it with BeginInvoke (Fixes #79096)
8467 2006-08-23 Chris Toshok <toshok@ximian.com>
8469 * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
8470 width to use when painting the rows.
8472 2006-08-23 Peter Dennis Bartok <pbartok@novell.com>
8475 - Throw ArgumentException if a negative value is passed to SelectionLength
8476 - Update the selection end if start is moved. end needs to be always
8477 after start. (Fixes #79095)
8478 - Track selection length; MS keeps the selection length even if start
8479 is changed; reset on all other operations affection selection
8481 2006-08-22 Jackson Harper <jackson@ximian.com>
8483 * TreeView.cs: Make sure both scrollbars get displayed and sized
8484 correctly when the other bar is visible.
8485 - Use the original clip rectangle for checking if the area between
8486 the two scrollbars is visible, not the viewport adjusted clipping
8489 2006-08-22 Jackson Harper <jackson@ximian.com>
8491 * Binding.cs: We don't use IsBinding because it requires the
8492 control to be created, which really shouldn't be necessary just to
8493 set a property on the control.
8495 2006-08-21 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8497 * ComboBox.cs: Some CB.ObjectCollection methods must throw
8498 ArgumentNullReferenceException when the argument is null.
8500 2006-08-21 Jackson Harper <jackson@ximian.com>
8502 * Timer.cs: Track the thread that the timer is started in (NOT
8503 CREATED), this way messages for it will only be triggered on its
8505 * XEventQueue.cs: Track the timers here, this makes timers per
8507 * XplatUIX11.cs: The timers are moved to the XEventQueue.
8509 2006-08-19 Chris Toshok <toshok@ximian.com>
8511 * XplatUIX11.cs: after further communication with pdb, we get the
8512 best of both worlds. SetZOrder working for un-Mapped windows, and
8513 no X errors for un-mapped windows.
8515 2006-08-19 Chris Toshok <toshok@ximian.com>
8517 * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
8518 as it was causing pdn toolbars to not have the correct stacking.
8520 2006-08-18 Mike Kestner <mkestner@novell.com>
8522 * ListView.cs : guard against negative ClientArea.Width in scrollbar
8523 calculation. Not sure why control should ever be setting a negative
8524 width though. Fixes #78931.
8526 2006-08-18 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8528 * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
8529 null items in ObjectCollection class.
8530 * ListBox.cs.: Likewise.
8532 2006-08-18 Atsushi Enomoto <atsushi@ximian.com>
8534 * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
8535 as the base method in ThemeWin32Classic should work fine.
8538 2006-08-18 Jackson Harper <jackson@ximian.com>
8540 * Binding.cs: When validating if the value entered doesn't convert
8541 properly reset to the old value.
8542 * RadioButton.cs: Don't fire click when we get focus.
8544 2006-08-18 Jackson Harper <jackson@ximian.com>
8546 * FileDialog.cs: Paint the selection on the directory combobox the
8549 2006-08-17 Jackson Harper <jackson@ximian.com>
8551 * ErrorProvider.cs: Don't allow the error control to be selected.
8552 * Control.cs: Don't send the SetFocus messages, the control
8553 activation will do this, and if we do it blindly here validation
8556 2006-08-17 Jackson Harper <jackson@ximian.com>
8559 * ContainerControl.cs: Make validation events fire in the correct
8560 order. TODO: For some reason the first validation event is not
8563 2006-08-17 Mike Kestner <mkestner@novell.com>
8565 * ComboBox.cs : some null guarding for ComboListBox.Scroll.
8567 2006-08-17 Mike Kestner <mkestner@novell.com>
8569 * ComboBox.cs : implement scroll wheel support for popped-down
8570 state. Fixes #78945.
8572 2006-08-17 Jackson Harper <jackson@ximian.com>
8574 * TreeView.cs: Specify treeview actions (old patch that didn't get
8575 committed for some reason).
8576 - Don't let the mouse wheel scroll us too far. Just want to make
8577 the bottom node visible, not scroll it all the ways to the top.
8579 2006-08-17 Jackson Harper <jackson@ximian.com>
8581 * XplatUIX11.cs: Mouse wheel events go to the focused window.
8583 2006-08-17 Mike Kestner <mkestner@novell.com>
8585 * ComboBox.cs : don't do mouseover selection in simple mode.
8587 2006-08-16 Jackson Harper <jackson@ximian.com>
8589 * Form.cs: Fire the closing events for all the mdi child windows
8590 when a window is closed. If the cancel args are set to true, the
8591 main window still gets the event fired, but it doesn't not close.
8592 * MdiWindowManager.cs: Do this closing cleanup in a Closed
8593 handler, instead of when the button is clicked, so cancelling the
8594 close works correctly.
8595 * ComboBox.cs: Send the mouse down to the scrollbar.
8597 2006-08-16 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8599 * ListBox.cs: When passing 'null' to SelectedItem,
8600 set SelectedIndex to -1, to unselect items. This is the
8601 observed behaviour in .Net.
8603 2006-08-16 Peter Dennis Bartok <pbartok@novell.com>
8605 * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
8606 MS flags saying there won't be any. (fixes #78800)
8607 * Control.cs (HandleClick): Made virtual
8609 2006-08-16 Atsushi Enomoto <atsushi@ximian.com>
8611 * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
8612 cultures. Fixed bug #78399.
8614 2006-08-16 Jackson Harper <jackson@ximian.com>
8616 * Form.cs: Use the MdiClients MdiChildren property to access
8617 MdiChildren instead of creating the array from the child controls.
8618 * MdiClient.cs: Maintain a separate array of the mdi children, so
8619 that insertion order is maintained when the Z-order is changed.
8621 2006-08-16 Mike Kestner <mkestner@novell.com>
8623 * ListView.cs : add an ItemComparer and default to it for sorting.
8624 Fixes #79076, but sorting needs a complete overhaul to be compat with
8627 2006-08-15 Peter Dennis Bartok <pbartok@novell.com>
8629 * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
8631 2006-08-15 Peter Dennis Bartok <pbartok@novell.com>
8633 * Hwnd.cs (Mapped): Properly traverse the tree
8635 2006-08-15 Chris Toshok <toshok@ximian.com>
8637 * Binding.cs: fix PullData/SetPropertyValue. We don't want to
8638 pass manager.Current.GetType() to ParseData. It has to be the
8639 property type. So, hold off doing the ParseData until we're in
8640 SetPropertyValue where we know the type. This fixes the crash in
8641 #78821 but the textbox is still empty.
8643 2006-08-15 Chris Toshok <toshok@ximian.com>
8646 - when we're scrolling, only call Edit() again if the
8647 current cell is still unobscured. Fixes bug #78927.
8648 - when handling mousedown on a cell, ensure the cell is visible
8649 before calling Edit.
8650 - remove the properties from DataGridRow, and remove the
8651 DataGridParentRow class altogether.
8654 2006-08-15 Peter Dennis Bartok <pbartok@novell.com>
8656 * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
8657 fire OnTextChanged by ourselves. There's no point calling base,
8658 we don't set the base value anywhere else. Fixes #78773.
8660 2006-08-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8662 * ListBox.cs: Call CollectionChanged when modifying
8663 an item from Items indexer, to update the actual items
8666 2006-08-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8668 * PrintDialog.cs: Small fixes for focus and a pair of checks,
8669 to match .Net behaviour.
8671 2006-08-15 Peter Dennis Bartok <pbartok@novell.com>
8673 * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
8675 2006-08-15 Peter Dennis Bartok <pbartok@novell.com>
8677 * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
8679 2006-08-15 Peter Dennis Bartok <pbartok@novell.com>
8681 * MessageBox.cs: Prevent potential NRE exception.
8682 * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
8684 2006-08-14 Peter Dennis Bartok <pbartok@novell.com>
8686 * MessageBox.cs: Calculate the owner of a messagebox, also make
8687 it topmost. Fixes #78753
8689 2006-08-14 Chris Toshok <toshok@ximian.com>
8691 * XplatUIX11.cs: A couple of fixes so that metacity will let us
8692 programmatically move windows. first, set the PPosition hint as
8693 well as the USPosition hint. Second include some code from pdb
8694 that sets the window type to NORMAL when we set the transient for
8695 hint. This is because, in the absence of a window type, metacity
8696 thinks any window with TransientFor set is a dialog, and refuses
8697 to let us move it programmatically. fascists.
8699 2006-08-14 Peter Dennis Bartok <pbartok@novell.com>
8701 * XplatUIX11.cs: When setting normal hints, take into consideration
8702 an different hints previously set so we don't delete them (fixes #78866)
8704 2006-08-12 Chris Toshok <toshok@ximian.com>
8706 * ToolBarButton.cs: make Layout return a boolean, if something to
8707 do with the button's layout changed.
8710 - add another parameter to Redraw, @force, which all existing
8712 - make the Layout function return a boolean which is true if the
8713 layout has actually changed. Redraw now uses this (and @force)
8714 to determine when to invalidate. At present the only place
8715 where @force can be false is the call from OnResize, when
8716 background_image == null. So, resizing a toolbar when the
8717 layout doesn't change results in no drawing.
8719 2006-08-12 Chris Toshok <toshok@ximian.com>
8721 * ThemeWin32Classic.cs: fix the bottom right corner painting. had
8722 the VScrollBar and HScrollbar reversed. oops.
8724 * DataGrid.cs: fix the logic that assigns sizes to the implicit
8725 scrollbars. we were assigning them twice (once in
8726 Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
8727 therefore causing two scrollbar resizes (and redraws?) to happen
8730 2006-08-12 Chris Toshok <toshok@ximian.com>
8732 * ToolBarButton.cs: redraw the entire button if the theme tells us
8735 * Theme.cs: add ToolBarInvalidateEntireButton.
8737 * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
8738 buttons, just the border.
8740 * ThemeNice.cs: redraw the entire toolbar button since we need to
8741 draw the highlight image.
8743 * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
8744 we need to redraw the entire button (not just the border).
8746 2006-08-11 Peter Dennis Bartok <pbartok@novell.com>
8748 * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
8749 for vertical bars. Fixes the mismatches shown by #78513
8751 2006-08-11 Alexander Olk <alex.olk@googlemail.com>
8753 * FileDialog.cs: If a saved/remembered path doesn't exist
8754 anymore, fall back to "Desktop".
8756 2006-08-11 Peter Dennis Bartok <pbartok@novell.com>
8758 * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
8759 parent. It's apparently legal to not have one
8761 - SetZOrder: Don't try to set Z-Order on an unmapped window
8762 - CreateWindow: 0,0 are legal coordinates for a window. don't move
8763 it unless the coordinates are negative
8765 2006-08-10 Mike Kestner <mkestner@novell.com>
8767 * ListControl.cs: allow null for DataSource. Clear DisplayMember
8768 when setting to null per msdn docs. Fixes #78854.
8770 2006-08-10 Chris Toshok <toshok@ximian.com>
8772 * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
8773 flickering by setting a clip rectangle on the Graphics when we
8774 need to redraw just a particular menuitem. Also, rename "OnClick"
8775 to "OnMouseDown" to reflect what it actually is.
8777 * Form.cs: track the OnMouseDown change.
8779 2006-08-10 Peter Dennis Bartok <pbartok@novell.com>
8781 * CommonDialog.cs: Properly inherit the CreateParams from the form
8782 and only change what we need. Fixes #78865
8784 2006-08-10 Chris Toshok <toshok@ximian.com>
8786 * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
8787 flickering in flat mode (and most of the flickering in general) by
8788 only invalidating the button border (and not the entire rectangle)
8789 when the state changes. A couple of cases still flicker:
8790 ToggleButtons, and the dropdown arrow case when the user mouse
8793 2006-08-10 Alexander Olk <alex.olk@googlemail.com>
8795 * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
8796 for german keyboards. Numlock state shouldn't affect the behaviour
8797 of the Del key. Fixes bug #78291.
8799 2006-08-10 Chris Toshok <toshok@ximian.com>
8801 * ListControl.cs: remove the items.Clear line from BindDataItems,
8802 as this is the first thing done by both subclasses in their
8803 SetItemsCore overrides. Also, add a ItemChanged handler, and when
8804 passed -1, refresh the list. This gets databinding working when
8805 the datasource is set on the list before the datasource is
8806 populated (as in wf-apps/ReportBuilder.)
8808 * ComboBox.cs: remove the argument to BindDataItems. This call
8809 should really go away, and be initiated by the ListControl code.
8813 2006-08-09 Peter Dennis Bartok <pbartok@novell.com>
8815 * TextControl.cs (Document.ctor): Initialize caret so we don't crash
8816 if no data is in the document when the control is displayed
8818 2006-08-09 Peter Dennis Bartok <pbartok@novell.com>
8820 * TextBoxBase.cs: Don't try moving the caret if we don't have a window
8823 - PositionCaret: Allow positioning of caret but don't call methods
8824 requiring a handle if the window isn't created yet
8825 - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
8826 - owner_HandleCreated: Don't position the caret, just update it's
8827 location. User might have already set a different position
8829 2006-08-09 Peter Dennis Bartok <pbartok@novell.com>
8831 * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
8832 windows. Screws up the returned coordinates for child windows.
8833 Fixes #78825. I'm hoping this doesn't break something, since the
8834 code was explicitly put in 8 months ago, but no bug was attached.
8835 Menus still seem to work properly.
8837 2006-08-08 Chris Toshok <toshok@ximian.com>
8839 * DataGrid.cs: make BeginInit/EndInit actually do what they're
8840 supposed to do - delay data binding until the EndInit call. Also,
8841 make the table style collection's CollectionChangeAction.Refresh
8844 * GridTableStylesCollection.cs: raise a CollectionChangeEvent
8845 (with action = Refresh) when a consituent table's MappingName is
8848 2006-08-08 Chris Toshok <toshok@ximian.com>
8850 * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
8851 Invalidate, since changing the text can change the size of the all
8854 2006-08-08 Peter Dennis Bartok <pbartok@novell.com>
8856 * Form.cs (AddOwnedForm): Still need to add the form to our listif
8857 we don't have it yet
8859 2006-08-08 Chris Toshok <toshok@ximian.com>
8861 * PrintControllerWithStatusDialog.cs: don't .Close() the status
8862 dialog, as this causes X errors later on, since we actually
8863 destroy the window. Instead, .Hide() it.
8865 2006-08-08 Peter Dennis Bartok <pbartok@novell.com>
8867 * ComboBox.cs: Added focus reflection for popup window
8869 - Removed transient setting for non-app windows for now, not sure it
8871 - Fixed logic checking if we have captions when deciding
8872 override_redirect, WS_CAPTION is two bits and a 0 check was not
8874 - Removed the WINDOW_TYPE stuff, it was unneeded and making things
8877 - AddOwnedForm: Don't just add the form to the list, call the property
8878 to ensure the driver is informed about the ownership as well
8879 - CreateHandle: Set the TopMost status in the driver if we have an owner
8880 * XplatUI.cs: Fixed debug statement
8882 2006-08-08 Jonathan Pobst <monkey@jpobst.com>
8883 * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
8884 GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
8885 ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs,
8886 TrackBarRenderer.cs: Make constructor private.
8887 * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
8888 * ProfessionalColorTable.cs: Make properties virtual.
8890 2006-08-06 Duncan Mak <duncan@novell.com>
8892 * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
8895 2006-08-04 Jonathan Pobst <monkey@jpobst.com>
8896 * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
8897 GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
8898 ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
8899 TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
8900 Initial import of new 2.0 classes.
8902 2006-08-04 Jonathan Pobst <monkey@jpobst.com>
8903 * Application.cs: Add 2.0 VisualStyles properties.
8905 2006-08-04 Jonathan Pobst <monkey@jpobst.com>
8906 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
8907 XplatUIX11.cs: Create property to allow access to existing private
8908 variable "themes_enabled"
8910 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8912 * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
8913 file size, as otherwise our class libraries fail using windows. Fixes
8916 2006-08-04 Jackson Harper <jackson@ximian.com>
8919 * XplatUIX11.cs: Move the toolwindow window manager creation into
8920 the X11 driver, this way on win32 we can let windows create/handle
8923 2006-08-04 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8925 * PrintDialog.cs: Remove some redundant checks, add some others,
8926 clean some code, and move the focus to the text boxes when the
8927 values are incorrect.
8929 2006-08-04 Alexander Olk <alex.olk@googlemail.com>
8931 * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
8933 2006-08-03 Alexander Olk <alex.olk@googlemail.com>
8935 * NumericUpDown.cs: Setting the Minimum and Maximum is now
8936 handled correctly. Fixes bug #79001.
8938 2006-08-03 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8940 * PrintDialog.cs: The "Copies" numeric up down must have
8941 set the Minimum property to 1; only if the value is bigger
8942 than 1, activate "Collate" check box. This is the behaviour of .Net.
8943 Also modify the Document elements only if it is not null.
8945 2006-08-03 Jackson Harper <jackson@ximian.com>
8947 * TreeNodeCollection.cs: Fix copyto to use the correct nodes
8948 length. (We have a larger array then actual node count).
8950 2006-08-03 Jackson Harper <jackson@ximian.com>
8952 * ComboBox.cs: Don't show selection by default.
8953 - The SelectAll isn't needed here, since the focus code should do
8955 - DDL style lists to manual selection drawing, so when they
8956 get/lose focus they have to invalidate.
8958 2006-08-03 Peter Dennis Bartok <pbartok@novell.com>
8960 * TextBoxBase.cs: Don't always show all selections by default.
8962 2006-08-03 Jonathan Pobst <monkey@jpobst.com>
8963 * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
8964 HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
8965 Fixed various typos.
8967 2006-08-03 Alexander Olk <alex.olk@googlemail.com>
8969 * Control.cs: Removing the controls in a ControlCollection with
8970 Clear now hides the controls as expected. Fixes bug #78804.
8972 2006-08-03 Jackson Harper <jackson@ximian.com>
8974 * Control.cs: Revert previous focus patch, it breaks reflector.
8976 2006-08-03 Jackson Harper <jackson@ximian.com>
8978 * ComboBox.cs: Cleanup selection and focus with the combobox.
8979 This also eliminates some duplicated keyboard code, since now
8980 everything is handled by the main class.
8981 - Make list selection work on mouse up instead of down, to match
8984 2006-08-02 Jackson Harper <jackson@ximian.com>
8986 * Control.cs: Setting focus needs to go through the whole
8987 selection mechanism.
8989 2006-08-02 Chris Toshok <toshok@ximian.com>
8991 * PrintPreviewDialog.cs: change MinimumSize to use
8992 base.MinimumSize so it works.
8994 2006-08-02 Peter Dennis Bartok <pbartok@novell.com>
8997 - UpdateCaret: Added sanity check in case caret isn't defined yet
8998 - Line.Delete: Now updating selection and caret markers if we're
8999 transfering a node (Properly fixes #78323)
9000 - SetSelectionEnd: Added sanity check
9001 * TextBoxBase.cs: Removed broken attempt to fix #78323
9003 2006-08-01 Chris Toshok <toshok@ximian.com>
9005 * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
9006 Close() call is handled in Form, not here.
9008 2006-08-01 Chris Toshok <toshok@ximian.com>
9010 * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
9013 * PrintPreviewDialog.cs: add scrollbars, and add an image cache
9014 for sizes < 100% zoom. The code now aggressively attempts to keep
9015 from calling document.Print (), and tries not to use the scaling
9016 g.DrawImage whenever possible (it still does if you scale to >
9017 100%, since usually that involves huge images).
9019 * PrintPreviewControl.cs: hook up the close button.
9021 2006-08-01 Jonathan Pobst <monkey@jpobst.com>
9022 * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
9023 ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
9024 ItemDragEventHandler.cs, LabelEditEventHandler.cs,
9025 LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
9026 MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
9027 PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
9028 SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
9029 Removed [Serializable] for 2.0 Event Handlers.
9031 2006-07-31 Jackson Harper <jackson@ximian.com>
9033 * TextBoxBase.cs: Make ShowSelection invalidate when changed.
9034 * TextControl.cs: Uncomment out the body of this method.
9036 2006-07-31 Alexander Olk <alex.olk@googlemail.com>
9038 * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
9041 2006-07-31 Peter Dennis Bartok <pbartok@novell.com>
9043 * TextBoxBase.cs: Added internal property ShowSelection to allow controls
9044 that embed TextBox and need selections visible even if textbox is not
9045 focused to enforce that behaviour.
9046 * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
9049 2006-07-31 Peter Dennis Bartok <pbartok@novell.com>
9052 - Added new SetSelectionStart/SetSelectionEnd overloads
9053 - Fixed viewport width assignment to be accurate
9054 - Adjusted alignment line shift calculations to allow cursor on right
9055 aligned lines to be always visible at the right border (like MS)
9057 - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
9058 - TextBoxBase_SizeChanged: recalculating canvas on size changes
9059 - CalculateScrollBars: Use ViewPort size instead of window size, to
9060 properly consider space occupied by the border and scrollbars
9062 - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll
9063 calculations; no longer leaves artifacts
9064 - CaretMoved: Adjusted window scrolling to match MS and fixed several
9065 calculation bugs (Still missing right/center align calculations)
9067 2006-07-31 Peter Dennis Bartok <pbartok@novell.com>
9069 * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
9070 use of both scroll rect and clip rect, as they do the same.
9072 2006-07-31 Peter Dennis Bartok <pbartok@novell.com>
9074 * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key
9075 in the event handler (fixes #78912)
9077 2006-07-31 Chris Toshok <toshok@ximian.com>
9079 * ThemeWin32Classic.cs: use grid.RowsCount here instead of
9080 grid.ListManager.Count, since grid.ListManager might be null.
9081 This of course begs the question "why are we drawing rows for a
9082 grid with no list manager (and therefor no rows)?" Fixes the
9083 crash in bug #78929.
9085 2006-07-31 Chris Toshok <toshok@ximian.com>
9087 * RelatedPropertyManager.cs: Don't always chain up to the parent
9088 ctor. instead, call SetDataSource if the parent's position is !=
9089 -1. Fixes the crash in #78822.
9091 2006-07-31 Chris Toshok <toshok@ximian.com>
9093 * DataGrid.cs (get_ListManager): use field instead of property
9094 accessors for datasource and datamember.
9095 (RowsCount): make internal again.
9096 (OnMouseDown): end edits before resizing columns/rows.
9097 (OnMouseUp): restart edits after resizing columns/rows.
9099 2006-07-30 Peter Dennis Bartok <pbartok@novell.com>
9101 * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
9102 This fixes the situation where the last set cursor is displayed
9103 whenever the mouse is over scrollbars.
9105 2006-07-30 Carlos Alberto Cortez <calberto.cortez@gmail.com>
9107 * PrintDialog.cs: Fix the behaviour of PrinterSettings and
9108 Document properties, as well as initial values.
9110 2006-07-29 Peter Dennis Bartok <pbartok@novell.com>
9112 * XplatUIWin32.cs (SetBorderStyle): Setting both border
9113 and ClientEdge results in a 3-pixel border, which is
9116 2006-07-28 Jackson Harper <jackson@ximian.com>
9118 * TreeNodeCollection.cs: Fix the clear method.
9119 - Fix the Shrink also
9121 2006-07-27 Jackson Harper <jackson@ximian.com>
9123 * TreeView.cs: Make sure the visible order is computed when we
9124 attempt to size the scrollbars (for trees that mess with the
9125 scrolling when they shouldn't.
9126 - Make sure to give the scrollbars valid values.
9128 2006-07-26 Peter Dennis Bartok <pbartok@novell.com>
9130 * XplatUIX11.cs: Move motion compression code to where it
9131 has less performance impact
9133 2006-07-26 Jackson Harper <jackson@ximian.com>
9135 * UpDownBase.cs: When the control is selected make the child
9136 controls non selectable, so that a click on them won't do a
9137 focus/unfocus cycle.
9138 - Don't give focus to the text box when the spinner is selected.
9139 * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
9141 2006-07-26 Chris Toshok <toshok@ximian.com>
9143 * ThemeWin32Classic.cs: add print preview rendering. I'm not
9144 satisfied with this solution. If the bitmaps are small, we should
9145 just cache them in the PrintPreviewDialog and draw them here.
9146 Also, the layout is broken for the 2-up and 3-up cases.
9148 * Theme.cs: add PrintPReviewControlPaint.
9150 * PrintPreviewDialog.cs: first pass implementation.
9152 * PrintPreviewControl.cs: first pass implementation. No
9155 * PrintDialog.cs: only validate fields if that particular portion
9156 of the UI is enabled. Also, set the document's controller to a
9157 PrintControllerWithStatusDialog wrapping the document's print
9160 * PrintControllerWithStatusDialog.cs: if we're printing to a file,
9161 bring up a SaveFileDialog (i hope we don't want to match the
9162 behavior of the crappy windows file entry) and set the
9163 PrinterSettings.PrintFileName accordingly.
9165 2006-07-26 Jackson Harper <jackson@ximian.com>
9167 * ContainerControl.cs: Add a field that disables auto selecting
9168 the next control in a container when the container is activated.
9169 * UpDownBase.cs: Don't select the text box when the up down is
9172 2006-07-26 Peter Dennis Bartok <pbartok@novell.com>
9174 * XEventQueue.cs: Added methods for peeking (used for compression
9175 of successive events)
9176 * XplatUIX11.cs (GetMessage): We're now compressing consecutive
9177 mouse move events (fixes #78732)
9179 2006-07-25 Jackson Harper <jackson@ximian.com>
9181 * UpDownBase.cs: Use an internal class for the textbox so that we
9182 can control focus. the updown control should always have focus,
9183 if either the text area or the buttons are clicked.
9184 - Send the key messages to the textbox, since it never actually
9186 - Activate and decativate the textbox caret.
9188 2006-07-24 Jackson Harper <jackson@ximian.com>
9190 * Control.cs: Use the directed select when selecting a control,
9191 this way the container controls override will get called and the
9192 whole ActiveControl chain will get triggered. TODO: probably need
9193 to make sure this gets done everywhere instead of the old
9195 * ContainerControl.cs: Implement the directed Select method to
9196 find and activate the correct child control.
9198 2006-07-22 Mike Kestner <mkestner@novell.com>
9200 * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
9201 menu handling code so that clicks without a grab work too.
9204 2006-07-22 Alexander Olk <alex.olk@googlemail.com>
9206 * FileDialog.cs: Enable the BackButton when dirstack has one element.
9207 Added some small optimizations.
9209 2006-07-21 Matt Hargett <matt@use.net>
9211 * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
9213 2006-07-21 Peter Dennis Bartok <pbartok@novell.com>
9215 * Control.cs (GetNextControl): Fixes to make all of Jackson's unit
9216 tests pass and match MS in some strange border cases.
9218 2006-07-21 Chris Toshok <toshok@ximian.com>
9220 * ThemeWin32Classic.cs: handle drawing of the relation links and
9223 * Theme.cs: change args to DataGridPaintParentRow.
9225 * DataGrid.cs: Don't use controls for the relation links and
9226 parent buttons, so we have to handle all their interactions in
9227 MouseMove, MouseDown, MouseUp, etc. Also, store a lot more stuff
9228 when we're navigating through child tables, so we can reinstate
9229 selection, expanded state, current cell, etc.
9231 2006-07-20 Chris Toshok <toshok@ximian.com>
9233 * ToolBar.cs: When we redraw a button, for whatever reason,
9234 there's no reason to redraw the entire toolbar. Also, don't call
9235 Control.Refresh from within Redraw, as it's much heavier than
9236 Invalidate (which is really what we want).
9238 2006-07-20 Chris Toshok <toshok@ximian.com>
9240 * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
9241 DataGridTextBoxColumn.cs, DataGridTextBox.cs,
9242 ThemeWin32Classic.cs, ListControl.cs: After staring at stack
9243 traces from within a debug IBindingList datasource
9244 (in mono/winforms/datagrid) for *days*, I've finally gotten things
9245 to work in a similar fashion.
9247 2006-07-20 Carlos Alberto Cortez <calberto.cortez@gmail.com>
9249 * ListBox.cs: Don't call Sort () when setting
9250 the Sorted property to false (avoid an unnecessary sort).
9252 2006-07-20 Carlos Alberto Cortez <calberto.cortez@gmail.com>
9254 * ListControl.cs: DataSource should throw an ArgumentException
9255 instead of a normal exception when the argument is not of the
9258 2006-07-20 Mike Kestner <mkestner@novell.com>
9260 * Control.cs: add InternalPreProcessMessage to allow us to steal
9261 key events before MWF gets its paws on them. Adapted from a
9263 * ToolBar.cs: add GotLostFocus handing for flat toolbars, with
9264 up/down/left/right navigation. Override the new internal control
9265 method to steal the events since they never make it to WndProc.
9266 * ToolBarButton.cs: don't worry about pushed when setting hilight
9267 since the drawing code prefers pushed to hilight. Invalidate on
9268 Hilight changes. Fixes #78547 and #78525.
9270 2006-07-20 Peter Dennis Bartok <pbartok@novell.com>
9272 * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
9273 the canvas size. Fixes #78868
9275 2006-07-20 Peter Dennis Bartok <pbartok@novell.com>
9277 * Splitter.cs: Track requested split position until first layout
9278 is performed. Fixes #78871
9280 2006-07-20 Peter Dennis Bartok <pbartok@novell.com>
9282 * Application.cs: Removed code that forces 1.x for the version
9283 number if the version started with 0. Not sure why that code was
9284 there and I couldn't find any bugs that indicated we needed it.
9287 2006-07-20 Alexander Olk <alex.olk@googlemail.com>
9289 * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
9290 ResetDefaults(), just write some output to the console until it's
9291 implemented. Fixes bug #78907 for now. Eliminated two warnings.
9293 2006-07-19 Jonathan Chambers <joncham@gmail.com>
9295 * PropertyGridView.cs: set StartPosition of drop down forms
9296 so they appear in correct initial spot. Fixes #78190.
9298 2006-07-19 Mike Kestner <mkestner@novell.com>
9300 * ThemeWin32Classic.cs: use parent background color when drawing
9301 flat toolbars. Restructure the conditionals to make sure non-flat
9302 non-Divider toolbars are filled too. Fixes #78837.
9304 2006-07-19 Mike Kestner <mkestner@novell.com>
9306 * ListBox.cs: Sort on collection changes even if the handle
9307 isn't created yet. Fixes #78813.
9309 2006-07-18 Carlos Alberto Cortez <calberto.cortez@gmail.com>
9311 * ListControl.cs: DisplayMember should never be null,
9312 and now we assign String.Empty when null is passed to it (this
9315 2006-07-17 Mike Kestner <mkestner@novell.com>
9317 * ListViewItem.cs: restructure Font and subitem Font handling
9318 to hold a specific font and refer back to owner on null.
9321 2006-07-17 Mike Kestner <mkestner@novell.com>
9323 * ToolBar.cs: bandaid for side-effect of previous patch which was
9324 discarding explicit heights for non-AutoSize toolbars. Need to
9325 extend my format tester to deal with AutoSize=false. Fixes #78864.
9327 2006-07-15 Jackson Harper <jackson@ximian.com>
9329 * LabelEditTextBox.cs:
9330 * TreeView.cs: Use a new LabelEdit class for node editing, this
9331 class automatically 'closes' itself when it gets the enter key or
9333 - Use the client rectangle when setting the trees scrollbars, so
9334 border style is taken into account.
9336 2006-07-14 Jackson Harper <jackson@ximian.com>
9339 * TreeView.cs: Make the editing work similar to MSs, firing the
9340 events correctly and ending edits correctly.
9342 2006-07-14 Mike Kestner <mkestner@novell.com>
9345 * ToolBar.cs: layout restructuring and redraw enhancements to support
9346 formatting changes gracefully, like setting TextAlign, ImageList,
9347 ButtonSize, and Appearance. Handles explicit button sizing quirks
9348 of the MS controls. Things like flat toolbars ignoring button size
9349 but becoming constant sized at the largest button's size. Normal
9350 toolbars with an image set cannot be shrunk smaller than the image,
9351 but text can be clipped/ignored.
9352 * ThemeWin32Classic.cs: don't draw text if text_rect height or width
9353 is zero. Seems like DrawString should be smart enough to not put
9354 anything on screen though. Also trim labels and ellipsize at the char
9356 Fixes #78711 and #78483.
9358 2006-07-14 Alexander Olk <alex.olk@googlemail.com>
9360 * FolderBrowserDialog.cs: Disable "New Folder" button and
9361 "New Folder" contextmenu menuitem if a folder like "My Computer"
9364 2006-07-14 Alexander Olk <alex.olk@googlemail.com>
9366 * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
9367 * FolderBrowserDialog.cs:
9368 - Use MWFConfig to store and read size and position settings
9369 - Added code to create a new folder (button or context menu).
9370 Use TreeView labeledit to change the name of the new folder.
9372 2006-07-14 Jackson Harper <jackson@ximian.com>
9374 * TreeView.cs: Raise the OnAfterLabelEdit event correctly. Also,
9375 when the tree is scrolled we end editing.
9377 2006-07-14 Alexander Olk <alex.olk@googlemail.com>
9379 * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
9382 2006-07-14 Jonathan Pobst <monkey@ipobst.com>
9384 WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
9385 BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
9386 BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
9387 CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
9388 ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
9389 ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
9390 ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
9391 FormClosedEventHandler.cs, FormClosingEventArgs.cs,
9392 FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
9393 ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
9394 ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
9395 ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
9396 ListViewItemSelectionChangedEventHandler.cs,
9397 ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
9398 ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
9399 MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
9400 PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
9401 PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
9402 RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
9403 SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
9404 SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs,
9405 TabControlCancelEventHandler.cs, TabControlEventArgs.cs,
9406 TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
9407 TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
9408 ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
9409 ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
9410 TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
9411 TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
9412 TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
9413 WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
9414 WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
9415 WebBrowserNavigatingEventHandler.cs,
9416 WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
9418 2006-07-14 Jonathan Pobst <monkey@ipobst.com>
9420 MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
9421 RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
9422 SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
9423 TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
9424 ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
9425 ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
9426 ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
9427 ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
9428 ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
9429 ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
9430 ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
9431 ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
9432 TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
9433 WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
9434 ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
9435 AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
9436 BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
9437 ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
9438 FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
9439 HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
9440 ListViewItemStates.cs, MaskFormat.cs: Added
9442 2006-07-13 Jonathan Chambers <joncham@gmail.com>
9444 * PropertyGridView.cs: Fix keyboard navigation of drop down.
9445 Patch from eno for bug 78558.
9447 2006-07-13 Jackson Harper <jackson@ximian.com>
9449 * TreeView.cs: When an edit is finished make sure that the
9450 selected node is visible.
9451 - When setting the top/bottom use the scrollbars is_visible, so
9452 everything will be set correctly even if the tree isn't visible
9455 2006-07-13 Jackson Harper <jackson@ximian.com>
9457 * ComboBox.cs: Revert the item->index part of my previous patch.
9458 * TreeView.cs: Use LostFocus instead of Leave for detecting when
9459 the edit box has lost focus (duh).
9460 - Just make the edit box not visible when we get return, that will
9461 take the focus, which will call EndEdit
9462 * TreeNode.cs When we start editing, notify the treeview.
9464 2006-07-12 Jackson Harper <jackson@ximian.com>
9466 * ComboBox.cs: Clear out old items before setting the item list.
9467 This prevents databound controls from having their items added
9469 - Switch the combobox to use indices whereever possible instead of
9470 using Item's. This allows usto navigate through lists that have
9471 more then one item with the same string value (ie a, b, b, a).
9472 - Scroll the listboxes scrollbar when a non visible item is
9474 - Allow keypress to cycle through all the possible values. For
9475 example if you have b1, b2, b3 and hold down the B key all the
9476 values will be cycled through.
9478 2006-07-12 Jackson Harper <jackson@ximian.com>
9481 * ListView.cs: Don't need to override SETFOCUS anymore, we can do
9482 this using the internal methods.
9483 * Control.cs: Add OnGotFocusInternal. A new method that allows
9484 controls to "override" OnGotFocus and change focus behavior if
9486 - Same thing for LostFocus
9487 * ComboBox.cs: Pass off focus to the text control properly.
9489 2006-07-12 Alexander Olk <alex.olk@googlemail.com>
9491 * FileDialog.cs: Added GetFoldersOnly to MWFVFS
9492 * FolderBrowserDialog.cs: Almost a complete rewrite.
9493 - Better support for Environment.Specialfolders
9494 - Added support for MWFVFS
9495 - Made setting SelectedPath work
9497 2006-07-12 Jackson Harper <jackson@ximian.com>
9499 * Control.cs: Optimze getting all the controls.
9501 2006-07-11 Jackson Harper <jackson@ximian.com>
9503 * ContainerControl.cs: Override SETFOCUS in the container control,
9504 so that it is not selected on mouse click.
9506 2006-07-11 Peter Dennis Bartok <pbartok@novell.com>
9508 * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel.
9509 Hopefully we will have a better way once all of focus is complete.
9511 2006-07-11 Peter Dennis Bartok <pbartok@novell.com>
9513 * ThemeWin32Classic.cs: Commented out some debug code and fixed
9514 a compile error with csc.
9516 2006-07-11 Jackson Harper <jackson@ximian.com>
9518 * Control.cs: When hiding a control only select the next control
9519 if the current control was focused.
9520 - Don't handle enter/leave when setting/killing focus, this is
9521 done by the container control.
9522 - Remove is_selected, it's not needed anymore.
9523 - Add utility methods for selecting a child control, and for
9524 firing the Enter/Leave events.
9525 * ContainerControl.cs: When a control is activated fire the
9527 - Don't wrap when processing the tab key, so that focus can be
9528 moved outside of the container.
9529 - Use the correct active control
9531 2006-07-11 Jackson Harper <jackson@ximian.com>
9533 * ComboBox.cs: Remove some debug code that was blinding me.
9534 * UpDownBase.cs: These controls actually aren't implicit, they are
9535 visible to the user.
9537 2006-07-10 Chris Toshok <toshok@ximian.com>
9539 * DataGrid.cs: move back to the is_adding boolean field. god i
9540 hate this is_editing/is_adding/is_changing stuff.
9542 2006-07-10 Chris Toshok <toshok@ximian.com>
9544 * DataGridTableStyle.cs: just check if the property type is bool.
9545 if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
9546 Don't use CanRenderType.
9548 * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
9549 if our text == NullText. Remove CanRenderType.
9551 * DataGridBoolColumn.cs: nuke CanRenderType.
9553 * DataGrid.cs: reenable some code to end the current edit inside
9554 of set_CurrentCell. This fixes the other 1.1.16 regression.
9555 Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
9556 Also, remove the visible_row_count arg from CalcRowHeaders, since
9557 we don't need to worry about the actual height of the area.
9559 2006-07-10 Chris Toshok <toshok@ximian.com>
9561 * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
9564 * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
9565 the real sense of the IsInEditOrNavigateMode property (true =
9566 navigate, false = edit). Also, update OnKeyPress to reflect this.
9568 * DataGridTableStyle.cs (CreateColumnsForTable): even if the
9569 column style exists, we still need to set its property descriptor
9570 to match up with our list manager.
9572 2006-07-10 Chris Toshok <toshok@ximian.com>
9574 * ThemeWin32Classic.cs: implement the new row/header painting
9575 approach. The parent row painting will likely go away and
9576 replaced with label controls, but the rest seems to work ok (and
9579 * Theme.cs: change the way we draw datagrid rows. we don't draw
9580 the row headers as a block now. Instead we draw them in the
9581 normal draw-row loop. Add some calls for drawing parent rows and
9584 * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
9585 a default table style. Set the defaults from ThemeEngine.Current,
9586 not SystemColors. Fix lots of misc issues with property setters.
9588 * DataGrid.cs: move loads of style information out of this class
9589 as it's being duplicated with DataGridTableStyle. keep track of a
9590 special DataGridTableStyle for the properties we used to mirror
9591 here. Switch all the style properties to access this table style
9592 instead of instance fields of this class. Also add a internal
9593 class to represent parent rows (more needs to be stored here, like
9594 the selection state from the parent table, as well as the
9595 expansion state.) Also, for datasources with relations, do the
9596 right thing for collapse/expand, and add support for the
9597 navigation/parent row buttons.
9599 Lastly, fix the crash in the 1.1.16 build.
9601 * GridTableStylesCollection.cs: make the explicit interface
9602 implementations call the class's methods as opposed to duplicating
9605 * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
9606 0 so the text doesn't jump around when we move the cursor.
9608 2006-07-10 Jackson Harper <jackson@ximian.com>
9611 * ListBox.cs: Match MS's ToString (this makes debugging focus
9612 stuff infinitely easier).
9614 2006-07-10 Jackson Harper <jackson@ximian.com>
9616 * Control.cs (SelectNextControl): When checking the control's
9617 parent use this instead of ctrl.parent so that null can be passed
9618 to SelectNextControl. (I have unit tests for this).
9619 - Remove unused var.
9621 2006-07-10 Chris Toshok <toshok@ximian.com>
9623 * CurrencyManager.cs: correct one regression, the removal of the
9624 finalType field. Also, add a MonoTODO on CanAddRows, implement
9625 Refresh() correctly, and fix some event emission in
9628 2006-07-07 Alexander Olk <alex.olk@googlemail.com>
9630 * FileDialog.cs: Don't use brackets for new folders if they exist
9631 under *nix. Instead use -(number of existing folders +1).
9633 2006-07-07 Alexander Olk <alex.olk@googlemail.com>
9636 - Fixed really nasty bug #78771
9637 - Don't block the whole GUI when reading directories with a lot of
9638 entries. Use an other thread instead and call BeginInvoke to
9639 update the ListView in MWFFileView
9641 2006-07-07 Chris Toshok <toshok@ximian.com>
9643 * Control.cs (Dispose): release any Capture when disposing.
9645 2006-07-07 Chris Toshok <toshok@ximian.com>
9647 * LinkLabel.cs (Select): if we chain up to the parent, set
9648 focused_index to -1 so we'll search for the first available link
9649 the next time the user tabs into us. Also, if the direction is
9650 backward and focused_index == -1, start the search from the last
9653 2006-07-07 Chris Toshok <toshok@ximian.com>
9655 * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
9656 is beyond the end of the text, don't do anything.
9657 (CreateLinkPieces): set our ControlStyles.Selectable based on
9658 whether or not we have any links.
9659 (Link.Invalidate): use a loop instead of foreach.
9660 (Link.set_Start): null out owner.sorted_links so it'll be
9661 recreated by CreateLinkPieces.
9663 2006-07-06 Chris Toshok <toshok@ximian.com>
9665 * LinkLabel.cs: revert the SetStyle change.
9667 2006-07-06 Chris Toshok <toshok@ximian.com>
9669 * LinkLabel.cs (.ctor): SetStyle Selectable to true.
9670 (OnEnableChanged): s/Refresh/Invalidate
9671 (OnGotFocus): if we have a focused index already, refocus it (so
9672 if we mouse out/in to the window it'll focus the right link).
9673 (OnKeyDown): move the tab handling out of here.
9674 (OnLostFocus): don't set focused_index to -1, so we can refocus it
9676 (OnMouseDown): don't Capture here - Control handles it. Also,
9677 focus the active link.
9678 (OnMouseUp): don't deal with Capture.
9679 (OnPaintBackgroundInternal): remove.
9680 (OnTextAlignChanged): CreateLinkPieces before calling the
9681 superclass's method.
9682 (OnTextChanged): call CreateLinkPieces before calling superclass's
9684 (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
9686 (Select): implement this, moving the selection between different
9687 links, and call parent.SelectNextControl if we don't have another
9688 link to focus in the given direction.
9689 (CreateLinkPieces): call Invalidate instead of Refresh.
9691 2006-07-06 Chris Toshok <toshok@ximian.com>
9693 * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
9694 new LinkLabel internals.
9696 * LinkLabel.cs: fairly major rewrite. get rid of all the loops
9697 over pieces looking for active/focused/etc links. also, deal with
9698 runs of text (and links) with embedded \n's in them, and use
9699 MeasureCharacterRanges instead of MeasureString to figure out the
9700 regions text occupies. Lastly, do the usual s/Refresh/Invalidate
9703 2006-07-04 Jackson Harper <jackson@ximian.com>
9705 * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
9706 XKB or key auto repeat, do it manually. Without key auto repeat,
9707 when a key is held down we get key press, key release, key press,
9708 key release, ... with auto repeat we get key press, key press, key
9709 press ..., and then a release when the key is actually released.
9711 2006-07-03 Jackson Harper <jackson@ximian.com>
9714 * ThemeWin32Classic.cs: Tabs do not obey normal background color
9715 rules, they are always control color regardless of the background
9718 2006-07-02 Alexander Olk <alex.olk@googlemail.com>
9720 * FileDialog.cs: Added internal class MWFConfig.
9721 Removed Registry support and replaced it with support for the new
9722 MWFConfig class. See MWFConfig comments for more information.
9724 2006-06-30 Alexander Olk <alex.olk@googlemail.com>
9726 * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
9727 rectangle. Added some patches from eno from bug #78490 and fixed
9728 the arrow position for small up and down CPDrawScrollButtons.
9730 2006-06-30 Jackson Harper <jackson@ximian.com>
9732 * InternalWindowManager.cs: Remove some debug code.
9733 * Form.cs: When an MdiParent is set to null, the window is
9734 "detatched" and becomes a normal window.
9735 * MdiClient.cs: Don't bring the new child form to the front until
9736 it is activated (setting it as active does this), this makes the
9737 previously active forms titlebar get redrawn as inactive.
9739 2006-06-29 Peter Dennis Bartok <pbartok@novell.com>
9741 * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
9744 2006-06-29 Mike Kestner <mkestner@novell.com>
9746 * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
9747 arrow in keynav state. Fixes #78682.
9749 2006-06-28 Atsushi Enomoto <atsushi@ximian.com>
9751 * PrintDialog.cs: Reorder, relayout, remove extra code, set tab
9752 order (fixes #78393)
9754 2006-06-28 Jonathan Pobst <monkey@ipobst.com>
9756 * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs,
9757 ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
9758 ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
9759 FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
9760 GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
9761 ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs,
9762 PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
9763 Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
9764 TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
9765 ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
9766 enumerations (FlagsAttribute, SerializableAttribute, added/removed
9769 2006-06-28 Mike Kestner <mkestner@novell.com>
9771 * ComboBox.cs: implement scroll wheel support. Fixes #78360.
9773 2006-06-28 Atsushi Enomoto <atsushi@ximian.com>
9776 PropertyGridTextBox.cs : explicitly set BackColor to differentiate
9777 item lines from other area (It also makes BackColor consistent and
9778 compatible with .NET). Fixed bug #78564.
9780 2006-06-28 Jonathan Chambers <jonathan.chambers@ansys.com>
9782 * PropertyGrid.cs: refresh toolbar when PropertySort is set.
9783 Patch from Eno for #78555.
9785 2006-06-27 Chris Toshok <toshok@ximian.com>
9787 * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
9789 * DataGridColumnStyle.cs: same.
9791 * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
9793 * DataGridDrawingLogic.cs: nuke.
9795 2006-06-27 Chris Toshok <toshok@ximian.com>
9797 * DataGridTableStyle.cs: clean up the constructors, and build the
9798 list of child relations for this table. I have no idea if this is
9799 where we should be doing it (it probably isn't), but since we're
9800 already iterating over the properties..
9802 * DataGrid.cs: add row resizing. for now we add a DataGridRow
9803 struct and array for keeping track of row information, similar to
9804 what's shown in a hack on
9805 http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
9807 * Theme.cs: be consistent about the naming of DataGrid methods,
9808 prefering ColumnWidths and RowHeights over columnsWidths and
9811 * ThemeWin32Classic.cs: same, and also add support for variable
9812 sized rows (and the +/- expansion icons for related rows).
9814 2006-06-27 Peter Dennis Bartok <pbartok@novell.com>
9816 * TextBoxBase.cs: Applied Eno's patch from #78660
9818 2006-06-27 Peter Dennis Bartok <pbartok@novell.com>
9820 * Form.cs (ScaleCore): We don't want to scale our form if it's
9821 state is minimized or maximized, but we still need to scale our
9822 child windows. Also, added try/finally block to ensure layout
9823 gets reset (Fixes #78697)
9825 2006-06-27 Peter Dennis Bartok <pbartok@novell.com>
9827 * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
9829 2006-06-27 Peter Dennis Bartok <pbartok@novell.com>
9831 * Form.cs: Fixed c+p error and added check to resize form if minimum
9832 size is bigger than current size (Fixes #78709)
9834 2006-06-26 Peter Dennis Bartok <pbartok@novell.com>
9836 * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
9838 2006-06-26 Mike Kestner <mkestner@novell.com>
9840 * ComboBox.cs: only do Keypress handling in the combo when there
9841 are items in the collection. Fixes #78710.
9843 2006-06-26 Chris Toshok <toshok@ximian.com>
9845 * Binding.cs: make this work bi-directionally. also, clear up
9846 other mixups between Push/Pull Data (e.g. we're supposed to pull
9847 data when validating).
9849 * BindingManagerBase.cs: trim some fully qualified collection
9852 * PropertyManager.cs (get_IsSuspended): oops, fix this check.
9854 2006-06-23 Chris Toshok <toshok@ximian.com>
9856 * PropertyManager.cs: It appears (according to the unit tests)
9857 that PropertyManager doesn't use
9858 PropertyDescriptor.AddValueChanged to track propery value changes
9859 in its datasource, but uses the same scheme as Binding, where it
9860 looks for a <Property>Changed event and binds to it.
9862 Also, according to the docs, IsSuspended always returns false for
9863 a property manager with a non-null datasource.
9865 2006-06-22 Peter Dennis Bartok <pbartok@novell.com>
9867 * Form.cs: (ShowDialog): If we're returning a forced cancel we still
9868 need to update the actual DialogResult. (Fixes #78613)
9870 2006-06-22 Peter Dennis Bartok <pbartok@novell.com>
9872 * Form.cs (ShowDialog): Release any captures before running the
9873 new message pump (fixes #78680)
9875 2006-06-22 Mike Kestner <mkestner@novell.com>
9877 * ListView.cs: Layout column widths properly in details mode even
9878 if HeaderStyle.None is set. Fixes #78691.
9880 2006-06-21 Peter Dennis Bartok <pbartok@novell.com>
9882 * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
9884 2006-06-21 Peter Dennis Bartok <pbartok@novell.com>
9886 * Control.cs (ContainsFocus): Using new driver method to get focused
9887 window, instead of trying to use internal tracking var, which can
9888 recursion issues (Fixes #78685)
9889 * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
9890 XplatUIWin32.cs: Added GetFocus method to return focused window
9892 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9894 * ColorDialog.cs: when the mouse button is pressed inside the color
9895 matrix, don't let the cursor move out of it until the button is
9896 released, which is the behavior on windows. Changed 'colours' by
9897 'colors' to use the same word consistently.
9899 2006-06-21 Chris Toshok <toshok@ximian.com>
9901 * DataGrid.cs: add in some basic navigation stuff (navigating to a
9902 child relation and back, using a stack). Also, remove
9903 GetDataSource and the code that calls it - it's not needed. Also,
9904 track CurrencyManager.ListName's removal.
9906 2006-06-21 Chris Toshok <toshok@ximian.com>
9908 * CurrencyManager.cs: push some of the original type checking from
9909 BindingContext.CreateBindingManager to here, and remove some of
9910 the finalType stuff. Need more tests to make sure I've got the
9911 ListName part right, and we might need more in SetDataSource.
9913 * PropertyManager.cs: add a ctor that takes just the datasource,
9914 and no property name. Make SetDataSource work with a null
9915 property_name, and make Current return the data_source if the
9916 property descriptor is null. this makes 'string foo = "hi";
9917 BindingContext[foo].Current' return "hi" as it should.
9919 * RelatedCurrencyManager.cs: make this code more generic - there's
9920 no reason the parent manager has to be CurrencyManager, and
9921 there's no reason to pass the DataRelation. It suffices to use a
9922 BindingManagerBase and PropetyDescriptor.
9924 * RelatedPropertyManager.cs: make a similar change here.
9926 * BindingContext.cs: make CreateBindingManager the beautiful, tiny
9927 flower I knew it could be.
9929 2006-06-20 Chris Toshok <toshok@ximian.com>
9931 * PropertyManager.cs: the PropertyChangedHandler is invoked when
9932 data in the source has changed and we need to update the control,
9933 so s/PullData/PushData.
9935 * CurrencyManager.cs: Refresh is meant to update the control from
9936 data in the datasource. So, s/PullData/PushData.
9938 * BindingContext.cs: add more ugliness (we weren't handling the
9939 case where data_source = DataTable and data_member = column_name).
9941 * Binding.cs: fix PushData/PullData mixup. Both are interpreted
9942 from the perspective of the datasource. PullData pulls from the
9943 control, PushData pushes to the control.
9945 2006-06-20 Chris Toshok <toshok@ximian.com>
9947 * BindingContext.cs: rewrite the CreateBindingManager code to
9948 handle navigation paths more or less properly. This could
9949 definitely stand some more work, in particular to push the
9950 recursion up to the toplevel. But that relies on fixes in other
9951 places (System.Data comes to mind).
9953 Also, move to a flat hashtable (and encode the twolevel nature of
9954 the dictionary into the hash key). This lets us implement the
9955 IEnumerable.GetEnumerator method.
9957 * RelatedCurrencyManager.cs: new class. Update our view based on
9958 our relation and our parent CurrencyManager's position.
9960 * CurrencyManager.cs: split out some logic from the ctor into
9961 SetView, so it can be called from the new RelatedCurrencyManager
9964 * RelatedPropertyManager.cs: new class. Update our datasource
9965 based on the position of our parent CurrencyManager.
9967 * PropertyManager.cs: split out some logic from the ctor into
9968 SetDataSource, so it can be called from the new RelatedDataSource
9969 subclass. Also, make the Current getter return the value
9970 of the PropertyDescriptor, not the data_source.
9972 * Binding.cs: no need to duplicate the string splitting code here.
9974 2006-06-19 Peter Dennis Bartok <pbartok@novell.com>
9977 - set_Enabled: OnEnabledChanged is not called if the inherited state
9978 of the control is not altered, even though we might be changing the
9979 internal state of the control (#78458)
9980 - set_Enabled: (Re)Moved the enabling/disabling of the window to
9981 OnEnabledChanged, to allow easy altering of any child window state
9982 - OnEnabledChanged: Added code to enable/disable driver window state
9983 - OnParentEnabledChanged: Instead of firing the event, call
9984 OnEnabledChanged, which will fire the event and also a) set driver
9985 window state and pass the enabled state to any grandchildren (#78458)
9987 2006-06-19 Jackson Harper <jackson@ximian.com>
9989 * InternalWindowManager.cs: We don't set the cursor explicitly
9990 thats done via the response to NCHITTESTs.
9991 - Don't need to adjust for titlebar heights anymore, the
9992 coordinates are coming in the correct coordinates now (see peters
9996 2006-06-19 Peter Dennis Bartok <pbartok@novell.com>
9998 * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
9999 being translated relative to whole window, instead of client window.
10000 That caused broken offsets on mouseclick (and caused gas for our
10001 InternalWindowManager)
10003 2006-06-15 Peter Dennis Bartok <pbartok@novell.com>
10006 - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
10007 - Undo(): Added replay of cursor move on DeleteChars action; added
10008 calling Undo() again if a recorded cursor move is invalid (to
10009 ensure that some action is performed on Undo)
10010 * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
10012 2006-06-16 Jackson Harper <jackson@ximian.com>
10014 * MdiClient.cs: Instead of just sizing maximized windows when
10015 there is a resize we also have to adjust the Y of minimized
10016 windows, so they stay pinned to the bottom of the mdi container.
10017 - Eliminate separate tracking of the active control, we can just
10018 get this from the controls collection.
10019 - Paint the decorations for the newly activated titlebar so we get
10021 * InternalWindowManager.cs:
10022 * ThemeWin32Classic.cs: Minimized windows get all three buttons
10023 even if they are a tool window.
10025 2006-06-15 Peter Dennis Bartok <pbartok@novell.com>
10027 * TextControl.cs (Undo): Handle non-existent cursor locations in the
10028 undo buffer, these can happen when text was deleted and the cursor
10029 was recorded first. Since we will also have a recorded cursor
10030 after the delete this is not an issue. (Fixes #78651)
10032 2006-06-14 Peter Dennis Bartok <pbartok@novell.com>
10034 * AccessibleObject.cs: Remove dependence on Control.is_selected;
10035 instead properly track control states internally (allows us to
10036 remove is_selected from Control)
10038 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10040 * ImageListStreamer.cs: correctly generate the 1bpp mask for images
10041 whose width is not a multiple of 8.
10043 2006-06-13 Jackson Harper <jackson@ximian.com>
10045 * MdiClient.cs: Only maximize the next child if the current one
10048 2006-06-13 Chris Toshok <toshok@ximian.com>
10050 * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
10051 modified. Also, guard against grid or grid_drawing being null in
10054 * DataGrid.cs: Reformat tons of getters/setters. In the
10055 DataMember setter, just call SetNewDataSource instead of
10056 duplicating some of its functionality. In SetNewDataSource, don't
10057 check ListManager for null, since the property getter creates the
10060 * DataGridTableStyle.cs: don't set TableStyle or call
10061 SetDataGridInternal on the column here, it's done in
10062 GridColumnStylesCollection.Add.
10064 * GridColumnStylesCollection.cs: fix all the explicit interface
10065 implementations to just call our methods. Nuke AddInternal() and
10066 move the body of it to Add(). Also, add a call to
10067 column.SetDataGridInternal to Add().
10069 * DataGridTextBoxColumn.cs (.ctors): call this() instead of
10070 base()+duplicate code. Also, use the Format property instead of
10071 format to generate an Invalidate ala MS. Lastly, create the
10072 textbox here, unconditionally.
10073 (set_Format): call Invalidate.
10074 (get_TextBox): no need to call EnsureTextBox.
10075 (Commit): remove the message box.
10076 (Edit) remove the call to EnsureTextBox.
10077 (EndEdit): call HideEditBox instead of ReleaseHostedControl.
10078 (EnterNullValue): no need to check textbox for null.
10079 (HideEditBox): no need to check textbox for null.
10080 (SetDataGridInColumn): add the textbox to the grid's controls.
10081 (EnsureTextBox): nuke.
10083 2006-06-13 Jackson Harper <jackson@ximian.com>
10085 * MdiWindowManager.cs: Hook up to the maximized menus paint event
10086 and redraw the buttons when needed. Unhook when the window is
10088 * MainMenu.cs: Add an internal Paint event, the mdi window manager
10089 needs this so that it can redraw its buttons when the menu is
10091 * InternalWindowManager.cs:
10092 * Form.cs: The method order has changed for DrawMaximizedButtons,
10093 so that it can be a PaintEventHandler.
10095 2006-06-13 Jackson Harper <jackson@ximian.com>
10097 * MdiClient.cs: When we close a maximized mdi window, the next mdi
10098 window is activated and maximized, even if it wasn't before.
10099 - When a new window is activated repaint the decorations of the
10100 old one, so that it no longer has the Active "look" (the blue
10102 * InternalWindowManager.cs: Open up CreateButtons to base classes
10103 so they can recreate the buttons on state changes.
10104 - If a window is maximized give it all three buttons
10105 * MdiWindowManager.cs: Create the titlebar buttons when the state
10106 is changed, this is needed because a toolwindow will not have all
10107 three buttons until it is maximized.
10109 2006-06-13 Atsushi Enomoto <atsushi@ximian.com>
10111 * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
10114 2006-06-12 Jackson Harper <jackson@ximian.com>
10116 * KeysConverter.cs: Make sure we handle the Ctrl special case
10117 if its the only key.
10119 2006-06-12 Jackson Harper <jackson@ximian.com>
10121 * Theme.cs: Add a method to get the size of a managed window
10123 * InternalWindowManager.cs: Remove the ButtonSize property, this
10124 should be retrieved from the theme.
10125 * MdiWindowManager.cs: Get the button size from the theme
10126 * ThemeWin32Classic.cs: Make the method to get the managed window
10127 titlebar button size public.
10128 - Handle the different button sizes of maximized toolwindows
10129 (should match any maximized window).
10130 - Get the titlebar height from the theme, not the WM (which gets
10131 it from the theme).
10133 2006-06-12 Jackson Harper <jackson@ximian.com>
10135 * InternalWindowManager.cs: Handle NC Double Clicks, passing the
10136 event down to the mdi window manager.
10137 - Expose some extra stuff to base classes
10138 - Make sure to end the Capture on an NC Mouse up, so that we can
10139 get double clicks properly, and the sizing doens't stick.
10140 - When doing PointToClient contain it in the workable desktop
10141 area, this prevents windows from changing size when the cursor is
10142 pulled outside of the working area while sizing.
10143 * MdiWindowManager.cs: When we get a double click maximize the
10145 - Reset the cursor after handling mode changes.
10147 2006-06-12 Peter Dennis Bartok <pbartok@novell.com>
10149 * XplatUIX11.cs (WorkingArea): Read the actual workarea for the
10150 current desktop, instead of just assuming a 0, 0 origin. This
10151 is needed for our internal window manager, to know the top
10152 margin of the desktop
10154 2006-06-12 Chris Toshok <toshok@ximian.com>
10156 * DataGrid.cs (set_CurrentCell): concede focus as we move around.
10157 we need this to get rid of the selected background in the bool
10159 (CancelEditing): move the ConcedeFocus call to above the Abort
10160 call. Also, set is_changing to false and invalidate the row
10161 header if we were changing before.
10162 (ProcessKeyPreviewInternal): remove, since noone outside this
10163 class calls it anymore. Roll the code into ProcessKeyPreview.
10164 (EndEdit): remove the internal version.
10165 (InvalidateCurrentRowHeader): make private.
10167 * DataGridBoolColumn.cs: simplify this class a bunch. remove the
10168 Keys.Escape handling (and with it the last call to
10169 DataGrid.EndEdit from outside the class.)
10172 2006-06-12 Chris Toshok <toshok@ximian.com>
10174 * DataGridTextBox.cs (.ctor): isedit defaults to false.
10175 (OnKeyPress): set isedit to true.
10176 (ProcessKeyMessage): remove Keys.Enter handling from here. it's
10177 already handled by the grid.
10179 * DataGrid.cs (set_CurrentCell): more work here. it's still not
10181 (set_DataSource): SetDataSource always returns true, so stop
10182 putting it in an if statement.
10183 (EndEdit): get rid of some {}'s
10184 (ProcessGridKey): return true in case Keys.Escape.
10185 (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
10186 (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
10187 PositionChanged, stopped connecting to CurrentChanged.
10188 (GetDataSource): simplify this a bunch.
10189 (SetDataSource): change return type from bool to void.
10190 (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
10191 to this, and make sure we don't set ListManager.Position inside
10193 (OnListManagerItemChanged): if we're passed an actual index,
10196 * CurrencyManager.cs (set_Position): don't call PullData here.
10198 2006-06-09 Jackson Harper <jackson@ximian.com>
10200 * TreeNode.cs: Recalculate the visible order before doing the
10201 Expand/Collapse Below calls, because those calls generate an
10203 - Reduce calls to the TreeView property, which is mildly expensive
10204 by using a local var.
10205 * Form.cs: Layout the MDI child windows when creating the parent
10207 - Don't use the internal constructor anymore
10208 * MdiClient.cs: use the parent form width/height (if available)
10209 when laying out the child windows, we do this because the
10210 mdiclient isn't docked yet when the initial layout is done.
10211 - Don't need an internal constructor anymore.
10213 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10215 * FileDialog.cs: handle access errors when trying to create a folder
10216 or changing to a directory. No need to initialize out parameters.
10218 2006-06-08 Alexander Olk <alex.olk@googlemail.com>
10220 * FileDialog.cs: Append a number when creating a new folder if the
10221 folder already exists (use parenthesis instead of square brackets)
10223 2006-06-08 Alexander Olk <alex.olk@googlemail.com>
10226 - Disabled registry support for windows and added better registry
10227 error checking for other systems (need to investigate why it
10228 works perfectly on my system)
10229 - If a folder already exist show an error MessageBox instead of
10230 trying to create an indexed name.
10231 - Fixed a non intentional typo.
10233 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10235 * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
10237 2006-06-08 Alexander Olk <alex.olk@googlemail.com>
10239 * FileDialog.cs: When creating a new folder don't crash if the
10240 folder already exists.
10242 2006-06-08 Alexander Olk <alex.olk@googlemail.com>
10244 * FileDialog.cs: Allmost a complete rewrite.
10245 - added a "virtual" file system that handles the differences
10246 between unix and windows file systems (especially the directory
10247 structure). Moved most of the directory and file handling code
10249 Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
10250 UnixFileSystem and FSEntry.
10251 - Recently used folder/directory, size, location and used file names
10252 (file name ComboBox) are now stored in the registry and get read
10253 before the dialog shows up (fixes part 6 of bug #78446).
10254 - Creation of new folders/directories is now possible (context menu
10255 or ToolBar). Added TextEntryDialog for this that fills in the gap
10256 until ListView.LabelEdit works.
10257 - Fixed cursor handling (bug #78527) and focus handling for
10259 - Various "Search in" ComboBox enhancements. The content of the
10260 dropdown listbox now almost matches ms.
10261 - Changed the behaviour when the user switches to SpecialFolder
10262 Recent to show the ListView in View.Details.
10263 - Beside using the ToolBar to change the View property of the
10264 file ListView it is now possible to use the context menu too.
10266 2006-06-08 Alexander Olk <alex.olk@googlemail.com>
10268 * ComboBox.cs: Don't create a new ObjectCollection when an item
10269 gets inserted. Just insert the item in the existing object_items
10272 2006-06-08 Jackson Harper <jackson@ximian.com>
10274 * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
10275 that the treeview and root node checks are done also, this fixes a
10276 regression i caused in the unit tests.
10278 2006-06-07 Wade Berrier <wberrier@novell.com>
10280 * RichTextBox.cs: More ISO8859-1 -> unicode
10282 2006-06-07 Mike Kestner <mkestner@novell.com>
10284 * ComboBox.cs : use items to hold highlight/selection so that
10285 collection insertions don't require synchronization.
10287 2006-06-07 Jackson Harper <jackson@ximian.com>
10289 * InternalWindowManager.cs: Simplify (and FIX) the window sizing
10290 routine. We now always keep the sized edge at the cursor instead
10291 of computing movement and adjusting rects. There is one buglet
10292 with this method though when the cursor is moved over area that
10293 the window can not expand too (such as the toolbars on the desktop).
10295 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10297 * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
10298 here. Fixes crash on startup in AlbumSurfer.
10300 2006-06-07 Peter Dennis Bartok <pbartok@novell.com>
10302 * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
10305 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10307 * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
10308 statement to avoid calling XNextEvent which will block if another thread
10309 took the event that we were expecting. Fixes bug #78605.
10311 2006-06-07 Mike Kestner <mkestner@novell.com>
10313 * ListView.cs : isolated checkbox clicking from the selection logic.
10314 Toggle check state on item doubleclicks. Really fixes #78454 part2.
10316 2006-06-06 Carlos Alberto Cortez <calberto.cortez@gmail.com>
10318 * Form.cs: Check that the value passed to Form.DialogResult
10319 is a valid enum value.
10321 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10323 * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
10324 Computer'. Clicking it in the network view goes to 'My Computer'.
10325 Added CIFS filesystem type. Display the mount point of filesystems.
10326 Avoid duplicate mount points (happens for me with CIFS);
10328 2006-06-06 Jackson Harper <jackson@ximian.com>
10330 * InternalWindowManager.cs: Draw the maximized windows buttons
10333 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10335 * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
10336 all other dialogs. Fixes bug #78585.
10338 2006-06-06 Mike Kestner <mkestner@novell.com>
10340 * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
10341 Only invalidate checkbox on checkstate changes to avoid flicker.
10342 * ListBox.cs : avoid unselect/select when clicking selected item.
10343 avoid reselection flicker for already multiselected items.
10346 2006-06-06 Jackson Harper <jackson@ximian.com>
10348 * MdiWindowManager.cs: When the window is closed do an NCRecalc on
10349 the parent form so that the menu is removed if needed.
10351 2006-06-06 Mike Kestner <mkestner@novell.com>
10353 * ListBox.cs : add ScrollWindow call to UpdateTopItem. fix
10354 Prev/Next/PrevPage/NextPage/Home/End index calculation. Fixes #78559.
10356 2006-06-06 Mike Kestner <mkestner@novell.com>
10358 * CheckedListBox.cs : rebuild check collection on Add. Fixes #78426.
10361 2006-06-06 Jackson Harper <jackson@ximian.com>
10363 * Control.cs: Use the property (instead of the field) to get the
10364 default cursor so it is instantiated correctly.
10365 * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
10366 resizes so we need to manually repaint the window decorations here.
10367 - Set the titlebar button locations as soon as they are created,
10368 otherwise they are not set correctly on win32.
10370 2006-06-06 Chris Toshok <toshok@ximian.com>
10372 * CurrencyManager.cs (set_Position): call PullData before
10374 (AddNew): after calling IBindingList.AddNew, update our
10375 listposition, and call OnCurrentChanged/OnPositionChanged (without
10377 (OnCurrentChanged): remove the call to PullData from here.
10378 (OnItemChanged): remove the call to PushData from here.
10379 (OnPositionChanged): change the test from == null to != null to
10380 match the other methods.
10381 (ListChangedHandler): the grossest part of the patch. Implement
10382 this such that it passes the unit tests in CurrencyManagerTest and
10383 the output more or less matches that of MS's implementation.
10385 2006-06-06 Mike Kestner <mkestner@novell.com>
10387 * ListView.cs : only update check state on single click.
10388 * ThemeWin32Classic.cs : fix focus drawing for details view without
10389 fullrowselect. Fixes #78454.
10390 * XplatUIX11.cs : fix for double click emission.
10392 2006-06-05 Jonathan Chambers <jonathan.chambers@ansys.com>
10394 * PropertyGridView.cs : Applied Atsushi's patch to fix
10395 font dialog bug (#78197).
10397 2006-06-05 Jackson Harper <jackson@ximian.com>
10399 * TreeNode.cs: Compute the next node for expanding/collapsing
10400 correctly. We now factor in nodes without a NextNode
10401 correctly. (Fixes somes cases in nunit-gui).
10402 * InternalWindowManager.cs: Set the bounds when updating the
10403 virtual position of a tool window.
10405 2006-06-05 Chris Toshok <toshok@ximian.com>
10407 * DataGrid.cs: rename cached_currencymgr to list_manager.
10408 (set_CurrentCell): move SetCurrentCell code here, and clean it up
10410 (CurrentRow, CurrentColumn): single accessors so we can make the
10411 cursor movement code a lot easier to understand.
10412 (CurrentRowIndex): implement this in terms of CurrentRow.
10413 (BeginEdit): clean this up a bit.
10414 (CancelEditing): sort out the is_editing/is_changing/is_adding
10416 (EndEdit): minor changes.
10417 (OnKeyDown): add a comment about a (most likely) unnecessary
10419 (OnMouseDown): cancel editing when we click on a row header. And
10420 use the CurrentRow setter, not CurrentCell.
10421 (ProcessDialogKey): directly call ProcessGridKey.
10422 (UpdateSelectionAfterCursorMove): factor out this common block of
10423 code (it's used everywhere that we move the cursor by updating row
10425 (ProcessGridKey): pretty substantial overhaul. Use the
10426 CurrentRow/CurrentColumn properties to make the code a lot more
10427 readable. Only use the CurrentCell property when we have to
10428 modify both row and column at once. Tab behavior is still broken,
10429 and Delete is untested.
10430 (Select): if we have no selected rows, set selection_start to
10432 (EditCurrentCell): rename EditCell this. It was only ever invoked
10433 with CurrentCell as the arg, so drop the arg and rename it.
10435 * DataGridColumnStyle.cs: clean up the constructors a little, and
10436 drop CommonConstructor().
10438 * DataGridTextBox.cs (.ctor): set accepts_return to true so we
10439 actually get notified when the user hits it.
10440 (ProcessKeyMessage): *substantially* simplify this method.
10441 There's no reason (that I can see) for the textbox to be making
10442 calls into the datagrid at all. Remove all of them but the ones
10443 for Enter handling. those will take some more work.
10445 * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
10446 calling HideEditBox.
10447 (HideEditBox): if we have an active textbox, render it invisible
10448 without causing a re-layout of the datagrid.
10450 2006-06-05 Mike Kestner <mkestner@novell.com>
10452 * ListView.cs : fix NRE crasher when focuseditem is cleared by
10453 collection changes by resetting it to Items[0]. Fixes #78587.
10455 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10457 * MessageBox.cs: if the height of the text is larger than the icon_size,
10458 use that. Fixes bug #78575.
10460 2006-06-05 Jackson Harper <jackson@ximian.com>
10462 * TreeView.cs: Fix line drawing when scrolling. To do this each
10463 node is basically responsible for drawing its entire horizontal
10464 area. When drawing a node it draws its parent node lines if
10466 - Adjust the clip area to the viewport rectangle
10467 - Fix Left/Right key handling to match MS. (It expand/collapses
10468 and moves to parents/first child but does not move selection to
10470 - Fix SetTop to work with new bound calculation code
10471 - When scrollbars are no longer needed we need to reset scrolling
10472 vars and recalculate the visible order so the redraw is correct
10473 * TreeNode.cs: We can't expand/collapse nodes with no children.
10475 2006-06-03 John Luke <john.luke@gmail.com>
10477 * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
10478 so the colors work without dev packages
10480 2006-06-02 Peter Dennis Bartok <pbartok@novell.com>
10483 - Select: Implemented to just use activate. Seems to match MS
10484 behaviour closest. Documented to only do actual control walking
10485 based on it's parameters if in a container control so I moved
10487 - Removed selection check logic from our internal Select() method
10488 * ContainerControl.cs:
10489 - Select: Moved selection logic from Control here, since MS documents
10490 that containers obey the bool arguments. No longer calling base
10492 2006-06-02 Jackson Harper <jackson@ximian.com>
10494 * TreeView.cs: If the selected node isn't changed when we get
10495 focus update the previously selected node so that we see the
10498 2006-06-02 Mike Kestner <mkestner@novell.com>
10500 * ComboBox.cs: restructure grab and general mouse event handling.
10501 Make the composite control raise mouse events like it was a single
10502 control for leaves/enters/motion/up/down events. fix dropdown list
10503 coordinate mangling and refactor it into the scrollbar subclass to
10504 reduce code duplication. Fixes #78282 #78361 and #78457.
10506 2006-06-02 Mike Kestner <mkestner@novell.com>
10508 * ScrollBar.cs: remove Capture setting/clearing, as it happens
10509 automatically in the Control.WndProc.
10511 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10513 * FileDialog.cs: fix crash when running SharpChess, which sets the
10514 FilterIndex to 2 with only one Filter.
10516 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10518 * ToolBar.cs: add SizeSpecified property.
10519 * ToolBarButton.cs: when the ButtonSize is calculated by the container,
10520 try to figure out our real size, otherwise fallback to what the
10523 2006-06-01 Peter Dennis Bartok <pbartok@novell.com>
10525 * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
10526 * Control.cs (WndProc): MS always calls the DefWndProc to pass
10529 2006-06-01 Mike Kestner <mkestner@novell.com>
10531 * ListView.cs: revamp the focus management in ListView. It still
10532 causes churn of LostFocus/GotFocus emissions on clicks, but it's
10533 better than not handling focus at all. Will revisit when pdb feels
10534 the general focus handling is solid. Fixes #78526.
10536 2006-06-01 Jackson Harper <jackson@ximian.com>
10538 * TreeView.cs: Set the default border style in the constructor.
10539 - Move painting to use OnPaintInternal instead of capturing
10540 WM_PAINT, this is the correct way of doing things
10541 - UpdateBelow shouldn't invalidate the scrollbar area
10542 - Cap the top on update below in case the node was above the top
10543 of the viewport rectangle.
10544 - ExpandBelow and Collapse below need to obey Begin/End Update.
10545 * TreeNode.cs: Make is_expanded internal so the treenode
10546 collection can change it without firing the whole event chain.
10547 * TreeNodeCollection.cs: When clearing all the child nodes make
10548 sure to recalc the visible order.
10549 - Improve algo for remove the top node
10551 2006-06-01 Peter Dennis Bartok <pbartok@novell.com>
10553 * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
10554 SendMessage directly calling window procedures, which in turn might
10557 2006-06-01 Peter Dennis Bartok <pbartok@novell.com>
10559 * Control.cs: Don't handle WM_SETFOCUS if the same window already
10560 has focus (works around X11 sending a FocusIn after our SetFocus)
10561 * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
10563 2006-06-01 Alexander Olk <alex.olk@googlemail.com>
10565 * Mime.cs: Fix for the NET_2_0 build.
10566 NameValueCollection needs StringComparer now.
10568 2006-05-31 Chris Toshok <toshok@ximian.com>
10570 * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
10571 return (via an out parameter) the starting X of the column.
10572 (UpdateVisibleColumn): track change to FromPixelToColumn.
10573 (HitTest): add a ColumnResize case here.
10574 (DrawResizeLine): new function, probably poorly named.
10576 * DataGrid.cs (.ctor): get rid of cached_currencymgr_events. We
10577 only need to keep one reference.
10578 (set_ListManager): same.
10579 (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
10580 Also, add support for HitTestType.ColumnResize.
10581 (OnMouseMove): add column resize behavior here, and change the
10582 cursor to the correct one as we move around the datagrid.
10583 (OnMouseUp): terminate the column resize if we're resizing.
10584 (ProcessGridKey): from the MS docs, Alt-0 enters the null value
10585 for the current cell.
10586 (ConnectListManagerEvents): use cached_currencymgr.
10587 (DisconnectListManagerEvents): fill this in, using
10588 cached_currencymgr.
10589 (SetCurrentCell): remove cached_currencymgr_events handling.
10590 (SetDataMember): only call DisconnectListManagerEvents if
10591 cached_currencymgr is != null.
10592 (SetDataSource): same.
10593 (OnListManagerCurrentChanged): cached_currencymgr_events ->
10594 cached_currencymgr.
10596 2006-05-31 Jackson Harper <jackson@ximian.com>
10598 * BindingManagerBase.cs: Remove somedebug code that creeped into
10600 * TreeNode.cs: We get the indent level dynamically right now, so
10601 don't track it as a member.
10602 * TreeNodeCollection.cs: Make sure all nodes added to the list
10603 have parents, treeviews/topnodes setup properly.
10604 - Don't attempt to track indent level.
10606 2006-05-30 Jackson Harper <jackson@ximian.com>
10608 * BindingContext.cs: Create the currency manager tables here.
10609 This allows us to more easily create null tables (when bad data
10610 members are used), and more easily create related currency
10612 * CurrencyManager.cs: All the table creation stuff is done by the
10613 binding context now.
10614 - Current should throw an exception if listposition is -1.
10615 - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
10618 2006-05-30 Mike Kestner <mkestner@novell.com>
10620 * ListView.cs: allow reexpansion of zero-width column headers.
10623 2006-05-28 Chris Toshok <toshok@ximian.com>
10625 * CurrencyManager.cs (get_Current): after the late binding
10626 listposition = -1 fix, we need to guard against it here and return
10627 null, otherwise we raise an exception (which is swallowed
10628 elsewhere, and breaks datagrid databinding.)
10630 2006-05-26 Peter Dennis Bartok <pbartok@novell.com>
10632 * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
10633 than WM_SYSKEY, don't throw if get something unexpected (#78507)
10635 2006-05-26 Jackson Harper <jackson@ximian.com>
10638 * ThemeWin32Classic.cs: For color comparisons just use the ARGB
10639 values, it's faster and it's all we care about (we don't care if
10640 the names aren't equal).
10641 * KeyboardLayouts.cs: Eliminate some dead code.
10643 * X11Keyboard.cs: Lazy init keyboard detection.
10644 - Cleanup access modifiers a little.
10646 2006-05-26 Peter Dennis Bartok <pbartok@novell.com>
10648 * XplatUIX11.cs: Once again, attempting to get layout just right.
10650 2006-05-26 Peter Dennis Bartok <pbartok@novell.com>
10652 * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
10653 the sizes of each link section, that will result in sizes that
10654 match DrawString's layout (Fixes #78391)
10656 2006-05-27 Alexander Olk <alex.olk@googlemail.com>
10658 * FileDialog.cs: If AddExtension property is true autocomplete the
10659 extensions in SaveFileDialog correctly. Fixes bug #78453.
10660 Set MyNetwork and MyComputer to "C:\" for windows. This should
10661 fix part 8 of bug #78446 for now.
10663 2006-05-26 Chris Toshok <toshok@ximian.com>
10665 * DataGrid.cs (ColumnStartedEditing): fill these in. for now just
10666 invalidate the current row header if we need to, but presumably
10667 we'll invalidate the row corrsponding to the bounds or
10669 (GridHScrolled): switch back to this method, as it's part of the
10670 public api. *sigh*.
10671 (GridVScrolled): same.
10672 (OnMouseWheel): hack up something that more or less works. Call
10673 GridHScrolled/GridVScrolled directly, instead of duplicating much
10674 of their code here.
10675 (EnsureCellVisibility): reinstate a bunch of this code, since we
10676 can't just set the scrollbar Value and expect to do all the work
10677 in the ValueChanged handler. Also, Call Update() after scrolling
10678 in one direction so the other XplatX11.ScrollWindow call has the
10679 proper stuff in the proper places.
10680 (EditCell): set is_editing to true before calling .Edit.
10682 * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
10683 don't bother comparing first.
10684 (OnKeyPress): call grid.ColumnStartedEditing before calling
10685 base.OnKeyPress. this will set is_changing and invalidate the row
10686 header if necessary.
10687 (ProcessKeyMessage): for WM_CHAR messages, call
10688 ProcessKeyEventArgs directly. swallow anything other than WM_CHAR
10691 * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
10692 it's done in the DataGrid.
10693 (NextState): call grid.ColumnStartedEditing, which takes care of
10694 invalidating the row header (and setting is_changing).
10696 * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
10697 here. it's done in the DataGrid.
10699 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10701 * Control.cs: allow changing the cursor when the mouse position is
10702 out of bounds but Capture is set.
10703 * LinkLabel.cs: handle the case when the mouse button is pressed on the
10704 linklabel but released somewhere else.
10706 2006-05-25 Jackson Harper <jackson@ximian.com>
10708 * TreeView.cs: When we get focus if there is no selected node make
10710 - Remove some uneeded setup code from Draw.
10711 * TreeNodeCollection.cs: If the tree doesn't have a top node when
10712 a new node is inserted make the new node the top.
10714 * Timer.cs: Use Utc time so that no local time zone stuff needs to
10715 be used (should be faster).
10717 2006-05-25 Chris Toshok <toshok@ximian.com>
10719 * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
10720 problem with the last commit.
10722 2006-05-25 Chris Toshok <toshok@ximian.com>
10724 * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
10725 need the invalidate call here, while scrolling right-to-left via
10726 the left arrow key (i.e. moving the editing cell while scrolling).
10728 * DataGrid.cs (.ctor): remove the initialization of
10729 ctrl_pressed/shift_pressed. We no longer track them using key
10730 up/down handlers, but by using Control.ModifierKeys. Also, switch
10731 to using ValueChanged handlers on the scrollbars instead of
10732 Scrolled event handlers. This simplifies a bunch of the scrolling
10734 (GridHValueChanged): rename from GridHScrolled, and change it to
10735 work with the new event args.
10736 (GridVValueChanged): same.
10737 (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
10738 (OnMouseWheel): actually scroll the datagrid. Don't change the
10740 (ProcessGridKey): correct all the keyboard navigation stuff I
10741 could find. Ctrl up/down/left/right/home/end work now.
10742 (EnsureCellVisibility): correct method name spelling. Also,
10743 simplify this a touch by not explicitly calling the
10744 ScrollToRow/ScrollToColumnInPixels methods. We just set the
10746 (OnKeyUpDG): no need for this method now.
10748 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10750 * LinkLabel.cs: display the OverrideCursor when hovering the label.
10753 2006-05-25 Chris Toshok <toshok@ximian.com>
10755 * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
10758 2006-05-25 Peter Dennis Bartok <pbartok@novell.com>
10760 * Application.cs: Moved setting of is_modal and closing to before
10761 we create the control, to allow the event handlers called as a
10762 result of creation affect closing. Also removed Gonzalo's previous
10763 change to setting DialogResult, the behaviour has been moved to
10766 - ShowDialog(): Removed explicit creation of the form, let RunLoop
10768 - ShowDialog(): If no dialog result is set, we need to return Cancel
10769 - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
10770 the close is cancelled
10772 2006-05-25 Jackson Harper <jackson@ximian.com>
10774 * StatusBar.cs: We only need to update the sizes of the other
10775 panels when we have auto size contents. Also we are only updating
10776 the contents of the panel, not the borders, so compensate for the
10777 border width (TODO: get this width from the theme somehow).
10778 * TreeView.cs: Scrollable is true by default
10779 - Use invalidate instead of refresh where needed
10780 - Factor the scrollable value into scrollbar updating
10781 - Update the scrollbars if the Scrollable property is altered
10782 - Update the selected node if its ImageIndex is changed
10783 - Handle null nodes in UpdateNode (mainly so we don't have to
10784 check if selected is null when updating it
10785 - Fix VisibleCount to use the ViewportRectangle so that scrollbars
10786 are factored into the visible count
10787 - Use VisibleCount for clarity in the code
10788 - When the font is changed we need to recurse through all the
10789 nodes and invalidate their sizes
10791 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10793 * Application.cs: set the DialogResult to fixed when the main form is
10794 hidden or destroyed while being modal.
10796 2006-05-25 Miguel de Icaza <miguel@novell.com>
10798 * Theme.cs: Use Tangoified messagebox icons.
10800 (GetSizedResourceImage): Also cope with width = 0 and do not
10801 trigger a warning in that case (0 means "give me your icon from
10802 the resouce, no special size needed).
10804 2006-05-25 Peter Dennis Bartok <pbartok@novell.com>
10806 * Application.cs: Leave runloop if the the main modal form is
10807 hidden (fixes #78484)
10809 2006-05-25 Atsushi Enomoto <atsushi@ximian.com>
10811 * BindingContext.cs : reject null datasource in Contains() and
10813 * CurrencyManager.cs : check data_member validity when data_source
10814 is dataset. When it is late binding, the initial position is -1.
10816 2006-05-24 Jackson Harper <jackson@ximian.com>
10818 * TreeNodeCollection.cs: Dont't recalculate the visible order on
10819 inserted nodes that aren't visible. This changes the
10820 max_visible_order which confuses scrollbar settings.
10821 - Use the enumerator to get the prev node instead of duplicating
10823 * TreeView.cs: Use new method for setting scrollbar values
10824 - Don't set the bounds every time the scrollbar is updated
10825 - When updating below the root node use an invalidate instead of a
10826 refresh to prevent the child controls (scrollbars) from being
10827 refreshed. (UpdateBelow still needs to be reworked anyways).
10828 - Reenable SetBottom now that visible orders are set correctly,
10829 added some debug code incase we ever get bad values there again.
10830 - Set the scrollbar max to 2 less then the max value, this
10831 compensates for the max value being one above the node count, and
10832 for scrollbars adding one extra "notch".
10833 - When drawing image nodes if there is an imagelist we draw the
10834 first image in the list if the supplied image index is out of the
10835 image list's bounds.
10837 2006-05-24 Peter Dennis Bartok <pbartok@novell.com>
10839 * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when
10840 we receive a size change from the WM (Fixes #78503)
10842 2006-05-24 Peter Dennis Bartok <pbartok@novell.com>
10844 * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip
10845 rectangle (Fixes #78501)
10847 2006-05-24 Peter Dennis Bartok <pbartok@novell.com>
10850 - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button
10852 - Fixed MouseMove to no longer switch pressed state unless the left
10853 mouse button is pressed. Atsushi provided the original patch (#78485)
10855 2006-05-24 Jackson Harper <jackson@ximian.com>
10857 * ScrollBar.cs: New internal methods that allow us to change a
10858 couple values on the scrollbar (the most common case is maximum
10859 and large change) without getting multiple invalidates.
10861 2006-05-24 Chris Toshok <toshok@ximian.com>
10863 * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
10864 (Edit): save off the original state in oldState, and set
10865 grid.is_editing to true.
10866 (OnKeyDown): abort editing if escape is pressed. also, call
10867 NextState if space is pressed.
10868 (OnMouseDown): call NextState.
10869 (NextState): factor out shared code from OnKeyDown and OnMouseDown
10870 here. Also, only invalidate the row header once (on the initial
10871 is_changing switch) to save on redraws.
10873 2006-05-24 Chris Toshok <toshok@ximian.com>
10875 * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
10876 if the value in the cell is different than it was before. This
10877 keeps us from triggering a layout when we move around a datarid
10878 with a highlighted cell.
10879 (Edit): suspend layout when creating/positining the text box, and
10880 resume passing false so we don't ever actually re-layout.
10881 (ReleaseHostedControl): same.
10882 (EnsureTextBox): reformat slightly, and set WordWrap to false.
10884 * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
10885 control-key sequences should go to the datagrid - remove that
10886 lock. Also, modify the conditions under which we move between
10887 cells when moving the cursor within a cell, and remove the "this"
10888 and "base" from field accesses. We weren't even consistent, given
10889 they all were in the base class.
10891 2006-05-24 Atsushi Enomoto <atsushi@ximian.com>
10893 * Binding.cs : (.ctor)
10894 An obvious NRE fix for BindingTest.CtorNullTest().
10896 2006-05-23 Chris Toshok <toshok@ximian.com>
10898 * TextBoxBase.cs (get_Text): don't add a trailing newline, add
10899 them between lines. This fixes some quirks editing cells in the
10902 2006-05-23 Jackson Harper <jackson@ximian.com>
10904 * TreeView.cs: Use begin/end update when doing expand/collapse all
10905 so that we don't get flicker on the scrollbar.
10907 2006-05-23 Jackson Harper <jackson@ximian.com>
10909 * TreeNode.cs: Bounds are computed 'on the fly' now. This allows
10910 treenode calculations to be independant of the painting code. To
10911 do this nodes track a visible order which is calculated by the
10913 - Call new methods for expanding/collapsing nodes. These methods
10914 use scrollwindow so we don't have to update everything below the
10916 * TreeView.cs: Refactored drawing and scrolling code. We don't
10917 need to update nodes when drawing anymore or calculate scrollbar
10919 - Added new methods for expanding/collapsing nodes. These methods
10920 use ScrollWindow so as to not have to redraw all the nodes below.
10921 * TreeNodeCollection.cs: Recalc visible order and scrollbars when
10922 we add/remove nodes or sort.
10923 - Handle removing the selected and the top node properly.
10925 2006-05-23 Chris Toshok <toshok@ximian.com>
10927 * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
10928 maybe this should actually happen in the datagrid code?
10929 (EndEdit): no need to invalidate anything, given that
10930 ReleaseHostedControl causes the datagrid to relayout, which
10931 invalidates everything anyway.
10933 * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
10934 in SetCurrentCell).
10935 (set_SelectionBackColor): call InvalidateSelection instead of
10937 (set_SelectionForeColor): same.
10938 (BeginEdit): Flesh this out a bit.
10939 (CancelEditing): only do any of this if we're editing/adding.
10941 (OnMouseDown): there's no need to cancel editing here, it's done
10943 (SetCurrentCell): only invalidate the current row header if it's a
10944 different row than the new one.
10945 (ShiftSelection): fix this to work like MS does.
10946 (ResetSelection): factor out the invalidation of selected_rows to
10947 InvalidateSelection.
10948 (SetDataSource): cancel any editing that's going on.
10950 * DataGridColumnStyle.cs
10951 (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
10952 call the non-interface version.
10954 * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
10955 header rectangle with the clip rectangle so we don't redraw the
10956 entire header for just a small area. Gets rid of the last flicker
10957 when horizontally scrolling.
10958 (DataGridPaintRow): same.
10960 2006-05-23 Mike Kestner <mkestner@novell.com>
10962 * ListViewItem.cs: remove size for line hack from LargeIcon layout.
10963 * ThemeWin32Classic.cs: don't draw line. it's really the top of a
10964 poorly placed checkbox on the MS control. Fixes Alex's unfiled
10965 Critical bug report.
10967 2006-05-23 Peter Dennis Bartok <pbartok@novell.com>
10969 * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
10970 and this fixes #78493
10972 2006-05-23 Miguel de Icaza <miguel@novell.com>
10974 * Theme.cs (GetSizedResourceImage): Scale images if the proper
10977 * FileDialog.cs: Do not change the background for the side bar as
10978 it wont work nicely with the theme, and also reduces the artifacts
10979 in rendering the icons (which I want to fix too).
10981 * MimeIcon.cs (ResourceImageLoader): Load images from assembly
10982 resources, not resgen resources.
10984 (PlatformDefaultHandler): Pull images using the new API.
10986 2006-05-23 Peter Dennis Bartok <pbartok@novell.com>
10988 * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
10989 a reference to the hwnd and will not remove it unless there are
10990 no pending exposures (fixes #78341)
10991 * XplatUI.cs: Improved debug
10993 2006-05-23 Atsushi Enomoto <atsushi@ximian.com>
10995 * MenuAPI.cs : don't handle OnClick event when it was not the left
10996 button. Fixed bug #78487.
10998 2006-05-23 Mike Kestner <mkestner@novell.com>
11000 * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
11001 prefer submenus to the top menu for item lookup, to avoid popping down
11004 2006-05-23 Alexander Olk <alex.olk@googlemail.com>
11006 * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
11007 Graphics.FillRectangle as the visual results are really bad (even
11008 on win). We now draw perfect arrows (and perfect shadows when the
11009 scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
11010 Pen.DashPattern to draw the dots of each line.
11012 2006-05-22 Alexander Olk <alex.olk@googlemail.com>
11014 * FileDialog.cs: Update the filename combobox when navigating through
11015 the ListView with the cursor keys. Fixes part 7 of bug #78446.
11017 2006-05-22 Mike Kestner <mkestner@novell.com>
11019 * ListView.cs: raise SelectedIndexChanged on keyboard selection.
11022 2006-05-22 Mike Kestner <mkestner@novell.com>
11024 * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
11025 requests. Fix a misspelled parameter and a copy paste exception error
11028 2006-05-22 Peter Dennis Bartok <pbartok@novell.com>
11030 * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
11031 to get the same width/height (5/13) on X11 as the default font has on
11032 win32. This means that our DefaultFont emSize is smaller than the
11033 the MS SWF equivalent (even thought the width/height stays the same)
11035 2006-05-20 Jackson Harper <jackson@ximian.com>
11038 * MdiWindowManager.cs:
11039 * InternalWindowManager.cs: Make sure to use the border width from
11042 2006-05-20 Jordi Mas i Hernandez <jordimash@gmail.com>
11044 * PrintDialog.cs: Implements printer details
11046 2006-05-19 Alexander Olk <alex.olk@googlemail.com>
11048 * FileDialog.cs: Added focus handling for PopupButtonPanel.
11049 Fixes part 1 and 2 of bug #78446
11051 2006-05-19 Peter Dennis Bartok <pbartok@novell.com>
11053 * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
11054 instead of sticking to the first ever calculated value
11056 2006-05-19 Mike Kestner <mkestner@novell.com>
11058 * ComboBox.cs: fix mouse motion selection to use MousePosition and
11059 PointToClient, since Capture is set. Fixes #78344.
11061 2006-05-19 Mike Kestner <mkestner@novell.com>
11063 * ListView.cs: match MS behavior in Details view where items are not
11064 drawn if Columns.Count == 0.
11065 * ThemeWin32Classic.cs: only highlight ListView selection if focused.
11066 Use a separate pen to draw the check, since changing the width affects
11067 the box as well. Fixes #78454.
11069 2006-05-18 Miguel de Icaza <miguel@novell.com>
11071 * ListView.cs: ArgumentOutOfRangeException, single versions of the
11072 exception should throw the name of the invalid argument.
11074 * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
11075 there are no files listed.
11077 2006-05-18 Jackson Harper <jackson@ximian.com>
11079 * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
11082 2006-05-18 Peter Dennis Bartok <pbartok@novell.com>
11084 * Control.cs: Brought back our old UpdateZOrder method as a private
11085 function and switched our calls from UpdateZOrder to the new one.
11086 This fixes the Paint.Net canvas disappearing bug.
11088 2006-05-18 Jackson Harper <jackson@ximian.com>
11091 * ThemeWin32Classic.cs:
11092 * InternalWindowManager.cs: Move the drawing into the theme,
11093 expose everything the theme should need from the window manager.
11095 2006-05-18 Peter Dennis Bartok <pbartok@novell.com>
11097 * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value
11098 from the call to NativeWindow to avoid walking up the parent chain
11099 further than needed (speeds up setting cursors and avoids setting
11100 the wrong cursor if a parent has another cursor defined)
11101 * Cursor.cs: When loading an icon as cursor, MS uses the center of
11102 the icon as hotspot, not what's contained as hotspot in the icon
11103 file. This fixes the perceived drawing offset seen with Paint.Net
11105 2006-05-18 Peter Dennis Bartok <pbartok@novell.com>
11108 - Store the calculated rectangle in Hwnd object and use it when
11109 setting the client size
11110 - Force Toolwindows to always be type Dock, to ensure they're on top
11112 2006-05-18 Mike Kestner <mkestner@novell.com>
11114 * ComboBox.cs: first pass at ComboBox rework. Layout is more
11115 consistent with MS positioning. IntegralHeight, ItemHeight, Sizing.
11116 Correctly initialize textcontrol and ListBox on DropDownStyle changes.
11117 Substantial refactoring to remove confusing nested classes. Coding
11118 standard and Get+Set->property refactorings. Shift to index based
11119 highlighting in ComboListBox instead of constantly using IndexOf and
11120 Items[]. Add invalidations on resize for DropDownList to fix ugliness
11121 in FileDialog growth. Draw borders manually since Simple mode needs
11122 to look like two independent controls. Make listbox border
11123 conditional to DropDownStyle. Improved OwnerDraw support.
11125 2006-05-18 Sebastien Pouliot <sebastien@ximian.com>
11127 * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor.
11128 Don't set the disposed graphics to null, so we can throw the "right"
11129 exception if the graphics is reused later (added a flag to avoid
11130 double disposing). Some behaviours are different under 2.0 and are
11131 filled under bug #78448.
11133 2006-05-18 Peter Dennis Bartok <pbartok@novell.com>
11135 * Control.cs: When double-buffering is enabled, we need to reset
11136 our graphics context between paint calls. Otherwise, any
11137 transformations and other alterations on the context will
11138 become cumulative (#77734)
11140 2006-05-18 Mike Kestner <mkestner@novell.com>
11142 * ListView.cs: do focused item selection like MS on clicks.
11143 Rework focus handling for ItemControl so LostFocus invalidates as
11145 * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
11146 the ListView ItemControl has focus.
11148 2006-05-17 Peter Dennis Bartok <pbartok@novell.com>
11150 * XplatUIX11.cs: If client_window ends up being width or height zero
11151 due to border settings, move it off window inside whole_window (#78433)
11153 2006-05-17 Alexander Olk <alex.olk@googlemail.com>
11155 * Mime.cs: Shrink the mime file cache correctly.
11157 2006-05-17 Alexander Olk <alex.olk@googlemail.com>
11159 * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
11161 2006-05-16 Peter Dennis Bartok <pbartok@novell.com>
11163 * XplatUIX11.cs (AddExpose): More sanity checks
11165 2006-05-16 Peter Dennis Bartok <pbartok@novell.com>
11168 - AddExpose: Don't add expose ranges outside the size of our
11170 - Cast opacity values to Int32 to avoid crashes with certain
11172 - Added disabled code paths that protect against illegal cross-
11173 thread painting (Developers.exe)
11175 2006-05-16 Peter Dennis Bartok <pbartok@novell.com>
11177 * ProgressBar.cs: Invalidate the control when it's resized
11178 since block size is based on control size. (#78388)
11180 2006-05-16 Miguel de Icaza <miguel@novell.com>
11182 * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
11183 of setting the incoming argument to the "reset" value, we set the
11184 this.datamember to string.empty (before we were invalidating the
11189 2006-05-16 Peter Dennis Bartok <pbartok@novell.com>
11191 * Form.cs: Only apply transparency settings after the form
11192 is created. (Fixes #77800)
11194 2006-05-16 Peter Dennis Bartok <pbartok@novell.com>
11196 * ApplicationContext.cs: Grab the HandleDestroyed event so
11197 we know when to fire OnMainFormClosed
11199 2006-05-16 Peter Dennis Bartok <pbartok@novell.com>
11201 * Application.cs: Introduced sub-class to allow tracking of
11202 threads and centralized triggering of the event mess for
11203 ThreadExit, AppExit, etc.. (#76156)
11205 2006-05-16 Alexander Olk <alex.olk@googlemail.com>
11208 - Do not return a null icon index value for a mime subclass.
11209 Instead try the main mime type class too.
11210 - Seems that some newer distributions don't have a link to some
11211 gnome default icons anymore. So check the default gnome dir too.
11214 2006-05-16 Jackson Harper <jackson@ximian.com>
11216 * MdiClient.cs: Don't paint the parent background image if we have
11217 our own background image.
11219 2006-05-16 Peter Dennis Bartok <pbartok@novell.com>
11222 - PerformLayout: Do not shrink space filled by DockStyle.Fill
11223 controls, all filled controls are supposed to overlap (#78080)
11224 - UpdateZOrder is supposed to update the control's z-order in the
11225 parent's z-order chain. Fixed to behave like that
11226 - BringToFront: Removed obsolete code
11227 - SendToBack: Simplyfied
11228 - SetChildIndex: Trigger layout calculations when Z-order changes
11229 since layout is done by z-order
11231 2006-05-16 Chris Toshok <toshok@ximian.com>
11233 [ fixes bug #78410 ]
11234 * DataGrid.cs (set_AlternatingBackColor): use
11235 grid_drawing.InvalidateCells instead of Refresh().
11236 (set_BackColor): call grid_drawing.InvalidateCells.
11237 (set_BackgroundColor): use Invalidate instead of Refresh.
11239 * DataGridDrawingLogic.cs (InvalidateCells): new function, just
11240 invalidate the cell area.
11242 2006-05-15 Chris Toshok <toshok@ximian.com>
11244 [ fixes bug #78011 ]
11245 * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
11246 on to DataGridPaintRow.
11247 (DataGridPaintRow): take a clip argument, and only draw the cells
11248 which intersect it. same with the not_usedarea.
11250 * Theme.cs (DataGridPaintRow) add @clip parameter.
11252 * DataGrid.cs (ScrollToColumnInPixels): simplify, use
11253 XplatUI.ScrollWindow.
11254 (ScrollToRow): same.
11256 * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
11257 with last column which was causing a gray swath to appear with the
11258 XplatUI.ScrollWindow code.
11260 2006-05-15 Chris Toshok <toshok@ximian.com>
11262 * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
11263 use XplatUI.ScrollWindow.
11264 (VerticalScrollEvent): use XplatUI.ScrollWindow.
11266 2006-05-15 Peter Dennis Bartok <pbartok@novell.com>
11268 * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
11270 2006-05-15 Peter Dennis Bartok <pbartok@novell.com>
11272 * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
11273 file since there are no equivalent X11 cursors
11275 2006-05-15 Atsushi Enomoto <atsushi@ximian.com>
11277 * MonthCalendar.cs : DateTimePicker should reflect selected date
11278 on mouse*up*, not mouse*down*. Fixed originally reported part of
11281 2006-05-15 Atsushi Enomoto <atsushi@ximian.com>
11283 * TabControl.cs : When argument index is equal or more than tab
11284 count, just ignore. Fixed bug #78395.
11286 2006-05-15 Peter Dennis Bartok <pbartok@novell.com>
11288 * Control.cs: Dispose all child controls when control is diposed (#78394)
11290 2006-05-14 Alexander Olk <alex.olk@googlemail.com>
11292 * ColorDialog.cs: Finally it is possible to select the color with
11295 2006-05-14 Alexander Olk <alex.olk@googlemail.com>
11297 * PrintDialog.cs: Fix typo
11299 2006-05-14 Alexander Olk <alex.olk@googlemail.com>
11301 * PrintDialog.cs: PrintDialog is not resizable
11302 * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
11303 color. Made some ToolBar drawing methods protected virtual.
11305 2006-05-13 Jordi Mas i Hernandez <jordimash@gmail.com>
11307 * PrintDialog.cs: Implementation of the PrintDialog
11309 2006-05-12 Chris Toshok <toshok@ximian.com>
11311 * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
11312 thumb, instead use MoveThumb. This has the side effect of making
11313 most of the other thumb moving machinery use MoveThumb as well.
11314 (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
11315 need to actually invalidate the rectangle where the new thumb will
11317 (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
11318 We force an Update() after, so it's not as fast as it could be,
11319 but at least there's zero flicker and no droppings.
11320 (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
11321 (UpdateThumbPos): add another argument (dirty), which says whether
11322 or not to calculate/add dirty regions which we later invalidate.
11323 For cases where we know we're going to use MoveThumb, we pass
11324 false for this. Otherwise, pass true.
11326 2006-05-12 Jackson Harper <jackson@ximian.com>
11328 * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
11331 2006-05-12 Peter Dennis Bartok <pbartok@novell.com>
11333 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
11334 and GetClipRegion methods and UserClipWontExposeParent property.
11335 * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
11336 overriding UserClipWontExposeParent property, setting to false, since
11337 Win32 handles the required expose messages to draw our clipped parent
11339 * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
11340 PaintEventStart to set the user clip region if set.
11342 - Now internally tracking the Region for the control since we need to
11343 store it if the handle is not yet created and only set it when it
11344 becomes created. Before setting the region forced handle creation
11345 - Added code to draw the parents underneath a user-clipped region
11346 * Hwnd.cs: Added UserClip property
11348 2006-05-12 Chris Toshok <toshok@ximian.com>
11350 * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
11351 (set_Maximum): same.
11352 (set_Minimum): same.
11353 (set_SmallChange): same.
11354 (OnMouseUpSB): remove the call to refresh when releasing the
11355 thumb. We shouldn't need it.
11357 2006-05-12 Miguel de Icaza <miguel@novell.com>
11359 * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
11360 AutoSize set to None, we do not need to relayout everything, we
11361 just need to invalidate the current region.
11363 (Draw): Do not draw the entire ClientArea, just redraw the
11364 clip area being passed.
11366 * MdiClient.cs: Make MdiClient constructor with the Form argument
11369 2006-05-12 Jackson Harper <jackson@ximian.com>
11371 * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
11372 parents background image, but strangely not their own.
11373 - (DrawStatusBarPanel): Take into account horizontal alignment
11374 when drawing the strings and icons.
11376 2006-05-12 Mike Kestner <mkestner@novell.com>
11378 * ListBox.cs: avoid invalidations for focus when the collection is
11381 2006-05-12 Chris Toshok <toshok@ximian.com>
11383 * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
11384 invalidate the entire thumb area. Call InvalidateDirty which
11385 limits the redraw to the thumb itself and surrounding pixels.
11387 * XplatUIX11.cs (ScrollWindow): optimize copying.
11389 2006-05-12 Chris Toshok <toshok@ximian.com>
11391 * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
11392 Figure out the positioning/layout in a single pass instead of
11393 multiple recursive invocations. Speeds up the initial display of
11394 the data grid. Also, make many things private that were
11395 originally public but unused outside this class.
11397 2006-05-11 Jackson Harper <jackson@ximian.com>
11399 * MdiClient.cs: Improved layout code.
11401 2006-05-11 Jonathan Chambers <jonathan.chambers@ansys.com>
11403 * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
11404 not SelectedObject.
11406 2006-05-11 Chris Toshok <toshok@ximian.com>
11408 * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
11409 union of that will always be {0,0,width,height}.
11411 2006-05-11 Jackson Harper <jackson@ximian.com>
11413 * Form.cs: Match MS's DefaultSize for forms (they must have
11414 changed the size in sp2).
11416 2006-05-11 Atsushi Enomoto <atsushi@ximian.com>
11418 * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
11420 2006-05-11 Atsushi Enomoto <atsushi@ximian.com>
11422 * TextControl.cs : Fixed bug #78109. This incorrect position
11423 comparison caused crash on automatic line split.
11424 * TextBoxBase.cs : reduce duplicate code.
11426 2006-05-10 Jackson Harper <jackson@ximian.com>
11428 * MdiClient.cs: Active form is only sent to the back when using
11429 the Next form functionality, when a form is clicked the current
11430 active shouldn't be sent to the back.
11431 - Layout the mdi windows when the container is first made visible.
11432 * Form.cs: Give the MdiClient a ref to the containing form when we
11435 2006-05-10 Atsushi Enomoto <atsushi@ximian.com>
11437 * LinkLabel.cs : link_font could be uninitialized, so populate one
11438 before actual use. Fixed bug #78340.
11440 2006-05-10 Atsushi Enomoto <atsushi@ximian.com>
11442 * XplatUIX11.cs : clipboard format native value is IntPtr.
11445 2006-05-10 Peter Dennis Bartok <pbartok@novell.com>
11448 - Instead of showing context menus directly we send WM_CONTEXTMENU,
11449 which is passed up the parent chain by DefWndProc
11450 - We now handle WM_CONTEXTMENU to display any menu, or pass it
11451 to DefWndProc (#77956)
11452 * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
11454 2006-05-10 Jackson Harper <jackson@ximian.com>
11456 * MdiClient.cs: We need to remove the controls from the mdi
11457 collection, when we close the window.
11458 * MdiWindowManager.cs: Special handling of closing mdi windows.
11459 * InternalWindowManager.cs: Make the close method virtual so the
11460 mdi window manager can handle it specially.
11462 2006-05-10 Jordi Mas i Hernandez <jordimash@gmail.com>
11465 - Recalculate grid when the data source has changed
11466 - Matches styles provided by user from all data sources types
11467 * DataGridTableStyle.cs: For columns that provided by the user set the
11468 with the preferred value is there was unassigned.
11469 * CurrencyManager.cs: throw OnItemChanged event
11471 2006-05-10 Peter Dennis Bartok <pbartok@novell.com>
11473 * PictureBox.cs: Don't animate until handle is created. Start animation
11474 when handle is created.
11476 2006-05-10 Peter Dennis Bartok <pbartok@novell.com>
11478 * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
11480 * XEventQueue.cs: We don't need to provide the extra info
11482 2006-05-10 Jackson Harper <jackson@ximian.com>
11484 * MdiClient.cs: If the mdi clients parent form has a background
11485 image set, we draw that background image for the mdi area's
11488 2006-05-10 Peter Dennis Bartok <pbartok@novell.com>
11490 * TextBoxBase.cs: Set IBeam cursor (#78347)
11492 2006-05-10 Mike Kestner <mkestner@novell.com>
11494 * ToolBar.cs: fix some text padding issues with ButtonSize
11495 calculation. Update the default size to match MS documentation.
11496 * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
11497 button size. Fixes #78296.
11499 2006-05-10 Mike Kestner <mkestner@novell.com>
11501 * ListBox.cs: use is_visible for scrollbar positioning in case the
11502 control isn't on screen yet. Fix off by one with Right vs Width
11503 usage. Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
11505 2006-05-10 Jackson Harper <jackson@ximian.com>
11507 * X11Dnd.cs: Drop to a control with another control on top of it.
11508 * ToolBar.cs: Work on a copy of the buttons list, so that it can
11509 be modified in click handlers. TODO: Look for similar problems in
11512 2006-05-09 Jackson Harper <jackson@ximian.com>
11514 * Form.cs: Window managers need the old window state when setting
11516 * InternalWindowManager.cs: Allow the base mdi window manager to
11517 handle more of the MDI only stuff (like maximize buttons).
11518 * MdiWindowManager.cs: Fix some snafus in changing the window
11519 state. Add all the menu functionality, for both popup and
11521 * MdiClient.cs: When a new form is selected the currently
11522 activated form is sent to the back, this matches MS.
11523 - Implement a new method to activate the next mdi child window.
11525 2006-05-08 Peter Dennis Bartok <pbartok@novell.com>
11528 - Added new InternalCapture method to allow controls to prevent
11529 the capture behaviour on the click handlers
11530 - Switched to use InternalCapture
11532 - Using InternalCapture to prevent mouse captures from being released
11533 on mouse button release (Fixes #78100)
11534 * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
11535 returns Form borders if a caption is present. (Fixes #78310)
11537 2006-05-08 Peter Dennis Bartok <pbartok@novell.com>
11539 * TreeNode.cs: Changed serialization .ctor to not require every field
11540 to be present. (#78265)
11541 * OwnerDrawPropertyBag.cs: Added serialization .ctor
11543 2006-05-05 Alexander Olk <alex.olk@googlemail.com>
11545 * MimeIcon.cs: for is faster than foreach for strings.
11547 2006-05-05 Mike Kestner <mkestner@novell.com>
11549 * CheckedListBox.cs: update check handling code to not use selected.
11550 * ListBox.cs: rewrite of mouse selection handling to correspond to MS
11551 behavior for visual feedback, motion response, shift/ctrl handling,
11552 and properly deal with all 4 selection modes. Updates to bounds
11553 handling logic. Add scroll wheel support. [Fixes #77842]
11555 2006-05-05 Peter Dennis Bartok <pbartok@novell.com>
11558 - Moved adding of Implicit controls into .ctor. That way, subsequent
11559 creation of the controls will not cause them to think they are
11560 toplevel windows (fixes #78200 header problem)
11561 - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
11562 - Switched visibility setting of header control to use internal field
11563 to avoid triggering handle creation
11564 - Now checking if handle is created before causing a refresh when items
11565 are added (This makes us now match handle creation time with MS)
11566 * Splitter.cs: Removed loading of private splitter cursor, switched to
11567 Cursors version now that that is loading the right ones
11568 * Cursors.cs: Load proper splitter cursors from resources
11569 * Cursor.cs: Added second method of loading resource cursors for the
11570 VS.Net users amongst us
11572 2006-05-05 Mike Kestner <mkestner@novell.com>
11574 * ListView.cs: give header_control a minimum size based on the
11577 2006-05-05 Peter Dennis Bartok <pbartok@novell.com>
11579 * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
11580 window seems to do that with metacity, so set that type. (#78120)
11582 2006-05-05 Mike Kestner <mkestner@novell.com>
11584 * ListViewItem.cs: fix Details mode checkbox layout bug.
11585 * ThemeWin32Classic.cs: draw a ListView column header for unused space
11586 at the end of the header, if it exists. [Fixes for #78200]
11588 2006-05-04 Jackson Harper <jackson@ximian.com>
11590 * MdiClient.cs: Add a helper property to get the container form.
11591 * MdiWindowManager.cs: We have to make sure to use the menu origin
11592 when drawing the icons and buttons, this fixes maximized window
11593 icons/buttons on win32.
11594 * InternalWindowManager.cs: Reset the restore captions when a
11595 window goes from Maximized to Minimized and vice versa. Move the
11596 DrawMaximizedButtons into the MdiWindowManager source, tool
11597 windows can't be maximized. NOTE: This could use a little
11598 refactoring if time ever permits.
11600 2006-05-03 Jonathan Chambers <jonathan.chambers@ansys.com>
11602 * TextBox.cs: Add MWFCategoryAttributes
11603 * TextBoxBase.cs: Add MWFCategoryAttributes
11604 * Form.cs: Add MWFCategoryAttributes
11606 2006-05-03 Jonathan Chambers <jonathan.chambers@ansys.com>
11608 * Control.cs: Add MWFCategoryAttributes
11609 * ScrollableControl.cs: Add MWFCategoryAttributes
11611 2006-05-03 Alexander Olk <alex.olk@googlemail.com>
11613 * ThemeWin32Classic.cs: Draw the ToolBar top border only if
11614 Divider is true. Fix a little glitch in PropertyToolBar
11617 2006-05-02 Peter Dennis Bartok <pbartok@novell.com>
11620 - Dispose: Call base.Dispose, this causes the disposed event
11621 to be fired (and probably other, more important stuff)
11622 - SetVisibleCore: Set is_visible to true after creating the
11623 window so that the window still gets created invisible (if
11624 WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
11625 to generate a WM_ACTIVE message
11626 * Form.cs: Call Dispose when we want to destroy the window, instead of
11627 just destroying the handle (Dispose will do that for us)
11629 - RootWindow also needs a queue, so we can properly process the
11630 property change events from RootWindow (like Activate)
11631 - Generatic synthetic WM_ACTIVE message when the active window is
11634 2006-05-01 Peter Dennis Bartok <pbartok@novell.com>
11636 * LinkLabel.cs: Trigger a recalc of our label dimensions when
11639 2006-05-01 Peter Dennis Bartok <pbartok@novell.com>
11641 * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
11642 for determining width and height (image might not be assigned if
11643 we're drawing an imagelist)
11645 2006-05-01 Peter Dennis Bartok <pbartok@novell.com>
11647 * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
11648 * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
11650 * Theme.cs: No longer returns hardcoded menu height, instead calls
11652 * Form.cs (OnLoad): Scaling happens before triggering Load events
11655 2006-05-01 Mike Kestner <mkestner@novell.com>
11657 * MenuItem.cs: fix NRE for text == null. Fixes #78250.
11659 2006-04-30 Peter Dennis Bartok <pbartok@novell.com>
11661 * TextBoxBase.cs: Removed Fixme
11662 * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
11664 2006-04-30 Peter Dennis Bartok <pbartok@novell.com>
11667 - ScrollWindow: We were passing hwnd.ClientRectangle which returns
11668 the rectangle relative to the parent, considering borders. We
11669 don't really want that.
11670 - ScrollWindow: Fixed warning to be more understandable
11671 * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
11672 scrollbars and scroll only the visible area
11673 * RichTextBox.cs: Removed debug output
11675 2006-04-29 Peter Dennis Bartok <pbartok@novell.com>
11677 * NumericUpDown.cs (Text): Just use base
11678 * UpDownBase.cs: Ensure txtView is created before using it
11680 2006-04-29 Peter Dennis Bartok <pbartok@novell.com>
11682 * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
11683 casting to IntPtr to avoid 64bit overflow errors
11685 2006-04-29 Peter Dennis Bartok <pbartok@novell.com>
11688 - AllowDrop: Don't force handle creation.
11689 - CreateHandle: Added call to tell driver if we're allowed to drop
11691 2006-04-27 Alexander Olk <alex.olk@googlemail.com>
11693 * FileDialog.cs: Remember the last directory not only for the
11694 current instance but also for new FileDialog instances.
11696 2006-04-29 Peter Dennis Bartok <pbartok@novell.com>
11698 * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
11699 broke sending async messages
11701 2006-04-29 Peter Dennis Bartok <pbartok@novell.com>
11704 - ScrollWindow: Fixed method. We finally generate expose events again
11705 for scrolled areas. This was causing 'garbage' when scrolling
11706 textbox and other controls that used ScrollWindow
11707 - Switched from using the regular queue for paint events to the MS
11708 model of 'generating' paint events when the queue is empty.
11709 We use the new XQueueEvent.Paint subclass to store which windows
11711 - AddExpose now takes the x/y/width/height of the exposed area
11712 and inserts the window into the paint queue if not already there
11713 - InvalidateWholeWindow: Switched to use new AddExpose method
11714 - UpdateMessageQueue: Added which queue to monitor for paint events
11715 - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
11716 the unlikely case nothing above handles it. We reset the expose
11717 pending states to get them off the queue.
11718 - GetMessage: Now pulls a paint event if no other events are in the
11720 - Invalidate: Switched to new AddExpose method
11721 - PeekMessage: Updated to understand pending paint events
11722 - UpdateWindow: Fixed logic bug. We were only updating if the window
11723 didn't need updating. Also switched to sending WM_PAINT directly,
11725 * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
11726 and random access Remove(). The random access is needed to handle
11727 UpdateWindow() where a WM_PAINT is sent directly without accessing
11729 * ScrollBar.cs: Added Update() calls to cause immediate updates to
11730 allow for better feedback when scrolling. Scrollbars are small and
11731 the immediate update should make it 'feel' more responsive without
11732 slowing things down. ScrollBar still needs it's invaliate logic
11733 updated to not always invalidate the whole bar on certain changes.
11735 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11738 (BackColor): if the control does not support a transparent background,
11739 return the default backcolor when the parent backcolor is transparent.
11741 2006-04-28 Peter Dennis Bartok <pbartok@novell.com>
11743 * Application.cs: Updated to new StartLoop/GetMessage API
11744 * RichTextBox.cs: Provide some output on RTF parsing errors
11745 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
11746 new queue_id argument to GetMessage and PeekMessage to allow faster
11747 handling of per-thread queues in drivers.
11748 * Hwnd.cs: Added Queue tracking and property
11749 * MenuAPI.cs: Updated to new StartLoop/GetMessage API
11750 * XEventQueue.cs: Added thread trackingA
11751 * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
11753 - Implemented new per-thread queue
11754 - GetMessage: Fixed return/break behaviour on several cases. We were
11755 returning stale messages in some cases, instead of just processing
11758 2006-04-27 Jonathan Chambers <jonathan.chambers@ansys.com>
11760 * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
11762 2006-04-27 Peter Dennis Bartok <pbartok@novell.com>
11764 * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
11765 fixed off-by-one comparisons between Width/Height and Right/Bottom.
11767 2006-04-27 Jonathan Chambers <jonathan.chambers@ansys.com>
11769 * PropertyGridView.cs: Fix drop down width.
11771 2006-04-27 Alexander Olk <alex.olk@googlemail.com>
11773 * ThemeWin32Classic.cs: Peter thinks that three additional lines are
11774 a mess in DrawToolBar, so I removed one of them.
11776 2006-04-27 Alexander Olk <alex.olk@googlemail.com>
11778 * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
11779 needed (clip). Otherwise we get artifacts.
11781 2006-04-26 Peter Dennis Bartok <pbartok@novell.com>
11783 * FixedSizeTextBox.cs: Added constructor to allow specifying which
11785 * UpDownBase.cs: Set the spinner control to be fixed height vertical,
11786 and switched FixedSizeTextBox to only be fixed vertical (#78116)
11787 * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
11788 if it matches the scale base font (avoids unneeded scaling)
11790 2006-04-26 Alexander Olk <alex.olk@googlemail.com>
11792 * X11DesktopColors.cs: One gtk_init_check should be enough
11794 2006-04-26 Peter Dennis Bartok <pbartok@novell.com>
11796 * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
11799 2006-04-26 Peter Dennis Bartok <pbartok@novell.com>
11802 - Generate OnTextChanged for Backspace even if we're only deleting
11803 the current selection
11804 - When setting the Text property, only select all text if the
11805 control does not have focus when it is being set. Otherwise
11806 just place the cursor at the beginning of the control
11808 2006-04-26 Alexander Olk <alex.olk@googlemail.com>
11810 * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
11811 Added a little helper to draw PropertyGrid ToolBar with a different
11812 border and a different BackColor.
11813 * PropertyGrid.cs: Some background parts didn't get painted with the
11814 correct background color. Added a class that helps us to draw the
11815 correct border for PropertyGridView and a class that helps us to
11816 draw ToolBars with a different backcolor
11817 * PropertyGridView.cs: Draw PlusMinus with the correct colors.
11819 2006-04-25 Jonathan Chambers <jonathan.chambers@ansys.com>
11821 * PropertyGrid.cs: Bug 78196, font size, and splitter location.
11822 * PropertyGridView.cs: Bug 78196, font size, and splitter location.
11824 2006-04-25 Peter Dennis Bartok <pbartok@novell.com>
11826 * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
11827 into the palette entries. Also, since we're working on a copy
11828 we needed to copy the palette back onto the bitmap.
11829 * Cursor.cs: Same fix as XplatUIWin32.cs.
11831 2006-04-25 Peter Dennis Bartok <pbartok@novell.com>
11833 * ImageListStreamer.cs: Need to read the var (or we're off)
11835 2006-04-25 Peter Dennis Bartok <pbartok@novell.com>
11837 * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs,
11838 XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
11839 TextBoxBase.cs: Unused var fixes
11840 * AxHost.cs: Small 2.0 fix
11841 * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms
11842 as it seems that is what at least Metacity expects. This will make
11843 icons show up on 64bit platforms. We still have some 64bit size
11844 issues, though, since the startup app window size still won't match.
11846 2006-04-25 Mike Kestner <mkestner@novell.com>
11848 * *.cs: cleanup newly reported exception var unused warnings.
11850 2006-04-25 Alexander Olk <alex.olk@googlemail.com>
11852 * ThemeWin32Classic.cs: Button image alignment now matches exactly
11855 2006-04-25 Alexander Olk <alex.olk@googlemail.com>
11857 * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
11858 image. The image position is always the same, no matter if the
11859 button is pressed or not.
11861 2006-04-25 Alexander Olk <alex.olk@googlemail.com>
11863 * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
11864 selection and set the correct filename for SaveFileDialog.
11865 Patch by Emery Conrad.
11867 2006-04-24 Mike Kestner <mkestner@novell.com>
11869 * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
11870 check for item.X outside the ClientRect instead of item.Y. Fixes
11873 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11875 * ImageListStreamer.cs: some images store a wrong grow factor, so don't
11876 trust that value blindly and do some sanity check. Fixes bug #77814.
11878 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11880 * ImageListStreamer.cs: save the mask as a 1bpp image.
11882 2006-04-21 Mike Kestner <mkestner@novell.com>
11884 * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
11885 pass Checked and Indeterminate to the Theme Engine. Improve
11886 encapsulation with ListBox.
11887 * ListBox.cs: Keep a StringFormat instead of calculating it every item
11888 draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
11889 nested types. Move all CheckState functionality to CheckedListBox.
11890 Make IntegralHeight work like MS. Rewrite of Layout engine. Fix
11891 OwnerDrawVariable layout/rendering. Fix multicolumn rendering. Fix
11892 ScrollAlwaysVisible handling. Refactor "selected" collections to use a
11893 single base list. Fix scrollbar sizing and placement to mirror MS.
11894 * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
11896 * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
11897 for CheckedListBox by using new DrawItemState info. Center the
11898 checkboxes on the items. Use new StringFormat property.
11900 2006-04-18 Jackson Harper <jackson@ximian.com>
11902 * Form.cs: MdiChildren don't do default locations the same way as
11903 regular forms. This prevents a crash when trying to position the
11906 2006-04-17 Jonathan Chambers <jonathan.chambers@ansys.com>
11908 * PropertyGridTextBox.cs: Formatting, copyright
11909 * PropertiesTab.cs: Formatting
11910 * PropertyGrid.cs: Formatting
11911 * PropertyGridView.cs: Formatting, fix drop down, enabled double
11912 click toggling of values
11914 2006-04-17 Peter Dennis Bartok <pbartok@novell.com>
11916 * KeyPressEventArgs: Added 2.0 only setter for KeyChar
11917 * Control.cs (.ctor): verify_thread_handle is static, don't reset
11918 every time a control is created
11919 * Application.cs: Removed obsolete EnableRTLMirroring method
11921 2006-04-18 Gert Driesen <drieseng@users.sourceforge.net>
11923 * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
11924 SelectedIndex to -1. Fixes bug #78121.
11926 2006-04-17 Jackson Harper <jackson@ximian.com>
11928 * Binding.cs: Handle null values for Current and BindingContext.
11929 This occurs when binding is a little delayed.
11930 * CurrencyManager.cs: return null for Current when there are no
11932 - Hookup to the listchanged event on the DataView and update
11933 bindings when the list is changed. This fixes late binding of
11936 2006-04-17 Jackson Harper <jackson@ximian.com>
11939 * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
11942 2006-04-15 Alexander Olk <alex.olk@googlemail.com>
11944 * ThemeWin32Classic.cs: Draw disabled combo button in the correct
11946 * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
11947 with the correct ButtonState
11949 2006-04-14 Peter Dennis Bartok <pbartok@novell.com>
11951 * XplatUIX11.cs: Improved distinguishing between window types to
11952 tell the WM a type closer to what the app wants (Fixes #78107)
11954 2006-04-14 Alexander Olk <alex.olk@googlemail.com>
11956 * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
11959 2006-04-14 Alexander Olk <alex.olk@googlemail.com>
11961 * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
11962 drawing code to reflect the size grip changes
11964 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11966 * ImageListStreamer.cs: fix handling of the mask that follows the main
11967 bitmap when deserializing and serialize it properly. The generated mask
11968 should better be a 1bpp image, but I'll do that later.
11970 2006-04-13 Alexander Olk <alex.olk@googlemail.com>
11972 * FileDialog.cs: Show something in the DirComboBox on *nix if the
11973 path doesn't fit into some of our Current.Places
11975 2006-04-13 Jackson Harper <jackson@ximian.com>
11977 * ComboBox.cs: Use borders instead of drawing our own decorations,
11978 try to obey correct rules for heights.
11981 * ThemeClearLooks.cs:
11982 * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
11983 this is now handled by borders.
11984 - Remove unused DrawListBoxDecorationSize method.
11986 2006-04-13 Mike Kestner <mkestner@novell.com>
11988 * MenuAPI.cs: null guarding for the disbled click check fixes crash
11991 2006-04-13 Alexander Olk <alex.olk@googlemail.com>
11993 * ThemeWin32Classic.cs:
11994 - Fixed CPDrawStringDisabled
11995 - Corrected drawing of disabled menu items
11996 - Fixed drawing of disabled radio buttons (bug #78095)
11997 - Draw check in a disabled CheckBox with color ControlDark
11999 2006-04-12 Peter Dennis Bartok <pbartok@novell.com>
12001 * Form.cs: Use the provided width when calculating the menu size;
12002 when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
12003 and ClientSize.Width won't be updated yet
12004 * Application.cs: Use Visible instead of Show() to make form visible,
12005 this way we create the handle later and menusize is considered
12007 2006-04-12 Mike Kestner <mkestner@novell.com>
12009 * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
12012 2006-04-12 Peter Dennis Bartok <pbartok@novell.com>
12014 * TextBox.cs: Implemented context menu
12016 2006-04-12 Mike Kestner <mkestner@novell.com>
12018 * ListView.cs: implement box selection. fixes #77838.
12019 * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
12021 2006-04-12 Peter Dennis Bartok <pbartok@novell.com>
12023 * XplatUIX11.cs: Added setting of window type when transient window
12024 is created (metacity would move it otherwise)
12025 * X11Structs.cs: Added WINDOW_TYPE atoms
12026 * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
12027 background (the control is Opaque but still wants transparent
12030 2006-04-12 Peter Dennis Bartok <pbartok@novell.com>
12032 * Control.cs: Added OnPaintBackgroundInternal to allow controls
12033 that set Opaque but don't mean it (like all ButtonBase-derived
12034 controls) to still draw their background
12035 * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
12038 2006-04-12 Peter Dennis Bartok <pbartok@novell.com>
12040 * Control.cs (PaintControlBackground): Set the graphics object
12041 on our PaintEvent to null to prevent it from being disposed
12042 when the PaintEvent gets disposed
12044 2006-04-12 Alexander Olk <alex.olk@googlemail.com>
12046 * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
12047 * ThemeNice.cs, ThemeClearlooks.cs: fix typo
12049 2006-04-12 Peter Dennis Bartok <pbartok@novell.com>
12052 - Added transparency check to BackColor property. Transparent
12053 backgrounds are only allowed if the control styles permit it
12054 - Added recursive painting of parent control background and
12055 foreground if a control with a transparent backcolor is drawn
12056 (Thanks to Tim Ringenback for providing his 'hack' as a base
12057 for this patch) Fixes #77985 and #78026.
12058 - Added Opaque style check before calling OnPaintBackground, no
12059 need to draw the background if the control is opaque
12060 - Removed ControlAccessibleObject owner variable (inherited from
12061 base, no need to define again)
12062 - Added some documentation links explaining the drawing events
12065 2006-04-11 Peter Dennis Bartok <pbartok@novell.com>
12067 * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
12068 that the affected control is the located at the left border of our
12069 parent (Fixes #77936)
12071 2006-04-11 Peter Dennis Bartok <pbartok@novell.com>
12073 * TextBoxBase.cs: When rendering disabled or readonly controls,
12074 draw the background with 'Control' instead of 'Window' color as
12075 long as the user hasn't specifically set a color
12077 2006-04-11 Peter Dennis Bartok <pbartok@novell.com>
12079 * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
12080 since that won't be updated if the user types text (only if it's
12081 programatically set)
12083 2006-04-11 Peter Dennis Bartok <pbartok@novell.com>
12085 * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
12086 layout changes do to app-triggered resizes will have the proper
12087 display rectangle for layout
12089 2006-04-11 Alexander Olk <alex.olk@googlemail.com>
12091 * ThemeWin32Classic.cs:
12092 - Make use of the SystemBrushes and SystemPens wherever possible
12093 - Corrected some highlight colors
12094 - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
12096 * Theme.cs: Added Empty field to CPColor struct
12098 2006-04-11 Peter Dennis Bartok <pbartok@novell.com>
12100 * ScrollabeControl.cs: We need to consider whether or not a scrollbar
12101 is displayed when calculating the display rectangle. Thanks to Mike
12102 for teaching me the err of my ways.
12104 2006-04-10 Peter Dennis Bartok <pbartok@novell.com>
12106 * ScrollableControl.cs:
12107 - Rewrote DisplayRectangle code, now returning the proper x/y coords
12108 (instead of 0,0) and we now return the real width/height instead of
12109 just the clientrectangle, adjusted for padding. The rectangle is
12110 now cached and created by the new CalculateDisplayRectangle method.
12111 - Created new CalculateDisplayRectange method, which basically does
12112 what get_DisplayRectangle() did originally, but now using the
12113 right edge instead of DisplayRectangle to determine the size of
12115 - get_Canvas(): Fixed it to properly calculate canvas for
12116 right/bottom controls which seem to be placed to the right/bottom
12117 of any controls that have a fixed location
12118 - Removed TODO that's taken care of
12119 - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
12120 and SetDisplayRectLocation according to new MSDN2 docs
12121 - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
12122 event when that is called, this is added for compatibility
12123 - ScrollControlIntoView(): Implemented.
12124 - Switched scrollbars to be implicit, they shouldn't be selectable
12125 * ContainerControl: Now that ScrollControlIntoView is implemented, we
12126 call it when the active control is set/changed
12127 * ScrollBar.cs: Added support for generating Win32 scrollbar messages
12128 * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
12129 implicit_control variable (used for native Win32 message generation)
12130 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new
12131 HorizontalScrollBarHeight and VerticalScrollBarWidth properties
12132 * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
12133 * XplatUIStructs.cs: Added ScrollBarCommands enum
12135 2006-04-10 Jackson Harper <jackson@ximian.com>
12138 * CheckedListBox.cs:
12145 * PrintPreviewControl.cs:
12151 * UpDownBase.cs: Fixup base event overrides.
12153 2006-04-06 Mike Kestner <mkestner@novell.com>
12155 * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
12156 all user-initiated value changes to min <= value <= max-thumbsz+1.
12157 (set_Value): check for vert/horiz when calculating new thumb position.
12158 (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
12160 (OnMouseMoveSB): refactor the thumb dragging code and refine
12161 invalidation logic to reduce flicker.
12162 (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
12163 (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
12164 (UpdateThumbPosition): small code readability cleanup
12166 2006-04-10 Alexander Olk <alex.olk@googlemail.com>
12168 * ThemeNice.cs: Small UI polishing. Draw borders a little bit
12171 2006-04-08 Alexander Olk <alex.olk@googlemail.com>
12173 * ThemeNice.cs: Use a better graphics effect when a button is pressed
12175 2006-04-08 Alexander Olk <alex.olk@googlemail.com>
12177 * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
12178 * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
12179 This dramatically reduces the number of Pen.Dispose calls.
12180 Where possible call ResPool methods only once instead of calling it
12181 over and over again (for example for the same color).
12183 2006-04-06 Mike Kestner <mkestner@novell.com>
12185 * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
12186 Also remove an unused private field on the collection. Fixes #77972.
12188 2006-04-06 Alexander Olk <alex.olk@googlemail.com>
12190 * ThemeNice.cs: Added ToolBar drawing code
12192 2006-04-06 Mike Kestner <mkestner@novell.com>
12194 * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
12195 I'm assuming that means we need to look up the toplevel for the
12196 provided control. Fixes the crash trace in #77911 but exposes another
12197 crash in some strange reflection usage in NDocGui.
12199 2006-04-06 Alexander Olk <alex.olk@googlemail.com>
12201 * ThemeNice.cs: Gave it a little silver touch and added Images
12203 * FontDialog.cs: FontDialog is not resizable
12204 * FileDialg.cs: Added SizeGripStyle.Show
12206 2006-04-05 Jackson Harper <jackson@ximian.com>
12208 * KeyboardLayouts.cs: Remove warning.
12210 2006-04-05 Jackson Harper <jackson@ximian.com>
12212 * Control.cs: Enable OnPaintInternal so we can use it for drawing
12213 all of our controls instead of Paint +=.
12228 * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
12229 use OnPaintInternal. Remove Width/Height and Visible checks in
12230 paint handler, this is done at a higher level now.
12231 * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
12232 * PaintEventArgs.cs: Add a handled flag so controls that don't
12233 want anymore painting after OnPaintInternal can make sure OnPaint
12236 2006-04-05 Mike Kestner <mkestner@novell.com>
12238 * Form.cs: fix the menu WndProc hacks to respect the native enabled
12239 state of the form, so that we don't process events when Modal dialogs
12240 are up. Fixes #77922.
12242 2006-04-05 Alexander Olk <alex.olk@googlemail.com>
12244 * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
12247 2006-04-05 Mike Kestner <mkestner@novell.com>
12249 * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
12251 2006-04-05 Mike Kestner <mkestner@novell.com>
12253 * ListView.cs (HeaderMouseMove): null guarding for the over column
12254 when setting up the drag_to_index. Fixes #78015.
12256 2006-04-04 Peter Dennis Bartok <pbartok@novell.com>
12258 * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
12259 in the taskbar. Transient windows seem to accomplish that.
12261 2006-04-04 Peter Dennis Bartok <pbartok@novell.com>
12264 - Re-enabled CreateParams.X/Y code for FormStartPosition
12265 - Added code for manual placement when creating the Control
12266 - Incomplete patch to treat MDI forms differently when
12267 setting the ClientSizeCore. (Still need to figure out handling
12270 - When we're explicitly setting the X/Y position of a non-Child
12271 window, let the WM know. Metacity really wants this.
12273 2006-04-04 Alexander Olk <alex.olk@googlemail.com>
12275 * ThemeNice.cs: Added CPDrawButton
12277 2006-04-04 Alexander Olk <alex.olk@googlemail.com>
12279 * ThemeNice.cs: Changed the color for focused buttons and activated
12280 the arrows for small scroll buttons.
12282 2006-04-04 Alexander Olk <alex.olk@googlemail.com>
12284 * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
12285 anymore. Changed some method modifiers to protected (virtual)
12286 * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
12288 * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
12289 Updated drawing of menus, buttons and progressbars; added
12292 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12294 * ImageListStreamer.cs: implemented serialization/deserialization
12297 2006-04-03 Alexander Olk <alex.olk@googlemail.com>
12299 * ThemeWin32Classic.cs:
12300 - Removed all the DrawFrameControl stuff; CPDrawButton,
12301 CPDrawCheckBox and CPDrawRadioButton are now handled directly
12303 - Updated and corrected the drawing code of CPDrawButton,
12304 CPDrawCheckBox and CPDrawRadioButton to better match ms
12305 - Updated theme checkbox and radiobutton code to use the CP*
12308 2006-03-31 Peter Dennis Bartok <pbartok@novell.com>
12310 * XplatUIX11.cs: Enable clipping again now that the libgdiplus
12313 2006-03-31 Jackson Harper <jackson@ximian.com>
12315 * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
12317 * UpDownBase.cs: Don't CreateGraphics manually, use a
12318 Refresh. Ideally we would invalidate the correct areas here.
12320 2006-03-31 Peter Dennis Bartok <pbartok@novell.com>
12323 - We now track the mapping state of windows. If a window (or
12324 one of it's parents) is not mapped we no longer permit
12325 WM_PAINT messages to be generated since we'd otherwise get
12326 lots of BadMatch X errors. Jackson did all the work figuring
12328 - Destroying the caret if the window it's contained in is
12329 destroyed. Can't use regular DestroyCaret method since it
12330 might fall into a drawing function (trying to remove the
12331 caret) and with that generate new BadMatch errors. Again,
12332 Jackson tracked this down.
12333 - Changed DestroyChildWindows to SendWMDestroyMessages, we now
12334 make sure we send the messages to all windows. (The old code
12335 would send the WM_DESTROY to the window, and then all child
12336 windows would be 'gone' because the WM_DESTROY handle lookup
12337 would no longer find the destroyed window)
12338 * Hwnd.cs: Added Mapping property to track mapping state of hwnd
12339 * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
12341 2006-03-31 Jackson Harper <jackson@ximian.com>
12343 * ScrollableControl.cs: Dont recalc if we are not visible.
12345 2006-03-31 Mike Kestner <mkestner@novell.com>
12347 * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
12348 the visibility branch.
12350 2006-03-31 Jackson Harper <jackson@ximian.com>
12352 * ScrollBar.cs: Cap values when incrementing/decrementing.
12354 2006-03-31 Mike Kestner <mkestner@novell.com>
12356 * MenuAPI.cs: setup menu.tracker for popup/context menus.
12357 * ToolTip.cs: guard against timer expirations with no active control.
12358 Not sure why it happened.
12360 2006-03-31 Mike Kestner <mkestner@novell.com>
12362 * ThemeWin32Classic.cs: add some horizontal padding space for the tip
12364 * ToolTip.cs: Position the tooltip based on where the cursor is at
12365 popup time, not at MouseEnter time. Add a Down state so that we don't
12366 redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
12367 positioning offset. Lookup DisplaySize at positioning time, since it
12368 can theoretically change during invocation.
12369 * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
12370 * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
12372 2006-03-31 Alexander Olk <alex.olk@googlemail.com>
12374 * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
12375 Fixes behaviour when the Text property of the box is String.Empty
12377 2006-03-31 Peter Dennis Bartok <pbartok@novell.com>
12379 * XplatUIX11.cs: Only send mouseleave for our client windows, not
12380 for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
12383 2006-03-31 Alexander Olk <alex.olk@googlemail.com>
12385 * FileDialog.cs: Visual enhancement for the popup buttons in
12388 2006-03-31 Alexander Olk <alex.olk@googlemail.com>
12390 * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
12393 2006-03-30 Alexander Olk <alex.olk@googlemail.com>
12395 * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
12396 highlighted menu items to match ms
12398 2006-03-30 Peter Dennis Bartok <pbartok@novell.com>
12400 * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
12402 2006-03-30 Mike Kestner <mkestner@novell.com>
12404 * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
12405 * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
12406 go active to account for HotLight to Selected transition.
12407 * MenuItem.cs: add internal Selected prop. Fill out the Status
12408 property by calculating it from item info. Add HotLight,
12409 NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
12411 2006-03-30 Mike Kestner <mkestner@novell.com>
12413 * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
12415 2006-03-29 Jackson Harper <jackson@ximian.com>
12417 * Form.cs: Implement TODO.
12419 2006-03-29 Peter Dennis Bartok <pbartok@novell.com>
12421 * PrintPreviewDialog.cs: Implemented missing methods and events; still
12422 missing proper dialog setup in the constructor
12424 2006-03-29 Peter Dennis Bartok <pbartok@novell.com>
12426 * ProgressBar.cs: Added 2.0 Style property that apps seem to use
12428 - Implemented CheckForIllegalCrossThreadCalls, removed TODO
12429 - Fixed ResetBindings and removed TODO
12430 - Added check for cross-thread calls to get_Handle()
12431 - Added Marshaller attribute for set_Font to satisfy class status
12432 * FontDialog.cs: Removed TODOs that seemed implemented
12433 * UpDownBase.cs: Removed unneeded TODO and Fixme
12434 * MessageBox.cs: Implemented support for Default button and removed TODO
12435 * FileDialog.cs: Removed obsolete TODO
12436 * DomainUpDown.cs: Removed obsolete TODO
12437 * ButtonBase.cs: Removed obsolete TODO
12438 * XplatUIWin32.cs: Removed obsolete TODO
12440 - Removed obsolete TODO
12441 - Calling CheckAcceptButton when the acceptbutton is changed to allow
12442 internal status updates
12443 - Making sure the active control is selected when the control is created
12444 * CurrencyManager.cs: Removed obsolete TODO
12446 2006-03-29 Mike Kestner <mkestner@novell.com>
12448 * *.cs: fix remaining corcompare issues for 1.1 API with the exception
12449 of PrintPreviewDialog and RichTextBox.
12451 2006-03-29 Alexander Olk <alex.olk@googlemail.com>
12453 * Theme.cs: Added a little helper to SystemResPool to get the Dark,
12454 DarkDark, Light and LightLight colors for a specific color
12455 * ThemeWin32Classic.cs:
12456 - Use Button drawing code to draw RadioButtons and CheckBoxes with
12457 Appearance = Button
12458 - Make use of the new ResPool helper CPColor
12459 - Draw ProgressBar and StatusBar with correct 3D borders
12461 2006-03-29 Alexander Olk <alex.olk@googlemail.com>
12463 * ColorDialog.cs: Return selected color. Fixes bug #77940.
12465 2006-03-28 Mike Kestner <mkestner@novell.com>
12467 * ListView.cs: fix Icon layout to plan for scrollbar widths when
12468 calculating col/row counts.
12470 2006-03-28 Mike Kestner <mkestner@novell.com>
12476 switch to explicit interface method implementation for some methods
12477 corcompare identifies as inconsistent with MS.
12479 2006-03-28 Mike Kestner <mkestner@novell.com>
12483 add a few missing methods from the class status output.
12485 2006-03-28 Alexander Olk <alex.olk@googlemail.com>
12487 * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
12490 2006-03-28 Mike Kestner <mkestner@novell.com>
12492 * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
12494 2006-03-27 Mike Kestner <mkestner@novell.com>
12496 * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
12497 the Hilight state to adapt to Alex's CPDrawBorder3D changes.
12499 2006-03-27 Alexander Olk <alex.olk@googlemail.com>
12501 * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
12503 2006-03-25 Alexander Olk <alex.olk@googlemail.com>
12505 * ThemeWin32Classic.cs:
12506 - GroupBox: Inserted a little gap between the text and the lines
12508 - Made the code in CPDrawBorder3D more readable
12509 - Corrected the drawing location of the up and down arrows in
12512 2006-03-25 Alexander Olk <alex.olk@googlemail.com>
12514 * ControlPaint.cs: Corrected line widths in DrawBorder for
12515 ButtonBorderStyle Inset and Outset
12517 2006-03-25 Alexander Olk <alex.olk@googlemail.com>
12519 * ThemeWin32Classic.cs:
12520 - Rewrote the totally broken CPDrawBorder3D method. That was
12521 one of the main problems for the terrific ThemeWin32Classic
12523 - Updated and corrected Button drawing
12524 - Correct the dimensions of the SizeGrip to match ms ones
12525 - Removed a small drawing glitch in DrawComboBoxEditDecorations
12526 * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
12527 Border3DStyle.Sunken to match ms.
12529 2006-03-25 Alexander Olk <alex.olk@googlemail.com>
12531 * ThemeWin32Classic.cs: First small part of the "de-uglify
12532 ThemeWin32Classic" effort, SizeGrip
12534 2006-03-24 Jackson Harper <jackson@ximian.com>
12536 * XplatUIX11.cs: Give a max idle time of one second, this matches
12537 MS and forces an Idle event every second when there are no other
12538 events in the queue.
12540 2006-03-24 Mike Kestner <mkestner@novell.com>
12542 * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
12543 * ListView.Item.cs: fix layout issues with null image lists and images
12544 smaller than checkbox size.
12545 * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
12546 mode like MS does. It's weird, but consistent. ;-)
12549 2006-03-24 Mike Kestner <mkestner@novell.com>
12551 * ListView.cs: Scroll wheel support for the item control. Fixes
12554 2006-03-23 Jackson Harper <jackson@ximian.com>
12556 * ScrollableControl.cs: Special case negative sized areas, not
12558 * MonthCalendar.cs: Save the rect of the clicked date so we can
12559 use it for invalidation.
12560 - Try to cut down on the number of invalidates
12561 - Invalidate the rect the mouse is over and was over when moving
12562 the mouse, so we get the focus box following the cursor.
12564 2006-03-23 Mike Kestner <mkestner@novell.com>
12566 * ThemeWin32Classic.cs: fix FullRowSelect selection background and
12567 focus rectangle drawing. Fixes #77835.
12569 2006-03-23 Mike Kestner <mkestner@novell.com>
12571 * XplatUIX11.cs: rework the fix for #77828 by changing the order of
12572 the if and else if and reverting back to the original == check on the
12575 2006-03-23 Alexander Olk <alex.olk@googlemail.com>
12577 * FontDialog.cs: Update the example panel if the selected index of
12578 the fontListBox changes.
12580 2006-03-23 Alexander Olk <alex.olk@googlemail.com>
12582 * FileDialog.cs: Make FileDialog remember which directory it was in
12583 last in the same execution.
12585 2006-03-22 Mike Kestner <mkestner@novell.com>
12587 * FileDialog.cs: make the DropDownMenu on the toolbar display
12588 RadioChecks since they are mutually exclusive and that's what MS does.
12590 2006-03-22 Mike Kestner <mkestner@novell.com>
12592 * Theme.cs: add Color param to CPDrawMenuGlyph.
12593 * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
12594 checks and radio marks and arrows are visible on highlighted items.
12595 * ControlPaint.cs: update to use new Theme signature.
12597 2006-03-22 Mike Kestner <mkestner@novell.com>
12599 * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
12600 is active. Fixes #77870.
12602 2006-03-22 Alexander Olk <alex.olk@googlemail.com>
12604 * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
12605 to be focused/selected after startup
12607 2006-03-22 Alexander Olk <alex.olk@googlemail.com>
12610 - Corrected behaviour of Color, AllowFullOpen, FullOpen,
12611 CustomColors and ShowHelp properties
12612 - Some internal rewrites to get better results when using the
12615 2006-03-22 Mike Kestner <mkestner@novell.com>
12617 * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
12618 HoverSelection. Fixes #77836.
12620 2006-03-22 Mike Kestner <mkestner@novell.com>
12622 * FileDialog.cs: bugfixes for the toolbar. Use PushButtons instead of
12623 ToggleButtons. (De)Sensitize the Back button around a stack count of
12624 1, not 0. Update ButtonSize based on a pixel count of the win32
12625 control. Adjust the toolbar size/location for new button size.
12627 2006-03-22 Jackson Harper <jackson@ximian.com>
12629 * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
12631 * ScrollBar.cs: When doing increments and decrements we need to
12632 set the Value property so that ValueChanged gets raised. A
12633 possible optimization here would be to make an internal SetValue
12634 that doesn't invalidate immediately.
12635 * ToolTip.cs: Tooltips get added to their container (when
12636 supplied) so they get disposed when the container is disposed.
12637 - Don't create tooltips for String.Empty. This prevents all these
12638 little 2-3 pixel windows from showing up when running nunit-gui
12639 and driving me mad.
12640 * Form.cs: Don't set topmost when setting the owner if the handles
12641 haven't been created yet. The topmost set will happen when the
12642 handles are created.
12644 2006-03-22 Peter Dennis Bartok <pbartok@novell.com>
12647 - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
12648 - SetVisible: Sending WINDOWPOSCHANGED for all controls when made
12649 visible (to allow them to recalculate their sizes)
12651 2006-03-21 Mike Kestner <mkestner@novell.com>
12653 * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
12654 methods. Removed a ton of redundant code. Still not really happy with
12655 the border rendering, but I think that's mainly because of the
12656 ControlDarkDark being black instead of a dark grey. Depending on how
12657 close we want to be, we might want to revisit those color choices.
12658 Among the new features added during the refactor were DropDownArrow
12659 pressed rendering, Disabled image rendering. Proper flat appearance
12660 boundary rendering. Removed the Divider and Wrapping dividers since I
12661 can't figure out any combination of themes and conditions to make the
12662 MS control draw a horizontal line on a toolbar despite what the
12663 Divider property docs indicate.
12664 * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
12665 conditions and incorrect layout. Updated to coding standard.
12666 * ToolBarButton.cs: refactored layout and positioning code from
12667 ToolBar to here. Invalidate wherever possible instead of forcing
12668 redraws of the whole toolbar.
12669 (Known remaining issues: explicit ButtonSize smaller than provided
12672 2006-03-21 Mike Kestner <mkestner@novell.com>
12674 * ContextMenu.cs (Show): use the position parameter instead of just
12675 showing at the MousePosition.
12677 2006-03-21 Jackson Harper <jackson@ximian.com>
12679 * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
12680 control handle this.
12681 * TreeNodeCollection.cs: If we are clearing the root node we need
12682 to reset top_node so calcs can still happen.
12683 * ThemeWin32Classic.cs: This is a Flags so we need to check
12686 2006-03-21 Jackson Harper <jackson@ximian.com>
12688 * DataGrid.cs: Create columns when the binding context has been
12690 * X11Structs.cs: Keysyms are uints.
12691 - Add size to fix build.
12693 2006-03-21 Peter Dennis Bartok <pbartok@novell.com>
12695 * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12697 - Added ResetMouseHover method to allow controls to retrigger
12698 hovering if they need it more than once
12699 - Implemented MouseHoverTime and MouseHoverSize properties
12700 * Timer.cs: Start() must reset the interval
12701 * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
12704 2006-03-21 Jackson Harper <jackson@ximian.com>
12706 * X11Keyboard.cs: improved layout detection. Move the nonchar
12707 tables into this file.
12708 * KeyboardLayouts.cs: Move the tables into resource files.
12710 2006-03-21 Mike Kestner <mkestner@novell.com>
12712 * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
12714 2006-03-21 Alexander Olk <alex.olk@googlemail.com>
12716 * Mime.cs: Various speed optimizations. Looking up mime types
12717 is now 2 times faster than before
12719 2006-03-17 Peter Dennis Bartok <pbartok@novell.com>
12721 * CreateParams.cs: Added internal menu field
12723 - Switched call order for UpdateBounds; now we always call
12724 the one that also takes ClientSize, and we're calculating the
12725 client size via driver method in the others. The previous
12726 method of tracking client size by difference wasn't working
12727 for forms where even the starting client size wouldn't match
12728 the overall form size (due to borders) (Part of fix for #77729)
12729 - CreateParams(): Do not use parent.Handle unless the handle is
12730 already created. Causes havoc with Nexxia and throws off our
12731 creation of controls
12733 - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
12734 - Switched handling of ConfigureNotify over to new PerformNCCalc
12735 method (consolidates code)
12736 - Changed RequestNCRecalc to use new PerformNCCalc method
12737 - Added calls to RequestNCRecalc when menus and borders are changed
12738 to allow app to set NC size. (Part of fix for #77729) This matches
12739 when MS send a WM_NCRECALC on Win32 windows.
12740 - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
12741 (Part of fix for #77729). This matches what MS does, they also
12742 send that message when the form is made visible.
12743 - XException.GetMessage: Improved usability of X errors by including
12744 a translation of the window into Hwnd and Control class
12745 - Improved debug info for window creation, reparenting and destruction
12746 - Created helper method WindowIsMapped() [Currently not used]
12747 * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
12749 - CreateParams: Now setting our menu on the new internal menu field
12750 - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
12751 avoid calculating the same property twice
12753 - Improved usability of ToString() for debugging purposes
12754 - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
12755 determine the height of the menu, instead of just the font. This
12756 required to also create a graphics context and to keep a bmp
12757 around (for performance reasons)
12759 2006-03-17 Peter Dennis Bartok <pbartok@novell.com>
12761 * MenuAPI.cs: Added OnMouseUp method
12763 - Now remembering the requested client size, avoids size errors
12764 - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
12765 instead of base if the menu is active. This is required due to
12766 control now capturing and releasing on down/up and it would
12767 prematurely release our menu capture
12769 2006-03-17 Jackson Harper <jackson@ximian.com>
12771 * KeyboardLayouts.cs: Add the czech layouts.
12773 2006-03-16 Jackson Harper <jackson@ximian.com>
12775 * Control.cs: Use the viewport space when sizing not the controls
12776 client size, so things like ScrollableControl that effect the
12777 viewport size (when scrollbars are added) are computed correctly.
12778 * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
12780 - Handle creating BindingManagers for null data sources.
12781 * DataGrid.cs: Bind the cached_currencymgr_events to the real data
12782 source, otherwise when rows are added they are added to the 'fake'
12783 datasource and we will crash when trying to set the position in
12785 - Use Implicit scrollbars on the datagrid so they arent
12788 2006-03-16 Jackson Harper <jackson@ximian.com>
12791 * InternalWindowManager.cs:
12792 * MdiWindowManager.cs:
12793 * X11Keyboard.cs: I really want Mike to love me again (fix
12794 compiler warnings).
12796 2006-03-16 Peter Dennis Bartok <pbartok@novell.com>
12799 - OnMouseDown: Switch to editing mode when clicking on the cell
12800 even if we're clicking on the cell that's currently
12802 - ProcessGridKey: Left/Right now wrap like MS.Net does
12803 - ProcessGridKey: Tab now knows to add a new row when tab is
12804 pressed in the cell of the last column of the
12806 - ProcessGridKey: Enter now adds another row if pressed in the last
12807 row and selectes the new row, same column cell
12808 - ProcessGridKey: Home/End navigate columns, not rows, like
12809 originally implemented
12810 - Broke ProcessKeyPreview code out into an extra Internal method
12811 so it can be called from the edit code
12812 * DataGridTextBox.cs (ProcessKeyMessage):
12813 - Switched to accept Tab keypresses
12814 - Added F2 handling to allow jumping to the end of the edited cell
12815 - Added logic to allow moving caret left/right inside edited cell
12816 and making the edited cell jump when the caret hits cell borders
12817 - Tab and Enter are now passed to the datagrid after being handled
12819 - Removed capture code now that Control handles it
12820 - set_SelectionStart now ensures caret is visible
12822 2006-03-16 Jackson Harper <jackson@ximian.com>
12824 * TrackBar.cs: Debackwards the increment/decrement for handling
12825 mouse clicks on the bar with vertical trackbars.
12826 * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
12827 bottom to match MS.
12829 2006-03-16 Mike Kestner <mkestner@novell.com>
12831 * ListView.cs: make shift/ctrl keyboard and mouse selection
12832 consistent with the MS control. Fix a bug in
12833 SelectedListViewItemCollection.Clear that was pissing me off for the
12834 better part of a day because the collection was being altered
12835 underneath us as we walked the list.
12837 2006-03-16 Peter Dennis Bartok <pbartok@novell.com>
12839 * Control.cs: Not sure how we could miss this so long, but it seems
12840 that MS.Net has Capture set all the way from before calling
12841 OnMouseDown through sending the mouse events until after
12842 OnMouseUp. This will fix DataGrid's selection being set to end
12843 at the location of the MouseUp.
12845 2006-03-15 Jackson Harper <jackson@ximian.com>
12847 * BindingContext.cs: Check the binding after its added so that it
12848 can initialize the binding managers and hookup to events.
12849 * Binding.cs: Data members seem to sometimes include rows/cols in
12850 the format Row.Column we now take this into account.
12851 - Hookup to the position changed event so we can update the
12852 control when the position has changed in the data set.
12853 * CurrencyManager.cs: Take into account the row/col naming
12854 convention when creating dataset tables.
12855 * BindingContext.cs: Using a newer better way of storing
12856 datasource/datamember pairs. Hopefully this better matches MS for
12857 looking up binding managers.
12860 2006-03-15 Jackson Harper <jackson@ximian.com>
12862 * BindingContext.cs: The currency manager needs the data member
12863 name, if the member is a data set we use the name to find the
12865 * CurrencyManager.cs: When creating the list prefer an IList over
12867 - Attempt to create a DataTable from a DataSet (TODO: might need
12868 some better error checking here, although MS doesn't seem to have much)
12869 - If we have a DataTable create a view and use it as our list.
12871 2006-03-15 Mike Kestner <mkestner@novell.com>
12873 * ListView.cs: keep a matrix of the icon mode layout to facilitate
12874 keyboard navigation. Support Up/Down/Left/Right selection correctly
12875 for all 4 View modes.
12876 * ListViewItem.cs: add internal row/col fields for icon layouts.
12878 2006-03-15 Jackson Harper <jackson@ximian.com>
12880 * TabControl.cs: Redraw the tabs when we resize so their newly
12881 calculated sizes are drawn on screen.
12882 * X11Keyboard.cs: Begginnings of XIM support. We also now support
12883 composite characters.
12884 * XplatUIX11.cs: Keyboard driver needs to know about focus changes
12885 - filter events so that composite characters can be created
12887 * X11Structs.cs: Add XIMProperties enum.
12889 2006-03-14 Peter Dennis Bartok <pbartok@novell.com>
12891 * Control.cs (BringToFront, SendToBack): Don't use window or handle
12892 unless it's created
12894 2006-03-14 Peter Dennis Bartok <pbartok@novell.com>
12896 * Control.cs (PerformLayout): We don't need to consider visiblity
12897 for anchoring, only for docking. This fixes 'whacky' alignment
12898 in listbox and other controls that use implicit scrollbars after
12899 the previous PerformLayout patch
12900 * ListBox.cs: Switched to use implicit scrollbars
12902 2006-03-14 Mike Kestner <mkestner@novell.com>
12906 - chain up the "new event" overrides to base and use
12907 OnEvent to raise them. Part of fix for bug #76509.
12909 2006-03-14 Alexander Olk <alex.olk@googlemail.com>
12911 * FileDialog.cs: Do not select an item in the parent directory
12914 2006-03-14 Peter Dennis Bartok <pbartok@novell.com>
12916 * Control.cs (PerformLayout): It would seem that we considered
12917 invisible windows for our layout. Not quite the right thing
12918 to do. Now we don't any longer, thereby fixing bug #76889.
12920 2006-03-14 Peter Dennis Bartok <pbartok@novell.com>
12922 * Control.cs (CanFocus): I goofed. A control can have focus
12923 even though it's not selectable. Made it match MS docs.
12925 2006-03-13 Peter Dennis Bartok <pbartok@novell.com>
12927 * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
12928 center by default (fixes #76895)
12929 * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced
12930 all uses of Border3DSides.All with the explicit ORd together
12931 Left|Right|Top|Bottom because I assume that nobody was aware
12932 that All also implies a center fill. Most places I checked had
12933 a fill right above.
12934 * ProgressBarStyle.cs: Added
12936 2006-03-13 Mike Kestner <mkestner@novell.com>
12938 * ListView.cs: fix breakage in drag shadow header positioning
12939 from Peter's csc compilation fix.
12941 2006-03-13 Mike Kestner <mkestner@novell.com>
12943 * ListView.cs: fix NRE produced by backspacing twice in a focused
12946 2006-03-13 Mike Kestner <mkestner@novell.com>
12948 * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
12950 2006-03-13 Peter Dennis Bartok <pbartok@novell.com>
12952 * Hwnd.cs: Added fixed_size field to track windows whose size cannot
12954 * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
12955 the allowed size before making programmatic size changes
12957 2006-03-13 Peter Dennis Bartok <pbartok@novell.com>
12959 * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are
12960 set, metacity is broken and will still use the emty sizes in
12961 the struct. (Fix for #77089)
12963 2006-03-13 Peter Dennis Bartok <pbartok@novell.com>
12965 * XplatUIStructs.cs: Split WindowStyles into WindowStyles and
12966 WindowExStyles and marked both enums as Flags
12967 * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
12968 NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
12969 to match WindowStyles split
12971 - SetWMStyles: Added cehck to not apply WM attributes to Child windows
12972 - Updated to match WindowStyles split
12974 - Fixed FosterParent creation, was using ExStyle on the Style field
12975 (This should help with Popup focus issues)
12976 - Updated to match WindowStyles split
12978 2006-03-13 Jackson Harper <jackson@ximian.com>
12980 * MdiWindowManager.cs: Use the system menu height. Fixes some
12981 strange sizing issues.
12983 2006-03-12 Peter Dennis Bartok <pbartok@novell.com>
12985 * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
12987 - Scroll to caret after inserting text (#77672)
12988 - Make scroll range one pixel higher, fixes off-by-one error (and
12989 makes underlines visible on the last line)
12991 2006-03-12 Peter Dennis Bartok <pbartok@novell.com>
12993 * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
12994 the keyboard state from being stuck with keys in 'pressed' state when
12995 focus is switched away via keyboard
12996 * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
12997 reset the keyboard if no X11 KeyUp events are expected to come
12998 * X11Structs.cs: Switched type of Visible to bool to match driver
13000 2006-03-12 Peter Dennis Bartok <pbartok@novell.com>
13003 - Switched caret to be just 1 pixel wide, matches MS and looks less
13005 - Moved caret display 1 pixel down from the top of the control
13007 - InsertCharAtCharet: Update the selection start if moving the caret
13008 (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
13009 - No longer always creating the caret when the caret methods are
13010 called. Only the actual ShowCaret/HideCaret will do that now
13011 - Only setting caret visible if the owner control has focus
13012 - UpdateView: Added invalidation-shortcut logic for center and right
13013 aligned text. Previously we'd update all according to the left
13014 logic which caused drawing errors. Also fixed height of invalidated
13015 areas, now properly invalidating the whole area (was off-by-one)
13016 - owner_HandleCreated: Always generate the document when the
13017 handle is created; this ensures that
13019 - Fixed situation where caret would disappear under the right
13020 window border, also improved scrolling behaviour on left-
13022 - Fixed right-aligned textboxes to have a border to the
13023 right instead of the caret being under the right border
13025 - Switched from 'nested' to simple visible/not visible tracking
13026 for caret (part of fix for #77671)
13027 - No longer passing through translated FocusIn/FocusOut messages
13028 since we were notifying too often and the wrong windows. Instead
13029 we just notify our focussed window of receiving or loosing focus
13030 * XplatUIWin32.cs: Switched from 'nested' show/hide
13031 counting for caret to simple visible yes/no behaviour (part of
13034 2006-03-11 Alexander Olk <alex.olk@googlemail.com>
13036 * Mime.cs: Remove debug code...
13038 2006-03-11 Alexander Olk <alex.olk@googlemail.com>
13040 * MimeGenerated.cs: Removed
13041 * Mime.cs: Mime now reads the mime data (magic, globs, aliases
13042 and subclasses) from /usr/(local/)share/mime and
13043 $HOME/.local/share/mime.
13045 2006-03-10 Jackson Harper <jackson@ximian.com>
13047 * MdiWindowManager.cs: Recalc the NC area when a window is
13048 maximized/restored so that the menu area is drawn on forms that
13051 2006-03-10 Peter Dennis Bartok <pbartok@novell.com>
13053 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
13054 XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
13055 us to force a WM_NCCALCRESIZE message being sent. This is needed
13056 for MDI maximizing.
13058 2006-03-10 Jackson Harper <jackson@ximian.com>
13060 * Form.cs: We need to use the ActiveMenu when calculating menu
13062 - Fix nullref when the window manager hasn't been created yet.
13063 * Control.cs: Fix nullref when we try to bring a control to the
13064 front that has no parent.
13065 * MdiWindowManager.cs: Use the MaximizedMenu for calculating
13067 - Add a dummy item to the maximized menu so it always has the
13068 correct height. Otherwise when there are no menus we don't get our
13072 2006-03-10 Jackson Harper <jackson@ximian.com>
13074 * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
13076 * Form.cs: Make the window_state internal so the window managers
13078 - When an MDI child is maximized let its window manager create the
13079 main menu (so it can add its icon).
13080 - Notify the window managers of state changes
13081 - Let the window manager paint its buttons and handle button
13082 clicks on the menu when it is maximized.
13083 * InternalWindowManager.cs: Move the prev_bounds into the mdi
13084 window manager, since tool windows don't use it, only mdi windows.
13085 - Tell the main form that we don't want it to handle NCPAINT
13086 itself to avoid extra painting.
13087 - Handle clicks on a maximized windows menu.
13088 - Handle window state changes
13089 - Handle minimize/maximize clicks correctly by setting the window state.
13090 * MdiWindowManager.cs: Add an icon menu that (the menu you get
13091 when clicking on the forms icon).
13092 - New method to create a forms maximized menu. This is its normal
13094 - Handle window state changes.
13095 - Handle sizing of maximized windows. Maximized windows are just
13096 drawn bigger then the parent visible area. All controls are still
13097 there, they are just outside the visible area (this matches windows).
13098 * MdiClient.cs: No scrollbars when a child window is maximized.
13099 - Let the children windows figure out how big they should be when
13100 sizing maximized windows.
13101 - Implement a version of ArrangeIconicWindows somewhat similar to
13102 Windows version. There are some little differences, but I don't
13103 think any app will rely on the layout of minimized mdi windows.
13105 2006-03-10 Peter Dennis Bartok <pbartok@novell.com>
13107 * Padding.cs: Several fixes to allow compiling with csc 2.0
13109 2006-03-09 Jackson Harper <jackson@ximian.com>
13112 * MenuItem.cs: Cheap hack so we can add items to the list without
13113 the events being raised. This allows adding mdi items during
13114 drawing. TODO: Should probably find a better time to add the items.
13116 2006-03-10 Peter Dennis Bartok <pbartok@novell.com>
13118 * ThemeWin32Classic.cs:
13119 - CheckBox_DrawText: Added logic to not wrap if not enough space
13120 is available (Fix for bug #77727)
13121 - RadioButton_DrawText: Added logic not to wrap if not enough
13122 space is available (Fix for bug #77727). Also removed some
13123 duplicate code, DrawString always drawing the regular text
13124 before hitting the if statement.
13126 2006-03-10 Peter Dennis Bartok <pbartok@novell.com>
13128 * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
13130 2006-03-10 Peter Dennis Bartok <pbartok@novell.com>
13132 * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
13133 * ContainerControl.cs: Partial implementation of some 2.0 scaling
13134 methods. Moved the new 2.0 properties into alphabetical order with
13135 other properties and added MonoTODO tags
13137 2006-03-09 Peter Dennis Bartok <pbartok@novell.com>
13139 * AutoScaleMode.cs: Added. Fix build.
13141 2006-03-09 Peter Dennis Bartok <pbartok@novell.com>
13143 * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
13144 XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
13145 and was requiring premature handle creation for calls from above
13146 * Form.cs, Control.cs: Removed handle arguments from calls to
13147 CalculateClientRect()
13149 2006-03-09 Peter Dennis Bartok <pbartok@novell.com>
13151 * ListView.cs (HeaderMouseMove): Fix csc compilation.
13152 drag_column.column_rect is MarshalByRef and can't be used that way
13154 2006-03-09 Peter Dennis Bartok <pbartok@novell.com>
13156 * AxHost.cs: Added deserialization constructor for
13157 AxHost+State (fixes 77743)
13159 2006-03-09 Mike Kestner <mkestner@novell.com>
13162 - Added column drag reordering for details view.
13163 - fixed behavior when mouse is dragged off column and
13164 AllowColumnReorder is false.
13165 * ColumnHeader.cs: clone the format too in Clone.
13166 * Theme.cs: add DrawListViewHeaderDragDetails method.
13167 * ThemeWin32Classic.cs:
13168 - impl new method for drawing drag column shadows and targets.
13169 - support column offset for details mode in DrawListViewItem.
13171 2006-03-09 Peter Dennis Bartok <pbartok@novell.com>
13173 * TextControl.cs: Reset the char_count when the document is cleared
13174 (Fixes bug reported on mono-winforms mailing list)
13176 2006-03-09 Peter Dennis Bartok <pbartok@novell.com>
13178 * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
13179 of calling base we simply process the key ourselves, since both
13180 DefWindowProc and the handled method would set m.Result.
13183 2006-03-09 Peter Dennis Bartok <pbartok@novell.com>
13185 * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
13186 method also moves the window; instead implemented a copy of
13187 Control.ScaleCore (Part of fix for #77456)
13189 - Created new CreateGraphicsInternal method to allow providing
13190 a graphics context when no handle is created without triggering
13191 handle creation. (Part of fix for #77456)
13192 - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
13194 - Switched Constructor to require TextBoxBase instead of Control (to
13195 allow uncast access to CreateGraphicsInternal)
13196 - Safeguarded use of owner.Handle property. No longer accessing it
13197 unless the handle is already created.
13198 - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
13199 - Now triggering a recalc when owning control becomes visible
13200 * TextBox.cs, RichTextBox.cs: Switched to use new internal
13201 TextBoxBase.CreateGraphicsInternal() method to avoid triggering
13202 premature handle creation (Part of fix for #77456)
13204 - We now only destroy our double-buffering buffers when the
13205 control is resized or disposed, but not when visibility
13206 changes. (The code even re-created them twice every time)
13207 - Now requiring a redraw of the buffer on visibility changes
13208 (fixes bug 77654 part 2)
13209 - Not passing OnParentVisibleChanged up unless the control
13211 - CanFocus: Fixed to match MS documentation
13212 - Focus: Fixed to return actual focus state and to check if
13213 setting focus is legal before setting it
13215 2006-03-08 Peter Dennis Bartok <pbartok@novell.com>
13217 * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
13218 when to draw focus rectangle by looking at parent focus and
13219 selected state instead. This fixes TabPages on Linux sometimes
13220 having none or multiple focus rectangles.
13221 * XplatUIX11.cs (SetFocus):
13222 - Don't set the focus if the same window already has focus
13223 - Use SendMessage instead of PostMessage (like it's Win32
13224 equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
13225 to match MS behaviour
13226 * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
13227 are not selectable.
13229 2006-03-07 Jackson Harper <jackson@ximian.com>
13231 * PictureBox.cs: Revert line I accidently committed last week.
13233 2006-03-07 Peter Dennis Bartok <pbartok@novell.com>
13236 - Added new IsRecreating and ParentIsRecreating properties to
13237 allow testing if RecreateHandle has been called on ourselves
13238 or one of our parents
13239 - WndProc(WM_DESTROY): If our control handle is being recreated
13240 we immediately need to create the handle when receiving the
13241 destroy, that way our child windows find a valid parent handle
13242 when they themselves are being recreated upon WM_DESTROY receipt
13243 (fix for bug #77654 part 1)
13245 - DestroyWindow: WM_DESTROY must be sent to our own window before
13246 notifying any child windows. MS documents that child windows
13247 are still valid when WM_DESTROY is received. (Control now relies on
13249 - Added some fine-grain debug options
13251 2006-03-06 Jackson Harper <jackson@ximian.com>
13253 * MdiClient.cs: Redid scrolling logic a bit to create a virtual
13254 box and base calculations off this.
13255 * MdiChildContext.cs:
13256 * MdiWindowManager.cs: Don't need to ensure scrollbars here
13259 2006-03-06 Peter Dennis Bartok <pbartok@novell.com>
13261 * Splitter.cs: In situations where the affected control is added
13262 to the parent's control list after the splitter, we would not
13263 populate affected. Now we try populating it on mousedown, if
13264 it's not already set, and force it to be re-set whenever our
13267 2006-03-03 Matt Hargett <matt@use.net>
13269 * Control.cs: implement Control.Padding
13270 * Padding.cs: -Padding.All returns -1 when constructing with the
13271 implicit default ctor
13272 -Padding.ToString() matches MS.NET
13273 * ContainerControl.cs: implement
13274 ContainerControl.AutoScaleDimensions
13275 * ListControl.cs: implement ListControl.FormattingEnabled
13276 * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
13278 * TabPage.cs: Implement UseVisualStyleBackColor.
13279 * PictureBox.cs: Implement PictureBox.InitialImage.
13281 2006-03-03 Mike Kestner <mkestner@novell.com>
13283 * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
13284 event declarations to proxy to base event.
13285 * ListViewItem.cs: update to use ItemControl.
13286 * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
13287 * ThemeWin32Classic.cs: update to new ListView theme API and fix
13288 column header label rendering for 0 width columns.
13290 2006-03-03 Peter Dennis Bartok <pbartok@novell.com>
13292 * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
13293 that causes the control to be created. Fixes #77476.
13295 2006-03-02 Jackson Harper <jackson@ximian.com>
13297 * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
13300 2006-03-02 Peter Dennis Bartok <pbartok@novell.com>
13302 * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
13303 passed in for the EventArgs (fixes #77690)
13305 2006-03-01 Jackson Harper <jackson@ximian.com>
13307 * ScrollBar.cs: Refresh afterbeing resized.
13309 2006-02-28 Mike Kestner <mkestner@novell.com>
13311 * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
13312 Clean up a tracker compile warning.
13313 * MenuItem.cs: add internal PerformPopup method.
13316 2006-02-28 Peter Dennis Bartok <pbartok@novell.com>
13318 * TextBoxBase.cs (set_Text): Recalculate the document (causing an
13319 implicit expose) when the text is set to null
13321 2006-02-28 Peter Dennis Bartok <pbartok@novell.com>
13323 * RichTextBox.cs (FlushText): When newline is true, we always
13324 need to split the line, even if no text is on it and we may
13325 never eat newlines. (Fixes #77669)
13327 2006-02-28 Mike Kestner <mkestner@novell.com>
13329 * ListView.cs: Add UpdateSelection internal method. Remove SelectItem
13330 and set Selected instead.
13331 * ListViewItem.cs: Call owner.UpdateSelection to manipulate the
13334 2006-02-28 Peter Dennis Bartok <pbartok@novell.com>
13336 * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
13338 2006-02-28 Alexander Olk <alex.olk@googlemail.com>
13341 - Got rid of the panel. All controls are now directly added to
13343 - It is now possible to set a font with the Font property
13344 - MinSize and MaxSize property do now what they should
13345 - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
13346 - Searching and selecting a font with the font textbox works now,
13347 the same applies to the style and size textbox
13348 - Draw the correct 3D border in the example panel
13349 - Fixed a little mem leak (unused fonts didn't get disposed)
13350 - Many other internal updates/rewrites...
13353 2006-02-27 Peter Dennis Bartok <pbartok@novell.com>
13356 - InsertRTFFromStream: Added 'number of characters inserted' argument
13357 - set_SelectedRTF: Now using the number of characters to calculate
13358 the new location for the selection and cursor (x/y cannot be used
13359 due to potentially already wrapped text)
13361 2006-02-27 Peter Dennis Bartok <pbartok@novell.com>
13363 * TextControl.cs: Added property and implemented means to allow
13364 disabling recalculation of a document (can be used to speed up
13365 multiple inserts and is needed to make RTF inserts predictable, see
13367 * RichTextBox.cs: Using the new NoRecalc property of Document to
13368 keep x/y insert locations predictable. Also makes it faster inserting
13369 large chunks of RTF
13371 2006-02-27 Peter Dennis Bartok <pbartok@novell.com>
13373 * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
13374 it's easier for a child control to handle the other messages without
13375 having to duplicate the special functionality
13377 - WndProc: Removed calling base handler for WM_KEYDOWN and added
13378 code to handle processing the key ourselves, in order to get
13379 access to the result of KeyEventArgs.Handled. We now only call
13380 ProcessKey if they key hasn't been handled already. Fixes #77526.
13381 - set_Text: If null or empty string is given, just clear the
13382 document. Fixes part of #77526
13384 2006-02-27 Jackson Harper <jackson@ximian.com>
13386 * SizeGrip.cs: Paint the background color before painting the grip
13387 so things look right.
13388 * MdiClient.cs: Add the sizegrip when both scrollbars are used.
13390 2006-02-27 Mike Kestner <mkestner@novell.com>
13393 - Restructure layout and invalidation model to remove a ton of
13394 flicker from the control and speed up performance in general.
13395 - Add manual column resize, flickers like crazy, but I already have
13396 some ideas on how I'll fix that. (#76822)
13397 - Merge the three Icon-based views into a single layout method.
13398 - Move item selection interaction logic from the item since
13399 interaction with the collections is more appropriate to the view.
13400 - Deselection on non-item clicks.
13402 - Encapsulate most of the layout. Add some internal props to trigger
13403 layout. Move to a model where Items invalidate themselves instead
13404 of just invalidating the whole control every time something changes.
13405 - Invalidate on Text/Caption changes.
13406 - switch to an offset based layout model to avoid having to absolute
13407 position every element on item moves.
13408 - correct checkbox layout to conform to MS layout.
13409 * ThemeWin32Classic.cs:
13410 - refactor some column header drawing code.
13411 - fix string justification for column headers (#76821)
13412 - make SmallIcon labels top justified for compat with MS impl.
13413 * ThemeClearlooks.cs:
13414 - adjust to new ListViewItem internal checkbox bounds api.
13416 2006-02-27 Jackson Harper <jackson@ximian.com>
13418 * Control.cs: Change where implicit controls fall in the zorder.
13419 They are now on top of all children.
13420 - Synced AddImplicit code with Add
13421 - Removed unused enumerator.
13422 * SizeGrip.cs: Remove the TODO as its been TODONE.
13424 2006-02-26 Peter Dennis Bartok <pbartok@novell.com>
13426 * TextControl.cs(Insert): Combine the last lines unless the insertion
13427 string ends with \n\n, otherwise we leave one line too many (Fixes
13428 something I noticed with the testapp for #77526; the bug itself was
13429 already fixed in the previous checkin)
13431 2006-02-26 Peter Dennis Bartok <pbartok@novell.com>
13434 - SelectionColor and SelectionFont methods no longer set absolute
13435 styles. Instead, the keep font or color respectively (This
13436 resolves a long-standing FIXME in the code)
13437 - When flushing RTF text, the insert code now considers text trailing
13438 behind the insertion point (Fixes the bug where when replacing
13439 the selected text via SelectedRTF the remainder of the line behind
13440 the selection would stay on the first insertion line)
13442 - AppendText now updates the selection points after inserting text
13443 - AppendText now ensures that the last tag (sometimes 0-length) of
13444 the document is used for the style information (Fixes part of
13447 - Created new FontDefiniton class to allow describing partial style
13449 - StreamLine() now takes a lines argument, to allow it to decide
13450 whether an encountered zero-length tag is the last in the document
13451 (which must be kept to not loose the font/color contained in it,
13453 - Created Combine() and Split() methods for Marker structs, to
13454 support marker updates due to reformatted documents (soft line
13456 - Implemented Document.CaretTag setter
13457 - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
13458 of the last line (Not the cause, but also exposed by bug #77220)
13459 - Added LineTag argument to InsertString method, to allow callers
13460 to force a certain tag to be used (required to force use of the
13461 trailing zero-length tag of a document)
13462 - Now updating markers in Combine(), to avoid stale tag markers
13463 - Added some method descriptions to aid maintenance
13464 - Implemented new FormatText concept, allowing additive/subtractive
13465 formatting by only specifying the components that are to be
13466 changed. This was needed for resolving the RTB.SelectedColor/
13467 RTB.SelectedFont fixmes
13468 - Added Break() support method to allow breaking up linetags (used
13469 for partial formatting)
13470 - Added GenerateTextFormat() method. It is used for partial
13471 formatting and allows to generate a full font/color from given
13472 attributes and an existing tag.
13474 2006-02-26 Jackson Harper <jackson@ximian.com>
13476 * XplatUIX11.cs: Use the correct caption height.
13477 - Translate hittest coordinates to screen coords to match MS.
13478 * XplatUIWin32.cs: When we create MDI windows we need to reset
13479 some of the style flags, so we get a nice blank window, and can
13480 draw all the decorations ourselves.
13481 - Set a clipping rectangle on the non client paint event, the
13482 window manager drawing code needs one.
13483 * Form.cs: The window manager needs to know when the window state
13485 * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
13486 don't need to factor in border and title sizes in these
13487 methods. TODO: Remove the args and fix the call points.
13488 * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
13490 - Let the driver set the cursors.
13491 - Improve active window handling
13492 - Correct sizes for title bars and buttons.
13493 - Match MS drawing better
13494 * MdiWindowManager.cs: We don't need to handle border style
13495 updates specially anymore.
13496 - Check for scrollbars when windows are done moving
13497 - Handle Active properly.
13498 * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
13499 correctly. I am spewing the exception though, so we don't hide the
13502 2006-02-26 Pedro Martinez Julia <pedromj@gmail.com>
13504 * DataGridViewRowPostPaintEventArgs.cs,
13505 DataGridViewCellPaintingEventArgs.cs,
13506 DataGridViewRowCollection.cs,
13507 DataGridViewRowPrePaintEventArgs.cs,
13508 DataGridViewCell.cs: Clear a few warnings and implement a few
13509 exceptions that should be thrown.
13511 2006-02-22 Peter Dennis Bartok <pbartok@novell.com>
13513 * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
13514 'inheriting' our parent's (non-default) cursor. (Part of
13515 the fix for #77479)
13517 2006-02-22 Peter Dennis Bartok <pbartok@novell.com>
13519 * XplatUIX11.cs: Fixed cast to make csc happy
13521 2006-02-22 Peter Dennis Bartok <pbartok@novell.com>
13523 * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
13524 it's for the client area (part of fix for #77479 and needed
13525 for MDI window cursor handling)
13527 - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
13528 the appropriate default cursors and also passing the message
13529 up the parent chain
13530 - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
13531 for non-client areas
13533 2006-02-15 Jackson Harper <jackson@ximian.com>
13535 * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
13536 is a real MDI window
13538 2006-02-14 Alexander Olk <alex.olk@googlemail.com>
13540 * X11DesktopColors.cs: Instead of checking the desktop session
13541 string for "KDE" check if it starts with "KDE"
13543 2006-02-10 Jackson Harper <jackson@ximian.com>
13545 * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
13548 2006-02-10 Alexander Olk <alex.olk@googlemail.com>
13550 * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
13553 - Got rid of the panel. All controls are now directly added to
13555 - Changed to mono coding style
13557 2006-02-10 Jackson Harper <jackson@ximian.com>
13559 * InternalWindowManager.cs: We don't need the set visibility to
13560 false hack anymore now that peter has written beautiful shutdown
13563 2006-02-10 Peter Dennis Bartok <pbartok@novell.com>
13565 * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
13566 where already explicitly destroyed
13568 2006-02-10 Jackson Harper <jackson@ximian.com>
13570 * MdiClient.cs: Handle the case where windows are too high or to
13571 the left and we need scrollbars.
13573 2006-02-10 Alexander Olk <alex.olk@googlemail.com>
13575 * MimeIcon.cs: Added some icons
13578 - Got rid of the panel. All controls are now directly added to
13580 - Changed to mono coding style
13581 - On Linux "My Computer" and "My Network" will now show some
13582 more usefull information. A new class, MasterMount, gathers
13583 this information from /proc/mount. Updated MWFFileView to make
13584 use of this information
13585 - Fixed a bug that caused FileDialog to crash when
13586 ".recently_used" file had a zero size
13587 - FilterIndex does now what it should
13589 * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
13592 2006-02-09 Jackson Harper <jackson@ximian.com>
13594 * ComboBox.cs: Don't touch if null.
13596 2006-02-09 Peter Dennis Bartok <pbartok@novell.com>
13598 * Cursor.cs: 64bit safeness fix
13599 * XplatUIX11.cs: Removed several unneeded and one moronic cast.
13601 2006-02-09 Jackson Harper <jackson@ximian.com>
13603 * Form.cs: If a form is made into an MDI form update the styles so
13604 all the props can get set correctly.
13605 - Kill the mdi_container when we dont need it anymore.
13606 * InternalWindowManager.cs: Add missing NOT
13608 2006-02-08 Jackson Harper <jackson@ximian.com>
13610 * InternalWindowManager.cs: Respek clipping when drawing MDi
13613 2006-02-08 Jackson Harper <jackson@ximian.com>
13615 * Hwnd.cs: Add bits to track non client expose events.
13616 * XplatUIX11.cs: Track non client expose events on the hwnd. This
13617 gives us a proper invalid rect and will allow for some nice
13618 optimizations with NC client drawing
13619 - MDI windows are children windows, so move their style handling
13620 into the child window block.
13621 * InternalWindowManager.cs: Remove a state reset that was
13622 getting invoked at the wrong time. Fixes managed windows getting
13623 into a 'stuck' captured state.
13625 2006-02-07 Peter Dennis Bartok <pbartok@novell.com>
13627 * TextControl.cs (Document.ctor): Now initializing
13628 selection_anchor. Fixes #77493
13630 2006-02-07 Jackson Harper <jackson@ximian.com>
13632 * TrackBar.cs: The increment/decrements were backwards.
13634 2006-02-07 Mike Kestner <mkestner@novell.com>
13636 * Theme*.cs : remove ThemeEngine.Current usage as it just points back
13637 to the instance itself.
13639 2006-02-07 Peter Dennis Bartok <pbartok@novell.com>
13641 * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
13642 on ulongs and pointers, the size differs between 32bit and 64bit
13645 2006-02-07 Mike Kestner <mkestner@novell.com>
13647 * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
13648 for 64 bit platforms to work around a metacity bug.
13650 2006-02-07 Jackson Harper <jackson@ximian.com>
13652 * TrackBar.cs: Process the input keys we need, and hookup to
13653 KeyDown instead of using WndProc, so we get key messages.
13655 2006-02-06 Peter Dennis Bartok <pbartok@novell.com>
13657 * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
13659 * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
13660 we need to translate the XdndVersion atoms array before sending it
13662 2006-02-06 Peter Dennis Bartok <pbartok@novell.com>
13665 - The preceeding 64bit fixes had a bug: ChangeProperty expects the
13666 number of bits for the property, not the number of bytes. The
13667 change to provide IntPtr.Size broke 32bit. (64bit was also wrong
13668 but would not crash since it specified 8 bits instead of 4 bits)
13669 - More 64bit fixes: Switched all atoms from int to IntPtr (they are
13670 defined as XID -> long in the C headers)
13671 - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms
13672 references since those are now IntPtr to begin with
13673 - Switched all Atom.XXX 'int' casts to IntPtr casts
13674 - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
13675 - Fixed XInternAtom signature for 64bit, now returns an IntPtr
13676 - Added XChangeActivePointerGrab DllImport (for X11DnD)
13678 - Changed 'int' type for Atoms in XEvent structures to IntPtr
13679 - Changed atom in HoverStruct to be IntPtr
13681 - Removed local DllImports, switched code to use those from XplatUIX11
13682 - Removed/fixed casts related to the switch of Atom to be a IntPtr
13684 2006-02-06 Mike Kestner <mkestner@novell.com>
13686 * XplatUIX11.cs : many more 64 bit pinvoke changes. I've audited all the
13687 method signatures in the import region. There may still be some
13688 lingering struct marshaling issues, as I didn't drill down into those.
13691 2006-02-06 Jackson Harper <jackson@ximian.com>
13693 * ComboBox.cs: Dont manually set the top_item, this is computed
13694 when the scrollbar position is set.
13696 2006-02-06 Mike Kestner <mkestner@novell.com>
13698 * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
13699 startup crashes on amd64. There's other fixes needed. All pinvoke
13700 usage of Atom needs to be mapped to IntPtr for example. And there are
13701 likely other int/long issues to be addressed.
13703 2006-02-04 Alexander Olk <alex.olk@googlemail.com>
13705 * FileDialog.cs: One more...
13707 2006-02-03 Alexander Olk <alex.olk@googlemail.com>
13709 * FileDialog.cs: Next try
13711 2006-02-03 Alexander Olk <alex.olk@googlemail.com>
13713 * FileDialog.cs: First part of fix for #77464
13715 2006-02-03 Alexander Olk <alex.olk@googlemail.com>
13717 * ButtonBase.cs, ContainerControl.cs, Forms.cs,
13718 ThemeWin32Classic.cs: Fix for #77458. Correct handling of
13719 AcceptButton border drawing.
13721 2006-02-03 Peter Dennis Bartok <pbartok@novell.com>
13723 * Form.cs: Moved positioning of form after auto scaling is applied,
13724 otherwise it would possibly use wrong form size.
13726 2006-02-03 Peter Dennis Bartok <pbartok@novell.com>
13728 * Control.cs (RecreateHandle): No need to re-create any child
13729 controls, the child windows will get destroyed automatically by
13730 the windowing system or driver, and re-created when the handle
13731 is being accessed the first time. Fixes #77456
13732 * Form.cs: No longer setting the form to closing if the handle is
13733 being recreated. This seems like the right thing to do, don't
13734 have a bug or testcase for this, though.
13736 2006-02-02 Peter Dennis Bartok <pbartok@novell.com>
13738 * FileDialog.cs: Suspend/Resume layouting when changing sizes of
13739 controls to avoid unwanted side effects
13741 2006-02-02 Peter Dennis Bartok <pbartok@novell.com>
13744 - ScaleCore needs to scale the bounds, not the ClientSize of the
13745 control. Fixes #77416.
13746 - DefaultSize is 0,0 for control
13748 - DefaultSize is 100, 20
13749 - SetBoundsCore: Now enforcing the height, no matter if the provided
13750 height is more or less than the preferred one, as long as AutoSize
13752 * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
13754 2006-02-02 Peter Dennis Bartok <pbartok@novell.com>
13757 - ResumeLayout: Fixed logic when to call PerformLayout, we may not
13758 call unless both performLayout is true *and* we have a pending
13760 - ResumeLayout: MS does not completely nest Suspend and Resume,
13761 they bottom out at 0, fixed our code to match that.
13762 - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
13763 SetBoundsCore, we were updating even when we shouldn't. This fixes
13764 swf-anchors mis-anchoring when resizing the app fast and lots.
13765 - UpdateDistances: Now only setting the left and top distance if
13766 we have a parent and are not suspended, this is based on
13767 a suggestion by Don Edvaldson in bug #77355.
13768 - OnVisibleChanged: Fixed logic when to create the control. We may
13769 not create the control if we have no parent or if it's not visible;
13770 switched to using Visible property instead of is_visible field
13771 since the property also considers parent states. This fixes a bug
13772 when starting Paint.Net
13774 2006-02-02 Jackson Harper <jackson@ximian.com>
13776 * Form.cs: If the forms handle hasn't been created yet don't call
13777 into xplatui to make it top most, just set the topmost flag on the
13778 form in CreateParams
13779 * XplatUIX11.cs: Handle WS_EX_TOPMOST.
13781 2006-02-01 Jackson Harper <jackson@ximian.com>
13783 * ScrollableControl.cs: Refactored the Recalculate method a
13784 little, this wasn't handling all the variants of bottom and right
13785 bars needed to be added and added/removed based on their
13786 counterparts being added/removed (which changes the drawable
13787 size). Also we special case client widths and heights of 0 and
13788 don't add the scrollbar for those.
13790 2006-02-01 Peter Dennis Bartok <pbartok@novell.com>
13793 - Added method to get AbsoluteGeometry(); currently unused, but might
13794 be used in the future, if we try again to figure out toplevel
13795 coordinates with some more crappy window managers
13796 - Added FrameExtents() method to retrieve the WM set decoration size
13797 - Tried to fix up AddConfigureNotify and handling of ReparentNotify
13798 to deal with at least KDE, FVWM and metacity (Fixes #77092)
13800 - Added whacky_wm tracking var for metacity
13801 - Added logic to have default menu height if the actual menu height
13802 has not yet been calculated (part of fix for #77426)
13803 * Form.cs: Keep track whether client size has been set and re-set
13804 it if a menu is added/removed afterwards (Fixes #77426)
13806 2006-01-31 Jackson Harper <jackson@ximian.com>
13808 * Control.cs: When a new Site is set on the component attempt to
13809 pull the AmbientProperties from it.
13811 2006-01-31 Peter Dennis Bartok <pbartok@novell.com>
13813 * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
13814 in the background of the owning form. Fixes #77332
13816 2006-01-31 Alexander Olk <alex.olk@googlemail.com>
13818 * MimeIcon.cs: Fix for #77409
13820 2006-01-31 Alexander Olk <alex.olk@googlemail.com>
13822 * XplatUIX11GTK.cs: Initial import
13824 2006-01-31 Jordi Mas i Hernandez <jordimash@gmail.com>
13826 * FixedSizeTextBox: fixes class signature
13828 2006-01-30 Jackson Harper <jackson@ximian.com>
13830 * FixedSizeTextBox.cs: New internal class that represents a
13831 textBox that will not be scaled.
13834 * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
13837 2006-01-30 Peter Dennis Bartok <pbartok@novell.com>
13839 * XplatUIX11.cs: Retrieve default screen number instead of
13840 assuming 0. Attempted fix for #77318
13842 2006-01-30 Peter Dennis Bartok <pbartok@novell.com>
13845 - GetWindowPos: When a window is parented by FosterParent, use
13846 the desktop instead of FosterParent as the base to get coordinates
13847 - CreateWindow: Don't make FosterParent the parent window for Popups
13848 if we don't want a taskbar entry, Popups automatically don't get one
13849 * Hwnd.cs: Need to call remove to actually remove the key from the
13852 2006-01-30 Mike Kestner <mkestner@novell.com>
13854 * MenuAPI.cs: adjust MainMenu item popup location to y=0.
13856 2006-01-30 Jackson Harper <jackson@ximian.com>
13859 * TreeNode.cs: Raise events no matter how the treenode is
13860 checked. Patch by Don Edvalson.
13862 2006-01-30 Jackson Harper <jackson@ximian.com>
13864 * TreeNode.cs: Signature fix.
13866 2006-01-29 Alexander Olk <alex.olk@googlemail.com>
13868 * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
13870 2006-01-20 Mike Kestner <mkestner@novell.com>
13872 * Form.cs: Add ActiveTracker property to do Captures and perform mouse
13873 event forwarding when menus are active.
13874 * MenuAPI.cs: kill the GrabControl hack. Use Form.ActiveTracker.
13875 Most of the patch is pdb's with a little rework.
13877 2006-01-26 Peter Dennis Bartok <pbartok@novell.com>
13879 * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs:
13880 Removed GetMenuDC and ReleaseMenuDC methods; replaced
13881 by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
13882 * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
13883 * InternalWindowManager.cs: Added use of PaintEventStart/End to
13884 handling of WM_NCPAINT message, now passing the PaintEventArgs to
13885 the PaintWindowDecorations method
13886 * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
13887 * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
13888 * MenuAPI.cs: Made tracker window invisible
13890 - Removed GetMenuDC and ReleaseMenuDC methods
13891 - Implemented the client=false path for PaintEventStart and
13894 2006-01-26 Peter Dennis Bartok <pbartok@novell.com>
13896 * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
13897 * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
13900 - MaximizeBox, MinimizeBox: Recreate the handle when setting
13902 - CreateParams: Reworked the styles to match MS look'n'feel,
13903 removed automatic setting of MinimizeBox, MaximizeBox, etc. via
13904 the WS_OVERLAPPEDWINDOW style. This fixes #76823.
13906 2006-01-26 Peter Dennis Bartok <pbartok@novell.com>
13908 * XplatUIX11.cs(GetWindowState): Now throwing an exception when the
13909 window is not mapped, since otherwise every form that's being
13910 created is considered minimized, which is wrong.
13911 * Form.cs: Catching the exception and returning our internal value
13914 2006-01-26 Peter Dennis Bartok <pbartok@novell.com>
13916 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
13917 SetWindowMinMax() to have means to tell the driver about the minimum,
13918 maximum and maximized state window sizes. (Part of the fix for #76485)
13920 - Implemented tracking of minimum and maximum window size, now calling
13921 new SetWindowMinMax() driver method to tell the driver (Part of the
13923 - Finished handling of WM_GETMINMAXINFO method, now setting all values
13924 (Completes fix for #76485)
13925 - Calling new SetWindowMinMax driver method when the handle for a
13926 form is created, to make sure the driver knows about it even if
13927 the values have been set before the window was created
13928 - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
13929 to avoid messing up our anchoring calculations (partial fix
13931 * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
13933 - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
13934 - Improved GetWindowState() to detect 'Minimized' state on Metacity
13935 (and presumably other freedesktop.org compliant WMs). Left the
13936 assumption unmapped=minimized, needed for SetVisible to work.
13937 - Now setting the window state when creating windows
13938 - Fixed SetVisible to consider/set the window state when mapping
13939 a Form. We cannot set the state before it's mapped, and we cannot
13940 use Form.WindowState once it's mapped (since it would ask the
13941 driver and get 'normal'. Therefore, we grab the state before
13942 mapping, map, and then set state.
13943 - Implmemented SetWindowMinMax method; Metacity does not seem to
13944 honor the ZoomHints, though.
13946 - Removed MINMAXINFO (moved to XplatUIStructs)
13947 - Added SetWindowMinMax stub (on Win32 the only way to set that
13948 information is in response to the WM_GETMINMAXINFO message, which
13949 is handled in Form.cs)
13950 - Added logic to SetVisible to set the proper window state when a
13951 form is made visible (fixes #75720)
13953 2006-01-26 Jackson Harper <jackson@ximian.com>
13955 * Control.cs (BeginInvoke): Automagically handle EventHandlers the
13956 same way we handle them with Invoke.
13958 2006-01-25 Peter Dennis Bartok <pbartok@novell.com>
13961 - Added tracking of window state so CreateParams can return
13962 the appropriate style
13963 - Moved setting of WS_CAPTION style in CreateParams to allow
13964 styles without caption
13965 * DataGridTextBoxColumn.cs: We are now also creating the TextBox
13966 control if the TextBox property is accessed. Fixes #77345
13968 - get_Created: now uses is_disposed and is_created to determine
13969 return value (suggested by Jackson)
13970 - CreateHandle: No longer exits if the handle is being recreated
13971 - RecreateHandle: If the handle is not yet created call the
13972 appropriate method to create either control or handle. If the
13973 control is already created CreateHandle will simply exit instead
13974 of just creating the handle
13975 * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
13976 now SendMessage WM_DESTROY directly to the control when DestroyWindow
13979 - When DestroyWindow is called, instead of waiting for the
13980 DestroyNotification from X11, we directly post it to the WndProc
13981 and immediately dispose the hwnd object.
13982 Same applies to DestroyChildWindows, and this obsoletes the
13983 expose_pending tracking. Contrary to Win32 behaviour we destroy our
13984 child windows before our own, to avoid X11 errors.
13985 - Removed the direct sending of WM_PAINT on UpdateWindow
13987 - Reworked DoEvents and GetMessage to allow access to internal queue
13988 even when trying non-blocking access to the queue. Fixes #77335.
13989 Based on a patch suggestion by Don Edvalson. The new private
13990 GetMessage can now also be used as a backend for a PeekMessage
13992 * XplatUI.cs: Improved debug output for CreateWindow
13994 2006-01-25 Jackson Harper <jackson@ximian.com>
13996 * Help.cs: Allow param to be null. Patch by Don Edvalson.
13998 2006-01-24 Jackson Harper <jackson@ximian.com>
14000 * ComboBox.cs: Clamp the max value set for the vertical scrollbar
14001 when we have a MaxDropItems lower then the selected index.
14003 2006-01-24 Jackson Harper <jackson@ximian.com>
14005 * Control.cs: Don't allow selection of non visible controls, allow
14006 selection of controls without parents.
14008 2006-01-24 Jordi Mas i Hernandez <jordimash@gmail.com>
14010 * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
14011 * DataGridDrawingLogic.cs: Add editing row only when is necessary
14013 2006-01-23 Jackson Harper <jackson@ximian.com>
14015 * UpDownBase.cs: Make the textbox handle all the selection and
14016 tabbing. This fixes tabing to updown controls.
14018 2006-01-24 Jordi Mas i Hernandez <jordimash@gmail.com>
14020 * TextBoxBase.cs: fixes exception thown the object was null
14022 2006-01-23 Jackson Harper <jackson@ximian.com>
14024 * ButtonBase.cs: Just use the base CreateParams. They set
14025 visibility and enabled correctly.
14028 * MonthCalendar.cs: Lets let the base set as much of the
14029 createparams as possible so we don't have duplicate code all over
14032 2006-01-22 Alexander Olk <alex.olk@googlemail.com>
14034 * ThemeGtk.cs: Added TrackBar and some experimental code to
14035 get double buffering back
14037 2006-01-21 Jordi Mas i Hernandez <jordimash@gmail.com>
14039 * DataGrid.cs: Allows row number set internally higher than the last
14040 when creating a new row. Restores the editing functionality.
14042 2006-01-20 Mike Kestner <mkestner@novell.com>
14044 * MimeIcon.cs: delay Image creation until the icons are accessed
14045 instead of creating 190 scaled images on GnomeHandler startup.
14047 2006-01-19 Peter Dennis Bartok <pbartok@novell.com>
14049 * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
14050 first call base before processing the event. Fixes #77279
14052 2006-01-19 Peter Dennis Bartok <pbartok@novell.com>
14054 * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
14055 that the stride for the GDI bitmap would match the stride of
14058 2006-01-19 Alexander Olk <alex.olk@googlemail.com>
14060 * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
14062 2006-01-19 Jackson Harper <jackson@ximian.com>
14064 * ComboBox.cs: Hookup the text controls keydown event so we get
14065 those when the text control has the focus.
14067 2006-01-18 Peter Dennis Bartok <pbartok@novell.com>
14069 * Label.cs: Now using the base events instead of defining new ones;
14070 this allows us to just call the base properties without having to
14071 duplicate all base property logic
14073 2006-01-18 Peter Dennis Bartok <pbartok@novell.com>
14075 * Label.cs: A label by default is not a tabstop (Fixes one of our
14076 failing nunit tests)
14078 2006-01-18 Peter Dennis Bartok <pbartok@novell.com>
14080 * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
14081 * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
14083 2006-01-18 Peter Dennis Bartok <pbartok@novell.com>
14085 * Cursor.cs: Reimplemented creating cursor bitmaps without using
14086 the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
14089 - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream)
14090 constructor creates images that can't be saved. Part of the fix
14092 - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
14093 - SetWindowState: Switched ShowWindow flags (part of an upcoming
14094 bug fix for handling window state in forms properly)
14096 2006-01-18 Alexander Olk <alex.olk@googlemail.com>
14098 * ThemeGtk.cs: Simplify ScrollBar drawing
14100 2006-01-18 Jackson Harper <jackson@ximian.com>
14102 * Splitter.cs: Set the default dock style for the splitter control
14103 in the constructor.
14105 2006-01-18 Alexander Olk <alex.olk@googlemail.com>
14107 * ThemeGtk.cs: Corrected StateType and ShadowType for
14110 2006-01-18 Alexander Olk <alex.olk@googlemail.com>
14112 * Control.cs: Make use of Theme.DoubleBufferingSupported
14114 - Added drawing for flat style buttons
14115 - Added ScrollBar drawing
14117 2006-01-18 Alexander Olk <alex.olk@googlemail.com>
14119 * ThemeClearlooks.cs: Removed some unneeded code.
14120 * ThemeGtk.cs: First part of ThemeGtk enhancements.
14122 2006-01-17 Peter Dennis Bartok <pbartok@novell.com>
14124 * LinkLabel.cs: We need to update the hover drawing when
14125 leaving the control as well.
14127 2006-01-18 Jordi Mas i Hernandez <jordimash@gmail.com>
14129 * DataGrid.cs: Clicking on non empty areas in the columns
14130 area was giving an exception
14132 2006-01-17 Jackson Harper <jackson@ximian.com>
14134 * ThemeWin32Classic.cs:
14135 * ListView.cs: Do not draw/clip the headers when the header style
14138 2006-01-17 Jordi Mas i Hernandez <jordimash@gmail.com>
14140 * DataGrid.cs: Fixes 77260
14142 2006-01-17 Jordi Mas i Hernandez <jordimash@gmail.com>
14144 * DataGrid.cs: Clicking on a column on a empty grid was giving
14147 2006-01-17 Peter Dennis Bartok <pbartok@novell.com>
14149 * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
14150 or any keypress will crash the grid.
14152 2006-01-17 Mike Kestner <mkestner@novell.com>
14154 * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
14155 * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for
14156 invisible/previously-visible items.
14159 2006-01-17 Alexander Olk <alex.olk@googlemail.com>
14161 * ThemeClearlooks.cs:
14162 - Added CL_Draw_Button method; now other theme controls that are
14163 not derived from button or do not have a button can draw buttons
14165 - Updated ComboBox drawing
14166 - Beautified RadioButton drawing
14167 - Corrected drawing of bottom and left tabs
14168 - Beautified DateTimePicker and MonthCalendar
14169 - Added CPDrawButton and CPDrawRadioButton
14171 2006-01-16 Jackson Harper <jackson@ximian.com>
14173 * ComboBox.cs: Set the initial value of the scrollbar to the
14174 current index. Reduce the numbers of refreshs and IndexOfs called.
14176 2006-01-14 Alexander Olk <alex.olk@googlemail.com>
14178 * FileDialog.cs: When the file listview is focused hitting the
14179 backspace key moves the fileview to the parent directory
14181 2006-01-13 Peter Dennis Bartok <pbartok@novell.com>
14184 - Added RecreateHandle call when changing taskbar visibility to
14185 trigger reparenting in Win32 driver (Fixes #75719)
14186 - If a window has minimize or maximize buttons, it cannot have
14189 - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
14190 the toplevel form with FosterParent (A toolwindow not on the
14191 taskbar) (Fixes #75719)
14192 - Made FosterParent a toolwindow
14194 2006-01-13 Alexander Olk <alex.olk@googlemail.com>
14196 * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
14198 2006-01-13 Alexander Olk <alex.olk@googlemail.com>
14200 * ToolTip.cs: If SetToolTip is called from a control and the mouse
14201 is currently over that control, make sure that tooltip_window.Text
14204 2006-01-13 Mike Kestner <mkestner@novell.com>
14206 * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
14208 2006-01-13 Jackson Harper <jackson@ximian.com>
14210 * TreeView.cs: On MS GetNodeAt never actually factors in the X
14211 value passed. Also redraw the selected node when we recieve
14212 focus, so tabbing between trees works correctly.
14214 2006-01-13 Alexander Olk <alex.olk@googlemail.com>
14216 * MimeIcon.cs: GnomeHandler: older gnome versions don't have
14217 ~/.gconf/%gconf-tree.xml, so use
14218 .gconf/desktop/gnome/interface/%gconf.xml
14220 2006-01-13 Peter Dennis Bartok <pbartok@novell.com>
14222 * TextControl.cs: Draw text in gray if control is disabled
14224 2006-01-13 Peter Dennis Bartok <pbartok@novell.com>
14226 * TreeView.cs: Draw the focus rectangle outside the highlight, to
14227 make sure it's always visible. Fixes #76680.
14229 2006-01-13 Peter Dennis Bartok <pbartok@novell.com>
14231 * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
14233 2006-01-13 Jonathan Chambers <jonathan.chambers@ansys.com>
14235 * PageSetupDialog.cs: Added.
14236 * PrintDialog.cs: Attributes.
14237 * PrintPreviewControl.cs: Updates.
14238 * PrintPreviewDialog.cs: Updates.
14240 2006-01-12 Peter Dennis Bartok <pbartok@novell.com>
14242 * Control.cs: Undid my selection check fix, since it's not needed
14244 - Now considering the presence of hscroll/vscroll when sizing
14245 vscroll/hscroll respectively. Fixed bug #77077
14246 - Added Left/Up/Down/Right to IsInputKey list to prevent
14247 ContainerControl from stealing them. This fixes what I broke
14248 with my last checkin.
14250 2006-01-12 Peter Dennis Bartok <pbartok@novell.com>
14252 * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
14253 I finally understand how the property can be set without a setter :-)
14255 2006-01-12 Peter Dennis Bartok <pbartok@novell.com>
14258 - Switched RunLoop to use static Message.Create to create a
14260 - Added PreProcessMessage call in runloop for keyboard events; this
14261 is part of the fix for #77219, I overlooked this originally in the
14262 MSDN doc for PreProcessMessage
14264 - Removed call to PreProcessMessage from handling of keyboard
14265 messages; it's supposed to be done in the message pump
14266 - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
14267 per MSDN documentation.
14268 - IsInputChar: All chars are input chars by default; removed the
14269 parent calling chain, MS does not document that
14270 - PreProcessMessage: If IsInputChar is true, we want to return false
14271 to allow dispatching of the message
14272 - When selecting the next control, now also check that we're not
14273 selecting ourselves again and therefore return a false positive.
14275 - Tried to match return values for IsInputKey and ProcessDialogKey
14276 to what MS returns; moved processing of our special keys outside
14277 ProcessDialogKey since MS does not seem to return true on those.
14278 - Moved code that previously was in ProcessDialogKey into new private
14279 ProcessKey method, which gets called upon receipt of WM_KEYDOWN
14280 - Reworked handling of WM_CHAR to not have to duplicate code from
14281 Control.cs anymore, instead we simply call down to base.
14283 2006-01-12 Jackson Harper <jackson@ximian.com>
14285 * ComboBox.cs: We always need to refresh the text area when
14286 EndUpdate is called. Fixes the combobox in the file dialog.
14287 * Control.cs: Don't create the creator_thread until the controls
14288 handle is created. Also in InvokeRequired we check if the
14289 creator_thread is null. This gives the effect of InvokeRequired
14290 returning true if the controls handle is not created yet, and
14293 2006-01-12 Peter Dennis Bartok <pbartok@novell.com>
14296 - Added StartLoop() driver method. This is used to allow drivers to
14297 prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
14298 loop for a particular thread
14299 - Added EndLoop() driver method. This is called once the message
14300 pump for the thread is shut down
14301 - Added SupportsTransparency method to allow the driver to indicate
14302 opacity support for windows
14304 - Removed TODO attribute, completed AllowTransparency property
14305 - Added documented logic to Opacity
14306 * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
14307 ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
14308 versions of CompatibleTextRendering
14309 * X11Structs.cs: Added opacity atom to our atom enumeration
14310 * Hwnd.cs: Added opacity tracking (we need to track since the opacity
14311 of a form might be set before it's reparented by the WM, and we need
14312 the opacity value without calling up to Form)
14313 * XplatUIDriver.cs: Added StartLoop(), EndLoop() and
14314 SupportsTransparency() driver methods
14315 * Application.cs: Now calling StartLoop and EndLoop driver methods
14317 - Added opacity atom registration
14318 - Added StartLoop()/EndLoop() methods. They're empty right now but
14319 will need to get implemented when we switch to a per-thread queue
14320 - Implemented SupportsTransparency() method
14321 - Implemented SetWindowTransparency() method
14322 - Added support for setting the opacity value when a window is
14323 reparented (since the opacity needs to be set on the WM frame)
14324 * XplatUIOSX.cs, XplatUIWin32.cs:
14325 - Added SupportsTransparency(), StartLoop() and EndLoop() methods
14327 2006-01-12 Alexander Olk <alex.olk@googlemail.com>
14329 * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
14331 2006-01-12 Alexander Olk <alex.olk@googlemail.com>
14333 * FileDialog.cs: Added ToolTip for MWFFileView
14334 * MimeIcon.cs: Rewrote GnomeHandler.
14335 - Get currently used gnome icon theme from
14336 ($HOME)/.gconf/%gconf-tree.xml
14337 - Make use of inherited icon themes
14338 - Support SVG icon themes like Tango via librsvg
14340 2006-01-12 Miguel de Icaza <miguel@novell.com>
14342 Revert's Jackson's revert which broke 2.0 builds. Fix both
14345 * Application.cs: Move the use_compatible_text_rendering outside
14346 the NET_2_0 define. If we ever need to use the
14347 use_compatible_text_rendering on the individual controls they will
14348 access the variable from the common shared code paths.
14350 2006-01-12 Peter Dennis Bartok <pbartok@novell.com>
14353 - Added more granular debug options
14354 - Added method to print both window text and id
14355 - Switched debug output to use new Window() debug method
14356 - Added IsEnabled() driver method
14357 - Added EnableWindow() driver method
14359 - Removed end_modal; no longer needed, new loop handles termination
14360 via 'closing' variable
14361 - If form is modal, setting DialogResult will now initiate loop
14362 termination via 'closing' variable
14363 - Added support for is_enabled/WS_DISABLED to CreateParams
14364 - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
14366 - Removed code that's now in RunLoop from ShowDialog()
14367 - Added various documented sanity checks to ShowDialog()
14368 - Added handling of WM_DESTROY message; we set 'closing' on getting
14369 the message to indicate the message pump to terminate
14370 - Added handling of new internal WM_CLOSE_INTERNAL message - it's
14371 send by the Application.ExitThread method. (We send the message
14372 to destroy the window after all other events have been
14373 processed through the queue, instead of destroying the handle
14375 - Moved code from Close() method to WM_CLOSE handler; added logic
14376 to only send close-related events if the form is not displayed
14378 * Splitter.cs (..ctor): Fixed typo in resource name
14380 - DrawBackgroundImage: Explicitly selecting the wrap mode for the
14382 - set_Cursor: Now only setting calling into XplatUI if the handle for
14383 the control is already created; this avoids implict handle creation
14384 or crashes if it's not created
14385 - set_Enabled: Now setting the enabled state via the new driver method
14386 instead of just tracking it
14387 - CreateParams: Added logic to set WS_DISABLED based on enabled state
14388 - CreateControl: Reordered event firing and method calls to more
14389 closely fire events in the order MS does. Now setting the
14390 enabled state in the driver when creating the control.
14391 - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
14393 * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
14394 MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED
14395 * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
14397 - Added tracking of window enabled state (get_Enabled/set_Enabled)
14398 - Added EnabledHwnd property to easily allow a driver to find the
14399 handle of the first enabled window in the parent chain (this is
14400 used by drivers to pass up input events of disabled windows)
14401 * XplatUIDriver.cs: Added IsEnabled() method
14403 - Removed crude and obsolete exiting tracking variable
14404 - Removed internal ModalRun(); replaced by RunLoop()
14405 - Implemented private CloseForms() method to allow closing all
14406 windows owned by a particular (or all) threads
14407 - Exit() now properly closes all windows without forcing the message
14409 - Removed obsolete InternalExit() method
14410 - Changed Run() methods to use new RunLoop() message pump
14411 - Implemented new RunLoop() method for both modal and non-modal forms
14413 - get_CreateParams: Added setting of WS_DISABLED
14414 - Simplified ShowDialog(); now all the work is done in RunLoop(),
14415 invoked via Form.ShowDialog()
14416 * NativeWindow.cs: We don't remove the window from the collection when
14417 the handle is destroyed; there might still be messages for it in the
14418 queue (mainly the resulting WM_DESTROY); instead it will be removed
14419 when Control calls InvalidateHandle in the WM_DESTROY handler
14421 - CreateWindow: Added logic to handle the WS_DISABLED window style
14422 - EnableWindow: Implemented based on Hwnd.Enabled
14423 - GetMessage: Reset PostQuitState so the method can be called again
14424 - Implemented support for disabled windows (passing messages to the
14425 first enabled parent) in handling all input messages
14426 - Added optimizations for handling Expose events
14427 - Implemeted new driver method IsEnabled()
14428 - Now always resetting paint pending tracking vars when we start paint
14429 - Re-implemented UpdateWindow via just sending a WM_PAINT message
14430 * XplatUIOSX.cs: Added IsEnabled method stub
14431 * XplatUIWin32.cs: Implemented new IsEnabled() method
14433 2006-01-11 Jackson Harper <jackson@ximian.com>
14435 * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
14436 LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
14437 variables a little.
14438 * ColorDialog.cs: Clear out the old form before adding the new
14441 2006-01-11 Jackson Harper <jackson@ximian.com>
14443 * X11Dnd.cs: Make sure to add all the text formats when adding
14444 strings to the data object.
14445 * TreeNodeCollection.cs: When adding to a sorted tree we need to
14446 do some redrawing too. Also change the UpdateNode to an
14447 UpdateBelow so the newly added node gets painted.
14449 2006-01-11 Miguel de Icaza <miguel@novell.com>
14451 * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
14452 LinkLabel.cs, PropertyGrid.cs: Implement the
14453 UseCompatibleTextRendering property for 2.x
14455 * Application.cs (SetCompatibleTextRenderingDefault): Add.
14457 2006-01-11 Jackson Harper <jackson@ximian.com>
14459 * TreeView.cs: Use the property for setting the selected node so
14460 the correct events get raised.
14461 * TreeNode.cs: Update the tree when the fore/back colours of a
14464 2006-01-10 Jackson Harper <jackson@ximian.com>
14466 * TreeView.cs: Allow setting SelectedNode to null.
14468 2006-01-9 Jonathan Chambers <jonathan.chambers@ansys.com>
14470 * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
14472 2006-01-9 Jonathan Chambers <jonathan.chambers@ansys.com>
14474 * PrintControllerWithStatusDialog.cs: Update page number in dialog.
14476 2006-01-9 Jonathan Chambers <jonathan.chambers@ansys.com>
14478 * PrintDialog.cs: Added attributes and set default property values.
14480 2006-01-9 Jonathan Chambers <jonathan.chambers@ansys.com>
14482 * PrintControllerWithStatusDialog.cs:
14483 Added PrintControllerWithStatusDialog.
14485 2006-01-9 Jonathan Chambers <jonathan.chambers@ansys.com>
14487 * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
14488 XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
14490 2006-01-9 Jonathan Chambers <jonathan.chambers@ansys.com>
14492 * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
14494 2006-01-09 Jonathan Chambers <jonathan.chambers@ansys.com>
14496 * ComboBox.cs: Added KeyDown event handler for processing arrow keys
14497 and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
14499 2006-01-08 Alexander Olk <alex.olk@googlemail.com>
14501 * MimeIcon.cs: Added internal class SVGUtil.
14503 2006-01-08 Alexander Olk <alex.olk@googlemail.com>
14505 * FileDialog.cs: Don't crash if there are two files with the
14506 same name but different locations.
14508 2006-01-08 John BouAntoun <jba-mono@optusnet.com.au>
14510 * MonthCalendar.cs: Fixed annoying rendering bug when selecting
14511 dates across multiple month grids. Used to not highlight entire
14512 month, but does now.
14514 2006-01-06 Jackson Harper <jackson@ximian.com>
14516 * MonthCalendar.cs: Removed DoEvents call to prevent a running
14517 message loop. Change timer intervals to numbers that seem more
14520 2006-01-06 John BouAntoun <jba-mono@optusnet.com.au>
14522 * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
14523 object for location info since screen object is now implemented.
14525 2006-01-05 Jackson Harper <jackson@ximian.com>
14527 * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
14528 * AsyncMethodResult.cs: We no longer use a WeakReference for the
14529 AsyncMethodResult, this is because we ALWAYS want the
14530 ManualResetEvent to get set.
14531 * Control.cs: When disposing use an async invoke to call shutdown
14532 code, so that thigns don't block on the finalizer thread. Also
14533 check if we even have a message loop before trying to send
14534 messages, if we don't then don't bother sending messages.
14535 - No more weak references for async methods
14536 * XplatUIDriver.cs: No more weak references for async methods.
14538 2006-01-04 Alexander Olk <alex.olk@googlemail.com>
14540 * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
14541 returns two FontFamily with the same name
14543 2006-01-04 Peter Dennis Bartok <pbartok@novell.com>
14545 * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of
14546 drawing disabled text. Instead using the ColorGrayText color
14548 2006-01-04 Jackson Harper <jackson@ximian.com>
14550 * TreeNode.cs: redraw the node when its image index is changed.
14552 2006-01-04 Peter Dennis Bartok <pbartok@novell.com>
14554 * RichTextBox.cs: Same fix as last, just for SelectionColor. This
14555 time I checked there are no others like it.
14557 2006-01-04 Jackson Harper <jackson@ximian.com>
14559 * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
14560 this gives the behavoir I was looking for.
14561 * Control.cs: Special case Invoking EventHandlers, this matches MS
14562 and fixes part of bug #76326.
14564 2006-01-04 Alexander Olk <alex.olk@googlemail.com>
14566 * ThemeClearlooks.cs, FileDialog.cs:
14567 - Reflect the latest Theme class changes
14568 - Remove Mono.Unix.Syscall.time in FileDialg and replace it
14571 2006-01-04 Alexander Olk <alex.olk@googlemail.com>
14573 * Theme.cs: Cache UI resource images and resize them if needed
14575 2006-01-03 Peter Dennis Bartok <pbartok@novell.com>
14577 * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
14578 is called. This fixes the crash in Nexxia when setting the font
14579 attributes in the chat. [However, RTF needs a look-over to make sure
14580 that all SelectionXXX methods handle the special case that selection
14581 is empty and therefore the change must be applied to all text starting
14582 at the cursor/selection start]
14584 2006-01-03 Peter Dennis Bartok <pbartok@novell.com>
14586 * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
14587 XplatUIOSX.cs: Added SendMessage and PostMessage methods
14588 * X11Keyboard.cs: Switched to new way of calling PostMessage
14590 2006-01-03 Peter Dennis Bartok <pbartok@novell.com>
14592 * Theme.cs: Added theme interface for images to allow the theme to
14593 control what images are used for things like FileDialog, MessageBox
14595 * MessageBox.cs: Now uses the new Theme icon/image interfaces
14597 2006-01-03 Alexander Olk <alex.olk@googlemail.com>
14600 - Removed some dead code
14601 - Opening a recently used file does work now
14602 - Small UI enhancements
14605 2006-01-02 Alexander Olk <alex.olk@googlemail.com>
14607 * FileDialog.cs: Forgot too add __MonoCS__
14609 2006-01-02 Alexander Olk <alex.olk@googlemail.com>
14611 * FileDialog.cs: We are able to read recently used files now let's
14612 go on and write them.
14614 2006-01-01 Alexander Olk <alex.olk@googlemail.com>
14616 * FileDialog.cs: Breathe some life into "last open"/"recently used"
14618 * MimeIcon.cs: Do a check for the top level media type also
14620 2005-12-31 Alexander Olk <alex.olk@googlemail.com>
14622 * ThemeClearlooks.cs:
14623 - Added CPDrawStringDisabled
14624 - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
14625 some chars if the text doesn't fit into text_rect
14626 - DrawListViewItem: If View = View.LargeIcon center the image;
14627 rewrote the drawing of ListViewItem.Text if View =
14630 2005-12-31 Alexander Olk <alex.olk@googlemail.com>
14632 * MimeIcon.cs: Use default KDE icon theme if there is no
14633 "48x48" directory for the current icon theme, fixes #77114
14634 * Mime.cs: Disable not working and actually not used code.
14635 * ThemeWin32Classic.cs:
14636 - Replace "new SolidBrush" in GetControlBackBrush and
14637 GetControlForeBrush with ResPool.GetSolidBrush
14638 - Changed DrawListViewItem from private to protected virtual
14640 - Added form.MaximizeBox = true
14641 - Don't throw an exception if there is a broken symbolic link
14643 2005-12-23 Jackson Harper <jackson@ximian.com>
14645 * TabControl.cs: Give the panels focus, keyboard navigation is
14646 fixed so this works correctly now.
14647 - We need these key events also.
14648 * ToolBar.cs: Remove some of the poor mans double buffering.
14650 2005-12-24 Alexander Olk <alex.olk@googlemail.com>
14652 * ComboBox.cs: The internal TextBox now returns the focus.
14654 2005-12-23 Jackson Harper <jackson@ximian.com>
14656 * ThemeWin32Classic.cs: Draw the text for all tab appearances.
14658 2005-12-23 Peter Dennis Bartok <pbartok@novell.com>
14660 * Control.cs: Removed debug code
14661 * XplatUIX11.cs: Changed DestroyChildWindows to also consider
14664 2005-12-23 Peter Dennis Bartok <pbartok@novell.com>
14666 * Control.cs: When creating the control, update the Z-order after
14667 all it's children are created, too. (Fixes nexxia not showing
14670 2005-12-23 Peter Dennis Bartok <pbartok@novell.com>
14672 * Control.cs: Do not update the anchoring distances if layout is
14673 suspended, instead do it once layout is resumed
14675 2005-12-22 Peter Dennis Bartok <pbartok@novell.com>
14678 - After many hours of debugging, for both Jackson and
14679 myself, it turns out that it helps to set the parent of a control
14680 if you want to actually see it onscreen. In the spirit of that
14681 discovery, we're now setting the parent of the control and
14682 it's children when the control's handle is created. This fix
14683 will make Lutz Roeder's Reflector run happily.
14684 - now just creating the handle instead of the whole control when
14685 getting a graphics context for the control.
14687 2005-12-22 Peter Dennis Bartok <pbartok@novell.com>
14689 * ScrollableControl.cs: When calculating the canvas, don't consider
14690 the scrollbar widths. Instead, predict if horizontal scrollbar
14691 will affect canvas when deciding on vertical display and vice versa.
14693 2005-12-22 Peter Dennis Bartok <pbartok@novell.com>
14695 * RichTextBox.cs: Set default RTF font for documents that don't
14696 have a font table (Fixes #77076)
14698 2005-12-22 Jackson Harper <jackson@ximian.com>
14700 * TextBoxBase.cs: It's difficult to do, but you can have an empty
14701 clipboard. This prevents a NullRef in that case.
14702 * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
14703 clipboard. PRIMARY is for the currently selected text only. (We
14704 should implement PRIMARY at some point.
14706 2005-12-21 Peter Dennis Bartok <pbartok@novell.com>
14708 * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
14709 a Unicode function with a structure that was defined in Ansi way.
14712 2005-12-21 Jackson Harper <jackson@ximian.com>
14714 * StatusBar.cs: Statusbar handles its fore/back colours on it's
14715 on. Because thats how it rolls. (and this avoids it using ambient
14717 * ThemeWin32Classic.cs: Use the proper back color for filling.
14718 * Menu.cs: Use the system menu bar color for drawing menu
14719 bars. Using the window back color will bring ambient colours into
14722 2005-12-21 Alexander Olk <alex.olk@googlemail.com>
14724 * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
14725 Bitmaps were created and not disposed.
14727 2005-12-21 Peter Dennis Bartok <pbartok@novell.com>
14729 * Control.cs (CreateControl): Don't do anything if the control is
14730 already created, otherwise we'd fire the OnCreated event more than
14733 2005-12-21 Peter Dennis Bartok <pbartok@novell.com>
14735 * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
14736 will always match. Instead return -1. Fixes #76464.
14738 2005-12-21 Peter Dennis Bartok <pbartok@novell.com>
14740 * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
14741 neither the beginning nor the end of the line (Fixes bug #76479)
14743 2005-12-21 Peter Dennis Bartok <pbartok@novell.com>
14746 - ControlNativeWindow.ControlFromHandle(): Now handling situation
14747 where handle is invalid
14748 - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
14749 instead of slower linear search
14750 * NativeWindow.cs: Don't remove the window from the hashtable until
14751 after the driver has destroyed it (since the driver might use
14752 Control.FromHandle to lookup the control object
14753 * Hwnd.cs: Added DestroyPending property to track if a window is
14754 already destroyed as far as the driver is concerned and only hasn't
14755 yet notified the control
14757 - Activate(): Check if the window is still valid before using the
14759 - Implemented DestroyChildWindow() method to mark child windows as
14760 destroyed when a window is destroyed. This prevents situations
14761 where we might call an X method based on queued events for a
14762 window that already has been destroyed but we haven't yet pulled
14763 the destroy method from the queue.
14764 - Added a call to the new DestroyChildWindow() method to the drivers
14765 DestroyWindow code. Also now marking the destroyed window itself
14768 2005-12-20 Jackson Harper <jackson@ximian.com>
14771 * StatusBarPanel.cs: Don't calculate panel sizes on draw
14772 anymore. Just do them when needed, also track the rects of panels
14773 so that we can optimize refreshing more in the future.
14775 2005-12-20 Alexander Olk <alex.olk@googlemail.com>
14777 * ColorDialog.cs: Fixed focus drawing in small color controls
14779 2005-12-19 Jackson Harper <jackson@ximian.com>
14781 * InternalWindowManager.cs:
14782 * MdiWindowManager.cs: Cleanup some coordinate system changes so
14783 moving windows works properly.
14785 2005-12-19 Peter Dennis Bartok <pbartok@novell.com>
14788 - Removed call to InitLayout() from SetBoundsCore(); doc says
14789 it's only called when a control is added to a container
14790 - Split InitLayout logic, moved to separate UpdateDistances() method
14791 since we need to perform those calculations more often than just
14792 when adding the control to a container. (Needed to fix #77022)
14793 - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
14794 - Reduced the OnBindingContextChanged events count, don't send them
14795 unless the control is created, we still aren't totally matching
14796 MS, but I can't quite figure out some of their rules
14798 2005-12-18 Alexander Olk <alex.olk@googlemail.com>
14800 * ThemeClearlooks.cs: Corrected distance between ProgressBar
14803 2005-12-18 Alexander Olk <alex.olk@googlemail.com>
14805 * ThemeClearlooks.cs:
14806 - Updated ProgressBar drawing
14807 - Corrected drawing of ScrollBars and scroll buttons
14808 - Some temporary fixes for minor pixel artefacts
14810 2005-12-18 Peter Dennis Bartok <pbartok@novell.com>
14813 - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
14814 cause events to be sent in the same order as MS does.
14815 - Added ChangeParent() method to trigger various OnXXXChanged events
14816 that need to be fired when a parent changes (This is a reworking
14817 of the patch from r54254, with the X11 errors fixed)
14818 - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
14819 since on MS we get OnLayoutChanged events when calling Clear()
14820 - Changed Enabled property to consider parent state as well, if a
14821 parent is not enabled, the control will not be either
14822 - Changed Parent property to simply call Controls.Add() since that
14823 now does all the work required, this way we avoid code duplication
14824 - Threw in a few OnBindingsContextChanged calls to try and match
14825 when MS sends them. We seem to send a few too many, though.
14826 - Added call to CreateControl when adding the control to a parent.
14827 We were never calling CreateControl. Still needs some work, in
14828 some places we treat HandleCreated and ControlCreated as equal,
14830 - Removed obsolete commented out code from UpdateZOrder()
14832 2005-12-18 Alexander Olk <alex.olk@googlemail.com>
14834 * ThemeClearlooks.cs: Updated TrackBar drawing.
14836 2005-12-17 Alexander Olk <alex.olk@googlemail.com>
14838 * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
14840 2005-12-17 Alexander Olk <alex.olk@googlemail.com>
14842 * FileDialog.cs: Add the Help button and the open readonly
14843 checkbox only if needed
14845 2005-12-16 Jackson Harper <jackson@ximian.com>
14847 * Control.cs: Make sure we have an active menu before trying to
14848 process commands on it. Prevents menu-less forms from crashing
14849 when Alt is pressed.
14850 * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
14852 * RichTextBox.cs: Expand statement to help out gmcs and fix the
14855 2005-12-16 Jackson Harper <jackson@ximian.com>
14857 * InternalWindowManager.cs: Don't translate tool windows screen
14858 coordinates. This fixes windows 'bouncing' around when being moved.
14860 2005-12-15 Peter Dennis Bartok <pbartok@novell.com>
14863 - MaxLength now treats 2^31-1 equal to unlimited length (this is
14864 not quite MS compatible, MS uses that number only for single line
14865 and 2^32-1 for multi-line, but I figure it won't hurt keeping
14867 - Now enforcing the MaxLength limit when entering characters
14868 - Added argument to internal Paste() method to track if it's called
14869 from programatically or via keyboard, since keyboard driven pastes
14870 need to enforce max-length
14871 - Added logic to Paste to only paste as many chars as MaxLength
14873 * RichTextBox.cs: Updated to use new obey argument for internal Paste()
14875 - Added Length property to return number of characters in document
14876 - Added private CharCount property which only tracks actual chars
14877 in the document (no linefeeds) and fires event when CharCount
14879 - Added tracking of character count to all methods that alter it
14880 - Added LengthChanged event to allow applications to subscribe
14881 to any changes to the document
14883 2005-12-15 Peter Dennis Bartok <pbartok@novell.com>
14886 - Removed local password_char field (moved to TextBoxBase)
14887 - Now setting the document's password var when password is
14890 - Added password_char field (needed here so MultiLine can
14892 - Added logic to MultiLine property setter to set the document's
14893 variable when password display is allowed
14894 - Removed debug code and made some debug code conditional
14896 - Added RecalculatePasswordLine() method to handle special password
14898 - Added PasswordChar property, also added related tracking vars
14899 - Draw() method now uses local text var for grabbing text to draw,
14900 this var is set to line.text unless we're doing password display,
14901 then it is set to the pre-generated all-password-chars line
14902 - Added calling RecalculatePasswordLine() method for password lines
14904 2005-12-14 Peter Dennis Bartok <pbartok@novell.com>
14907 - Added Reparented property to allow tracking of Window Manager
14908 reparenting actions (which affect X/Y calculations of toplevel
14910 - Made ToString() print window handles in hex
14912 - AddConfigureNotify(): Now uses reparented state off Hwnd to
14913 determine if X/Y needs offsetting
14914 - AddConfigureNotify(): Fixed offset calculations
14915 - Now adds ReparentNotify messages into the queue
14916 - Now processes ReparentNotify messages and causes a
14917 WM_WINDOWPOSCHANGED message to be sent upstream if a window
14918 is reparented (as most likely it's X/Y coordinates are changed
14921 2005-12-14 Jackson Harper <jackson@ximian.com>
14923 * XplatUIX11.cs: Tool windows still need to respek focus.
14925 2005-12-14 Peter Dennis Bartok <pbartok@novell.com>
14927 * Control.cs: Undid 54254 (causing XConfigure errors) so we can
14928 have a working release
14930 2005-12-13 Jackson Harper <jackson@ximian.com>
14932 * Form.cs: Update styles after setting the border style regardless
14933 of whether or not the window is using a window manager.
14935 2005-12-13 Jackson Harper <jackson@ximian.com>
14937 * Form.cs: We now hook into an internal window manager instead of just an
14938 MDI subsystem, this is so we can have properly behaving tool windows.
14939 * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
14940 * InternalWindowManager.cs: New internal class that acts as a
14941 window manager for tool windows and as a base for mdi windows.
14942 * MdiWindowManager.cs: New class that acts as a window manager for
14945 2005-12-12 Jackson Harper <jackson@ximian.com>
14947 * Control.cs: Updates so we match behavoir for for implicit
14948 controls. Fixes explosions in MDI.
14950 2005-12-12 Jackson Harper <jackson@ximian.com>
14952 * Control.cs: Implement Invalidate (Region).
14954 2005-12-12 Peter Dennis Bartok <pbartok@novell.com>
14957 - Changed handling of Controls.Add/Controls.Remove to fire (almost)
14958 the same events as MS does. MS fires events for each property
14959 except, for unknown reasons, Cursor, when the control is reparented.
14960 I can't seem to totally match add/remove since MS also fires some
14961 VisibleChanged events, which makes no sense. Consolidated the
14962 parenting code into a separate method so it can be called from
14963 both Add and Remove. set_Parent no longer needs any special logic
14964 as it calls the parent's add method which implicitly fires
14966 - Removed some obsolete code and debug output
14967 - Enabled state is inherited from parents, if this is enabled
14969 2005-12-08 Peter Dennis Bartok <pbartok@novell.com>
14971 * Form.cs: Removed commented out code
14973 2005-12-08 Peter Dennis Bartok <pbartok@novell.com>
14976 - Added internal version of Invoke, with additional argument
14977 indicating if we're calling it from a Dispose() handler. That
14978 way we can avoid BeginInvoke throwing an exception if we're
14979 calling for an already destroyed window.
14980 - Added a dispose argument to BeginInvokeInternal, and made the
14981 check if a valid window handle chain exists conditional on
14982 it not being a dispose call
14983 - Removed code in DestroyHandle to destroy our children. Since we
14984 now handle the WM_DESTROY message we will catch all our children
14986 - Now calling OnHandleDestroyed from our new WM_DESTROY handler
14988 - Added a field to track the application context of the form.
14989 - No need to set closing variable as response to WM_CLOSE, instead
14990 we destroy the window. We also call PostQuitMessage if the form
14991 has an application context (which makes it the main app form,
14992 which, when closed terminates the app)
14994 - Dropped Exit() method, it's naming was confusing
14995 - Added PostQuitMessage() which causes GetMessage to return false
14996 once the message queue is empty
14997 * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added
14999 * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
15000 no longer a valid XplatUI method, but left it in since it's used
15001 internally. Added empty PostQuitMessage() method.
15002 * MenuAPI.cs: Replaced call to Exit() with call to
15003 PostQuitMessage, even though this is probably no longer needed.
15004 * Hwnd.cs: Added 'pretty' ToString() to support debugging.
15005 * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
15007 - Replaced call to XplatUI.Exit() with PostQuitMessage()
15008 - Removed old debug code that would call XplatUI for exception
15009 display, enabled standard exception handling (Still not enabled
15010 though, until NativeWindow's ExternalExceptionHandler define
15013 - Added internal method to allow control to update NativeWindow
15014 after a window has been destroyed
15015 - Added handling of already destroyed windows when calling i
15017 - Added removal of handle from list on ReleaseHandle
15019 - Dropped GetMessageResult var and related code
15020 - Added PostQuitState to field to track if PostQuitMessage has been
15022 - Dropped Exit() method
15023 - Added PostQuitMessage() method
15024 - GetMessage now will return false if PostQuitState is set and no
15025 more messages are in the queue.
15026 - Expose handler will no longer generate WM_PAINT messages if we are
15027 in PostQuitState since it's very likely any windows have already
15028 been destroyed, and since Hwnd won't get updated until we have
15029 processed the DestroyNotify we'd be causing X errors.
15031 2005-12-07 Peter Dennis Bartok <pbartok@novell.com>
15033 * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
15034 Thanks to Mike for pointing out the err of my ways.
15036 2005-12-07 Peter Dennis Bartok <pbartok@novell.com>
15038 * Control.cs(PreProcessMessage): Moved menu handling back, but
15039 after all other key handling, to match MS (who handles Menu in
15041 * Menu.cs (WndProc): Removed my brainfart
15043 2005-12-07 Peter Dennis Bartok <pbartok@novell.com>
15045 * Control.cs(PreProcessMessage): Removed special menu handling
15046 * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
15048 2005-12-07 Mike Kestner <mkestner@novell.com>
15050 * Control.cs : special case SYSKEYUP so that we can adjust keynav
15051 state according in tracker.
15052 * Menu.cs : promote tracker field to base class and provide a tracker
15053 lookup capability. Add/Remove shortcuts dynamically if the top menu
15054 has a tracker. Unparent items that are removed from the collection.
15055 * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
15056 * Theme*.cs: add always_show_hotkeys field to support configurability
15057 of mnemonic display. win32 doesn't show mnemonics until Alt is
15060 2005-12-07 Jackson Harper <jackson@ximian.com>
15062 * MdiChildContext.cs: Use Control.ResetCursor.
15063 * Control.cs: ResetCursor needs to set the property so that the
15064 correct XplatUI call gets made.
15066 2005-12-07 Peter Dennis Bartok <pbartok@novell.com>
15068 * Control.cs: More fixes to make our key events match MS. We
15069 were not setting the modifier state on KeyData, and we were
15070 not generating any events when Alt was pressed with a key
15071 since handling of WM_SYSxxx was missing for the OnKey methods.
15073 2005-12-07 Jackson Harper <jackson@ximian.com>
15075 * MdiChildContext.cs: reenable the sizing code.
15076 - When the mouse leaves a window reset its cursor.
15078 2005-12-07 Alexander Olk <alex.olk@googlemail.com>
15080 * ThemeClearlooks.cs: Reflect latest Hwnd changes
15082 2005-12-07 Peter Dennis Bartok <pbartok@novell.com>
15084 * Hwnd.cs: Now using the theme 3d bordersize to calculate
15085 widths of Fixed3D borders
15087 2005-12-07 Jackson Harper <jackson@ximian.com>
15089 * MdiClient.cs: Fix warnings. Earn Mike's love.
15091 2005-12-07 Alexander Olk <alex.olk@googlemail.com>
15093 * ThemeClearlooks.cs:
15094 - Adjusted mouse over button color
15095 - Added first parts of CheckBox drawing
15096 - Added correct color for selected text background
15097 - Fixed ComboBox drawing
15098 - Added CPDrawBorder3D and CPDrawBorder
15100 2005-12-06 Peter Dennis Bartok <pbartok@novell.com>
15102 * XplatUIX11.cs: Added call to XBell for AudibleAlert
15104 2005-12-06 Peter Dennis Bartok <pbartok@novell.com>
15106 * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
15107 XplatUIOSX.cs: Added AudibleAlert() method to have a means to
15108 alert users via sound. We could add an enum arg with different
15109 types of alerts in the future
15111 2005-12-06 Peter Dennis Bartok <pbartok@novell.com>
15113 * Control.cs: Fix behaviour problems pointed out by Mike
15115 2005-12-05 Mike Kestner <mkestner@novell.com>
15117 * StatusBarPanel.cs: add Invalidate method and hook it into all the
15118 prop setters. Calls parent.Refresh for now, but could be maybe be
15119 optimized with an internal method on StatusBar at some point.
15122 2005-12-05 Peter Dennis Bartok <pbartok@novell.com>
15124 * RichTextBox.cs: Implemented get_SelectionColor
15126 2005-12-05 Alexander Olk <alex.olk@googlemail.com>
15128 * ThemeClearlooks.cs:
15129 - Removed dead code
15130 - Draw black button border only if button is Form.AcceptButton
15131 - Draw correct button color for pressed RadioButton if the mouse
15132 has entered the button
15133 - Updated ProgressBar drawing!
15134 - Updated CPDrawSizeGrip drawing
15135 - Updated StatusBarPanel drawing
15137 2005-12-05 Mike Kestner <mkestner@novell.com>
15139 * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
15140 * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
15142 2005-12-04 Alexander Olk <alex.olk@googlemail.com>
15144 * ThemeClearlooks.cs: Initial check-in, activate with
15145 export MONO_THEME=clearlooks
15146 * ThemeEngine.cs: Added ThemeClearlooks
15148 2005-12-03 Mike Kestner <mkestner@novell.com>
15150 * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
15153 2005-12-02 Jackson Harper <jackson@ximian.com>
15155 * Form.cs: If the child form has no menu the default main menu is
15156 used as the active menu.
15158 2005-12-02 Peter Dennis Bartok <pbartok@novell.com>
15160 * ListBox.cs: Check if any items exist before trying to resolve
15161 coordinates into items
15163 2005-12-02 Peter Dennis Bartok <pbartok@novell.com>
15165 * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
15166 as the second color for the background hatch
15168 2005-12-02 Peter Dennis Bartok <pbartok@novell.com>
15170 * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
15171 * RichTextBox.cs: FormatText position arguments are 1-based, now making
15172 sure that what we pass to FormatText is always 1-based. Fixes #76885
15174 2005-11-29 Miguel de Icaza <miguel@novell.com>
15176 * NumericUpDown.cs (EndInit): When we are done initializing,
15177 reflect any updates on the UI.
15179 2005-12-02 Jackson Harper <jackson@ximian.com>
15181 * ImplicitHScrollBar.cs:
15182 * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
15183 their container controls.
15184 * TreeView.cs: Use the new implicit scrollbars.
15186 2005-12-02 Jackson Harper <jackson@ximian.com>
15188 * TreeView.cs: Make top_node internal so the TreeNodeCollections
15190 * TreeNodeCollection.cs: If we remove the topnode we need to
15191 update topnode to the next node in line.
15192 - When clearing nodes go through the same process as removing
15193 them, so they get depareneted and checked if they are top node.
15195 2005-12-01 Jackson Harper <jackson@ximian.com>
15197 * TreeView.cs: When imagelists are used the image area is
15198 selectable as well as the text.
15199 - If there are no selected nodes select the first one.
15200 * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
15201 so don't do it more then we need to.
15203 2005-12-01 Jackson Harper <jackson@ximian.com>
15205 * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
15206 that arrows can be scaled.
15208 2005-12-01 Jackson Harper <jackson@ximian.com>
15210 * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
15211 fail. Patch by Dieter Bremes
15213 2005-11-30 Jackson Harper <jackson@ximian.com>
15215 * Form.cs: Property is 2.0 only
15216 * PrintDialog.cs: Signature fix.
15218 2005-11-30 Peter Dennis Bartok <pbartok@novell.com>
15221 - No longer artificially moves text 2 pixels down (now that we have
15222 borders this is no longer needed)
15223 - Added calcs for left, hanging and right indent
15225 2005-11-23 Mike Kestner <mkestner@novell.com>
15227 * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
15229 2005-11-30 Jackson Harper <jackson@ximian.com>
15231 * MdiChildContext.cs: Set the cloned menus forms, as these don't
15232 get cloned as part of CloneMenu ().
15233 * Menu.cs: Make sure the parent of the items get set correctly
15234 when they are added. And the owners are notified of the changes.
15235 * Form.cs: Create an ActiveMenu property, so that when MDI is used
15236 we can change the menu being displayed/handled by the form without
15237 changing the menu assosciated with the form.
15238 - Don't let Mdi children draw/handle menus.
15240 2005-11-30 Jackson Harper <jackson@ximian.com>
15242 * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
15243 a MenuChanged event. Just to make the API a little more
15246 * MenuItem.cs: Use the new OnMenuChanged
15247 * MdiChildContext.cs: Handle menu merging.
15248 * Form.cs: Implement MergedMenu.
15250 2005-11-30 Jackson Harper <jackson@ximian.com>
15252 * Menu.cs: We were misusing Add. Add goes behind the specified
15253 index according to the docs, and does not replace the specified
15254 index. So I added an Insert method.
15256 2005-11-30 Peter Dennis Bartok <pbartok@novell.com>
15258 * TextBoxBase.cs: Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
15259 Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
15261 * RichTextBox.cs: Added calls to base for DnD events
15263 2005-11-28 Peter Dennis Bartok <pbartok@novell.com>
15266 - Fixed drag-selection related crash; style fixes
15267 - Implemented undo class
15268 o Implemented method to capture document state for specified
15269 range in document tree
15270 o Implemented method to restore captured document state
15271 o Implemented cursor tracking
15272 o Implemented basic undo stack
15273 - Added undo cursor tracking to methods altering cursor location
15274 - Added undo tracking to selection deletion (still missing
15275 other text-altering hookups)
15277 - Added SelectionLength property
15278 - Implemented CanPaste()
15279 - Implemented Paste()
15280 - Added missing protected methods
15281 - Fixed RTF->Document conversion; now uses font index 0 and color
15282 index 0 as the default font for the parsed text
15283 - Fixed RTF<->Document font size translation
15284 - Fixed RTF generation, now properly handles cross-tag boundaries
15285 for single line selection
15286 - No longer always appends blank line to generated RTF
15288 - Added missing attributes
15289 - Hooked up undo-related methods
15291 - Implemented Copy()
15292 - Implemented Paste()
15293 - Implemented Cut()
15294 - Fixed caret mis-behaviour on backspace across line-boundaries
15296 2005-11-29 Jackson Harper <jackson@ximian.com>
15298 * MdiClient.cs: Add a method for activating mdi children. Very
15299 basic right now. I imagine someday it might need more girth.
15300 * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
15301 children windows names are added to the menu item.
15302 * ThemeWin32Classic.cs: Draw the arrow if the item is an
15303 mdilist. This happens regardless of whether or not there are any
15304 mdi windows to see in the list, and according to my tests happens
15305 before the items are even added. Also happens if there isn't even
15306 an mdi client to get windows from.
15308 2005-11-29 Alexander Olk <alex.olk@googlemail.com>
15310 * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
15311 * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
15313 2005-11-29 Jordi Mas i Hernandez <jordimash@gmail.com>
15315 * DataGridTableStyle.cs:
15316 - Create always the styles for the missing columns even if they are
15317 provided by the user (not default table style)
15320 - Fixes SetDataBinding (always re-attach source)
15321 - Fixes SetNewDataSource (only clear styles if they are not for
15323 - Expands OnTableStylesCollectionChanged to handle style refresh
15324 and remove properly
15326 2005-11-29 Jackson Harper <jackson@ximian.com>
15328 * FileDialog.cs: Implement missing bits, remove some dead
15330 * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
15331 creation of the panel so that the options set on the dialog are
15332 seen when the panel is created.
15333 * TreeView.cs: raise a click when items are clicked.
15335 2005-11-29 Jackson Harper <jackson@ximian.com>
15337 * MdiClient.cs: Pass some signature methods through to base.
15339 2005-11-28 Jackson Harper <jackson@ximian.com>
15341 * ListView.cs: Raise the click event when items are clicked.
15343 2005-11-28 Jackson Harper <jackson@ximian.com>
15345 * MdiClient.cs: Make this algorithm even more beautiful. And fix
15348 2005-11-27 Alexander Olk <alex.olk@googlemail.com>
15350 * ThemeNice.cs: - Removed 1 pixel bitmaps
15351 - Use SmoothingMode.AntiAlias where it makes sense
15352 (ScrollButton arrow for example)
15353 - Enhanced Button focus drawing
15354 - Fixed ComboBox drawing (no artefacts anymore, focus
15355 rectangle is back again, reduced size of ComboButton, etc.)
15356 - Fixed RadioButton focus drawing for Appearence.Button
15357 - Slight ScrollButton redesign
15358 - Some LinearGradientBrush size fixes
15359 - GroupBoxes have now rounded edges
15360 - Fixed StatusBar drawing
15362 2005-11-25 Alexander Olk <alex.olk@googlemail.com>
15364 * ThemeNice.cs: - Remove dead code
15365 - use correct background colors for menus, etc.
15366 - Fake pixel drawing with 1 pixel bitmaps
15368 2005-11-24 Jackson Harper <jackson@ximian.com>
15370 * MdiClient.cs: Size the scrollbars when resizing the window.
15371 - Resize the maximized windows when the client is resized
15372 * Form.cs: Make the child context available
15374 2005-11-23 Jackson Harper <jackson@ximian.com>
15376 * MdiChildContext.cs: Don't size windows if they are maximized.
15378 2005-11-23 Mike Kestner <mkestner@novell.com>
15380 * ContextMenu.cs: use MenuTracker.
15381 * Control.cs: remove menu handle usage.
15382 * Form.cs: remove menu handle usage.
15383 * Hwnd.cs: remove menu handle usage.
15384 * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
15385 motion and clicks to the new Tracker handlers.
15386 * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
15388 * MenuAPI.cs: refactored to combine popup and menubar event handling.
15389 Killed the MENU and MENUITEM data types and associated collections
15390 since we now keep the info on Menu and MenuItem. Expanded TRACKER into
15391 MenuTracker class that exposes the leftovers from the old MenuAPI
15392 static methods. Restructured Capture handling so that only one grab is
15393 done for the entire menu hierarchy instead of handing off grabs to
15394 submenus. Tracker now has an invisible control to Capture when active.
15395 * MenuItem.cs: add sizing accessors, kill Create
15397 * Theme.cs: remove menu handle and MENU(ITEM) usage.
15398 * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
15399 MENU(ITEM). remove menu handle usage, use Menu directly.
15400 * XplatUIDriver.cs: remove menu handle usage.
15401 * XplatUIOSX.cs: remove menu handle usage.
15402 * XplatUIWin32.cs: remove menu handle usage.
15403 * XplatUIX11.cs: remove menu handle usage.
15405 2005-11-22 Jackson Harper <jackson@ximian.com>
15407 * Hwnd.cs: Don't compute the menu size for
15408 DefaultClientRectangle.
15409 - Reenable menu sizes being computed for GetClienRectangle.
15410 * Form.cs: Remove comment of trechery
15412 2005-11-22 Jackson Harper <jackson@ximian.com>
15414 * Hwnd.cs: The adjustments for the menu bar are made when it is
15415 attached to the form.
15417 2005-11-19 Jackson Harper <jackson@ximian.com>
15419 * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
15420 (just like on windows).
15422 2005-11-19 Jackson Harper <jackson@ximian.com>
15424 * MdiChildContext.cs: Handle all the buttons ourselves. We can't
15425 use real buttons anymore because they are in non client area. The
15426 one TODO here is that I need to somehow invalidate a section of
15427 the non client area.
15429 2005-11-18 Jackson Harper <jackson@ximian.com>
15431 * Control.cs: Put the enum check back in now that MDI doesnt have
15432 to use this to set border styles.
15433 * Form.cs: Only set mdi child windows borders if the handle has
15435 * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
15436 this directly on to the driver.
15437 - Get the move start position before adjusting for the titlebar
15438 height, this fixes the windows "skipping" when they are first
15441 2005-11-18 Jackson Harper <jackson@ximian.com>
15443 * XplatUIX11.cs: Just compute the mdi borders separately as they
15444 don't totally match up with normal form borders.
15446 2005-11-18 Jackson Harper <jackson@ximian.com>
15448 * Control.cs: Set WS_ styles for borders, so that the driver does
15449 not have to retrieve the control instance to figure out what kind
15450 of borders it should have.
15451 * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
15452 driver can know its an mdi child easily.
15453 * XplatUIX11.cs: Get the border styles and whether the window is
15454 MDI from the Styles and ExStyles params instead of having to get a
15455 control. This prevents a chicken and egg problem.
15457 2005-11-18 Jackson Harper <jackson@ximian.com>
15459 * MdiClient.cs: Fix typo so scrollbars show up correctly.
15461 2005-11-18 Jackson Harper <jackson@ximian.com>
15463 * MdiClient.cs: Calculate when to add and remove scrollbars
15465 * MdiChildContext.cs: Adjust the y position to take the titlebar
15467 - No height for FormBorderStyle.None
15469 2005-11-18 Jackson Harper <jackson@ximian.com>
15471 * Control.cs: Allow non enum values to be used for
15472 InternalBorderStyle. MDI does this to set a special border style.
15473 - New utility methods for converting points to/from client coords
15474 - Add the newly created control to the Controls collection before
15475 updating its style. This way UpdateStyle can walk the control
15476 heirarchy to find the control if needed.
15477 so I don't need to create a new Point object all the time.
15478 * Form.cs: Let MDI windows handle their border styles.
15479 - Set styles on MDI windows so the correct title style is derived.
15480 * MdiChildContext.cs: Move all the painting and window handling
15481 into the non client area.
15482 - Use correct sizing and put correct buttons on frames based on
15483 the FormBorderStyle.
15484 - Notify the mdi client about scrolling
15485 - Need to handle the buttons ourselves now, because they are all
15486 in non client areas and we can't add controls there.
15487 * MdiClient.cs: Halfway to scrolling, this implementation is
15488 somewhat broken though, we need to check to make sure other
15489 windows aren't causing scrolling before removing the bars. Also
15490 the bars need to be drawn on top, maybe I can switch implicit
15491 controls to be on top.
15492 * Hwnd.cs: caption_height and tool_caption_height are now
15493 properties of an hwnd, this way they can be set by the driver
15494 based on the type of window they are. In X11 the window manager
15495 handles the decorations so caption_height is zero unless its an
15497 - Add 3 pixel borders for MDI windows (0xFFFF).
15498 - Get rid of some code duplication, have DefaultClientRectanle
15499 just call GetClientRectangle.
15500 * XplatUIX11.cs: Pass caption_height and tool_caption_height to
15502 - Set border styles differently for mdi windows.
15503 * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
15506 2005-11-15 Mike Kestner <mkestner@novell.com>
15508 * Menu.cs: when adding an item to the collection, if item is already
15509 parented, remove it from the parent.
15511 2005-11-13 Alexander Olk <alex.olk@googlemail.com>
15513 * X11DesktopColors.cs: Added KDE support
15515 2005-11-11 Peter Dennis Bartok <pbartok@novell.com>
15518 - Clipboard methods now can translate Rtf format
15519 - No longer removes clipboard contents whenever a new format is added
15520 to allow placing multiple formats on the clipboard
15521 * Clipboard.cs: Clipboard now supports getting a IDataObject and
15522 will place all formats contained in it onto the clipboard. Also
15523 now cleans the clipboard before placing a new object onto it
15525 - Implemented set_Rtf
15526 - Implemented set_SelectedRtf
15527 - Created InsertRTFFromStream() method to allow single code base
15528 for all properties and methods that insert RTF into document
15529 - Removed debug output
15531 - Fixed Delete(int) to fix up line numbers
15532 - Fixed ReplaceSelection to combine start and end line
15533 - Fixed serious DeleteChars bug that would leave the document tree
15535 - Improved DumpTree with several logic checks to detect broken
15537 - Removed debug lines
15538 - Fixed Caret.WordForward/WordBack moving code, now always also
15539 updates caret.tag (fixes crash when word-selecting across tag
15540 boundaries via keyboard)
15541 - Added Insert() method for inserting multiline text into documents
15542 - Fixed DeleteChars() calculation errors that would cause a broken
15543 tag chain with multiple tag lines
15544 - DeleteChars() no longer crashes on multi-tag lines if not all tags
15545 - Split() no longer moves caret if split is at caret location
15546 - ReplaceSelection() now updates the cursor and re-displays it
15547 - ReplaceSelection() now uses new Insert() method to avoid code
15549 - FormatText() can now handle formatting partial lines
15551 - Append now uses new TextControl.Insert() method (this avoids
15553 - Implemented Ctrl-X (Cut) (
15554 - Implemented Ctrl-C (Copy)
15555 - Implemented Ctrl-V (Paste) (Still some bugs related to screen
15556 regeneration when pasting text; roundtripping Copy&Paste within
15557 edit control still fails due to some calculation bugs in GenerateRTF)
15558 - The Delete key will now remove the current selection if it is visible
15559 * TextBox.cs: Removed debug lines
15560 * XplatUI.cs: Trigger initialization of DataFormats (which requires the
15561 driver to be initialized and can't therefore be done via a static ctor)
15563 2005-11-10 Peter Dennis Bartok <pbartok@novell.com>
15565 * TextControl.cs: Added backend code for finding char arrays and strings
15567 - Added mouse wheel scroll support
15568 - Added support for VScroll and HScroll events
15570 - Implemented all seven Find() variants
15571 - Implemented GetCharFromPosition()
15572 - Implemented GetCharIndexFromPosition()
15573 - Implemented GetLineFromIndex()
15574 - Implemented GetPositionFromCharIndex();
15575 - Implemented SaveFile for PlainText and UnicodeText
15576 - Fixed set_Font, now setting a new font applies that font to
15578 - Implemented generic Document to RTF converter
15579 - Implemented SaveFile for RichText format (still missing unicode
15580 conversion for non-ansi chars)
15581 - Implemented get_Rtf
15582 - Implemented get_SelectedRtf
15584 2005-11-09 Peter Dennis Bartok <pbartok@novell.com>
15586 * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
15587 to allow any captures to be released before triggering OnClick. This
15588 way a click handler may capture the mouse without interference.
15589 * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
15590 This way we send them even though X may not allow a grab (if the window
15591 isn't visible, for example)
15593 2005-11-08 Pedro Martinez Julia <pedromj@gmail.com>
15595 * DataGridViewRowEventArgs.cs: DataGridView implementation
15596 * DataGridViewElement.cs: DataGridView implementation
15597 * DataGridViewComboBoxCell.cs: DataGridView implementation
15598 * DataGridViewDataErrorContexts.cs: DataGridView implementation
15599 * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
15600 * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
15601 * ImageLayout.cs: DataGridView implementation
15602 * DataGridViewComboBoxColumn.cs: DataGridView implementation
15603 * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
15604 * DataGridViewSelectionMode.cs: DataGridView implementation
15605 * IDataGridViewEditingControl.cs: DataGridView implementation
15606 * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
15607 * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
15608 * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
15609 * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
15610 * DataGridViewColumnSortMode.cs: DataGridView implementation
15611 * DataGridView.cs: DataGridView implementation
15612 * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
15613 * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
15614 * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
15615 * Padding.cs: DataGridView implementation
15616 * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
15617 * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
15618 * DataGridViewRowEventHandler.cs: DataGridView implementation
15619 * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
15620 * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
15621 * DataGridViewButtonCell.cs: DataGridView implementation
15622 * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
15623 * DataGridViewEditMode.cs: DataGridView implementation
15624 * DataGridViewCellValueEventArgs.cs: DataGridView implementation
15625 * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
15626 * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
15627 * DataGridViewCheckBoxColumn.cs: DataGridView implementation
15628 * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
15629 * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
15630 * DataGridViewCellEventHandler.cs: DataGridView implementation
15631 * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
15632 * DataGridViewCellStyleConverter.cs: DataGridView implementation
15633 * DataGridViewSelectedRowCollection.cs: DataGridView implementation
15634 * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
15635 * DataGridViewColumnEventArgs.cs: DataGridView implementation
15636 * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
15637 * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
15638 * QuestionEventArgs.cs: DataGridView implementation
15639 * IDataGridViewEditingCell.cs: DataGridView implementation
15640 * DataGridViewTriState.cs: DataGridView implementation
15641 * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
15642 * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
15643 * DataGridViewColumnCollection.cs: DataGridView implementation
15644 * DataGridViewCellValueEventHandler.cs: DataGridView implementation
15645 * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
15646 * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
15647 * DataGridViewColumn.cs: DataGridView implementation
15648 * DataGridViewCellBorderStyle.cs: DataGridView implementation
15649 * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
15650 * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
15651 * DataGridViewRow.cs: DataGridView implementation
15652 * DataGridViewImageCellLayout.cs: DataGridView implementation
15653 * DataGridViewImageCell.cs: DataGridView implementation
15654 * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
15655 * DataGridViewCheckBoxCell.cs: DataGridView implementation
15656 * DataGridViewHeaderCell.cs: DataGridView implementation
15657 * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
15658 * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
15659 * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
15660 * DataGridViewTextBoxColumn.cs: DataGridView implementation
15661 * QuestionEventHandler.cs: DataGridView implementation
15662 * DataGridViewCellStyleScopes.cs: DataGridView implementation
15663 * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
15664 * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
15665 * DataGridViewCell.cs: DataGridView implementation
15666 * DataGridViewCellEventArgs.cs: DataGridView implementation
15667 * DataGridViewClipboardCopyMode.cs: DataGridView implementation
15668 * DataGridViewCellStyle.cs: DataGridView implementation
15669 * DataGridViewColumnHeaderCell.cs: DataGridView implementation
15670 * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
15671 * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
15672 * TextFormatFlags.cs: DataGridView implementation
15673 * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
15674 * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
15675 * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
15676 * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
15677 * DataGridViewButtonColumn.cs: DataGridView implementation
15678 * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
15679 * HandledMouseEventArgs.cs: DataGridView implementation
15680 * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
15681 * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
15682 * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
15683 * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
15684 * DataGridViewRowCollection.cs: DataGridView implementation
15685 * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
15686 * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
15687 * DataGridViewHitTestType.cs: DataGridView implementation
15688 * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
15689 * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
15690 * DataGridViewColumnEventHandler.cs: DataGridView implementation
15691 * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
15692 * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
15693 * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
15694 * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
15695 * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
15696 * DataGridViewContentAlignment.cs: DataGridView implementation
15697 * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
15698 * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
15699 * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
15700 * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
15701 * DataGridViewPaintParts.cs: DataGridView implementation
15702 * DataGridViewCellCollection.cs: DataGridView implementation
15703 * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
15704 * DataGridViewImageColumn.cs: DataGridView implementation
15705 * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
15706 * DataGridViewElementStates.cs: DataGridView implementation
15707 * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
15708 * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
15709 * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
15710 * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
15711 * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
15712 * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
15713 * DataGridViewRowHeaderCell.cs: DataGridView implementation
15714 * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
15715 * DataGridViewTextBoxCell.cs: DataGridView implementation
15716 * DataGridViewBand.cs: DataGridView implementation
15717 * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
15718 * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
15719 * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
15720 * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
15721 * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
15722 * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
15723 * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
15724 * DataGridViewSelectedCellCollection.cs: DataGridView implementation
15725 * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
15726 * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
15727 * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
15729 2005-11-08 Peter Dennis Bartok <pbartok@novell.com>
15731 * ThemeWin32Classic.cs:
15732 - Draw the outside focus rectangle around buttons
15733 - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
15734 doesn't use end caps for every dash of a line anymore. This
15735 workaround ignores the forecolor.
15737 2005-11-08 Kornél Pál <kornelpal@hotmail.com>
15739 * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
15742 2005-11-07 Jackson Harper <jackson@ximian.com>
15744 * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
15746 2005-11-07 Jackson Harper <jackson@ximian.com>
15748 * ScrollableControl.cs: Calculate the maximum and change vars
15749 (more) correctly so that scrollbars appear as a sensible size.
15751 2005-11-04 Jackson Harper <jackson@ximian.com>
15753 * TreeNodeCollection.cs: Refresh when nodes are cleared from the
15755 * TreeView.cs: When the tree is sorted null out the top_node so
15756 that it is recalculated.
15757 - Use dotted lines instead of dashed lines to match MS better.
15759 2005-11-04 Jordi Mas i Hernandez <jordimash@gmail.com>
15762 - Implements key search for items. Useful when browsing files with FileDialog
15763 - When changing view mode or when clear the items reset scrollbar positions
15765 2005-11-04 Jackson Harper <jackson@ximian.com>
15767 * CurrencyManager.cs: Implement the MetaDataChanged event, the
15768 Reset method, and the CheckEmpty. CheckEmpty is just a total guess
15769 as to what the method may do as there is no real way of creating a
15770 derived CurrencyManager and calling the method.
15772 2005-11-03 Jackson Harper <jackson@ximian.com>
15774 * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
15775 * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
15776 method which seems to just be used internally to refresh the tabs.
15778 2005-11-03 Jackson Harper <jackson@ximian.com>
15780 * TabControl.cs: Implement the remove method. Fix some broken
15783 2005-11-03 Peter Dennis Bartok <pbartok@novell.com>
15785 * DateTimePicker.cs:
15786 - Added missing DateTimePickerAccessibleObject class
15787 - Added missing events
15788 - Added OnFontChanged method
15789 * Form.cs: Added missing attributes
15790 * TreeView.cs: Added missing attributes
15792 2005-11-03 Peter Dennis Bartok <pbartok@novell.com>
15794 * GridItemCollection.cs: Fix signatures
15796 2005-11-03 Peter Dennis Bartok <pbartok@novell.com>
15798 * XplatUI.cs: Updated build rev/date
15799 * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs,
15800 DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
15801 * Application.cs: Trigger context-specific ExitThread events
15803 2005-11-03 Jackson Harper <jackson@ximian.com>
15807 * GridTableStylesCollection.cs:
15812 * MonthCalendar.cs: Signature fixes
15814 2005-11-03 Jackson Harper <jackson@ximian.com>
15816 * TreeNodeCollection.cs: Remove should not be virtual.
15817 * TreeView.cs: Implement the last of the missing methods.
15819 2005-11-03 Jackson Harper <jackson@ximian.com>
15821 * TreeNodeConverter.cs: Implement to get off my class-status back.
15823 2005-11-03 Jackson Harper <jackson@ximian.com>
15825 * TreeView.cs: Hookup the bits for drag and drop.
15826 * TreeNode.cs: Don't cache the tree_view or index anymore, now
15827 that nodes can be moved from tree to tree easily this just causes
15828 all sorts of problems.
15829 * TreeNodeCollection: Don't need to give treenodes an index and
15830 treeview anymore when they are added, these are computed on the
15831 fly. Also make sure to remove a node before its added.
15833 2005-11-03 Peter Dennis Bartok <pbartok@novell.com>
15836 - Added CaretSelection enum
15837 - Added comparison methods to Marker struct, makes selection code
15839 - Added SelectionStart and SelectionEnd as 'moveable' location for
15840 the CaretDirection enum and handler
15841 - Added selection_prev variable to track optimized invalidation for
15842 word and line selection
15843 - Added SelectionVisible property (returns true if there is a valid
15845 - Switched CaretHasFocus to only display the caret if there is no
15847 - Avoiding StringBuilder.ToString to retrieve a single char, instead
15848 using the direct character index; should be much faster
15849 - Added various conditional debug statements
15850 - Fixed invalidation calculation for selection ranges
15851 - Added ExpandSelection() method to support word and line selection
15852 - Switched SetSelectionToCaret to use new Marker compare overloads
15853 - Added central IsWordSeparator() method to determine word
15854 separators/whitespace and FindWordSeparator() to streamline common
15855 usage of IsWordSeparator()
15857 - Removed unneeded grabbed variable, it was just mirroring
15859 - No longer firing OnTextChanged event when Text setter is called,
15860 since the base will fire the event for us
15861 - Added handling of Ctrl-Up/Down selection
15862 - Added handling of Shift-Cursorkey selection
15863 - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
15865 - Added handling of Shift and Ctrl-Shift-Home/End selection
15866 - Removed some debug output
15867 - Added handling for single/double/tripple-click to place caret/
15868 select word/select line respectively (Fixes bug #76031)
15869 - Added support for drag expansion of word/line selection
15870 * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
15873 2005-11-02 Jackson Harper <jackson@ximian.com>
15875 * X11Dnd.cs: If the drag is going to and from a MWF window just
15876 copy the data instead of sending it out through the X Selection
15879 2005-11-02 Jackson Harper <jackson@ximian.com>
15882 * XplatUIX11.cs: When in a drag we don't want motion notify
15883 messages to get passed on to the other controls. This prevents
15884 mouse move messages from showing up in the drag source.
15886 2005-11-02 Jackson Harper <jackson@ximian.com>
15888 * X11Dnd.cs: Remove unneeded call to XAllowEvents. Make sure that
15889 the correct button is release to end a drag.
15890 * XplatUIX11.cs: Make the button state internal so the drag system
15891 can access it. Dragging needs to know about all button releases,
15892 not just left button.
15894 2005-11-02 Miguel de Icaza <miguel@novell.com>
15896 * Form.cs (Icon): If the icon is null, reset the icon to the
15899 * Cursor.cs: When writing the AND-mask bitmap do not include the
15900 number of colors, but hardcode those to two (black and white),
15901 fixes the loading of color cursors (Paint Dot Net).
15903 * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
15904 turn off autoscaling.
15906 * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
15908 2005-11-02 Jackson Harper <jackson@ximian.com>
15910 * X11Dnd.cs: Make sure to send a status message if the pointer
15911 enters a control that can not accept a drop, otherwise the cursor
15912 isn't updated correctly. Also tried to compress the lines of code
15915 2005-11-02 Jackson Harper <jackson@ximian.com>
15917 * X11Dnd.cs: Change cursors based on drag action. Also attempt to
15918 set actions correctly. This isn't perfect as XDND and win32 have
15919 some differences on how you allow actions. I'll clear this up by
15920 adding a path for drag from MWF to MWF windows.
15921 * XplatUIX11.cs: Hook into the dnd system.
15923 2005-11-02 Jordi Mas i Hernandez <jmas@softcatala.org>
15925 * ListView.cs: Fixes scroll bar visibility. Hide them if they were
15926 previously shown but they are no longer need it. Very obvious when
15927 browsing files with FileDialog.
15929 2005-11-01 Peter Dennis Bartok <pbartok@novell.com>
15931 * Control.cs: We always need to call OnPaintBackground. We pretty much
15932 ignore AllPaintingInWmPaint and always do the painting there, whether
15933 it's set or not, since we always ignore the WM_ERASEBKGND message
15934 (which we don't generate on X11). This fixes #76616.
15935 * Panel.cs: Removed unneeded background painting. This happens properly
15936 in Control.cs already
15938 2005-10-31 Mike Kestner <mkestner@novell.com>
15940 * Menu.cs: Add items to collection before setting their index.
15941 * MenuItem.cs : add range checking with ArgumentException like MS.
15944 2005-10-31 Jackson Harper <jackson@ximian.com>
15946 * ListBox.cs: Invalidate if the area is visible at all not just
15947 contained in the visible rect. Fixes unselection of semi visible
15950 2005-10-31 Jackson Harper <jackson@ximian.com>
15952 * Control.cs: Consistently name the dnd methods. Make them
15953 internal so we can override them to match some MS behavoir
15955 * Win32DnD.cs: Use the new consistent names.
15957 2005-10-31 Jackson Harper <jackson@ximian.com>
15959 * TreeView.cs: Don't draw the selected node when we lose focus.
15961 2005-10-31 Jackson Harper <jackson@ximian.com>
15963 * X11Dnd.cs: We still need to reset the state even though a full
15964 reset isn't being done, otherwise status's still get sent all over
15967 2005-10-31 Jackson Harper <jackson@ximian.com>
15969 * Control.cs: Make the dnd_aware flag internal so the dnd
15970 subsystem can check it. Catch exceptions thrown in dnd handlers to
15972 * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
15973 * X11Dnd.cs: Handle null data in the converters. Set the XDND
15974 version when sending a XdndEnter. Use the control/hwnd dnd_aware
15975 flags to reduce the number of dnd enters/status's sent.
15977 2005-10-31 Jackson Harper <jackson@ximian.com>
15979 * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
15981 2005-10-31 Jordi Mas i Hernandez <jordi@ximian.com>
15983 * PictureBox.cs: Fixes 76512
15985 2005-10-28 Jackson Harper <jackson@ximian.com>
15987 * X11Dnd.cs: Early implementation to support winforms being a drag
15988 source for data on X11. Also restructured the converters so they
15989 can go both ways now.
15990 * XplatUIX11.cs: Tie ins to the the Dnd stuff.
15992 2005-10-27 Peter Dennis Bartok <pbartok@novell.com>
15994 * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
15997 2005-10-27 Jackson Harper <jackson@ximian.com>
15999 * TreeNode.cs: Implement serialization so my DnD examples will work.
16001 2005-10-24 Kornél Pál <kornelpal@hotmail.com>
16003 * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
16004 TreeView.cs: Don't dispose objects that are not owned.
16006 2005-10-24 Peter Dennis Bartok <pbartok@novell.com>
16008 * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
16009 should retrieve the current cursor and report that, but XplatUI
16010 doesn't (yet) have an interface for that (and I'm not sure I even
16012 * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
16013 until any message loop processing is done (and the WM_SETCURSOR
16014 replaces the cursor to the proper one)
16016 - Fixed override behaviour, we can't set the cursor globally on X11,
16017 just for our windows.
16018 - Invalidating the System.Drawing X11 display handle when we are
16020 * Control.cs: Fix to make csc happy
16022 2005-10-23 Peter Dennis Bartok <pbartok@novell.com>
16025 - get_Text: Add last line (without trailing newline) to returned
16026 value (Fixes 76212)
16027 - get_TextLength: Count last line in returned length
16028 - ToString: Call Text property instead of duplicating code
16030 2005-10-23 Kornél Pál <kornelpal@hotmail.com>
16032 * ImageList.cs: Dispose ImageAttributes objects.
16034 2005-10-22 Kornél Pál <kornelpal@hotmail.com>
16036 * ImageList.cs: Use attribute constructors with less arguments where
16039 2005-10-22 Kornél Pál <kornelpal@hotmail.com>
16041 * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
16042 Use typeof instead of strings when assembly is referenced. Added
16043 some more comments.
16045 2005-10-21 Jackson Harper <jackson@ximian.com>
16047 * ListView.cs: Raise a double click event. Also tried to somewhat
16048 fix when the selectedindexchanged event is raised. Its still
16051 2005-10-21 Jackson Harper <jackson@ximian.com>
16053 * TreeView.cs: New method to invalidate the plus minus area of a
16054 node without invalidating the whole node (maybe this can be used
16055 in some more places).
16056 * TreeNodeCollection.cs: When adding to an empty node we need to
16057 invalidate its plus minus area so the little block shows up.
16059 2005-10-21 Jackson Harper <jackson@ximian.com>
16061 * TreeView.cs: Make sure that when we invalidate a node the bounds
16062 are big enough to cover the selected box and the focus
16063 rectangle. Use a different colour for the lines connecting nodes
16064 so they show up with all themes.
16066 2005-10-21 Peter Dennis Bartok <pbartok@novell.com>
16068 * NativeWindow.cs: Don't call anything that could call into the driver,
16069 we might be on a different thread.
16071 2005-10-21 Peter Dennis Bartok <pbartok@novell.com>
16073 * Control.cs(Dispose): Since Dispose might run on a different thread,
16074 make sure that we call methods that could call into the driver via
16075 invoke, to avoid thread issues
16077 2005-10-21 Peter Dennis Bartok <pbartok@novell.com>
16079 * XplatUI.cs: Removed finalizer
16080 * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
16081 not allowing to be called on the finalizer thread.
16083 2005-10-21 Kornél Pál <kornelpal@hotmail.com>
16086 - Reverted r51889 and r51891.
16087 - Added ImageListItem class that stores unmodified image items and image
16088 properties required to create list images until handle is created.
16089 - Added AddItem and moved image creation logic to AddItemInternal.
16090 - Added CreateHandle method that creates images based on unmodified items.
16091 - Added DestroyHandle that changes state to store unmodified items.
16092 - Add and AddStrip methods no more create handle.
16093 - ReduceColorDepth has no return value.
16094 - Dispose destroys handle.
16095 - Modified other methods to reflect the above changes.
16096 - Implemented key support.
16097 - Added profile 2.0 members and attributes.
16098 - Added private Reset and ShouldSerialize methods that provide the same
16099 behavior as MS.NET but the Visual Studio .NET designer seems to ignore
16100 them as they are private.
16101 - Added some more comments about implementation details.
16103 2005-10-21 Jordi Mas i Hernandez <jordi@ximian.com>
16105 * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
16107 2005-10-21 Jordi Mas i Hernandez <jordi@ximian.com>
16109 * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
16111 2005-10-21 Jordi Mas i Hernandez <jordi@ximian.com>
16113 * DataGridDrawingLogic.cs: Fixes column hit calcultation
16114 * DataGridColumnStyle.cs: Remove debug message
16116 2005-10-20 Jackson Harper <jackson@ximian.com>
16118 * TreeView.cs: We can always get input keys regardless of whether
16119 or not editing is enabled. They are used for navigation.
16121 2005-10-20 Jackson Harper <jackson@ximian.com>
16123 * TreeNode.cs: Use the viewport rect for determining if a node
16124 needs to be moved for visibility. Don't use Begin/End edit. This
16125 calls a full refresh when its done.
16126 * TreeView.cs: New SetBottom works correctly. Make the viewport
16127 rect property internal so the treenodes can see it. When clicking
16128 on a node we need to ensure that its visible because it might just
16129 be partly visible when clicked.
16131 2005-10-20 Jackson Harper <jackson@ximian.com>
16133 * TreeNodeCollection.cs: Remove debug code.
16135 2005-10-20 Jordi Mas i Hernandez <jordi@ximian.com>
16137 * Datagrid.cs: Implements column sorting in Datagrid
16138 * DataGridColumnStyle.cs: Implements column sorting in Datagrid
16140 2005-10-20 Jackson Harper <jackson@ximian.com>
16142 * TreeNodeCollection.cs: Remove items properly. Update the correct
16143 area after removing them.
16145 2005-10-20 Jordi Mas i Hernandez <jordi@ximian.com>
16147 * Datagrid.cs: Should not call base.OnPaintBackground
16149 2005-10-20 Peter Dennis Bartok <pbartok@novell.com>
16151 * XplatUIX11.cs (GetMessage):
16152 - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
16153 window instead of client window
16154 - Now properly calculates NC_xBUTTONUP message coordinates
16155 - ScreenToMenu now properly calculates it's coordinates of whole
16156 window, since menus are in the whole window, not in the client
16158 - Added WholeToScreen coordinate translation method
16160 2005-10-20 Peter Dennis Bartok <pbartok@novell.com>
16162 * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
16163 want to return a message, loop back to the beginning of the function
16164 and grab the next real message to process instead.
16166 2005-10-20 Peter Dennis Bartok <pbartok@novell.com>
16168 * Splitter.cs: Properly set limits if no filler control is used
16170 2005-10-19 Jackson Harper <jackson@ximian.com>
16172 * ColorDialog.cs: Don't show the help button if it is not enabled
16173 instead of disabling it (this is what MS does). Don't create the
16174 panel until the dialog is run, otherwise the vars (such as
16175 ShowHelp) are not set yet.
16177 2005-10-19 Jackson Harper <jackson@ximian.com>
16179 * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
16180 are reduced when adding nodes.
16182 * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
16185 2005-10-19 Jackson Harper <jackson@ximian.com>
16187 * FolderBrowserDialog.cs: End editing our treeview so the window
16188 actually gets refreshed.
16190 2005-10-18 Peter Dennis Bartok <pbartok@novell.com>
16192 * Control.cs: Fixed logic flip on when to call OnPaintBackground.
16193 Obsoleted handling of WM_ERASEBKGND, now always draws our background
16196 2005-10-18 Jordi Mas i Hernandez <jordi@ximian.com>
16198 * MenuAPI.cs: Returns after Hidding window
16199 * XplatUIX11.cs: Added TODO found while debugging menu issues
16201 2005-10-18 Peter Dennis Bartok <pbartok@novell.com>
16203 * XplatUIX11.cs: Do not re-map the whole window when it's size
16204 becomes non-zero unless it's supposed to be actually visible
16206 2005-10-18 Jackson Harper <jackson@ximian.com>
16208 * TreeView.cs: We don't need to keep a count anymore.
16209 * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
16210 use the Grow method.
16212 2005-10-18 Jackson Harper <jackson@ximian.com>
16214 * TreeNodeCollection.cs: Insert is not supported on arrays, so
16215 implement it manually here.
16217 2005-10-18 Jackson Harper <jackson@ximian.com>
16219 * ImageList.cs: Dont kill the list when the colour depth is
16220 changed, just change the colour depth of all the images.
16221 - Same goes for setting the image size. Just resize them all
16222 instead of killing the list softly.
16224 2005-10-18 Jackson Harper <jackson@ximian.com>
16226 * Control.cs: Don't invalidate empty rectangles.
16228 2005-10-18 Jordi Mas i Hernandez <jordi@ximian.com>
16231 - Adds checked item to the Checked/Item lists (where empty before)
16232 - Do not add items to the Selected lists if they are already present
16234 - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
16235 - When deleting items make sure that we delete them for the Selected
16236 and Checked list also.
16238 2005-10-18 Jordi Mas i Hernandez <jordi@ximian.com>
16240 * Label.cs: Dispose objects no longer used
16241 * ThemeWin32Classic.cs: Dispose objects no longer used
16243 2005-10-18 Jackson Harper <jackson@ximian.com>
16245 * TabControl.cs: Don't refresh the whole control when the tabs are
16246 scrolled, we just need to refresh the tab area.
16248 2005-10-17 Jackson Harper <jackson@ximian.com>
16250 * XplatUIX11.cs: Compress code a little bit. Only calculate the
16251 after handle when we need it.
16253 2005-10-17 Peter Dennis Bartok <pbartok@novell.com>
16255 * Control.cs: When the parent size changes, recalculate anchor
16256 positions. Partial fix for #76462
16258 2005-10-17 Peter Dennis Bartok <pbartok@novell.com>
16260 * ThemeWin32Classic.cs: Make sure the picturebox has it's background
16261 drawn. Fixes #76462
16263 2005-10-17 Jackson Harper <jackson@ximian.com>
16265 * MonthCalendar.cs: Don't create the numeric up down until our
16266 handle is created. Otherwise our handle is created in the
16267 constructor and we don't know if we are a WS_CHILD or WS_POPUP
16270 2005-10-17 Jackson Harper <jackson@ximian.com>
16272 * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
16275 2005-10-17 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
16276 * TreeNode.cs : small logical fix (was using local var instead of field)
16278 2005-10-17 Jordi Mas i Hernandez <jordi@ximian.com>
16280 * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
16282 2005-10-17 Jordi Mas i Hernandez <jordi@ximian.com>
16284 * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
16286 2005-10-16 Peter Dennis Bartok <pbartok@novell.com>
16289 - Re-implemented anchoring code. My first version was really broken.
16290 This fixes bug #76033. Unlike the previous implementation we will
16291 no longer have round errors since all numbers are calculated from
16292 scratch every time. Removed various anchor-related obsolete vars.
16293 - InitLayout no longer causes layout event firing and layout to be
16296 2005-10-16 Jackson Harper <jackson@ximian.com>
16298 * Hwnd.cs: Compute invalid area correctly (fixes my last commit
16301 2005-10-16 Jackson Harper <jackson@ximian.com>
16303 * TabControl.cs: Remove debug code.
16305 2005-10-16 Jackson Harper <jackson@ximian.com>
16307 * XEventQueue.cs: Increase the default queue size (very simple
16308 apps needed to grow the queue).
16309 * Hwnd.cs: No finalizer so we don't need to suppress
16310 finalization. Compute the invalid area manually so a new rectangle
16311 does not newto be created.
16312 * ScrollableControl.cs: Don't set any params (otherwise visibility
16313 isn't set correctly).
16314 * MdiChildContext.cs: New constructor takes the mdi parent so it
16315 doesn't have to be computed and avoids a crash on windows. Draw
16316 the window icon properly, and allow the text to be seen.
16317 * Form.cs: Use new MdiChildContext constructor. Make sure the
16318 child context isn't null in wndproc.
16319 * TabControl.cs: Don't set focus, this is muddling keyboard
16320 behavoir. Expand the tab rows when a window size increase will
16321 allow extra tabs to be seen. Don't allow tabs smaller than the
16322 width of a window to be scrolled out of view.
16324 * TreeView.cs: Use measure string to calculate a nodes width, the
16325 width is cached and only updated when the text or the font is
16326 changed. Don't check for expand/collapse clicks on the first level
16327 nodes if root lines are disabled.
16329 2005-10-16 Ritvik Mayank <mritvik@novell.com>
16331 * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
16333 2005-10-16 Jordi Mas i Hernandez <jordi@ximian.com>
16335 * DataGridBoolColumn.cs: fixes warning
16337 2005-10-16 Jordi Mas i Hernandez <jordi@ximian.com>
16339 * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
16340 to match more to match more precisely the MS Net behavior
16342 2005-10-13 Peter Dennis Bartok <pbartok@novell.com>
16344 * Hwnd.cs: Added field to track if window is mapped
16346 - Unmap windows if they become 0-size, re-map when
16347 they are >0 again; fixes #76035
16348 - Re-set our error handler after initializing X11Desktop
16349 to override any error handlers Gtk or whatever was called
16352 2005-10-13 Peter Dennis Bartok <pbartok@novell.com>
16354 * CheckedListBox.cs: Removed unused vars
16355 * ListView.cs: Fixed signatures
16356 * RichTextBox.cs: Removed unused vars
16357 * TextBoxBase.cs: Removed unused vars
16358 * XplatUIWin32.cs: Removed unused vars
16359 * XplatUIX11.cs: Removed unused vars
16360 * XplatUI.cs: Updated version and date to latest published
16362 2005-10-13 Peter Dennis Bartok <pbartok@novell.com>
16364 * Cursor.cs: Added private .ctor to work around a bug in
16365 resourceset (Thanks to Geoff Norton for the help on this)
16366 * SplitterEventArgs.cs: Made fields accessible so we don't
16367 waste boatloads of objects and can reuse the same one
16369 * XplatUIWin32.cs(DrawReversibleLine): Now also considers
16370 any captions and borders when generating screen coordinates
16371 * Splitter.cs: Reimplemented control, now fully complete, uses
16372 rubberband drawing, supports and obeys all properties, has
16375 2005-10-13 Miguel de Icaza <miguel@novell.com>
16377 * Form.cs (Form): Setup default values for autoscale and
16378 autoscale_base_size; Make these instance variables, not static
16381 (OnLoad): on the first load, adjust the size of the form.
16383 2005-10-13 Peter Dennis Bartok <pbartok@novell.com>
16385 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added
16386 width argument to DrawReversibleRectangle()
16387 * XplatUIWin32.cs, XplatUIX11.cs:
16388 - Implemented width for DrawReversibleRectangle()
16389 - Added logic to DrawReversibleRectangle that recognizes a zero
16390 width or height and only draws a line in that situation
16392 2005-10-12 Peter Dennis Bartok <pbartok@novell.com>
16394 * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
16395 * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
16396 * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
16397 method (it uses our FosterParent window to get a graphics context)
16399 2005-10-12 Peter Dennis Bartok <pbartok@novell.com>
16401 * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground
16402 and SetWindowBackground methods
16404 - Setting proper ControlStyles
16405 - We no longer call XplatUI.SetWindowBackground and XplatUI.
16406 EraseWindowBackground, instead we draw the window background
16407 ourselves in PaintControlBackground. This behaviour is
16408 required to match MS, where, when OnPaintBackground is not
16409 called, the background is not drawn.
16410 - Removed unneeded Refresh() in set_Text
16411 * Hwnd.cs: Dropped the ErasePending support. No longer needed
16413 - Created DeriveStyles method to translate from CreateParams to
16414 FormBorderStyle and TitleStyle, also handles BorderStyle (which
16415 matches FormBorderStyle enum values)
16416 - Consolidated SetHwndStyles and CalculateWindowRect border/title
16417 style calculations into single DeriveStyles method
16418 - Fixed CreateWindow to (finally) use Gravity. This prevents X11
16419 from redrawing the whole window on any resize or expose.
16420 - Fixed CreateWindow usage of SetWindowValuemask. Before not
16421 all styles were applied to our whole/client window appropriately
16422 - Removed EraseWindowBackground() and SetWindowBackground() methods
16423 - Removed handling of WM_ERASEBKGND message from DefWndProc, we
16424 no longer clear/redraw the background through X
16425 - Removed handling of erase_pending bit, we have no use for it (or
16428 - Removed generation and handling of WM_ERASEBKGND message
16429 - Removed EraseWindowBackground() and SetWindowBackground() methods
16430 - Removed handling of hwnd.ErasePending flag
16432 - Removed EraseWindowBackground() and SetWindowBackground() methods
16433 - We no longer call EraseWindowBackground on PaintEventStart, we
16434 ignore the fErase flag, erasing is handled in Control in the
16436 * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
16437 LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
16438 TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs,
16439 CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs,
16440 DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs,
16441 TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
16442 DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
16444 2005-10-12 Jonathan Chambers <jonathan.chambers@ansys.com>
16446 * PropertyGrids.cs: Get sub properties
16447 * PropertyGridView.cs: Fix drawing code
16449 2005-10-11 Jordi Mas i Hernandez <jordi@ximian.com>
16451 * ListBox.cs: Fixes 76383
16453 2005-10-11 Jordi Mas i Hernandez <jordi@ximian.com>
16455 * DataGridTextBoxColumn.cs: Sets location and size before attachment
16456 * ThemeWin32Classic.cs: Fixes border drawing and calculations
16457 * DataGridDrawingLogic.cs: Fixes border drawing and calculations
16460 2005-10-11 Jordi Mas i Hernandez <jordi@ximian.com>
16462 * ComboBox.cs: Fixes border drawing
16464 2005-10-10 Miguel de Icaza <miguel@novell.com>
16466 * MimeIcon.cs: Ignore errors if the file can not be read.
16468 2005-10-11 Jordi Mas i Hernandez <jordi@ximian.com>
16470 * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
16471 - Fixed border calculations
16472 - Fixed horizontal scrolling in single column listboxes
16473 - Fixed drawing issues
16475 2005-10-10 Peter Dennis Bartok <pbartok@novell.com>
16477 * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to
16478 FormBorderStyle enum
16479 * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added
16480 code to determine FormBorderStyles from CreateParams
16482 - Fixed bug where we'd set the wrong window styles if we were
16483 not creating an MDI window
16484 - Added call to XplatUI.SetBorderStyle when form borders are set
16485 * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
16487 - Removed obsolete edge style
16488 - Switched from BorderStyle to FormBorderStyle
16490 2005-10-10 Jackson Harper <jackson@ximian.com>
16492 * Form.cs: Use the property to get the window handle instead of
16493 accessing it directly. Prevents a null reference exception.
16495 2005-10-10 Jackson Harper <jackson@ximian.com>
16497 * TreeView.cs: Don't adjust the rect given to DrawString now that
16498 our libgdiplus draws correctly.
16500 2005-10-08 Jackson Harper <jackson@ximian.com>
16502 * TreeView.cs: Don't try to find the clicked on node if there are
16503 no nodes in the tree.
16505 2005-10-08 Alexander Olk <alex.olk@googlemail.com>
16511 2005-10-08 Alexander Olk <alex.olk@googlemail.com>
16513 * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
16514 ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
16516 Use ResPool for brushes and dispose System.Drawing objects that
16517 are not used anymore.
16519 2005-10-07 Jackson Harper <jackson@ximian.com>
16521 * MdiChildContext.cs: Use the new borders instead of drawing them
16524 2005-10-06 Jordi Mas i Hernandez <jordi@ximian.com>
16526 * Calling UpdateBounds after changing the window's BorderStyle
16527 since the style can change the ClientSize
16529 2005-10-06 Peter Dennis Bartok <pbartok@novell.com>
16531 * Control.cs: Made PaintControlBackground virtual
16532 * Panel.cs: Overriding PaintControlBackground instead of using paint
16533 event; paint event method was interfering with 'real' users of the
16536 2005-10-06 Jordi Mas i Hernandez <jordi@ximian.com>
16538 * ThemeWin32Classic.cs: remove border drawing since it is handled
16539 by the base control class now and was causing double border drawing.
16541 2005-10-06 Peter Dennis Bartok <pbartok@novell.com>
16543 * Panel.cs: Redraw our background on paint. Not a pretty solution,
16544 but it does seem to match MS behaviour. This fixes bug #75324
16546 2005-10-06 Peter Dennis Bartok <pbartok@novell.com>
16548 * XplatUIX11.cs: A better DrawReversibleRectangle version, however
16549 somewhat hackish looking
16551 2005-10-06 Peter Dennis Bartok <pbartok@novell.com>
16554 - We now accept Enter even if AcceptEnter is false, if the containing
16555 form does not have an AcceptButton configured (fixes bug #76355)
16556 - Calculations are now fixed to no longer use Width/Height, but
16557 ClientSize.Width/Height, since we now support borders (this was
16558 a result of fixing borders and therefore bug #76166)
16559 - We no longer show the horizontal scrollbar if TextBox.WordWrap is
16560 true (fixes bug #76354)
16562 2005-10-06 Peter Dennis Bartok <pbartok@novell.com>
16565 - Defaulting BorderStyle and setting it in XplatUI when our window
16567 - Added enum check to InternalBorderStyle setter
16569 - Added drawing of window borders
16570 - Now properly calculates WM decorations offset for toplevel
16571 windows (fixes bug #74763)
16573 - Implemented BorderStyles for windows (we're letting win32 draw
16575 - Fixed the signature for SetWindowLong
16576 * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
16577 ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for
16579 * UpDownBase.cs: Remove drawing of borders, this is handled by
16580 the driver, outside the client area
16581 * ListView.cs: Removed bogus border calculations. The control should
16582 be oblivious to borders, since those are not part of the client
16584 * X11DesktopColors.cs: Commented out (currently) unneeded variables
16585 * ThemeWin32Classic.cs: Removed border calculations from ListView
16588 2005-10-06 Jackson Harper <jackson@ximian.com>
16590 * MdiChildContext.cs: Clear out the old virtual position remove
16591 all the unneeded calls to CreateGraphics.
16593 2005-10-06 Peter Dennis Bartok <pbartok@novell.com>
16595 * TextControl.cs: Use proper color for highlighted text; fixes #76350
16597 2005-10-06 Peter Dennis Bartok <pbartok@novell.com>
16600 - Added loading and setting of our new default icon
16601 - Only set icon if window is already created
16603 2005-10-06 Peter Dennis Bartok <pbartok@novell.com>
16606 - Do not explicitly set the foreground and background colors, to
16607 allow inheriting from parents (fixes #76302)
16608 - Use Control's InternalBorderStyle property to deal with borders
16610 2005-10-06 Jackson Harper <jackson@ximian.com>
16612 * MdiChildContext.cs: Use the new xplatui function to draw a
16615 2005-10-06 Jackson Harper <jackson@ximian.com>
16617 * Form.cs: Add the parent before creating the child context cause
16618 we need the parent when setting up the child.
16620 2005-10-06 Jackson Harper <jackson@ximian.com>
16622 * FolderBrowserDialog.cs: redo the tree population code so a
16623 second thread isn't used. Should be a lot faster and more stable
16626 2005-10-05 Jackson Harper <jackson@ximian.com>
16628 * TreeView.cs: There are no expand/collapse boxes if the node has
16631 2005-10-05 Jackson Harper <jackson@ximian.com>
16633 * X11DesktopColors.cs: Get menu colours for the gtk theme.
16635 2005-10-05 Alexander Olk <alex.olk@googlemail.com>
16637 * FileDialog.cs: Fix InitialDirectory
16639 2005-10-05 Jordi Mas i Hernandez <jordi@ximian.com>
16642 - Fixes changing between styles
16643 - Fixes simple mode
16644 - Fixes last item crashing when navigating with keyboard
16646 2005-10-05 Jordi Mas i Hernandez <jordi@ximian.com>
16648 * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
16650 2005-10-05 Jackson Harper <jackson@ximian.com>
16652 * TreeView.cs: If updating the root node do a full refresh.
16653 * TreeNode.cs: The root node should be expanded by default. Also
16654 added a utility prop to tell if we are the root node.
16655 * TreeNodeCollection.cs: Only refresh if the node we are being
16656 added to is expanded. Also added a comment on a potential
16659 2005-10-04 Peter Dennis Bartok <pbartok@novell.com>
16661 * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize()
16662 in dispose method. Fixes #76330
16664 2005-10-04 Jordi Mas i Hernandez <jordi@ximian.com>
16666 * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
16668 - Implements vertical and horizontal scrolling using XplatUI
16669 - Fixes keyboard navagation
16670 - Fixes EnsureVisible
16672 - Handles and draws focus properly
16675 2005-10-04 Kornél Pál <kornelpal@hotmail.com>
16677 * ImageList.cs: Use upper case initials for internal fields. ImageStream:
16678 Create handle. NET_2_0: Destroy handle when value is null.
16680 2005-10-03 Jackson Harper <jackson@ximian.com>
16682 * ScrollBar.cs: My last scrollbar patch was broken. This is a
16683 revert and a new patch to prevent the thumb from refreshing so
16686 2005-10-02 Jackson Harper <jackson@ximian.com>
16688 * ScrollBar.cs: Don't update position if it hasn't actually
16689 changed. This occurs when you hold down the increment/decrement
16690 buttons and the thumb gets to the max/min.
16692 2005-10-01 Jackson Harper <jackson@ximian.com>
16695 * MdiChildContext.cs:
16696 * MdiClient.cs: Implement ActiveMdiChild in Form.
16698 2005-10-01 Jordi Mas i Hernandez <jordi@ximian.com>
16700 * ComboBox.cs: Include ComboBoxEdit flag for the edit item
16702 2005-10-01 Peter Dennis Bartok <pbartok@novell.com>
16704 * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
16707 2005-09-30 Jackson Harper <jackson@ximian.com>
16709 * ListBox.cs: Don't do a full refresh unless some data has
16712 2005-09-30 Jackson Harper <jackson@ximian.com>
16714 * TreeView.cs: Make sure that the checkboxes size is factored in
16715 even when not visible.
16717 2005-09-30 Peter Dennis Bartok <pbartok@novell.com>
16719 * FileDialog.cs: Fix Jordi's build break
16721 2005-09-30 Jordi Mas i Hernandez <jordi@ximian.com>
16724 - Use standard the Windows colours for the combobox as espected
16725 - Dispose objects that use resouces when no longer need them
16727 2005-09-30 Peter Dennis Bartok <pbartok@novell.com>
16729 * X11DesktopColors.cs: Initial incomplete implementation
16730 * XplatUIX11.cs: Added call to initialize X11DesktopColors
16732 2005-09-30 Peter Dennis Bartok <pbartok@novell.com>
16735 - Switched Theme color names to match the names defined in
16736 System.Drawing.KnownColors. Life's hard enough, no need to make
16738 - Added setters to all theme color properties so themes can set
16739 their color schemes. The setters also propagate the color changes
16740 to System.Drawing.KnownColors via reflection
16741 * ControlPaint.cs, Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
16742 ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
16743 DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
16744 use the new, more logical theme color names
16745 * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
16747 * ThemeWin32Classic.cs:
16748 - Removed code to set the old classic Windows colors. Instead it
16749 now relies on the colors returned by System.Drawing.KnownColors
16750 which will be either modern static colors (Unix) or colors
16751 read from the user's configuration (Win32)
16752 - Updated to use the new, more logical theme color names
16753 - Switched DataGrid drawing code to use only Theme colors instead of
16754 a mix of System.Drawing.KnownColors and Theme colors
16755 - DrawFrameControl(): Removed code that fills the button area, the
16756 fill would overwrite any previous fill done by a control. This
16758 - Added DrawReversibleRectangle() stub
16759 * ScrollableControl.cs: Set visible state to false when scrollbars
16760 are removed (pdn fix)
16761 * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added
16762 DrawReversibleRectangle() method to allow drawing primitive
16764 * XplatUIX11.cs: Implemented DrawReversibleRectangle()
16766 2005-09-30 Kornél Pál <kornelpal@hotmail.com>
16768 * ImageList.cs: Add(Icon): Create handle.
16770 2005-09-30 Jordi Mas i Hernandez <jordi@ximian.com>
16773 * ThemeWin32Classic.cs:
16774 - Fixes detail mode
16776 - Issues with drawing
16778 2005-09-30 Kornél Pál <kornelpal@hotmail.com>
16780 * ImageList.cs: Moved RecreateHandle back to ImageList as event
16781 source has to be the ImageList.
16783 2005-09-30 Kornél Pál <kornelpal@hotmail.com>
16785 * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
16787 2005-09-30 Kornél Pál <kornelpal@hotmail.com>
16789 * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
16791 2005-09-30 Kornél Pál <kornelpal@hotmail.com>
16793 * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
16795 2005-09-29 Jonathan Chambers <jonathan.chambers@ansys.com>
16796 * GridItem.cs: Fixed TODOs
16797 * GridItemCollection.cs: Added ICollection interface
16799 2005-09-30 Kornél Pál <kornelpal@hotmail.com>
16801 * ImageList.cs: Resize icons when needed.
16803 2005-09-29 Jordi Mas i Hernandez <jordi@ximian.com>
16806 - Fixes GetBounds and returns on screen rects
16808 - Fixes vertical and horzintal scrolling of items
16809 * ThemeWin32Classic.cs:
16812 2005-09-29 Raja R Harinath <harinath@gmail.com>
16814 * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
16816 2005-09-29 Kornél Pál <kornelpal@hotmail.com>
16818 * ImageList.cs: Added comments about handle creation. Moved Handle,
16819 HandleCreated and OnRecreateHandle implementations to ImageCollection.
16820 Handle is created in Add methods.
16822 2005-09-28 Jordi Mas i Hernandez <jordi@ximian.com>
16824 * DataGridDrawingLogic.cs:
16825 - Takes rows into account on Colum calculations
16826 - Returns the column when clickig
16828 - Fixes default HitTestInfo values
16829 - Fixes HitTestInfo.ToString
16830 - Fixes ResetBackColor
16832 2005-09-28 Jackson Harper <jackson@ximian.com>
16834 * MdiChildContext.cs: Obey rules for fixed sized windows (no
16835 sizing or cursor changes). Also added some temp code to draw the
16836 titlebars text (Makes dev a little easier).
16838 2005-09-28 Kornél Pál <kornelpal@hotmail.com>
16840 * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
16842 2005-09-28 Jordi Mas i Hernandez <jordi@ximian.com>
16844 * ListBox.cs: Fixes bug 76253
16846 2005-09-28 Kornél Pál <kornelpal@hotmail.com>
16848 * ImageList.cs: Added comments about the current implementation. Added
16849 ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
16850 Format32bppArgb to preserve transparency and can use Graphics.FromImage
16851 while using the specified ColorDepth. ReduceColorDepth uses unsafe code
16852 with Bitmap.LockBits for better performance. Revised the whole file to
16853 match MS.NET behaviour and provide better performance. Non-public
16854 interface members are calling public members even when they throw
16855 NotSupportedException for better maintainability. Moved ColorDepth,
16856 ImageSize, ImageStream and TransparentColor implementations to
16857 ImageCollection for better performance as these properties are not used
16859 * ImageListStreamer.cs: Added a new internal constructor that takes an
16860 ImageList.ImageCollection and serializes Images based on
16861 ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
16862 match ImageList property name.
16864 2005-09-28 Kazuki Oikawa <kazuki@panicode.com>
16866 * ListBox.cs: Fixes IndexFromPoint for last item
16868 2005-09-27 Jackson Harper <jackson@ximian.com>
16870 * Form.cs: Set the position of new mdi children correctly.
16872 2005-09-27 Jackson Harper <jackson@ximian.com>
16874 * MdiClient.cs: New mdi children need to be added to the back of
16875 the controls collection so the zorder is set correctly. Also add a
16876 count of all the child windows that have been created.
16878 2005-09-27 Jackson Harper <jackson@ximian.com>
16880 * Form.cs (CreateParams): Setup MDI forms correctly.
16882 2005-09-27 Jackson Harper <jackson@ximian.com>
16884 * MdiChildContext.cs:
16885 * MonthCalendar.cs:
16891 * ScrollableControl.cs:
16892 * ComboBox.cs: Add implicit controls using the new implict control
16893 functionality in ControlCollection. Also try to block multiple
16894 control add in a suspend/resume layout to save some cycles.
16896 2005-09-27 Jackson Harper <jackson@ximian.com>
16898 * Control.cs: Add functionality to the controls collection to add
16899 'implicit controls' these are controls that are created by the
16900 containing control but should not be exposed to the user. Such as
16901 scrollbars in the treeview.
16902 * Form.cs: The list var of the ControlsCollection is no longer
16903 available because of the potential of implicit controls getting
16904 ignored by someone accessing the list directly.
16906 2005-09-26 Peter Dennis Bartok <pbartok@novell.com>
16908 * Control.cs: Fixed SetChildIndex; it no longer causes a child to
16909 loose it's parent. (Fixed bug introduced in r49103 when we added
16910 setting the child parent to null on Remove)
16912 2005-09-26 Gert Driesen <drieseng@users.sourceforge.net>
16914 * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
16915 * Splitter.cs: Added missing attributes for BorderStyle property.
16916 * TextBoxBase.cs: Marked Calculate* methods internal.
16917 * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
16920 2005-09-26 Jordi Mas i Hernandez <jordi@ximian.com>
16922 * ListBox.cs: Fixes navigation to the last item in multicolumn lists
16924 2005-09-25 Jackson Harper <jackson@ximian.com>
16926 * TreeView.cs: Update the node bounds correctly regardless of
16927 whether the node is visible.
16929 2005-09-25 Jackson Harper <jackson@ximian.com>
16931 * ImageList.cs: Don't dispose the image after it is added to the
16932 image list. Only reformat images that need to be resized.
16934 2005-09-25 Jackson Harper <jackson@ximian.com>
16936 * ImageList.cs: Don't set the format when changing the image.
16938 2005-09-25 Jackson Harper <jackson@ximian.com>
16940 * TreeView.cs: We can't just assume the node has a font. Use the
16941 treeviews font if no node font is available.
16943 2005-09-25 Jackson Harper <jackson@ximian.com>
16945 * TreeView.cs: Allow the scrollbars to be reset with negative
16947 - Don't add scrollbars to negative sized windows.
16949 2005-09-23 Jackson Harper <jackson@ximian.com>
16951 * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
16952 old Mono.Posix. Also remove some stray code that shouldn't have
16955 2005-09-23 Jackson Harper <jackson@ximian.com>
16957 * TreeView.cs: Attempt at proper sizing of the horizontal
16958 scrollbar. Also don't resize the scrollbars unless they are
16961 2005-09-23 Jackson Harper <jackson@ximian.com>
16963 * TreeView.cs: We don't need to expand the invalid area when the
16964 selection changes, as this is all drawn in the node's bounding
16965 box. The area needs to be expanded (previous typo was contracting
16966 it) when the focus rect moves.
16968 2005-09-23 Jackson Harper <jackson@ximian.com>
16970 * TreeView.cs: Display the selection box under the correct
16971 circumstances. We were rendering white text with no selection box
16974 2005-09-23 Peter Dennis Bartok <pbartok@novell.com>
16976 * TextControl.cs(Split): Now updates selection start/end if it points
16977 into a line that's being split. Fixes a FIXME and bug #75258
16979 2005-09-23 Jackson Harper <jackson@ximian.com>
16982 * ListControl.cs: Don't use the path when retrieving binding
16983 managers from the binding context. My bat sense tells me that the
16984 path is only used on insertion.
16986 2005-09-22 Jackson Harper <jackson@ximian.com>
16988 * Splitter.cs: Set the cursor an easier way. (Thanks peter).
16990 2005-09-22 Jackson Harper <jackson@ximian.com>
16992 * Splitter.cs: There are special cursors used for splitting.
16993 * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
16995 2005-09-22 Jackson Harper <jackson@ximian.com>
16997 * Splitter.cs: Change the cursor appropriately when the splitter
16998 is moused over, so the user actually knows there is a splitter
17001 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
17003 * Label.cs : Fix ToString method to give same output as MS.NET
17005 2005-09-22 Jackson Harper <jackson@ximian.com>
17007 * TreeView.cs: Create the scrollbars when the handle is created
17008 and add them right away, just make them invisble. Also account for
17009 the window being shrunk vertically to the point that the vert
17010 scrollbar needs to be added.
17011 - Remove some 0.5 adjustments to get around anti aliasing issues.
17013 2005-09-22 Jordi Mas i Hernandez <jordi@ximian.com>
17015 * MainMenu.cs: Fixes default value
17016 * MenuItem.cs: Fixes default value
17018 2005-09-22 Kazuki Oikawa <kazuki@panicode.com>
17020 * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
17022 2005-09-21 Jackson Harper <jackson@ximian.com>
17024 * Control.cs: Don't try to set the border style on the window if
17025 it hasn't been created. When the window is created the border
17026 style will be used.
17028 2005-09-21 Peter Dennis Bartok <pbartok@novell.com>
17030 * Control.cs (Update): Don't call XplatUI if we don't have a
17033 2005-09-21 Peter Dennis Bartok <pbartok@novell.com>
17035 * ContainerControl.cs: Instead of throwing an exception, print
17036 a one-time warning about Validate not being implemented
17037 * XplatUIWin32.cs: Removed debug output
17039 2005-09-21 Peter Dennis Bartok <pbartok@novell.com>
17041 * Control.cs: Only set XplatUI background if we expect the windowing
17042 system to handle the background. This stops controls that draw their
17043 own background from flickering
17045 * XplatUIX11.cs: Support custom visuals and colormaps for window
17046 creation. This allows, amongst other things, using MWF X11 windows
17049 2005-09-21 Peter Dennis Bartok <pbartok@novell.com>
17051 * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
17052 CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
17053 GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
17054 SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
17055 TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
17056 IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
17057 KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
17058 RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
17059 ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
17060 ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
17061 GridColumnStylesCollection.cs,
17062 IDataGridColumnStyleEditingNotificationService.cs,
17063 PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
17064 MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
17065 GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs,
17066 TreeNodeCollection.cs, AmbientProperties.cs,
17067 RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
17068 DataObject.cs, ErrorProvider.cs, Splitter.cs,
17069 DataGridLineStyle.cs, Shortcut.cs, Control.cs,
17070 FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
17071 BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
17072 IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
17073 FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
17074 IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
17075 NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
17076 PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
17077 SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
17078 FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
17079 DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
17080 ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
17081 RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
17082 MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
17083 ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
17084 CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
17085 MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
17086 NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
17087 ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
17088 SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
17089 Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
17090 RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
17091 DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
17092 ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
17093 PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
17094 DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
17095 ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
17096 AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
17097 RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
17098 CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
17099 SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
17100 Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
17101 SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
17102 ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
17103 TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
17105 2005-09-21 Jackson Harper <jackson@ximian.com>
17107 * TreeNode.cs: Call Before/After Expand not Collapse when
17110 2005-09-20 Jackson Harper <jackson@ximian.com>
17112 * XplatUIX11.cs: Use the more hand looking hand (in most themes).
17114 2005-09-16 Jordi Mas i Hernandez <jordi@ximian.com>
17118 - Fixes proper storing of subitems
17119 - Fixes not updated items
17121 2005-09-20 Peter Dennis Bartok <pbartok@novell.com>
17123 * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
17124 things if our window handle isn't created yet. Also disabled
17125 debug for TextBoxBase
17127 2005-09-20 Peter Dennis Bartok <pbartok@novell.com>
17129 * MenuAPI.cs: Remove filtering of events to allow menu usage
17131 2005-09-20 Miguel de Icaza <miguel@novell.com>
17133 * Cursor.cs: Allow null to be passed to Cursor.Current.
17135 2005-09-20 Alexander Olk <alex.olk@googlemail.com>
17137 * ThemeWin32Classic.cs:
17138 - Change some private methods/fields to protected virtual so that
17139 they can be accessed and overriden in derived classes
17140 - First refactoring of some methods. Derived themes now don't
17141 need to duplicate the complete code from ThemeWin32Classic
17143 - Added nice StatusBar
17144 - Derive from ThemeWin32Classic and not Theme
17145 - Removed duplicate ThemeWin32Classic code
17147 2005-09-20 Miguel de Icaza <miguel@novell.com>
17149 * Control.cs (ControlCollection.Add): If the value null is passed
17150 the control is ignored.
17152 Optimize this loop.
17154 2005-09-19 Peter Dennis Bartok <pbartok@novell.com>
17156 * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
17157 PostQuitMessage state.
17158 * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
17160 2005-09-19 Peter Dennis Bartok <pbartok@novell.com>
17162 * Application.cs: Our constructor will never get called, move
17163 initialization to fields; fixes bug #75933
17165 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
17168 - Allow files to be selected properly using file name
17170 - Add ability to change diretory (absolute / relative)
17171 using file name combo box.
17173 2005-09-16 Jordi Mas i Hernandez <jordi@ximian.com>
17176 - Fixes Multicolumn listboxes item wrong calculations
17177 - Allows to click when only one item is in the listbox
17178 - Fixes crash when no items using keyboard navigation
17180 2005-09-16 Alexander Olk <alex.olk@googlemail.com>
17182 * ComboBox.cs: Reverted almost everything from the latest patch which
17185 2005-09-16 Kazuki Oikawa <kazuki@panicode.com>
17188 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
17190 - When DropDownStyle is Simple, it does not show scrollbar
17191 to the last item of the list.
17192 - When DropDownStyle is Simple, it crashed when the list was
17193 scrolled down with the down cursor key.
17194 - Fixed a bug that when DropDownStyle is DropDownList, the
17195 selected item was not shown.
17196 - The position of the selected item was not preserved when
17197 the next dropdown happened.
17198 * ThemeWin32Classic.cs:
17199 - Items were wrapped at the right end.
17200 * CheckedListBox.cs:
17203 - Items should be fully shown.
17204 - When resizing and vertical scrollbar disappeared, the item
17205 of index 0 should be on the top of the list.
17206 - GetItemRectangle should consider the size of ver. scrollbar
17208 - SizingGrip area should not be allocated when it is not
17210 - Now it reflects MinWidth of the containing panel and
17211 fixed a crash that happens when its width becomes so small.
17213 2005-09-13 Jordi Mas i Hernandez <jordi@ximian.com>
17215 * CheckedListBox.cs: Fixes bug 76028
17216 * ListBox.cs: Fixes bug 76028
17218 2005-09-13 Jordi Mas i Hernandez <jordi@ximian.com>
17220 * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
17221 * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
17223 2005-09-12 Jordi Mas i Hernandez <jordi@ximian.com>
17225 * XplatUIX11.cs: fixes System.NullReferenceException in some situations
17227 2005-09-09 Jonathan Chambers <jonathan.chambers@ansys.com>
17229 * IRootGridEntry.cs: Changed namespace to PropertyGridInternal
17231 2005-09-09 Jonathan Chambers <jonathan.chambers@ansys.com>
17233 * IRootGridEntry.cs: Added
17234 * PropertyGridCommands.cs: Added
17235 * PropertiesTab.cs: Added missing methods and property
17236 * PropertyGridView.cs: Made class internal
17237 * PropertyGridTextBox.cs: Made class internal
17239 2005-09-09 Alexander Olk <alex.olk@googlemail.com>
17241 * MimeIcon.cs: Try to check some other environment variables
17242 if "DESKTOP_SESSION" returns "default"
17244 2005-09-09 Alexander Olk <alex.olk@googlemail.com>
17246 * ThemeNice.cs: Corrected background colors (e.g. menus)
17247 * ColorDialog.cs: Use correct background colors for controls
17249 2005-09-09 Alexander Olk <alex.olk@googlemail.com>
17251 * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
17253 2005-09-08 Peter Dennis Bartok <pbartok@novell.com>
17255 * RichTextBox.cs: Added initial implementation
17256 * lang.cs: Removed. Was accidentally checked in long time ago
17257 * TODO: Removed. Contents were obsolete
17259 2005-09-06 Jonathan Chambers <jonathan.chambers@ansys.com>
17261 * PropertiesTab.cs : Added
17263 2005-09-06 Jonathan Chambers <jonathan.chambers@ansys.com>
17265 * PropertyGrid.cs : Update
17266 * PropertyGridView.cs : Update
17267 * System.Windows.Forms.resx : Added images and strings
17269 2005-09-06 Peter Dennis Bartok <pbartok@novell.com>
17271 * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
17273 2005-09-06 Peter Dennis Bartok <pbartok@novell.com>
17275 * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
17276 a busy loop right after the Ungrab the X11 display is otherwise
17279 2005-09-06 Jordi Mas i Hernandez <jordi@ximian.com>
17281 * ThemeWin32Classic.cs: Optimise the use of clipping
17283 2005-09-05 Jordi Mas i Hernandez <jordi@ximian.com>
17285 * DataGrid.cs: fixes recursion bug
17287 2005-09-03 Alexander Olk <alex.olk@googlemail.com>
17290 - Draw RadioButton and CheckBox Buttons with DrawButtonBase
17293 2005-09-02 Alexander Olk <alex.olk@googlemail.com>
17295 * ThemeNice.cs: Draw nice ProgressBars
17297 2005-09-01 Miguel de Icaza <miguel@novell.com>
17299 * VScrollBar.cs: Another buglet found by Aaron's tool.
17301 * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
17304 2005-08-30 Alexander Olk <alex.olk@googlemail.com>
17307 - Added nicer menu drawing
17311 2005-08-30 Peter Dennis Bartok <pbartok@novell.com>
17313 * CreateParams.cs (ToString): Made output match MS
17314 * Control.cs (Text): Don't set Text or Focus via XplatUI unless
17315 handle is already created (to avoid forcing window creation)
17316 * XplatUIX11.cs: Set window text to caption after creating window,
17317 in case Text was set before window was created
17318 * Form.cs: Use this.Text instead of a static string as caption
17320 2005-08-30 Peter Dennis Bartok <pbartok@novell.com>
17322 * NotifyIcon.cs: Don't set the window to visible; this screws
17323 up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
17324 OnPaint without a bitmap)
17325 * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't
17326 happen very often anyway; we could add the check to the WM_PAINT
17327 event generation code
17329 2005-08-30 Peter Dennis Bartok <pbartok@novell.com>
17331 * NotifyIcon.cs: Fill the icon area with a background color, to
17332 avoid 'residue' when transparent icons are drawn
17334 - Handle whole_window == client_window when destroying windows
17335 - SystrayAdd(): Set client_window to whole_window value to
17336 get mouse and other events passed to NotifyIcon
17338 2005-08-30 Peter Dennis Bartok <pbartok@novell.com>
17340 * Form.cs: Set proper default for Opacity property
17342 - ShowSystray(): Don't bother creating telling the OS
17343 about the systray item if no icon is provided
17344 - Now handles WM_NCPAINT message to deal with whole/client window
17346 - Create window as visible to not get caught by Expose optimization
17347 * Hwnd.cs: Removed debug message
17348 * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
17349 StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched
17350 PaintEventStart/End to use new client argument
17352 - Commented out debug messages
17353 - Switched PaintEventStart/End to use new client argument
17354 * XplatUI.cs: Added client window bool to PaintEventStart()/
17355 PaintEventEnd() calls, to support drawing in non-client areas
17356 * XplatUIDriver.cs:
17357 - Added client window bool to PaintEventStart()/PaintEventEnd()
17358 calls, to support drawing in non-client areas
17359 - Added conditional compile to allow using MWF BeginInvoke
17362 - Added some conditional debug output
17363 - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
17364 whole/client window split
17365 - Implemented handling of client argument to PaintEventStart()/End()
17367 - Throw exception if BeginInvoke() is called and the window handle
17368 or one of the window's parent handles is not created
17369 - Added conditional compile to allow using MWF BeginInvoke on
17371 - get_Parent(): Only sets parent if handle is created. This avoids
17372 forcing window handle creation when parent is set.
17373 - Now fires Layout and Parent changed events in proper order
17374 - Switched to use Handle instead of window.Handle for Z-Order setting,
17375 the get_Parent() patch above causes us to possibly get null for 'window'
17376 - Implemented handling of client argument to PaintEventStart()/End()
17377 - Now reports back to windows that WM_SETCURSOR was handled (to avoid
17379 - Now sends a Refresh() to all child windows when Refresh() is called
17381 2005-08-29 Peter Dennis Bartok <pbartok@novell.com>
17383 * Form.cs: Added (non-functional) Opacity property
17384 * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
17386 2005-08-29 Alexander Olk <xenomorph2@onlinehome.de>
17387 * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
17388 use export MONO_THEME=nice to activate it.
17389 Currently supported controls:
17393 - TabControl (TabAlignment.Top only, other will follow)
17394 * ThemeEngine.cs: Add theme nice
17395 * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
17398 2005-08-25 Jonathan Chambers <jonathan.chambers@ansys.com>
17400 * Splitter.cs: Resize docked control and its neighbor.
17402 2005-08-24 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
17403 -- Making Windows with Menus layout correctly --
17404 * Form.cs : The first leg of the fix
17405 Menu setter - adjust Client Size as needed to make space for the menu
17406 SetClientSizeCore - doesn't call base version to be able to pass the
17407 menu handle to XplatUI.CalculateWindowRect
17408 * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
17409 * XplatUIX11.cs: The critical second leg of the fix
17410 GetWindowPos needs to use a recalculated client_rect
17411 so that resizing the window doesn't break layout of child controls.
17412 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
17413 Lots of \t\n killed
17415 2005-08-23 Peter Dennis Bartok <pbartok@novell.com>
17417 * Label.cs: Now properly recalculates width and height on Font and Text
17418 changes if AutoSize is set
17420 2005-08-19 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
17421 * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
17423 2005-08-19 Jordi Mas i Hernandez <jordi@ximian.com>
17425 * ImageList.cs: Makes ToString method compatible with MS
17427 2005-08-18 Jordi Mas i Hernandez <jordi@ximian.com>
17429 * MenuAPI.cs: fixes bug 75716
17431 2005-08-11 Umadevi S <sumadevi@novell.com>
17432 * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
17434 2005-08-11 Umadevi S <sumadevi@novell.com>
17435 * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
17437 2005-08-10 Umadevi S <sumadevi@novell.com>
17438 * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
17440 2005-08-07 Jordi Mas i Hernandez <jordi@ximian.com>
17442 * Menu.cs: fixes bug 75700
17443 * MenuAPI.cs: fixes navigation issues
17445 2005-08-09 Umadevi S <sumadevi@novell.com>
17446 * CheckedListBox.cs - simple fix for GetItemChecked.
17448 2005-08-08 Jordi Mas i Hernandez <jordi@ximian.com>
17450 * ComboBox.cs: Serveral fixes
17451 * ListBox.cs: Serveral fixes
17453 2005-08-05 Jordi Mas i Hernandez <jordi@ximian.com>
17455 * ComboBox.cs: Fixes FindString methods and GetItemHeight
17456 * ListBox.cs: Fixes FindString methods
17458 2005-08-05 Jordi Mas i Hernandez <jordi@ximian.com>
17460 * DataGrid.cs: fixes bugs exposed by new tests
17462 2005-08-04 Peter Dennis Bartok <pbartok@novell.com>
17464 * Mime.cs: Compile Mono assembly references only if compiling
17465 with Mono (Allows to build with VS.Net again)
17467 2005-07-28 Marek Safar <marek.safar@seznam.cz>
17469 * Control.cs (PaintControlBackground): Draw background image
17471 (CheckForIllegalCrossThreadCalls): Stubbed.
17473 * Form.cs (OnCreateControl): Center when should be centered.
17475 * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
17477 2005-07-19 Jordi Mas i Hernandez <jordi@ximian.com>
17479 * Binding.cs: Binding to properties should be case unsensitive
17481 2005-07-18 vlindos@nucleusys.com
17483 * DataGrid.cs: fixes setmember order
17485 2005-07-07 Alexander Olk <xenomorph2@onlinehome.de>
17487 * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
17488 * FileDialog.cs: FileDialog is now resizable and uses the new
17491 2005-07-06 Jordi Mas i Hernandez <jordi@ximian.com>
17493 * DataGridTextBoxColumn.cs: default value
17494 * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
17495 * GridTableStylesCollection.cs: fixes checking MappingName
17496 * DataGridDrawingLogic.cs: fixes drawing logic issues
17497 * DataSourceHelper.cs: rewritten to make compatible with more data sources
17498 * DataGrid.cs: fixes
17500 2005-07-06 Alexander Olk <xenomorph2@onlinehome.de>
17502 * MimeGenerated.cs: Use case sensitive comparer for
17503 NameValueCollections
17505 2005-07-01 Jordi Mas i Hernandez <jordi@ximian.com>
17507 * DataGridTextBoxColumn.cs: bug fixes, code refactoring
17508 * ThemeWin32Classic.cs: bug fixes, code refactoring
17509 * DataGridDrawingLogic.cs: bug fixes, code refactoring
17510 * DataGrid.cs: bug fixes, code refactoring
17511 * DataGridTextBox.cs: bug fixes, code refactoring
17512 * DataGridColumnStyle.cs: bug fixes, code refactoring
17513 * Theme.cs: bug fixes, code refactoring
17515 2005-07-01 Peter Bartok <pbartok@novell.com>
17517 * TextControl.cs: Quick fix for the reported crash on ColorDialog
17518 and other text box usage
17520 2005-07-01 Jackson Harper <jackson@ximian.com>
17522 * TabControl.cs: Make sure the bottom of the tab covers the pages
17525 2005-06-30 Peter Bartok <pbartok@novell.com>
17527 * Form.cs (ShowDialog): Assign owner of the dialog
17528 * TextBoxBase.cs: Always refresh caret size when deleting, caret
17529 might have been moved to a tag with different height
17531 2005-06-30 Jackson Harper <jackson@ximian.com>
17533 * Form.cs: Don't create an infinite loop when setting focus
17534 * MenuItem.cs: Don't dirty the parents if we don't have any
17536 2005-06-29 Ben Maurer <bmaurer@ximian.com>
17538 * LibSupport.cs: Rename
17540 2005-06-29 Peter Bartok <pbartok@novell.com>
17542 * TextBoxBase.cs: Re-align caret after deleting a character
17544 - DeleteChars(): Ensure that tag covers the provided position
17545 - StreamLine(): Drop reference for dropped tag
17547 2005-06-29 Peter Bartok <pbartok@novell.com>
17550 - Selections now work properly, anchoring at the initial location
17551 and properly extending in either direction (SetSelectionToCaret(),
17552 SetSelectionStart() and SetSelectionEnd())
17553 - No longer redraws the whole control on selection change, now
17554 calculates delta between previous and new selection and only
17555 invalidates/redraws that area
17556 - Fixed FindPos() math off-by-one errors
17557 - Changed DeleteChars() to verify the provided tag covers the
17558 provided position, selections may have a tag that doesn't cover
17559 the position if the selection is at a tag border
17560 - Fixed off-by-one errors in DeleteChars()
17561 - Added missing streamlining check in DeleteChars() to remove
17563 - Implemented Invalidate() method, now properly calculates exposures
17564 between two given lines/positions
17565 - Implemented SetSelection()
17566 - Obsoleted and removed FixupSelection()
17567 - Improved RecalculateDocument() logic, removing code duplication
17569 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17571 * LibSupport.cs: changes to match different input/output arguments.
17573 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17575 * LibSupport.cs: added libsupport.so init routine.
17577 2005-06-29 Jordi Mas i Hernandez <jordi@ximian.com>
17579 * ControlBindingsCollection.cs
17580 - Throws an exception on null datasource when adding
17581 - Checks for duplicated bindings when adding
17583 2005-06-28 Jackson Harper <jackson@ximian.com>
17585 * TreeView.cs (OnKeyDown): Support left and right properly
17586 (navigates as well as expanding and collapsing.
17587 - Add support for Multiply, this expands all the selected nodes
17589 - Fix some tabbing.
17591 2005-06-28 Jackson Harper <jackson@ximian.com>
17593 * TreeView.cs: Implement keyboard navigation, currently supports,
17594 LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
17595 support for toggling checkboxes with the space bar.
17597 2005-06-28 Jackson Harper <jackson@ximian.com>
17599 * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
17602 2005-06-28 Jackson Harper <jackson@ximian.com>
17604 * TreeView.cs: Add missing event.
17606 2005-06-27 Peter Bartok <pbartok@novell.com>
17609 - Made line ending size configurable (now allows for counting
17610 lineendings as \n or \r\n)
17611 - Added margin to viewport to keep caret visible on right side
17612 - Fixed translation routines for line/pos to documentpos to consider
17613 cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
17614 - Fixed some line-endings to be unix style
17615 - Fixed Document.FormatText to perform it's calculations 1-based
17616 - Added descriptions for a few methods that might otherwise get
17618 - Added NOTE section with some basic conventions to remember at
17619 the top of the file
17620 - Major fixup for RichTextBox selection drawing:
17621 * Fixed crashes when multiple tags on a single line were selected
17622 * fixed selection box drawing not overlaying text
17623 * fixed bogus offset calculation for tags not starting at index 1
17624 * Switched behaviour from using multiple Substrings of a
17625 StringBuilder.ToString() to using multiple
17626 StringBuilder.ToString(start, length) statements, hoping this is
17627 faster (kept original version commented out in the code, in case
17628 original version was faster)
17629 * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if
17631 * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
17634 2005-06-27 Jackson Harper <jackson@ximian.com>
17636 * TabControl.cs: Move to the left and right with the arrow
17637 keys. These keys don't cycle beyond first and last like
17638 tab. Refresh all the tabs when scrolling them to the left or
17641 2005-06-27 Jackson Harper <jackson@ximian.com>
17644 - ToString: Added method
17645 - CreateParams: Remove TODO and comment
17646 - OnKeyDown: Cycle through bounds properly.
17647 - SelectedIndex: Scroll to the right or left if we need to
17648 display the newly selected tab.
17650 2005-06-23 Jackson Harper <jackson@ximian.com>
17652 * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
17655 2005-06-23 Jackson Harper <jackson@ximian.com>
17657 * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
17658 CTRL-SHIFT-TAB, and HOME, END are there any others?
17660 2005-06-23 Jackson Harper <jackson@ximian.com>
17662 * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
17664 2005-06-22 Jordi Mas i Hernandez <jordi@ximian.com>
17666 * DataGridTextBoxColumn.cs: fixes and enhancements
17667 * ThemeWin32Classic.cs: fixes and enhancements
17668 * DataGridBoolColumn.cs: fixes and enhancements
17669 * DataGridDrawingLogic.cs: fixes and enhancements
17670 * CurrencyManager.cs: fixes and enhancements
17671 * DataGrid.cs: fixes and enhancements
17672 * DataGridColumnStyle.cs: fixes and enhancements
17674 2005-06-22 Jackson Harper <jackson@ximian.com>
17676 * TabControl.cs: Add some missing methods that just call into the
17677 base. Make the TabPageCollection's IList interface behave in the
17678 same manner as the MS implementation.
17680 2005-06-22 Peter Bartok <pbartok@novell.com>
17682 * TextControl.cs: Added sanity check
17684 - Fixed wrapping behaviour, don't set wrap on single line controls
17685 (this fixes the breakage of colordialog introduced in an earlier
17687 - Added rudimentary support for autoscrolling right-aligned controls
17688 (still needs fixing, also, center alignment scroll is missing)
17690 2005-06-22 Jordi Mas i Hernandez <jordi@ximian.com>
17692 * ScrollBar.cs: Fixes thumbpos on Maximum values
17694 2005-06-21 Jonathan Chambers <jonathan.chambers@ansys.com>
17696 * PropertyGridView.cs: Pass context information to UITypeEditors
17698 2005-06-21 Peter Bartok <pbartok@novell.com>
17701 - Now calling PositionCaret with absolute space coordinates
17702 - Enabled vertical scrolling
17703 - Better tracking of scrollbar changes, tied into WidthChange
17705 - Improved cursor tracking
17706 - Removed debug output
17708 - PositionCaret coordinates are now works in absolute space, not
17710 - Improved tracking of document size
17711 - Added events for width and height changes
17713 2005-06-21 Peter Bartok <pbartok@novell.com>
17715 * Form.cs: Set focus to active control when form is activated
17717 - Added word-wrap functionality to RecalculateLine()
17718 - Added some short function descriptions for VS.Net to aid in
17719 writing dependent controls
17720 - Added Caret property, returning the current coords of the caret
17721 - Added ViewPortWidth and ViewPortHeight properties
17722 - Added Wrap property
17723 - Added CaretMoved event
17724 - Removed some old debug code
17725 - Split() can now create soft splits
17726 - Added PreviousTag()/NextTag() to allow walking "tag-lists"
17727 - Added method to format existing text
17728 - Fixed size/alignment calculations to use viewport
17729 - RecalculateDocument now can handle changing line-numbers while
17733 - Added some wrap logic, we don't wrap if alignment is not left
17734 - Added casts for scrollbar var, base class switched types to
17735 also support RichTextBoxA
17736 - Implemented handling of scrollbar visibility flags
17739 - Switched scrollbars type to RichTextBoxScrollBars to support
17741 - Added tracking of canvas width/height
17742 - Switched scrollbars to be not selectable (to keep focus on text)
17743 - Added central CalculateDocument() method to handle all redraw
17745 - Added ReadOnly support
17746 - Added WordWrap support
17747 - Fixed handling of Enter key (we now treat it as a DialogKey)
17748 - Fixed caret positioning when h or v scroll is not zero
17749 - Fixed placing/generation of vertical scrollbar
17750 - Added CalculateScrollBars() method to allow updating scrollbar
17751 limits and visibility
17752 - Fixed handling of horizontal scroll
17753 - Added handling of vertical scroll
17754 - Implemented auto-'jump' when caret moves to close to a left or
17755 right border and there is text to be scrolled into view (currently
17756 there's the potential for a stack overflow, until a bug in
17757 scrollbar is fixed)
17759 2005-06-21 Geoff Norton <gnorton@customerdna.com>
17761 * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
17763 2005-06-19 Alexander Olk <xenomorph2@onlinehome.de>
17767 - return application/x-zerosize for files with size zero
17768 (if no extension pattern matches).
17769 - check matches collection for strings too.
17770 - return only the first mime type if the name value
17771 collection has more than one mime type.
17773 2005-06-18 Jonathan Chambers <jonathan.chambers@ansys.com>
17775 * PropertyGrid.cs: Cleaned up some TODOs
17776 * PropertyGridView.cs: Added support for UITypeEditors
17778 2005-06-17 Jordi Mas i Hernandez <jordi@ximian.com>
17780 * DataGrid.cs: clears cached value
17782 2005-06-17 Jordi Mas i Hernandez <jordi@ximian.com>
17784 * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
17785 * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
17786 * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
17787 * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
17789 2005-06-16 Jordi Mas i Hernandez <jordi@ximian.com>
17791 * ThemeWin32Classic.cs: fixes colour
17793 2005-06-15 Peter Bartok <pbartok@novell.com>
17795 * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
17796 * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
17797 * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
17798 * Control.cs: Added some MWFCategory and MWFDescription attributes
17799 * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
17801 2005-06-15 Alexander Olk <xenomorph2@onlinehome.de>
17803 * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
17806 2005-06-14 Jordi Mas i Hernandez <jordi@ximian.com>
17808 * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
17809 * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
17810 * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
17811 * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
17812 * DataGrid.cs: default datagrid settings for Default Styles, fixes
17813 * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
17815 2005-06-13 Jackson Harper <jackson@ximian.com>
17817 * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
17818 isn't printed when the user enables dropping. (X11 does accept
17821 2005-06-13 Jackson Harper <jackson@ximian.com>
17823 * TreeView.cs: Remove some TODOS.
17825 2005-06-13 Jackson Harper <jackson@ximian.com>
17827 * Form.cs: Hook into the mdi framework.
17828 * MdiClient.cs: Use the base control collections add method so
17829 parents get setup correctly. Set the default back colour and dock
17831 * MdiChildContext.cs: New class, this bad actor handles an
17832 instance of an MDI window. Right now there is only basic
17833 support. You can drag, close, and resize windows. Minimize and
17834 Maximize are partially implemented.
17836 2005-06-13 Jackson Harper <jackson@ximian.com>
17838 * XplatUIX11.cs: Mash numbers together properly, otherwise we get
17839 freaky when both vals are negative. NOTE: There are probably other
17840 places in XplatUIX11 that this needs to be done.
17842 2005-06-13 Jordi Mas i Hernandez <jordi@ximian.com>
17844 * DataGrid.cs: implement missing methods, move KeyboardNavigation
17845 * DataGridColumnStyle.cs: fixes signature
17847 2005-06-12 Jackson Harper <jackson@ximian.com>
17849 * XplatUIX11.cs: Use sizing cursors similar to the ones on
17852 2005-06-11 Jackson Harper <jackson@ximian.com>
17854 * StatusBarPanel.cs: Signature cleanups. Implement
17857 2005-06-10 Jordi Mas i Hernandez <jordi@ximian.com>
17859 * DataGridTextBoxColumn.cs: Honors aligment
17860 * GridColumnStylesCollection.cs: Contains is case unsensitive
17861 * GridTableStylesCollection.cs: several fixes
17862 * DataGridTableStyle.cs: default column creation
17863 * DataGridDrawingLogic.cs: fixes
17864 * CurrencyManager.cs: ListName property
17865 * DataGrid.cs: multiple styles support
17866 * DataGridColumnStyle.cs: fixes
17869 2005-06-10 Peter Bartok <pbartok@novell.com>
17871 * Control.cs(Select): Moved SetFocus call to avoid potential
17872 loops if controls change the active control when getting focus
17873 * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
17874 the up/down buttons
17876 2005-06-10 Matthias Felgner <matthiasf@voelcker.ocm>
17878 * ImageListConverter.cs: Implemented
17880 2005-06-10 John BouAntoun <jba-mono@optusnet.com.au>
17882 * MonthCalendar.cs: Wired in NumericUpDown control for year
17884 2005-06-10 John BouAntoun <jba-mono@optusnet.com.au>
17886 * MonthCalendar.cs: Removed MonoTodo attributes on Click and
17887 DoubleClick events, since they are not meant to be fired.
17889 2005-06-09 Peter Bartok <pbartok@novell.com>
17891 * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
17892 Jonathan's standalone controls into MWF, implemented missing
17893 events, attributes and methods; added xxxAccessible classes
17894 * AccessibleObject.cs: Made fields internal so other classes
17895 can change them if needed
17897 2005-06-09 Jonathan Gilbert <2a5gjx302@sneakemail.com>
17899 * UpDownBase.cs: Complete implementation
17900 * NumericUpDown.cs: Complete implementation
17901 * DomainUpDown.cs: Complete implementation
17903 2005-06-09 Jordi Mas i Hernandez <jordi@ximian.com>
17905 * DataGridTextBoxColumn.cs: drawing fixes
17906 * DataGridCell.cs: fixes ToString method to match MSNet
17907 * DataGridTableStyle.cs: fixes
17908 * DataGridBoolColumn.cs: fixes, drawing
17909 * DataGridDrawingLogic.cs: fixes, new methods
17910 * DataGridTextBox.cs: Keyboard and fixes
17912 - Keyboard navigation
17914 - Row selection (single, multiple, deletion, etc)
17917 2005-06-07 Jackson Harper <jackson@ximian.com>
17919 * ThemeWin32Classic.cs: Clear the background area when drawing
17922 2005-06-06 Peter Bartok <pbartok@novell.com>
17924 * ImageListStreamer.cs: Fixed signature for GetData
17925 * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
17927 - Added missing ChildAccessibleObject class
17928 - Added missing OnXXXFocus overrides, switched to using those
17929 instead of the event handler
17931 - Added Parent property for ControlAccessibleObject
17934 - Added ResetBindings()
17935 * ListBindingConverter.cs: Implemented some methods
17936 * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
17937 * ImageList.cs: Implemented basic handle scheme, removed TODOs
17938 * ContainerControl.cs: Fixed signature, now subscribing to the
17939 ControlRemoved event instead of overriding the handler, LAMESPEC
17940 * CurrencyManager.cs: Added missing attribute
17941 * MonthCalendar.cs: Added missing properties
17943 2005-06-06 Jordi Mas i Hernandez <jordi@ximian.com>
17945 * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
17947 2005-06-06 Gaurav Vaish and Ankit Jain
17949 * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
17950 * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
17952 2005-06-06 Jordi Mas i Hernandez <jordi@ximian.com>
17954 * Control.cs: fixes CreateParams Width / Height.
17956 2005-06-05 Peter Bartok <pbartok@novell.com>
17958 * Win32DnD.cs: Removed compilation warnings
17960 2005-06-05 Peter Bartok <pbartok@novell.com>
17962 * Control.cs (CreateParams): Since we don't know if one of the
17963 properties we use is overridden, lets make sure if we fail accessing
17964 we continue with a backup plan
17966 2005-06-05 Peter Bartok <pbartok@novell.com>
17969 - Removed debug output
17970 - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
17972 - Plugged resource leak
17973 * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
17976 2005-06-05 Peter Bartok <pbartok@novell.com>
17978 * XplatUIWin32.cs: Removed DnD code
17979 * Win32DnD.cs: Implemented drop source and drop target functionality
17981 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17983 * UpDownBase.cs: remove duplicate addition of event, enable some code
17984 that was commented out.
17985 * NumericUpDown.cs: added missing attributes and Hexadecimal property.
17986 Validate input when a key is pressed. It works fine now for every
17987 combination of Hexadecimal. Only missing some drawing love when sharing
17988 space with other controls.
17990 2005-06-04 Peter Bartok <pbartok@novell.com>
17993 - We need to pass a window for DragDrop, so enable callback events
17994 - Added DnD callback events when being a DragSource
17995 * XplatUI.cs (StartDrag): Added window handle argument
17996 * XplatUIDriver.cs (StartDrag): Added window handle argument
17997 * QueryContinueDragEventArgs: Made fields internally accessible so
17998 drivers can set them
17999 * GiveFeedbackEventArgs: Made fields internally accessible so drivers
18002 2005-06-03 Jordi Mas i Hernandez <jordi@ximian.com>
18004 * DataGridTextBoxColumn.cs: column text editing
18005 * DataGridTableStyle.cs: Respect columns styles created by the user
18006 * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
18007 * DataGridBoolColumn.cs: bool column editing
18008 * DataGrid.cs: fixes to scrolling, properties, etc
18009 * DataGridTextBox.cs: handle keyboard
18010 * DataGridColumnStyle.cs: fixes
18012 2005-06-02 Jackson Harper <jackson@ximian.com>
18014 * ImageListStreamer.cs: Somewhat broken implementation of
18015 GetObjectData. The RLE needs some work to match MS properly.
18017 2005-06-02 Jackson Harper <jackson@ximian.com>
18019 * X11Dnd.cs: Attempting to keep at least one file in MWF
18022 2005-06-02 Peter Bartok <pbartok@novell.com>
18024 * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
18027 2005-06-02 Peter Bartok <pbartok@novell.com>
18029 * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
18030 * XplatUI.cs: Added DoDragDrop() method
18031 * XplatUIDriver.cs: Added DoDragDrop() method
18033 2005-06-02 Jackson Harper <jackson@ximian.com>
18035 * Splitter.cs: Implement BorderStyle.
18037 2005-06-02 Jackson Harper <jackson@ximian.com>
18039 * XplatUIX11.cs: Tie into the X11Dnd subsystem.
18040 * X11Dnd.cs: New file. A subsystem that handles drag and drop on
18043 2005-06-02 Peter Bartok <pbartok@novell.com>
18046 - Added Data setter
18047 - Fixed broken insertion code for SetData, now also
18048 overwrites any existing entry of the same format name
18049 * Hwnd.cs: Added list of pointers that automatically gets
18050 freed when the window is disposed
18051 * XplatUI.cs: Call driver initialization method when loading
18054 - OnDragLeave takes EventArgs, not DragEventArgs
18055 - Added setting of WS_EX_ACCEPTFILES style when dropping is
18057 - Forces style update when drop state changes
18058 * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
18059 not perfect since we cannot (yet) call the IDataObject.GetData()
18060 method, we keep getting 0x80004005 error, dunno why)
18062 2005-06-02 Peter Bartok <pbartok@novell.com>
18064 * DragEventArgs.cs: Make fields internal so we can cache the
18065 object and re-set the fields from XplatUI
18067 2005-06-02 Jackson Harper <jackson@ximian.com>
18069 * Control.cs: Add some internal methods so the DnD subsystem can
18070 raise DnD events. Also call into the driver when AllowDrop is set.
18072 * XplatUIDriver.cs: New method for setting whether or not a window
18073 is allowed to accept drag and drop messages.
18075 2005-06-01 Jordi Mas i Hernandez <jordi@ximian.com>
18077 * ScrollBar.cs: Make sure that values sent in Scroll events
18078 are always between Maximum and Minimum.
18080 2005-06-01 Marek Safar <marek.safar@seznam.cz>
18082 * Menu.cs: Call MenuChanged when menuitem visibility has been
18084 * MenuItem.cs: Rebuild menu when item is (not) visible.
18085 * MainMenu.cs: MainMenu has special MenuChanged.
18086 * Theme.cs: Caption and FrameBorderSize are not fixed.
18087 * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
18088 * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
18090 * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
18091 * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
18093 2005-05-30 Jackson Harper <jackson@ximian.com>
18095 * DataFormat.cs: We can't statically initialize this stuff because
18096 it calls into the xplatui and could create a loop. So we lazy init
18099 2005-05-28 Jackson Harper <jackson@ximian.com>
18101 * Control.cs: Proper implementation of Product(Name/Version).
18103 2005-05-27 Jackson Harper <jackson@ximian.com>
18105 * DataObject.cs: Dont crash if no data is found.
18107 2005-05-26 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
18108 * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
18109 as per status page, guessing it should be set to true
18111 2005-05-26 Jordi Mas i Hernandez <jordi@ximian.com>
18113 * DataGridTextBoxColumn.cs: Draws text and basic text formatting
18114 * DataGridTableStyle.cs: set proper formatting text, def header text
18115 * ThemeWin32Classic.cs: new themable paramaters
18116 * DataGridBoolColumn.cs: paint check box, get data, fixes
18117 * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
18118 * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
18119 * DataGridColumnStyle.cs: fixes
18120 * Theme.cs: new themable paramaters
18122 2005-05-26 Peter Bartok <pbartok@novell.com>
18124 * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
18126 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18127 * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
18129 2005-05-24 Peter Bartok <pbartok@novell.com>
18131 * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
18132 Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
18133 Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
18134 FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
18135 NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
18136 ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
18137 DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
18138 AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
18139 DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
18140 StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
18141 missing attributes, etc
18142 * DataGridPreferredColumnWidthTypeConverter.cs: Added
18144 2005-05-24 Peter Bartok <pbartok@novell.com>
18146 * Help.cs: Added, implemented trivial functions, throws up MessageBox
18147 when user tries to get help
18148 * DataObject.cs, DataFormats.cs, LinkArea.cs,
18149 SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
18150 to suppress warnings
18151 * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
18152 avoid unreachable code warning
18154 2005-05-20 Peter Bartok <pbartok@novell.com>
18156 * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
18158 2005-05-20 Jordi Mas i Hernandez <jordi@ximian.com>
18160 * DataGridTextBoxColumn.cs: Basic painting methods
18161 * DataGridTableStyle.cs: Set table style in the column
18162 * ThemeWin32Classic.cs: Use Theme for colors
18163 * DataGridDrawingLogic.cs: Implement more drawing
18164 * DataGrid.cs: drawing, theming, enhacements, fixes
18165 * DataGridColumnStyle.cs: fixes, drawing
18166 * Theme.cs: theming for Datagrid
18168 2005-05-20 Peter Bartok <pbartok@novell.com>
18170 * Cursor.cs: Implemented GetObjectData() method
18172 2005-05-20 Peter Bartok <pbartok@novell.com>
18174 * Cursors.cs: Added setting of cursor name
18176 - Implemented constructors
18177 - Implemented Draw and DrawStretched
18178 - Implemented Current property
18179 - Implemented == and != operators
18180 - Implemented Dispose()
18181 - Implemented ToString
18182 - Added missing attributes
18184 - Added missing reset for OverrideCursor when DoEvents is called
18185 - Fixed creation of cursor, logic was wrong
18187 - Added missing reset for OverrideCursor when DoEvents is called
18188 - Fixed creation of cursor, bit arrays were swapped
18189 * Clipboard.cs: Removed obsolete MonoTODO attribute
18191 2005-05-20 Jordi Mas i Hernandez <jordi@ximian.com>
18193 * ComboBox.cs: fixes OnSelectedItemChanged
18194 * ControlBindingsCollection.cs: fixes item range check
18196 2005-05-20 Jordi Mas i Hernandez <jordi@ximian.com>
18199 - Calc preferred height properly
18200 - Implement missing properties
18202 * NumericUpDown.cs: Implement missing events
18204 2005-05-19 Jackson Harper <jackson@ximian.com>
18206 * TabControl.cs: New method that resizes the tab pages before
18207 redrawing them. This as needed as the control is double buffered
18208 and sizing will not be recalculated unless ResizeTabPages is
18210 * TabPage.cs: Set base.Text instead of Text in the constructor so
18211 that UpdateOwner does not get called. Use the new Redraw method of
18212 TabControl instead of Refresh so the sizing is recalculated.
18213 * ThemeWin32Classic.cs: Draw the text for button tabs.
18215 2005-05-19 Jackson Harper <jackson@ximian.com>
18217 * Control.cs: Paint control background images. Fix typo where
18218 PaintControlBackground was not getting called correctly.
18220 2005-05-19 Peter Bartok <pbartok@novell.com>
18222 * ScrollableControl.cs (DisplayRectangle): Undid my last change until
18223 I can investigate, apparently I broke FileDialog
18225 2005-05-19 Marek Safar <marek.safar@seznam.cz>
18227 * AxHost.cs: Some simple properties.
18228 * Control.cs: window must be accessible after ctor.
18229 * Form.cs: Added TransparencyKey property.
18230 * TextBoxBase.cs: Implemented Clear. Text property can be null.
18231 * XplatUIWin32.cs: SetBorderStyle implemented.
18233 2005-05-18 Peter Bartok <pbartok@novell.com>
18235 * DataObject.cs: Entries are not global but particular to the
18236 DataObject, now it behaves that way
18237 * XplatUIWin32.cs: Implemented Clipboard methods
18238 * Clipboard.cs: Implemented
18239 * ScrollableControl.cs (DisplayRectangle): Fixed calculation
18240 * XplatUIOSX.cs: Updated to final clipboard prototypes
18241 * XplatUIX11.cs: Implemented Clipboard methods
18242 * XplatUIDriver.cs: Updated to final clipboard prototypes
18243 * XplatUIStructs.cs:
18244 - Added BITMAPINFOHEADER struct
18245 - Added ClipboardFormats enum
18247 - Added ClipboardStruct
18248 - Added Atom enum items for clipboard types
18249 - Fixed atom types for Selection event structures
18251 - Added internal properties and methods for drivers to enumerate
18253 - Switched initialization method to allow drivers to assign their
18254 own IDs even for the MS predefined clipboard IDs
18255 * XplatUI.cs: Updated to final clipboard interface
18257 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18258 * PropertyGridView.cs: Fixed compiler warnings.
18260 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18261 * PropertyGrid.cs: Added some event calls
18262 * PropertyGridView.cs: Change drawing code to use double buffering
18263 * PropertyGridTextBox.cs: Changed Text property name
18264 * GridItem.cs: Added Bounds property.
18265 * GridEntry.cs: Added Bounds property.
18267 2005-05-17 Lluis Sanchez Gual <lluis@novell.com>
18269 * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
18270 since GetType() may not return the correct type if the object is
18273 2005-05-17 Jordi Mas i Hernandez <jordi@ximian.com>
18275 * TreeNodeCollection.cs: fixes get/set item ranges
18277 2005-05-15 Jordi Mas i Hernandez <jordi@ximian.com>
18279 * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
18281 2005-05-15 Jordi Mas i Hernandez <jordi@ximian.com>
18283 * ComboBox.cs: Fix item range comparation
18284 * ListView.cs: Fix item range comparation
18286 2005-05-03 Alexander Olk <xenomorph2@onlinehome.de>
18289 - Clear example panel when OnPaint is called
18290 - Better solution for displaying the example panel text
18291 - Select default indexes in the ListBoxes
18293 2005-05-11 Geoff Norton <gnorton@customerdna.com>
18295 * XplatUIOSX.cs: Avoid painting into invisible views. Fixes #74926
18297 2005-05-11 Peter Bartok <pbartok@novell.com>
18299 * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
18300 * SelectionRangeConverter.cs: Implemented
18301 * PropertyGrid.cs: Fixed attribute value
18303 - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
18304 - Added Sebastien Pouliot's CAS Stack Propagation fixes
18305 * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
18306 that's common to all drivers. First methods to go there are
18307 Sebastien Pouliot's CAS Stack Propagation helper methods
18308 * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
18309 Sebastien Pouliot for CAS Stack Propagation
18311 2005-05-11 Geoff Norton <gnorton@customerdna.com>
18314 XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
18316 2005-05-12 Jordi Mas i Hernandez <jordi@ximian.com>
18318 * DataGridTextBoxColumn.cs: fixed some members
18319 * GridColumnStylesCollection.cs: indexed column is case insensitive
18320 * DataGridTableStyle.cs: fixes
18321 * ThemeWin32Classic.cs: add new theme parameter
18322 * Theme.cs: add new theme parameter
18323 * DataGridDrawingLogic.cs: Datagrid's drawing logic
18324 * DataGrid.cs: fixes, new internal properties, etc.
18325 * DataGridColumnStyle.cs: allows to set grid value
18328 2005-05-10 Peter Bartok <pbartok@novell.com>
18330 * AccessibleObject.cs:
18331 - Removed MonoTODO attribute on help, method is correct
18332 - Fixed Bounds property
18333 * AxHost.cs: Moved MonoTODO
18334 * ButtonBase.cs: Now setting AccessibleObject properties
18335 * RadioButton.cs: Setting proper AccessibleObject role
18336 * CheckBox.cs: Setting proper AccessibleObject role
18337 * ControlBindingsCollection.cs: Added properties, methods and attributes
18338 * DataFormats.cs: Fixed awkward internal API, and changed to enable
18339 userdefined DataFormats.Format items as well
18340 * ListControl.cs: Removed data_member from the public eye
18341 * OpenFileDialog.cs:
18342 - Made class sealed
18343 - Added missing attributes
18344 * SaveFileDialog.cs: Added missing attributes
18345 * ImageListStreamer.cs: Fixed code that caused warnings
18346 * LinkLabel.cs: Removed unreachable code
18347 * TreeView.cs: Fixed code that caused warnings
18348 * PropertyGridView.cs: Fixed code that caused warnings
18349 * GridColumnStylesCollection.cs: Added missing attributes
18350 * GridTableStylesCollection: Added missing attribute
18351 * PropertyManager: Added .ctor
18352 * SecurityIDType: Added
18353 * DataObject.cs: Implemented class
18354 * LinkArea.cs: Added missing attribute
18356 2005-05-11 Jordi Mas i Hernandez <jordi@ximian.com>
18358 * RadioButton.cs: call base method to allow to fire OnClick event
18359 * UpDownBase.cs: OnMouseUp call base method
18360 * CheckedListBox.cs: call base method before returning
18361 * TrackBar.cs: call base method before returning
18364 2005-05-10 Peter Bartok <pbartok@novell.com>
18366 * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
18369 2005-05-10 Peter Bartok <pbartok@novell.com>
18371 * DataFormats.cs: Implemented
18372 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
18373 XplatUIX11.cs: Added Clipboard APIs
18374 * XplatUIWin32.cs: Implemented Clipboard APIs
18375 * FolderBrowserDialog.cs: Added missing event, attributes
18377 2005-05-10 Jordi Mas i Hernandez <jordi@ximian.com>
18379 * CheckBox.cs: call base method to allow to fire OnClick event
18381 2005-05-09 Sebastien Pouliot <sebastien@ximian.com>
18383 * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
18385 2005-05-06 Peter Bartok <pbartok@novell.com>
18387 * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
18388 * Screen.cs: Implemented
18389 * HelpNavigator.cs: Added
18390 * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
18392 * HelpProvider.cs: Implemented all we can do until we have a CHM
18393 help library (which means that "What's This" does work now)
18395 2005-05-06 Jackson Harper <jackson@ximian.com>
18397 * XplatUIX11.cs: Fix waking up the main loop.
18399 2005-05-05 Peter Bartok <pbartok@novell.com>
18401 * XplatUI.cs: Updated revision
18402 * Form.cs: Removed enless loop
18403 * GroupBox.cs (OnPaint): Added call to base.OnPaint()
18404 * Label.cs (OnPaint): Added call to base.OnPaint()
18405 * ToolTip.cs: Made ToolTipWindow reusable for other controls
18406 * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
18407 * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
18409 * ButtonBase.cs: Moved base.OnPaint() call to end of method
18410 * ThemeWin32Classic.cs: Replaced references to ToolTip with references
18411 to ToolTip.ToolTipWindow for drawing and size methods; this allows
18412 reuse of ToolTipWindow by other controls
18413 * SizeGrip.cs: Moved base.OnPaint() call to end of method
18414 * XplatUIX11.cs: Now clipping drawing area (experimental)
18415 * PictureBox.cs: Moved base.OnPaint() call to end of method
18416 * Theme.cs: Fixed ToolTip abstracts to match new format
18417 * ErrorProvider.cs: Implemented
18419 2005-05-05 Jordi Mas i Hernandez <jordi@ximian.com>
18421 * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
18425 - Implements LinkBehavior
18426 - Fixes many issues
18428 2005-05-03 Jackson Harper <jackson@ximian.com>
18430 * ListView.cs: Calculate the scrollbar positioning on resize and
18431 paint, so they get put in the correct place.
18433 2005-05-03 Alexander Olk <xenomorph2@onlinehome.de>
18435 * ColorDialogs.cs: The small color panels are now handled by
18436 SmallColorControl. This fixes drawing of the focus rectangle
18437 and adds a 3D border.
18439 2005-05-03 Peter Bartok <pbartok@novell.com>
18441 * Control.cs: Modified version of Jonathan Chamber's fix for
18444 2005-05-03 Jackson Harper <jackson@ximian.com>
18446 * ListView.cs: Remove redraw variable. Control now handles whether
18447 or not a redraw needs to be done, and will only raise the paint
18448 event if redrawing is needed.
18450 2005-05-03 Jackson Harper <jackson@ximian.com>
18452 * Splitter.cs: No decorations for the splitter form. Cache the
18455 2005-05-03 Jackson Harper <jackson@ximian.com>
18457 * TreeView.cs: Use dashed lines to connect nodes. Use the
18458 ControlPaint method for drawing the focus rect instead of doing
18461 2005-05-02 Peter Bartok <pbartok@novell.com>
18463 * LinkLabel.cs: Fixed the fixes from r43566 and 43521
18465 2005-04-29 Jackson Harper <jackson@ximian.com>
18467 * ThemeWin32Classic.cs: Don't clear the GC that will clear the
18468 entire image buffer. Just clear the clipping rectangle.
18470 2005-04-29 Jackson Harper <jackson@ximian.com>
18472 * ThemeWin32Classic.cs: Don't draw list view items that are
18473 outside the clipping rectangle.
18475 2005-04-29 Jordi Mas i Hernandez <jordi@ximian.com>
18477 * ListBox.cs: added horizontal item scroll
18479 2005-04-29 Jackson Harper <jackson@ximian.com>
18481 * ThemeWin32Classic.cs: Remove some old debug code that was
18482 causing flicker with the new double buffering code.
18484 2005-04-29 John BouAntoun <jba-mono@optusnet.com.au>
18486 * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
18487 behave like combobox and comboboxlist (still not sure if this is
18490 2005-04-28 Jackson Harper <jackson@ximian.com>
18492 * ThemeWin32Classic.cs: Don't fill the middle of progress
18493 bars. This fills areas outside of the clip bounds that don't need
18496 2005-04-28 Jackson Harper <jackson@ximian.com>
18498 * Control.cs: Don't expose functionality to touch the image buffers.
18500 * ListView.cs: We do not need to (and no longer can) manipulate
18501 the image buffers directly. All of this is handled by Control.
18503 2005-04-28 Peter Bartok <pbartok@novell.com>
18505 * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
18506 RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
18507 RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
18509 2005-04-28 Jordi Mas i Hernandez <jordi@ximian.com>
18512 - Adjust control's height for non-simple comboboxes (bug fix)
18514 * MenuAPI.cs: remove unused var
18515 * ScrollBar.cs: remove unsed var
18517 * ListBox.cs: unselect items when clearing
18519 2005-04-28 Jordi Mas i Hernandez <jordi@ximian.com>
18521 * ListControl.cs: honors OnPositionChanged and default Selected Item
18522 * ListBox.cs: unselect items when clearing
18524 2005-04-27 Jackson Harper <jackson@ximian.com>
18526 * X11Keyboard.cs: Initialize a default keyboard and give a warning
18527 if a "correct" keyboard is not found. This will make us not crash,
18528 but might give some users bad keyboard layouts...seems to be the
18529 same thing rewind does.
18531 2005-04-27 Jackson Harper <jackson@ximian.com>
18533 * BindingManagerBase.cs: Attach the current/position changed
18534 handlers to their respective events.
18536 2005-04-27 Jackson Harper <jackson@ximian.com>
18538 * Control.cs: Make sure that the first WM_PAINT does a full draw,
18540 * ThemeWin32Classic.cs: Don't fill the background for picture
18541 boxes. This could overright user drawing.
18542 * ComboBox.cs: Just fill the clipping rect not the entire client
18543 rect when drawing the background. This prevents pieces of the
18544 image buffer from getting overwritten and is theoretically faster.
18546 2005-04-26 Jordi Mas i Hernandez <jordi@ximian.com>
18548 * ComboBox.cs: Databinding support fixes, fire missing events
18549 * ListControl.cs: implement missing methods and properties, fixes
18550 * ThemeWin32Classic.cs: Databiding support on Drawing
18551 * CheckedListBox.cs: Databinding support fixes, fire missing events
18552 * ListBox.cs: Databinding support fixes, fire missing events
18554 2005-04-25 Peter Bartok <pbartok@novell.com>
18556 * LinkLabel.cs: Length of LinkArea is not allowed to be negative
18558 2005-04-25 Jackson Harper <jackson@ximian.com>
18560 * TreeView.cs: Use the horizontal scrollbars height not width when
18561 determining how much of the client area is available.
18563 2005-04-25 Jackson Harper <jackson@ximian.com>
18565 * Control.cs: Double buffering is handled differently now. As per
18566 the spec, the extra buffer is created in the WM_PAINT message and
18567 passed down to the control's drawing code.
18575 * PropertyGridView.cs:
18587 * DateTimePicker.cs:
18589 * TreeView.cs: Update to new double buffering system.
18590 * MonthCalendar.cs: Uncomment block, as Capture is now
18591 working. Update to new double buffering
18592 * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
18593 * PaintEventArgs.cs: New internal method allows us to set the
18594 graphics object. This is used for double buffering.
18595 * ThemeWin32Classic.cs: Give the picture box drawing code a clip
18596 rectangle. The internal paint_area var has been removed from
18597 StatusBar. The clipping rect should be used instead.
18598 * Theme.cs: Give the PictureBox drawing method a clipping rect.
18599 * TabPage.cs: The RefreshTabs method was removed, so just call the
18600 tab controls Refresh method now.
18601 * TabControl.cs: Update to new double buffering. Make sure the
18602 handle is created before sizing the tab pages, otherwise we will
18603 get stuck in a loop.
18605 2005-04-24 Borja Sanchez Zamorano <borsanza@gmail.com>
18607 * LinkLabel.cs: Fix typo, bug #74719; patch
18608 from Borja Sanchez Zamorano
18610 2005-04-22 Jackson Harper <jackson@ximian.com>
18612 * TreeNode.cs: Implement Handle stuff.
18613 * TreeView.cs: Utility methods so nodes can get/lookup by handle.
18615 2005-04-22 Jordi Mas i Hernandez <jordi@ximian.com>
18617 * DataGridTextBoxColumn.cs: call base constructors, fixes
18618 * GridColumnStylesCollection.cs: missing events, methods, and functionality
18619 * GridTableStylesCollection.cs: fixes, check duplicate mapping names
18620 * DataGridTableStyle.cs: implements create default column styles
18621 * DataGridBoolColumn.cs: which types can handle
18622 * DataGrid.cs: missing methods, fixes, new functionality
18623 * DataGridColumnStyle.cs: fixes
18625 2005-04-20 Alexander Olk <xenomorph2@onlinehome.de>
18626 * FolderBrowserDialog.cs:
18627 - Use a thread to fill the TreeView
18628 - Adjusted some sizes
18630 2005-04-19 Peter Bartok <pbartok@novell.com>
18632 * LinkLabel.cs: (Re-)create the pieces when setting the Text
18633 property. Fixes #74360.
18635 2005-04-19 Jackson Harper <jackson@ximian.com>
18637 * XEventQueue.cs: Lock when getting the lockqueue size.
18638 * PictureBox.cs: Call base OnPaint
18640 2005-04-19 Peter Bartok <pbartok@novell.com>
18642 * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
18643 messages were no longer being processed (this broke BeginInvoke)
18646 2005-04-18 Jackson Harper <jackson@ximian.com>
18648 * TreeView.cs: buglet that caused node images to get drawn
18649 regardless of whether or not they were in the clipping rectangle.
18651 2005-04-18 Jackson Harper <jackson@ximian.com>
18653 * CurrencyManager.cs: There are four rules for GetItemProperties:
18654 - If the type is an array use the element type of the array
18655 - If the type is a typed list, use the type
18656 - If the list contains an Item property that is not an object, use
18658 - use the first element of the list if there are any elements in
18661 2005-04-17 Jackson Harper <jackson@ximian.oom>
18663 * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
18664 click. This handles offsets for scrolling properly and reduces
18665 memory. Also fixed GetNode to not offset now that TopNode works
18667 * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
18669 2005-04-17 Jackson Harper <jackson@ximian.com>
18671 * CursorConverter.cs: Initial implementation.
18673 2005-04-15 Jordi Mas i Hernandez <jordi@ximian.com>
18675 * ListControl.cs: work towards complex data binding support on ListControl
18676 * CurrencyManager.cs: work towards complex data binding support on ListControl
18677 * ListBox.cs: work towards complex data binding support on ListControl
18680 2005-04-15 Jordi Mas i Hernandez <jordi@ximian.com>
18682 * GridTableStylesCollection.cs: fixes name and constructor
18683 * DataGridTableStyle.cs: fixes
18684 * DataGridBoolColumn.cs: fixes names and constructors
18685 * DataGrid.cs: define methods and properties. Some init implementations
18686 * DataGridCell.cs: define methods and properties. Some init implementations
18687 * GridTablesFactory.cs: Define methods and properties
18689 2005-04-15 Geoff Norton <gnorton@customerdna.com>
18691 * XplatUIOSX.cs: Handle proper mouse tracking even if the current
18692 graphics port changes. We still want the coordinates in global screen
18695 2005-04-14 Jackson Harper <jackson@ximian.com>
18697 * TreeView.cs: Handle clicks when plus minus is disabled. Don't
18698 check plus minus or checkbox clicks unless those features are enabled.
18700 2005-04-14 Jackson Harper <jackson@ximian.com>
18702 * TreeView.cs: Add methods for setting the top and bottom visible
18703 nodes. TreeNode::EnsureVisible uses these methods.
18704 * TreeNode.cs: Implement EnsureVisible
18706 2005-04-13 Jordi Mas i Hernandez <jordi@ximian.com>
18708 * Form.cs: Pospone menu assignation if the window has not been created yet
18709 * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
18712 2005-04-12 Jackson Harper <jackson@ximian.com>
18714 * TreeView.cs: Set the TopNode properly when scrolling
18715 occurs. This has the added benifit of reducing the amount of
18716 walking that needs to be done when drawing. Also removed an old
18718 * OpenTreeNodeEnumerator.cs: Fix moving backwards.
18720 2005-04-11 Jordi Mas i Hernandez <jordi@ximian.com>
18722 * Timer.cs: fixes interval setting when the timer is already enabled
18724 2005-04-10 Alexander Olk <xenomorph2@onlinehome.de>
18726 * FolderBrowserDialog.cs: First approach
18728 2005-04-09 Peter Bartok <pbartok@novell.com>
18730 * FolderBrowserDialog: Added
18732 2005-04-07 Jordi Mas i Hernandez <jordi@ximian.com>
18734 * LinkLabel.cs: move drawing code into the theme
18735 * ThemeWin32Classic.cs: drawing code and painting background bugfix
18736 * Theme.cs: define DrawLinkLabel method
18738 2005-04-05 Jackson Harper <jackson@ximian.com>
18740 * BindingContext.cs: Use weak references so these bad actors don't
18741 stay alive longer then they need to.
18743 2005-04-05 Jackson Harper <jackson@ximian.com>
18745 * ListControl.cs: Basic implementation of complex databinding.
18747 * ListBox.cs: Add calls to ListControl databinding methods.
18749 2005-04-05 Alexander Olk <xenomorph2@onlinehome.de>
18752 - Don't change PopupButtonState to Normal when the
18753 PopupButton gets pressed several times.
18754 - Renamed ButtonPanel to PopupButtonPanel
18756 2005-04-05 Jordi Mas i Hernandez <jordi@ximian.com>
18758 * ColorDialog.cs: Use cached objects instead of creating them
18759 * LinkLabel.cs: Use cached objects instead of creating them
18760 * Splitter.cs: Use cached objects instead of creating them
18761 * FontDialog.cs: Use cached objects instead of creating them
18762 * PropertyGridView.cs: Use cached objects instead of creating them
18763 * MessageBox.cs: Use cached objects instead of creating them
18764 * FileDialog.cs: Use cached objects instead of creating them
18765 * ThemeWin32Classic.cs: Use cached objects instead of creating them
18766 * TreeView.cs: Use cached objects instead of creating them
18768 2005-04-04 Jordi Mas i Hernandez <jordi@ximian.com>
18770 * Control.cs: use Equals to compare the font since no == op
18771 * ScrollBar.cs: use Equals to compare the font since no == op
18773 2005-04-04 Alexander Olk <xenomorph2@onlinehome.de>
18775 * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
18777 2005-04-01 Jackson Harper <jackson@ximian.com>
18779 * Binding.cs: Implement IsBinding.
18780 * BindingManagerBase.cs:
18781 * PropertyManager.cs:
18782 * CurrencyManager.cs: Add IsSuspended property.
18784 2005-04-01 Jackson Harper <jackson@ximian.com>
18786 * Binding.cs: Had some IsAssignableFrom calls backwards.
18788 2005-04-01 Jackson Harper <jackson@ximian.com>
18790 * Binding.cs: Handle null data members when pulling data.
18791 * PropertyManager.cs: Handle the data member being a property that
18794 2005-04-01 Jordi Mas i Hernandez <jordi@ximian.com>
18796 * DataGridTextBoxColumn.cs: fixes signature
18797 * DataGrid.cs: calls right constructor
18799 2005-04-01 Jordi Mas i Hernandez <jordi@ximian.com>
18801 * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
18802 * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
18803 * GridTableStylesCollection.cs: implements GridTableStylesCollection
18804 * DataGridTableStyle.cs: implements DataGridTableStyle
18805 * DataGridBoolColumn.cs: implements DataGridBoolColumn
18806 * DataGridTextBox.cs: implements DataGridTextBox
18807 * DataGridColumnStyle.cs: implements DataGridColumnStyle
18809 2005-03-31 Alexander Olk <xenomorph2@onlinehome.de>
18811 * FileDialog.cs: Added simple PopupButton class for ButtonPanel
18813 2005-03-29 Peter Bartok <pbartok@novell.com>
18816 - Properly implemented CompanyName property
18817 - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
18818 returns a path that includes CompanyName, ProductName and
18819 Version (fixes bug #70330)
18821 2005-03-29 Stefan Buehler <sbuehler@gmx.ch>
18823 * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
18826 2005-03-28 Alexander Olk <xenomorph2@onlinehome.de>
18828 * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
18830 - Added ReadOnly CheckBox
18831 - Further refactoring: moved some code from Open-/SaveFileDialog
18834 2005-03-28 Alexander Olk <xenomorph2@onlinehome.de>
18836 * OpenFileDialog.cs: Fixed CheckFileExists
18838 Moved FileView and DirComboBox outside FileDialog class.
18839 They can now be used outside FileDialog
18841 2005-03-27 Alexander Olk <xenomorph2@onlinehome.de>
18843 * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
18844 * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
18846 2005-03-27 Alexander Olk <xenomorph2@onlinehome.de>
18848 * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
18849 - Added missing CreatePrompt property in SaveDialog
18850 - Overall SaveDialog handling should be better now
18851 - Added non standard ShowHiddenFiles property
18852 - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
18853 - Added InitialDirectory and RestoreDirectory support
18855 2005-03-26 Alexander Olk <xenomorph2@onlinehome.de>
18857 * FileDialog.cs: Made dirComboBox usable
18859 2005-03-24 Alexander Olk <xenomorph2@onlinehome.de>
18861 * FileDialog.cs: Added Filter support (case sensitiv)
18863 2005-03-24 Jackson Harper <jackson@ximian.com>
18865 * TabControl.cs: Need a couple more pixels for the lines.
18867 2005-03-23 Jackson Harper <jackson@ximian.com>
18869 * TabControl.cs: Give the tab page focus when it is selected.
18871 2005-03-23 Jackson Harper <jackson@ximian.com>
18873 * TabControl.cs: Account for the drawing of tabs borders when
18874 invalidating. If the slider was clicked dont do click detection on
18877 2005-03-23 Jackson Harper <jackson@ximian.com>
18879 * TabControl.cs: Fix typo, emilinates an unneeded expose event.
18881 2005-03-22 Jonathan Chambers <jonathan.chambers@ansys.com>
18883 * CategoryGridEntry.cs: Added
18884 * GridItem.cs: Added helper properties
18885 * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
18886 * GridEntry.cs: Updated code for collection
18887 * PropertyGrid.cs: Cleaned up some formatting
18888 * PropertyGridView.cs: Added drop down functionality for enums.
18889 * GridItemCollection.cs: Added enumerator logic
18890 * PropertyGridEntry.cs: Added
18892 2005-03-19 Alexander Olk <xenomorph2@onlinehome.de>
18895 - Removed unnecessary commented code
18896 - Fixed handling for entering the filename manually in the combobox
18898 2005-03-19 Alexander Olk <xenomorph2@onlinehome.de>
18900 * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
18902 2005-03-18 Peter Bartok <pbartok@novell.com>
18904 * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
18905 them being touching the border
18907 2005-03-18 Peter Bartok <pbartok@novell.com>
18909 * TextControl.cs: Quick hack to center text better
18911 2005-03-18 Peter Bartok <pbartok@novell.com>
18914 - Don't throw NotImplemented exceptions, just print a notice once
18915 instead (requested by Miguel). This makes running existing SWF
18918 - Commented out Drag'N'Drop XplatUI call (no driver support yet)
18919 - Added context menu trigger on right click
18920 * Panel.cs: Trigger invalidate on resize
18922 - Removed old double-buffer drawing
18923 - Added ResizeRedraw style to force proper update of statusbar
18925 - Removed debug output
18926 * ThemeWin32Classic.cs:
18927 - Fixed drawing of status bar, now draws Text property if there
18928 are no defined panels
18930 2005-03-18 Jackson Harper <jackson@ximian.com>
18932 * ImageList.cs: When the image stream is set pull all the images
18934 * ImageListStreamer.cs: Implement reading image list streams.
18936 2005-03-18 Peter Bartok <pbartok@novell.com>
18938 * ThemeWin32Classic.cs (DrawPictureBox):
18939 - Fixed calculations for centered drawing
18940 - Fixed drawing for normal mode, not scaling the image on normal
18942 2005-03-18 Peter Bartok <pbartok@novell.com>
18944 * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
18947 - Made Open/Save button the accept button for FileDialog
18948 - Tied the cancel button to the IButtonControl cancel button
18949 - Save/Open now properly builds the pathname
18950 - Now handles user-entered text
18951 - Preventing crash on right-click if no item is selected
18952 - Fixed Text property, now uses contents of textbox
18953 - Fixed SelectedText property, now just returns the text part that
18954 is selected in the text box
18956 2005-03-18 Jackson Harper <jackson@ximian.com>
18958 * ThemeWin32Classic.cs: Use the proper func for drawing the focus
18959 rect, make sure to de-adjust the interior rect after drawing the
18962 2005-03-18 Peter Bartok <pbartok@novell.com>
18964 * MenuAPI.cs: Remove menu *before* executing selected action to
18965 prevent the menu from 'hanging around'
18967 2005-03-17 Geoff Norton <gnorton@customerdna.com>
18969 * XplatUIOSX.cs: Implemented WorkingArea property
18971 2005-03-17 Peter Bartok <pbartok@novell.com>
18973 * XplatUIX11.cs: Fixed menu coord calculations
18974 * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
18975 for calculating offsets
18977 2005-03-17 Peter Bartok <pbartok@novell.com>
18979 * Hwnd.cs: Do not consider menu presence for default client
18980 rectangle location/size
18981 * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
18982 XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
18983 translation functions
18984 * FileDialog.cs: Fixed (what I presume is a) typo
18986 2005-03-17 Jonathan Gilbert <logic@deltaq.org>
18988 * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
18989 X access (avoids X-Async errors)
18991 2005-03-16 Jackson Harper <jackson@ximian.com>
18993 * TabControl.cs: Raise the SelectedIndexChanged event.
18995 2005-03-16 Alexander Olk <xenomorph2@onlinehome.de>
18997 * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
18998 - Removed vertical ToolBar and replaced it with a custom panel
18999 (desktop and home button already work)
19000 - Added Help button (some controls get resized or relocated then)
19001 - Draw correct text depending on Open or Save.
19002 - Fixed some typos...
19004 2005-03-16 Jordi Mas i Hernandez <jordi@ximian.com>
19007 - Only change Maximum and Minimum when need it (bug fix)
19009 2005-03-15 Peter Bartok <pbartok@novell.com>
19011 * Form.cs: Use Handle for icon, to trigger creation if
19012 the window does not yet exist
19014 - CanSelect: Slight performance improvement
19015 - Focus(): Preventing possible recursion
19016 - Invalidate(): Removed ControlStyle based clear flag setting
19017 - WM_PAINT: fixed logic for calling OnPaintBackground
19018 - WM_ERASEBKGND: Fixed logic, added call to new driver method
19019 EraseWindowBackground if the control doesn't paint background
19021 - Moved EraseWindowBackground() method to internal methods
19022 - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
19023 is sent via SendMessage on BeginPaint call on Win32
19025 - Added EraseWindowBackground() method
19026 - No longer sends WM_ERASEBKGND on .Expose, but on call to
19027 PaintEventStart, which more closely matches Win32 behaviour
19028 - Fixed Invalidate() call, now updates new ErasePending Hwnd property
19029 - Fixed SetFocus() to properly deal with client and whole windows
19030 * Hwnd.cs: Added ErasePending property
19031 * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
19032 * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
19034 2005-03-12 Geoff Norton <gnorton@customerdna.com>
19037 - Fix hard loop when timers exist.
19038 - Fix bugs with middle and right click for 3 button mice.
19040 2005-03-11 Peter Bartok <pbartok@novell.com>
19043 - get_WorkingArea: Need to call X directly, GetWindowPos only
19044 returns cached data now
19045 - Added sanity check to GetWindowPos hwnd usage
19047 2005-03-11 Jackson Harper <jackson@ximian.com>
19049 * BindingManagerBase.cs: This method isn't used anymore as
19050 PullData now updates the data in the control.
19052 2005-03-11 Jordi Mas i Hernandez <jordi@ximian.com>
19054 * Form.cs: fixes menu drawing on X11
19055 * MenuAPI.cs: fixes menu drawing on X11
19057 2005-03-11 Peter Bartok <pbartok@novell.com>
19059 * Control.cs: Changed OnCreateControl behaviour based on a suggestion
19060 from Jonathan Gilbert; should fix bug #73606
19061 * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
19062 in Screen coordinates. Thanks, Jordi.
19063 * Form.cs: Added missing attribute
19065 2005-03-11 Peter Bartok <pbartok@novell.com>
19068 - Rudimentary Mdi support
19069 - Removed outdated FormParent code
19070 - Implemented lots of missing properties and methods, still missing
19071 transparency support
19072 - Added missing attributes
19073 - Implemented support for MaximumBounds
19074 - Added firing of various events
19075 * XplatUI.cs: Added SetIcon() method
19076 * XplatUIDriver.cs: Added SetIcon() abstract
19077 * XplatUIOSX.cs: Stubbed out SetIcon() method
19079 - Implemented SetIcon() support
19080 - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
19081 - Switched to unix line endings
19083 - Made POINT internal so for can access it as part of MINMAX
19084 - Implemented SetIcon() support
19085 - Implemented support for CLIENTCREATESTRUCT (but might have to drop
19086 native Mdi support again, might have to go managed)
19087 * Control.cs: Now fires the StyleChanged event
19088 * MdiClient.cs: Added; still mostly empty
19090 2005-03-10 Peter Bartok <pbartok@novell.com>
19092 * SaveFileDialog.cs: Added emtpy file
19094 2005-03-08 Peter Bartok <pbartok@novell.com>
19096 * Control.cs: Fixed bug #73190; now invokes CreateControl (which
19097 in turn triggers OnCreateContro) when creating a handle for the
19099 * TextControl.cs: Fixed endless loop in certain cases when
19100 replacing the current selection
19102 2005-03-08 Jordi Mas i Hernandez <jordi@ximian.com>
19105 - Honors NewValue changes in Scroll events allowing apps to change it
19106 - Adds First and Last Scroll events
19107 - Fixes Thumb events
19109 2005-03-07 Peter Bartok <pbartok@novell.com>
19111 * Hwnd.cs: Added DefaultClientRectangle property
19112 * XplatUI.cs: Now using the X11 driver Where() method, which provides
19113 more detailed debug information
19115 - Fixed size-change feedback loop, where we would pull an old size
19116 off the queue and mistakenly change our window's size to an
19118 - Now compressing ConfigureNotify events, to reduce looping and
19120 * TextBoxBase.cs: Preventing crash when no text is set and ToString()
19123 2005-03-07 Jackson Harper <jackson@ximian.com>
19125 * Binding.cs: Push data pushes from data -> property. Check if the
19126 property is readonly when attempting to set it.
19128 2005-03-07 Jackson Harper <jackson@ximian.com>
19130 * Binding.cs: Format and parse data correctly. Use ASsignableFrom
19131 instead of IsSubclassOf. Pulling data now sets the value on the
19133 * PropertyManager.cs:
19134 * CurrencyManager.cs: Just need to pull data when updating now,
19135 because PullData will set the value on the control.
19137 2005-03-04 Jackson Harper <jackson@ximian.com>
19139 * Binding.cs: Implement data type parsing and converting on pulled
19140 data. TODO: Are there more ways the data can be converted?
19142 2005-03-04 Jackson Harper <jackson@ximian.com>
19144 * Binding.cs: Support <Property>IsNull checks. Also bind to the
19145 controls Validating method so we can repull the data when the
19146 control loses focus.
19148 2005-03-03 Jordi Mas i Hernandez <jordi@ximian.com>
19151 - Fixes null string format
19154 - Adds enum type checks
19155 - Fixes redrawing and recalc need after changing some properties
19156 - Fixes on focus_item set after the event
19157 - Fixes adding columns after the control has been created
19159 * ThemeWin32Classic.cs:
19160 - Fixes CheckBox focus rectangle
19161 - Fixes ColumnHeader drawing
19164 2005-03-03 Jackson Harper <jackson@ximian.com>
19166 * Binding.cs: Bind to <Property>Changed events so we can detect
19167 when properties are changed and update the data.
19169 2005-03-02 Jordi Mas i Hernandez <jordi@ximian.com>
19172 - Changes 32-bit pixel format to Format32bppArgb to allow transparency
19173 - Fixes ImageList constructor with ImageList container
19174 - Fixes image scaling (wrong parameters at DrawImage)
19176 2005-02-02 Jackson Harper <jackson@ximian.com>
19178 * Binding.cs: Make property searches case-insensitive. Eliminate
19179 some duplicated code.
19181 2005-03-01 Jordi Mas i Hernandez <jordi@ximian.com>
19184 - Handle focus event
19185 - Fix scrollbar events
19186 - Discard highlighted item if remove it
19187 - Fixes SelectedItem with strings
19189 2005-03-01 Peter Bartok <pbartok@novell.com>
19192 - Fixed Visible property, now follows (once again) parent chain
19193 to return false if any control in the chain is visible=false
19194 - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
19195 - Fixed several places where is_visible instead of Visible was used
19196 - Implemented FIXME related to focus selection when setting focused
19197 control to be invisible
19199 * XplatUIWin32.cs: Now using proper method to find out if window is
19200 visible. Thanks to Jordi for pointing it out
19202 2005-02-28 Jordi Mas i Hernandez <jordi@ximian.com>
19204 * ComboBox.cs: show/hide scrollbar instead of creating it
19206 2005-02-27 Jackson Harper <jackson@ximian.com>
19208 * CurrencyManager.cs: Add PositionChanged stuff.
19210 2005-02-27 Peter Bartok <pbartok@novell.com>
19212 * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
19213 * XplatUIOSX.cs: Added GetMenuOrigin() stub
19214 * XplatUIWin32.cs: Implemented GetMenuOrigin()
19216 - Implemented GetMenuDC()
19217 - Implemented GetMenuOrigin()
19218 - Implemented ReleaseMenuDC()
19219 - Implemented generation of WM_NCPAINT message
19220 - Implemented generation and handling of WM_NCCALCSIZE message
19221 * Form.cs: Added debug helper message for Jordi's menu work
19223 - Modified ClientRect property; added setter, fixed getter to handle
19224 setting of ClientRect
19225 - Added MenuOrigin property
19227 2005-02-26 Peter Bartok <pbartok@novell.com>
19230 - Destroys the caret if a window that's being destroyed contains it
19231 - Ignores expose events coming from the X11 queue for windows that
19232 already are destroyed
19233 - Now uses the proper variable for handling DestroyNotify, before we
19234 marked the wrong window as destroyed
19235 - Improved/added some debug output
19237 2005-02-26 Peter Bartok <pbartok@novell.com>
19239 * X11Keyboard.cs: Fixes to work on 64bit systems
19241 2005-02-26 Peter Bartok <pbartok@novell.com>
19244 - Now calling OnHandleDestroyed from DestroyHandle()
19245 instead of Dispose()
19246 - Removed bogus call to controls.Remove() from DestroyHandle()
19248 2005-02-26 Peter Bartok <pbartok@novell.com>
19250 * Control.cs: Properly destroy child windows when our handle is
19253 2005-02-25 Peter Bartok <pbartok@novell.com>
19256 - Added 'DriverDebug' define to allow tracing XplatUI API calls
19257 - Alphabetized Static Methods and Subclasses
19260 - Added XException class to allow custom handling of X11 exceptions
19261 - Created custom X11 error handler, tied into XException class
19262 - Added support for MONO_XEXCEPTIONS env var to allow the user
19263 to either throw an exception on X errors or continue running
19264 after displaying the error
19265 - Added handling of DestroyNotify message
19266 - Added handler for CreateNotify message (still disabled)
19267 - Improved (tried to at least) Where method to provide file and lineno
19269 - Added XErrorHandler delegate
19270 - Added XRequest enumeration (to suppor translation of errors)
19272 2005-02-25 Jackson Harper <jackson@ximian.com>
19274 * PropertyManager.cs: Implement editing features
19275 * CurrencyManager.cs:
19276 * Binding.cs: First attempt at UpdateIsBinding
19277 * BindingManagerBase.cs: Call UpdateIsBinding before
19278 pushing/pulling data.
19280 2005-02-25 Jordi Mas i Hernandez <jordi@ximian.com>
19282 * MenuAPI.cs: Respect disabled items
19283 * ThemeWin32Classic.cs
19284 - Caches ImageAttributes creation for DrawImageDisabled
19285 - Fixes vertical menu line drawing
19286 - Draws disabled arrows in disable menu items
19288 2005-02-24 Peter Bartok <pbartok@novell.com>
19291 - Added UserData property to allow associating arbitrary objects
19293 - Fixed leak; now removing Hwnd references from static windows array
19295 - Fixed Graphics leak in PaintEventEnd
19296 - Removed usage of HandleData, switched over to Hwnd class
19297 * HandleData.cs: Removed, obsoleted by Hwnd.cs
19299 2005-02-24 Jordi Mas i Hernandez <jordi@ximian.com>
19301 * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
19302 * ScrollBar.cs: Fixes bug
19303 * TrackBar.cs: removes death code, clipping, mimize refreshes,
19304 keyboard navigation enhancements
19306 2005-02-24 Jordi Mas i Hernandez <jordi@ximian.com>
19308 * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
19309 * GroupBox.cs: Add control styles
19310 * Label.cs: Add control styles
19311 * UpDownBase.cs: Add control styles
19312 * ListBox.cs: Add control styles
19313 * XplatUIWin32.cs: Fixes wrong parameter order
19316 2005-02-23 Chris Bacon <chris.bacon@docobo.co.uk>
19318 * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
19320 2005-02-23 Jackson Harper <jackson@ximian.com>
19322 * PropertyManager.cs: Implement property binding. This doesn't
19323 seem to work yet though as (I think) there are some bugs in
19324 System.ComponentModel.PropertyDescriptor.
19325 * BindingContext.cs: Use new PropertyManager constructor.
19327 2005-02-23 Jordi Mas i Hernandez <jordi@ximian.com>
19329 * ProgressBar.cs: use clip region in ProgressBar
19330 * ThemeWin32Classic.cs: use clip region in ProgressBar
19332 2004-02-22 Jackson Harper <jackson@ximian.com>
19334 * BindingsCollection.cs: Remove some debug code.
19336 2005-02-22 Jackson Harper <jackson@ximian.com>
19338 * BindingContext.cs:
19339 * ControlBindingsCollection.cs:
19340 * CurrencyManager.cs:
19342 * BindingManagerBase.cs: Initial implementation
19343 * BindingsCollection.cs: Add an internal contains method that the
19344 BindingManagerBase uses to ensure bindings aren't added twice to
19346 * PropertyManager.cs: Stubbed out.
19348 * ContainerControl.cs: Hook up databinding
19350 2005-02-22 Geoff Norton <gnorton@customerdna.com>
19353 OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
19354 Fixed Invalidate/Update chain.
19355 Fixed tons of other minor bugs (this is almost a complete rewrite).
19357 2005-02-22 Jordi Mas i Hernandez <jordi@ximian.com>
19359 * ComboBox.cs: do subcontrol creation when the control is created
19361 2005-02-19 Jordi Mas i Hernandez <jordi@ximian.com>
19363 * Label.cs: fixes image drawing (image and imagelist)
19364 * ThemeWin32Classic.cs: cache brushes
19366 2005-02-19 Jordi Mas i Hernandez <jordi@ximian.com>
19368 * Form.cs: Move menu drawing code to Theme class
19369 * ComboBox.cs: Move ComboBox drawing code to Theme class
19370 * MenuItem.cs: Move menu drawing code to Theme class
19371 * MenuAPI.cs: Move menu drawing code to Theme class
19372 * ThemeWin32Classic.cs: New methods
19373 * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
19374 * ListBox.cs: Move Listbox drawing code to Theme class
19375 * Theme.cs: New methods
19377 2005-02-20 Peter Bartok <pbartok@novell.com>
19380 - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
19381 only process mnemonics on those)
19382 - Fixed event sequence for key handling; first calling
19383 ProcessKeyEventArgs now
19385 - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
19386 for processing non-character keys
19387 - Fixed WM_CHAR to generate proper event sequence before processing
19388 * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
19391 2005-02-19 Peter Bartok <pbartok@novell.com>
19393 * UserControl.cs: Added TextChanged event; added attributes
19394 * SizeGrip.cs: Implemented resizing and optional display of grip
19395 * Form.cs: Fixed attribute
19396 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
19397 Changed meaning of ScrollWindow bool argument; instead of the
19398 clear attribute (which will be true usually anyway), it gives the
19399 option of moving child controls as well.
19401 - Changed to match new ScrollWindow argument
19402 - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
19403 now handles the implicit parent window a WM puts around us
19404 * ScrollableControl.cs: Implemented (not the prettiest, but it seems
19406 * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
19407 * TreeView.cs: Adjusted to new ScrollWindow arguments
19409 2005-02-19 Jordi Mas i Hernandez <jordi@ximian.com>
19411 * Form.cs: Menu integration with non-client area
19412 * MenuItem.cs: Menu integration with non-client area
19413 * MenuAPI.cs: Menu integration with non-client area
19415 2005-02-18 Peter Bartok <pbartok@novell.com>
19417 * MethodInvoker.cs: Added
19418 * MdiLayout.cs: Added
19419 * SendKeys.cs: Started implementation
19420 * ErrorIconAlignment.cs: Added
19422 2005-02-18 Peter Bartok <pbartok@novell.com>
19424 * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
19425 * Form.cs: Added handling for Menu-related Non-client messages
19427 2005-02-17 Peter Bartok <pbartok@novell.com>
19429 * UpDownBase.cs: Fixed typo, compilation errors
19430 * DomainUpDown.cs: Fixed attribute value
19432 2005-02-16 Miguel de Icaza <miguel@novell.com>
19434 * UpDownBase.cs: Attach entry events.
19436 Add ForeColor property, Focused, InterceptArrowKeys (interception
19437 does not work yet).
19439 2005-02-17 Jordi Mas i Hernandez <jordi@ximian.com>
19442 - Redraw non client are on Setmenu
19443 - Calc proper menu starting point
19445 2005-02-17 Peter Bartok <pbartok@novell.com>
19447 * Application.cs: Fixed message_filter check
19449 2005-02-17 Peter Bartok <pbartok@novell.com>
19451 * Application.cs: Now calls registered message filters
19452 * DockStyle.cs: Fixed attribute
19453 * Form.cs: Fixed attribute
19454 * Menu.cs: Fixed attribute
19455 * ToolTip.cs: Fixed attribute
19456 * TreeNode.cs: Added missing attributes and arranged in regions
19457 * PropertyGrid.cs: Fixed signatures
19458 * TreeNodeCollection.cs: Added attributes
19459 * Splitter.cs: Added missing attributes; arranged into regions
19460 * TabPage.cs: Added missing attributes; arranged into regions
19461 * TextBoxBase.cs: Added missing attributes
19462 * TextBox.cs: Added missing attributes
19463 * ArrangeDirection.cs: Added missing attributes
19464 * TreeNodeConverter.cs: Added stub (needed for TreeNode)
19465 * ToolBarButton.cs: Fixed attributes
19466 * AnchorStyles.cs: Fixed attribute
19467 * TrackBar.cs: Fixed attributes
19468 * TabControl.cs: Added missing attributes and arranged into regions
19469 * ToolBar.cs: Fixed attribute
19470 * StatusBar.cs: Fixed signature, organized into regions and added
19472 * StatusBarPanel.cs: Fixed attributes
19473 * ContentsResizedEventArgs.cs: Implemented
19474 * ContentsResizedEventHandler.cs: Implemented
19475 * DateBoldEventArgs.cs: Implemented
19476 * DateBoldEventHandler.cs: Implemented
19477 * UpDownEventArgs.cs: Implemented
19478 * UpDownEventHandler.cs: Implemented
19480 2005-02-16 Jordi Mas i Hernandez <jordi@ximian.com>
19482 * Form.cs: first Menu NC refactoring
19483 * MenuAPI.cs: first Menu NC refactoring
19485 2005-02-16 Peter Bartok <pbartok@novell.com>
19487 * ImeMode.cs: Added missing attributes
19488 * Menu.cs: Fixed attribute
19489 * GroupBox.cs: Fixed attribute
19490 * Label.cs: Fixed attribute
19491 * ColorDialog.cs (RunDialog): Removed TODO attribute
19492 * ComboBox.cs: Fixed attributes
19493 * ListControl.cs: Added missing attributes
19494 * PropertyGrid.cs: Fixed attributes
19495 * Control.cs: Fixed attributes
19496 * ListViewItem.cs: Added TypeConverter attribute
19497 * NotifyIcon.cs: Fixed attributes
19498 * ListView.cs: Fixed attributes
19499 * ButtonBase.cs: Fixed attribute
19500 * ImageList.cs: Added missing attributes
19501 * ContainerControl.cs: Fixed signature
19502 * CheckedListBox.cs: Fixed attribute; added missing attributes
19503 * Panel.cs: Fixed attributes
19504 * PropertyTabChangedEventArgs.cs: Added missing attribute
19505 * PropertyValueChangedEventArgs.cs: Added missing attribute
19506 * Binding.cs: Fixed attribute
19507 * ListViewItemConverter: Implemented ListViewSubItemConverter class
19508 * ListBox.cs: Fixed attribute; added missing attributes;
19509 * ScrollableControl.cs: Added missing attributes
19510 * PictureBox.cs: Added missing attributes; implemented missing property
19511 * DateTimePicker.cs: Added missing attributes
19512 * Theme.cs (ToolWindowCaptionHeight): Fixed type
19513 * MonthCalendar.cs: Fixed attributes
19514 * StatusBarPanel.cs: Added missing attributes
19515 * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
19517 2005-02-16 Peter Bartok <pbartok@novell.com>
19519 * TextBoxBase.cs: The previous method to enforce height yet remember
19520 the requested high was less than ideal, this is an attempt to do
19522 * Control.cs: Added comment about possible problem
19523 * Copyright: Updated format
19524 * GridItemType.cs: Fixed swapped values
19526 2005-02-15 Jackson Harper <jackson@ximian.com>
19528 * BaseCollection.cs: Use property so we never access an
19529 uninitialized list. Also initialize the list in the property.
19531 2005-02-15 Peter Bartok <pbartok@novell.com>
19533 * GroupBox.cs (ProcessMnemonic): Implemented
19534 * Label.cs (ProcessMnemonic): Implemented
19535 * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
19538 2005-02-15 Peter Bartok <pbartok@novell.com>
19540 * RadioButton.cs (ProcessMnemonic): Implemented
19541 * CheckBox.cs (ProcessMnemonic): Implemented
19543 - Added handling of WM_SYSxxx keyboard messages to support mnemonic
19545 - Added internal method to allow calling ProcessMnemonic from other
19547 * ContainerControl.cs:
19548 - Started support for handling validation chain handling
19549 - Implemented ProcessMnemonic support
19550 - Added Select() call to Active, to make sure the active control
19552 * Form.cs: Setting toplevel flag for Forms (this was lost in the
19553 FormParent rewrite)
19554 * ThemeWin32Classic.cs:
19555 - DrawCheckBox(): Fixed stringformat to show hotkeys
19556 - DrawRadioButton(): Fixed stringformat to show hotkeys
19557 * CommonDialog.cs: Removed WndProc override, not needed
19559 2005-02-14 Peter Bartok <pbartok@novell.com>
19561 * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
19562 missed those in the rewrite
19564 2005-02-14 Miguel de Icaza <miguel@novell.com>
19566 * NumericUpDown.cs (Increment, ToString): Add.
19567 (DecimalPlaces): implement.
19571 * UpDownBase.cs: Add the designer attributes.
19573 2005-02-13 Peter Bartok <pbartok@novell.com>
19575 * Panel.cs: Removed border_style, now in Control
19576 * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
19577 ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
19579 2005-02-13 Peter Bartok <pbartok@novell.com>
19581 * MouseButtons.cs: Added missing attributes
19582 * XplatUIStructs.cs: Added enumeration for title styles
19583 * LeftRightAlignment.cs: Added missing attributes
19584 * Hwnd.cs: Switched to use client_window as handle (slower, but makes
19585 it compatible with Graphics.FromHwnd()
19586 * SelectedGridItemChangedEventArgs.cs: Fixed property type
19587 * Keys.cs: Added missing attributes
19588 * SelectionRange.cs: Added missing attributes
19589 * SelectionRangeConverter.cs: Added
19591 - Introduced SetBorderStyle, SetMenu, GetMenuDC and
19592 ReleaseMenuDC methods
19593 - Renamed ReleaseWindow to UngrabWindow
19594 - Added proper startup notice to allow version identification
19596 - Added missing attributes
19597 - Removed FormParent concept
19598 * Label.cs: Removed border_style field, now in Control
19599 * RadioButton.cs: Now properly selects RadioButton when focus is
19601 * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
19603 - Added missing attributes
19604 - Added borderstyle handling
19605 - Removed FormParent concept support
19606 - Fixed calls to XplatUI to match changed APIs
19607 - Fixed bug that would case us to use disposed Graphics objects
19608 - Removed unneeded internal methods
19609 - PerformLayout(): Fixed to handle DockStyle.Fill properly
19610 - SelectNextControl(): Fixed to properly check common parents
19611 * TextBoxBase.cs: Removed border_style field (now in Control)
19613 - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
19614 fixed calculations for form size
19615 - Added support for localized strings and icons
19616 - Improved form size calculations, added border
19617 * ListView.cs: Removed border_style field (now in Control)
19618 * X11Structs.cs: Moved several structs from X11 driver here
19619 * X11Keyboard.cs: Changed debug message
19620 * Application.cs: Removed FormParent concept support
19622 - Resetting end_modal flag
19623 - Removed FormParent concept support
19624 * NativeWindow.cs: Removed FormParent concept support
19625 * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
19626 Client area and Non-Client whole window to allow support for WM_NC
19628 * XplatUIOSX.cs: Updated to match latest driver spec; added exception
19629 prevent using it until it supports Hwnd as per Geoff Norton's request
19630 * ToolBar.cs: Fixed drawing, was not doing proper drawing
19631 * PictureBox.cs: Removed border_style field, now in Control
19632 * XplatUIWin32.cs: Added new driver methods
19634 2005-02-12 Peter Bartok <pbartok@novell.com>
19636 * OpacityConverter.cs: Implemented
19637 * Hwnd.cs: Internal class to support drivers that need to emulate
19638 client area/non-client area window behaviour
19640 2005-02-11 Peter Bartok <pbartok@novell.com>
19642 * KeysConverter.cs: Implemented
19644 2005-02-11 Jordi Mas i Hernandez <jordi@ximian.com>
19646 * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
19647 * LinkLabel: Added missing attributes
19648 * MainMenu.cs: fixes ToString
19649 * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
19650 * ListBox.cs: fixes event position
19651 * TrackBar.cs: adds missing attributes and events
19653 2005-02-10 Jordi Mas i Hernandez <jordi@ximian.com>
19655 * MenuItem.cs: Use SystemInformation and bug fixes
19656 * MenuAPI.cs: Use SystemInformation and bug fixes
19658 2005-02-09 Jackson Harper <jackson@ximian.com>
19660 * X11Keyboard.cs: We ignore some keys, but still need to set/reset
19661 their keystate otherwise things like VK_MENU get stuck "on".
19663 2005-02-09 Kazuki Oikawa <kazuki@panicode.com>
19665 * ListBox.cs: Fixes AddRange bug
19667 2005-02-09 Jordi Mas i Hernandez <jordi@ximian.com>
19670 - Add missing attributes
19671 - Add missing method
19673 * CheckedListBox.cs: Added missing attributes
19674 - Add missing attributes
19675 - Remove extra method
19677 * ComboBox.cs: Added missing attributes
19678 * VScrollBar.cs: Added missing attributes
19679 * ScrollBar.cs: Added missing attributes
19680 * ListBox.cs: Fixes signature, add missing consts
19681 * LinkArea.cs: Added missing attributes
19684 2005-02-08 Peter Bartok <pbartok@novell.com>
19686 * Menu.cs: Added missing attributes
19687 * MainMenu.cs: Added missing attributes
19688 * GroupBox.cs: Added missing attributes
19689 * Label.cs: Added missing attributes
19690 * CheckBox.cs: Implemented CheckBoxAccessibleObject class
19692 - Added Instance and Options properties
19693 - Added missing attributes
19694 * Cursor.cs: Made Serializable
19695 * NotifyIcon: Added missing attributes
19696 * MenuItem.cs: Added missing attributes
19697 * TextBoxBase.cs: Implemented AppendText() and Select() methods
19698 * Panel.cs: Added Missing attributes
19699 * MonthCalendar.cs: Fixed CreateParams
19701 2005-02-08 Jordi Mas i Hernandez <jordi@ximian.com>
19705 - Fixes issues with links
19706 - Adds the class attributes
19708 2005-02-08 Jordi Mas i Hernandez <jordi@ximian.com>
19711 - Fixes button when no items available in dropdown
19712 - Fixes repainting problems
19713 - Adds the class attributes
19715 2005-02-07 Geoff Norton <gnorton@customerdna.com>
19717 * XplatUIOSX.cs: Detect the menu bar and title bar height from
19718 the current theme. Cache these on startup.
19720 2005-02-07 Jackson Harper <jackson@ximian.com>
19722 * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
19723 the scrollbar buttons when they are depressed.
19725 2005-02-07 Geoff Norton <gnorton@customerdna.com>
19727 * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
19728 Get the display size from the main displayid. We currently dont
19729 support multiple display configurations.
19731 2005-02-07 Geoff Norton <gnorton@customerdna.com>
19733 * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
19735 2005-02-07 Miguel de Icaza <miguel@novell.com>
19737 * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
19739 2005-02-05 Jonathan Chambers <jonathan.chambers@ansys.com>
19741 * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
19743 2005-02-04 Jackson Harper <jackson@ximian.com>
19745 * ThemeWin32Classic.cs: Respect the clipping rect when
19746 drawing. Only fill the intersection of clips and rects so there
19747 isn't a lot of large fills.
19748 * ScrollBar.cs: Pass the correct clipping rect to the theme
19749 engine. Remove some debug code.
19751 2005-02-05 John BouAntoun <jba-mono@optusnet.com.au>
19753 * DateTimePicker.cs:
19754 - Fixed crash on DateTime.Parse, use Constructor instead
19756 2005-02-04 Jordi Mas i Hernandez <jordi@ximian.com>
19760 - Owner draw support (MeasureItem and DrawItem)
19762 2005-02-04 Jordi Mas i Hernandez <jordi@ximian.com>
19765 - Implements FindMergePosition and MergeMenu functions (very poor documented)
19766 - Fixes MenuItems.Add range
19768 - MergeMenu and Clone and CloneMenu functions
19770 2005-02-03 Jackson Harper <jackson@ximian.com>
19772 * ScrollBar.cs: Make abstract
19773 * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
19776 2005-02-03 Jackson Harper <jackson@ximian.com>
19778 * ScrollBar.cs: First part of my scrollbar fixups. This removes
19779 all the unneeded refreshes and uses invalidates with properly
19782 2005-02-03 Peter Bartok <pbartok@novell.com>
19784 * ComponentModel.cs: Added
19785 * IDataGridEditingService.cs: Added
19786 * Timer.cs: Added missing attributes
19787 * ToolTip.cs: Added missing attributes
19789 2005-02-03 Jonathan Chambers <jonathan.chambers@ansys.com>
19791 * PropertyGridView.cs: Added. Patch by Jonathan Chambers
19793 2005-02-03 Peter Bartok <pbartok@novell.com>
19795 * ListBox.cs: Added missing attributes
19797 2005-02-03 Jordi Mas i Hernandez <jordi@ximian.com>
19800 - Fixes font height after font change
19801 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
19803 2005-02-02 Peter Bartok <pbartok@novell.com>
19805 * HandleData.cs: Introduced static methods to allow class
19806 to be more self-contained and track it's own HandleData objects
19807 * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
19808 HandleData to use new static methods
19810 2005-02-02 Jordi Mas i Hernandez <jordi@ximian.com>
19813 - Fixes default size and PreferredHeight
19815 - ObjectCollection.Insert implementation
19821 - ObjectCollection.Insert implementation
19822 - No selection after clean
19825 2005-01-31 John BouAntoun <jba-mono@optusnet.com.au>
19827 * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
19829 2005-02-01 Jordi Mas i Hernandez <jordi@ximian.com>
19832 - Caches ItemHeight calculation for OwnerDrawVariable
19833 - Handles dropdown properly
19834 - Fixes several minor bugs
19836 2005-01-31 Jordi Mas i Hernandez <jordi@ximian.com>
19839 - Fixes 71946 and 71950
19840 - Fixes changing Multicolumn on the fly
19841 - Fixes keyboard navigation on Multicolumn listboxes
19843 2005-01-31 Geoff Norton <gnorton@customerdna.com>
19845 * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
19846 crash reporter log.
19848 2005-01-31 Geoff Norton <gnorton@customerdna.com>
19850 * XplatUIOSX.cs: Allow applications to actually exit.
19852 2005-01-31 Geoff Norton <gnorton@customerdna.com>
19854 * XplatUIOSX.cs: SetWindowStyle implemented. Reposition views in
19855 their parent at creation time rather than lazily later. Fixes a major
19856 regression we were experiencing.
19858 2005-01-31 John BouAntoun <jba-mono@optusnet.com.au>
19860 * ThemeWin32Classic.cs: more date time picker painting fixes
19861 * DateTimePicker.cs: more monthcalendar drop down fixes
19862 * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
19864 2005-01-31 Jordi Mas i Hernandez <jordi@ximian.com>
19867 - When moving the thumb going outside the control should stop the moving
19868 - Adds the firing of missing events
19869 - Fixes no button show if Size is not specified
19870 - End / Home keys for keyboard navigation
19872 2005-01-30 Peter Bartok <pbartok@novell.com>
19874 * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
19875 sanity check to prevent theoretical loop
19876 * XplatUIWin32.cs (SetVisible): Removed debug output
19877 * XplatUIX11.cs (SystrayChange): Added sanity check
19878 * ScrollableControl.cs (OnVisibleChanged): Now calls base method
19879 * Control.cs (OnVisibleChanged): Added workaround for ParentForm
19880 behaviour, valid until the X11 client window rewrite is done
19881 * TextBox.cs (ctor): Setting proper default foreground and background
19884 2005-01-30 John BouAntoun <jba-mono@optusnet.com.au>
19886 * Theme: Added DrawDateTimePicker to interface
19887 * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
19888 * DateTimePicker.cs: Created (still needs keys and painting code)
19889 * DateTimePickerFormat.cs: added
19890 * MonthCalendar.cs: fixed CreateParams for popup window mode
19892 2005-01-29 Peter Bartok <pbartok@novell.com>
19894 * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
19895 this should also the calculations for ligher/darker
19896 * Theme.cs: Fixed defaults for ScrollBar widths/heights
19898 2005-01-29 Peter Bartok <pbartok@novell.com>
19900 * ArrangeDirection.cs: Added
19901 * ArrangeStartingPositon.cs: Added
19902 * SystemInformation.cs: Implemented
19903 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19904 XplatUIX11.cs, Theme.cs: Added/implemented new static properties
19905 used by SystemInformation class
19906 * X11Strucs.cs: Added XSizeHints structure
19908 - Fixed CreateParams to make sure the menu window is always visible
19909 - TrackPopupMenu: Added check to make sure we don't draw the
19912 2005-01-29 Peter Bartok <pbartok@novell.com>
19914 * HandleData.cs: Added method for altering invalid area
19915 * TextBoxBase.cs: Implemented TextLength
19917 2005-01-28 Peter Bartok <pbartok@novell.com>
19919 * XplatUIX11.cs: Improvement over last patch, not sending
19920 the WM_PAINT directly anymore, instead we scroll any pending
19921 exposed areas and let the system pick out the WM_PAINT later
19923 2005-01-28 Peter Bartok <pbartok@novell.com>
19925 * SWF.csproj: Deleted, no longer used. Instead,
19926 Managed.Windows.Forms/SWF.csproj should be used
19927 * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
19928 directly, to avoid a potential race condition with the next
19931 2005-01-28 Peter Bartok <pbartok@novell.com>
19933 * XplatUI.cs: Made class internal
19935 2005-01-28 Jordi Mas i Hernandez <jordi@ximian.com>
19937 * CheckedListBox.cs:
19940 - Missing methods and events
19942 2005-01-27 Peter Bartok <pbartok@novell.com>
19944 * Application.cs (Run): Don't use form if we don't have one
19946 2005-01-27 Peter Bartok <pbartok@novell.com>
19948 * TextBoxBase.cs (get_Lines): Fixed index off by one error
19950 2005-01-27 Peter Bartok <pbartok@novell.com>
19952 * GridEntry.cs: Added; Patch by Jonathan S. Chambers
19953 * GridItem.cs: Added; Patch by Jonathan S. Chambers
19954 * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
19955 * GridItemType.cs: Added; Patch by Jonathan S. Chambers
19956 * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
19957 * PropertySort.cs: Added; Patch by Jonathan S. Chambers
19958 * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19959 * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
19960 * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19961 * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19962 * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19963 * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
19965 2005-01-27 Jordi Mas i Hernandez <jordi@ximian.com>
19968 - Draw focus on Simple Combobox
19969 - Fixes drawing issues
19972 2005-01-27 Peter Bartok <pbartok@novell.com>
19975 - Place window in default location, instead of hardcoded 0/0
19976 - Send initial LocationChanged event
19978 - UpdateBounds after creation to find out where the WM placed us
19979 - Make sure that if the ParentForm changes location the Form
19981 * XplatUIX11.cs: XGetGeometry will not return the coords relative
19982 to the root, but to whatever the WM placed around us.
19983 Translate to root coordinates before returning toplevel
19985 * XplatUIWin32.cs: Removed debug output
19986 * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
19987 flag to GetWindowPos, to allow translation of coordinates on X11
19989 2005-01-27 Jordi Mas i Hernandez <jordi@ximian.com>
19991 * ListBox.cs: connect LostFocus Event
19993 2005-01-27 Peter Bartok <pbartok@novell.com>
19995 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
19996 XplatUIX11.cs: Extended the Systray API
19997 * Form.cs: Removed debug output
19998 * Application.cs: Fixed focus assignment, always need to call
19999 XplatUI.Activate() since Form.Activate() has rules that may
20001 * NotifyIcon.cs: Should be complete now
20002 * ToolTip.cs: Worked around possible timer bug
20004 2005-01-27 Jackson Harper <jackson@ximian.com>
20007 - Only invalidate the effected tabs when the
20008 selected index changes. This reduces drawing and gets rid of some
20010 - Only refresh if the tabs need to be shifted, otherwise only
20011 invalidate the slider button.
20012 - On windows the tabs are not filled to right if the slider is
20015 2005-01-27 Jackson Harper <jackson@ximian.com>
20017 * TabControl.cs: Only refresh on mouseup if we are showing the
20018 slider. Also only invalidate the button whose state has changed.
20020 2005-01-26 Peter Bartok <pbartok@novell.com>
20022 * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
20023 * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
20024 and SystrayRemove() methods
20025 * XplatUIOSX.cs: Stubbed Systray methods
20027 - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
20029 - Fixed broken XChangeProperty calls (marshalling messed up things)
20030 * X11Structs.cs: Added enums and structs required for Size hinting
20031 * NotifyIcon.cs: Added & implemented
20033 2005-01-26 Jackson Harper <jackson@ximian.com>
20035 * TabControl.cs: Space vertically layed out tabs properly.
20037 2005-01-26 Peter Bartok <pbartok@novell.com>
20039 * Form.cs (CreateClientParams): Always set the location to 0,0
20040 since we're a child window.
20042 * Control.cs (SetVisibleCore): Always explicitly setting the location
20043 of a toplevel window, apparently X11 doesn't like to move windows
20044 while they're not mapped.
20046 2005-01-26 Jackson Harper <jackson@ximian.com>
20048 * TabControl.cs: Implement FillToRight size mode with vertically
20051 2005-01-26 Jordi Mas i Hernandez <jordi@ximian.com>
20053 * ControlPaint.cs, ThemeWin32Classic.cs
20054 - Fixes DrawFocusRectangle
20056 2005-01-26 Jordi Mas i Hernandez <jordi@ximian.com>
20059 - MenuBar tracking only starts when item is first clicked
20060 - Fixes menu hidding for multiple subitems
20061 - Unselect item in MenuBar when item Executed
20064 2005-01-25 Jordi Mas i Hernandez <jordi@ximian.com>
20067 - IsInputKey for ListBox
20070 - Shift and Control item selection
20071 - Implement SelectionMode.MultiExtended
20072 - Fixes RightToLeft
20074 - IsInputKey implemented
20075 - Do not generate OnTextChangedEdit on internal txt changes
20077 2005-01-23 Peter Bartok <pbartok@novell.com>
20079 * AccessibleObject.cs: Partially implemented Select()
20080 * MonthCalendar.cs: Added missing attributes and events
20081 * Form.cs: Fixed CreateParams behaviour, now controls derived from
20082 form can properly override CreateParams.
20083 * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
20084 XplatUIX11.cs: Dropped RefreshWindow method, not needed if
20085 Control performs Invalidate & Update
20086 * NativeWindow (CreateHandle): Added special handling for Form
20087 and Form.FormParent classes to allow overriding of From.CreateParams
20089 - ControlNativeWindow: Renamed 'control' variable to more intuitive
20091 - ControlNativeWindow: Added Owner property
20092 - Removed usage of Refresh() on property changes, changed into
20093 Invalidate(), we need to wait until the queue is processed for
20094 updates, direct calls might cause problems if not all vars for
20095 Paint are initialized
20096 - Added call to UpdateStyles() when creating the window, to set any
20097 styles that CreateWindow might have ignored.
20098 - Added support for Form CreateParent overrides to UpdateStyles()
20099 * MessageBox.cs: Removed no longer needed FormParent override stuff,
20100 CreateParams are now properly overridable
20101 * CommonDialog.cs: Removed no longer needed FormParent override stuff,
20102 CreateParams are now properly overridable
20104 2005-01-23 Miguel de Icaza <miguel@ximian.com>
20106 * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
20109 Capture LostFocus and OnTextBoxChanged. The later introduces a
20110 recursive invocation that I have not figured out yet.
20112 Reset the timer when not using (it was accumulating).
20115 (OnTextBoxChanged): Set UserEdit to true here to track whether the
20116 user has made changes that require validation.
20118 Reset changing to avoid loops.
20120 2005-01-22 Miguel de Icaza <miguel@ximian.com>
20122 * NumericUpDown.cs: Display value at startup.
20124 * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
20127 * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
20128 filled in. Added some basic parsing of text.
20130 Still missing the OnXXX method overrides, and figuring out the
20131 events that must be emitted.
20133 * UpDownBase.cs: Handle UserEdit on the Text property.
20135 2005-01-22 Jordi Mas i Hernandez <jordi@ximian.com>
20138 - Fixes IntegralHeight
20141 2005-01-21 Jackson Harper <jackson@ximian.com>
20143 * TabControl.cs: Set the SelectedIndex property when SelectedTab
20144 is set so that the page visibility is updated and the tabs are
20147 2005-01-21 Jackson Harper <jackson@ximian.com>
20149 * TabControl.cs: Use cliping rectangle for blitting. Give the
20150 theme the clipping rect so we can do clipping while
20151 drawing. Remove some debug code.
20153 2005-01-21 Jackson Harper <jackson@ximian.com>
20155 * TabPage.cs: Add a new method so tab pages can force the tab
20156 control to recalculate the tab page sizes.
20157 * TabControl.cs: UpdateOwner needs to make the tab control recalc
20160 2005-01-20 Jackson Harper <jackson@ximian.com>
20162 * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
20164 2005-01-20 Jackson Harper <jackson@ximian.com>
20166 * TreeView.cs: Set the bounds for nodes properly. They were
20167 getting screwed up when checkboxes were not enabled, but images
20170 2005-01-20 Jordi Mas i Hernandez <jordi@ximian.com>
20173 - Owner draw support
20176 2005-01-20 Jackson Harper <jackson@ximian.com>
20178 * XplatUIStructs.cs: More misc keys
20179 * X11Keyboard.cs: Ignore some control keys.
20181 2005-01-20 Jackson Harper <jackson@ximian.com>
20183 * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
20184 * X11Keyboard.cs: Set the AltGr mask when we get a key event.
20186 2005-01-19 Peter Bartok <pbartok@novell.com>
20188 * Control.cs: Un-selecting the control when it is loosing focus
20190 2005-01-19 Jackson Harper <jackson@ximian.com>
20192 * TreeView.cs: Hook up to the text controls leave event so we can
20193 end editing when the users clicks outside the text box.
20195 2005-01-19 Jackson Harper <jackson@ximian.com>
20197 * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
20198 get set in the conversion array.
20200 2005-01-19 Peter Bartok <pbartok@novell.com>
20202 * Application.cs (ModalRun): Added a call to CreateControl to ensure
20203 focus is properly set
20205 - Added missing attributes
20206 - removed styles, those are already set in the base class
20208 - Added missing attributes
20209 - Added clip window styles
20210 * CheckBox.cs: Added missing attributes
20212 - FormParentWindow.CreateParams: Added required clip styles
20213 * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
20214 also filters modifier keys
20216 - Added assignment of Accept and Cancel button to enable Enter
20217 and Esc keys in MessageBox dialogs
20218 - FormParentWindow.CreateParams: Added required clip styles
20219 * RadioButton.cs: Added missing attributes
20220 * TextControl.cs: No longer draws selection if control does not
20223 - Now draws simple rectangle around test area to make it obvious
20224 there's a control. This is a hack until we properly support borders
20225 - A few simple fixes to support selections better, now erases selected
20226 text when typing, and resets selection when using movement keys
20228 2005-01-19 Miguel de Icaza <miguel@ximian.com>
20230 * UpDownBase.cs: Added some new properties.
20232 * DomainUpDown.cs: Implement a lot to get my test working.
20234 2005-01-19 Geoff Norton <gnorton@customerdna.com>
20236 * XplatUIOSX.cs: Fix a minor bug to bring the close box back
20238 2005-01-19 Geoff Norton <gnorton@customerdna.com>
20240 * OSXStructs (WindowAttributes): Fixed csc complaints
20242 2005-01-19 Geoff Norton <gnorton@customerdna.com>
20245 OSXStructs.cs: Initial refactor to move enums and consts into
20246 OSXStructs and use them in the driver for greater readability.
20248 2005-01-19 Geoff Norton <gnorton@customerdna.com>
20250 * XplatUIOSX.cs: Initial support for Standard Cursors.
20251 * OSXStructs.cs: Move our structs here; added ThemeCursor enum
20253 2005-01-19 Jordi Mas i Hernandez <jordi@ximian.com>
20255 * ComboBox.cs: ability to change style when the ctrl is already
20256 created, missing methods and events, bug fixes, signature fixes
20258 2005-01-19 Peter Bartok <pbartok@novell.com>
20260 * Cursors.cs (ctor): Added ctor to fix signature
20262 2005-01-18 Peter Bartok <pbartok@novell.com>
20264 * Button.cs: Implemented DoubleClick event
20266 - Fixed keyboard handling to behave like MS, where the press of
20267 Spacebar is equivalent to a mousedown, and the key release is
20268 equivalent to mouseup. Now a spacebar push will give the same
20269 visual feedback like a mouse click.
20270 - Added missing attributes
20271 - Added ImeModeChanged event
20272 - Added support for generating DoubleClick event for derived classes
20274 - Implemented DoubleClick event
20275 - Added missing attributes
20276 * CommonDialog.cs: Added missing attribute
20277 * ContextMenu.cs: Added missing attributes
20279 - AutoChecked buttons do not allow to be unselected when clicked
20280 (otherwise we might end up with no selected buttons in a group)
20281 - Added missing attributes
20282 - Implemented DoubleClickEvent
20283 * ThreadExceptionDialog.cs: Enabled TextBox code
20285 2005-01-18 Peter Bartok <pbartok@novell.com>
20287 * Form.cs: Removed debug output
20288 * Button.cs: Added support for DoubleClick method
20290 2005-01-18 Peter Bartok <pbartok@novell.com>
20293 - Added method to parent window that allows triggering size
20294 calculations when a menu is added/removed
20295 - set_Menu: Cleaned up mess from early days of Form and Control,
20296 now properly triggers a recalc when a menu is added/removed
20297 - Added case to select form itself as focused form if no child
20299 - Added PerformLayout call when showing dialog, to ensure properly
20302 - Select(): Made internal so Form can access it
20303 - Focus(): Only call Xplat layer if required (avoids loop), and sets
20305 * Application.cs (Run): Removed hack and calls PerformLayout instead
20306 to trigger calculation when Form becomes visible
20308 2005-01-18 Jordi Mas i Hernandez <jordi@ximian.com>
20310 * ComboBox.cs: fixes for ownerdraw
20312 2005-01-18 Peter Bartok <pbartok@novell.com>
20315 - Sentinel is no longer static, each Document gets it's own, this
20316 avoids locking or alternatively overwrite problems when more
20317 than one text control is used simultaneously.
20318 - Switched to use Hilight and HilightText brushes for text selection
20320 * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
20322 2005-01-18 Peter Bartok <pbartok@novell.com>
20325 - Hooked up the following events:
20333 o SystemColorsChanged
20334 o ParentFontChanged
20336 - Removed debug output
20337 - Added a call to the current theme's ResetDefaults when a color change
20339 * Form.cs: Now setting the proper ImeMode
20340 * Theme.cs: Defined a method to force recreation of cached resources
20341 and rereading of system defaults (ResetDefaults())
20342 * ThemeWin32Classic.cs: Added ResetDefaults() stub
20344 2005-01-17 Peter Bartok <pbartok@novell.com>
20346 * Control.cs: Added missing attributes
20348 2005-01-17 Jackson Harper <jackson@ximian.com>
20350 * TreeNode.cs: Implement editing. Add missing properties selected
20352 * TreeView.cs: Implement node editing. Also some fixes to use
20353 Invalidate (invalid area) instead of Refresh when selecting.
20355 2005-01-17 Peter Bartok <pbartok@novell.com>
20358 - Implemented InvokeGotFocus() method
20359 - Implemented InvokeLostFocus() method
20360 - Implemented InvokePaint() method
20361 - Implemented InvokePaintBackground() method
20362 - Implemented InvokeClick() method
20363 - Implemented FindForm() method
20364 - Implemented RectangleToClient() method
20365 - Implemented ClientToRectangle() method
20366 - Implemented ResetBackColor() method
20367 - Implemented ResetCursor() method
20368 - Implemented ResetFont() method
20369 - Implemented ResteForeColor() method
20370 - Implemented ResetImeMode() method
20371 - Implemented ResetLeftToRight() method
20372 - Implemented ResetText() method
20373 - Implemented Scale() methods
20374 - Implemented ScaleCore() method
20375 - Implemented Update() method
20376 - Removed unused variables
20377 - Stubbed AccessibilityNotifyClients and
20378 ControlAccessibleObject.NotifyClients() methods (dunno what to do
20380 - Now setting proper default for RightToLeft property
20381 - Fixed bug in SetClientSizeCore that would cause windows to get
20383 - Now sending Click/DoubleClick events
20384 - Now selecting controls when left mouse button is clicked on
20386 * AccessibleEvents.cs: Added
20387 * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
20388 * XplatUIOSX.cs: Stubbed UpdateWindow() method
20389 * XplatUIWin32.cs: Implemented UpdateWindow() method
20390 * XplatUIX11.cs: Implemented UpdateWindow() method
20391 * Form.cs: Removed stray semicolon causing CS0162 warning
20392 * ThemeWin32Classic.cs: Fixed unused variable warnings
20393 * ScrollableControl.cs: Now calls base method for ScaleCore
20394 * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
20395 style to avoid interference with internal click handler (which is
20396 different than standard Control click handling)
20398 - Now unchecks all sibling radio buttons when control is
20399 selected (Fixes #68756)
20400 - Removed internal tabstop variable, using the one inherited from
20403 2005-01-17 Jackson Harper <jackson@ximian.com>
20405 * NavigateEventArgs.cs: Fix base type.
20406 * LinkLabel.cs: Sig fix
20408 2005-01-17 Jackson Harper <jackson@ximian.com>
20410 * TreeView.cs: Only invalidate the effected nodes bounds when
20413 2005-01-13 Jordi Mas i Hernandez <jordi@ximian.com>
20415 * XplatUIWin32.cs: fixes Win32 marshaling
20416 * XplatUIX11.cs: fixes method signature
20418 2005-01-17 Peter Bartok <pbartok@novell.com>
20420 * XplatUIX11.cs: Clean up resources when we no longer need them
20422 2005-01-17 Peter Bartok <pbartok@novell.com>
20424 * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
20425 OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
20426 and DestroyCursor() methods.
20427 * Cursor.cs: Partially implemented, now supports standard cursors;
20428 still contains some debug code
20429 * Cursors.cs: Implemented class
20431 - WndProc(): Added handling of WM_SETCURSOR message, setting the
20433 - Implemented Cursor property
20434 - Replaced break; with return; more straightforwar and possibly
20436 - Now properly setting the result for WM_HELP
20437 * X11Structs.cs: Added CursorFontShape enum
20438 * XplatUIStructs.cs:
20439 - Added StdCursor enum (to support DefineStdCursor() method)
20440 - Added HitTest enum (to support sending WM_SETCURSOR message)
20442 - Now sends the WM_SETCURSOR message
20443 - Implemented new cursor methods
20444 * XplatUIOSX.cs: Stubbed new cursor methods
20446 - Implemented new cursor methods
20447 - Added GetSystemMetrics function and associated enumeration
20449 2005-01-15 Peter Bartok <pbartok@novell.com>
20452 - WndProc(): Now handles EnableNotifyMessage
20453 - SelectNextControl(): Fixed bug where if no child or sibling
20454 controls exist we looped endlessly
20456 2005-01-14 Jackson Harper <jackson@ximian.com>
20458 * TreeView.cs: Recalculate the tab pages when a new one is added
20459 so that the proper bounding rects are created.
20461 2005-01-14 Jackson Harper <jackson@ximian.com>
20463 * TreeView.cs: Draw a gray box instead of a grip in the lower
20464 right hand corner when there are both horizontal and vertical
20467 2005-01-14 Jackson Harper <jackson@ximian.com>
20469 * Control.cs: When erasing backgrounds use FromHwnd instead of
20470 FromHdc when there is a NULL wparam. This occurs on the X driver.
20471 * XplatUIX11.cs: Set the wparam to NULL.
20473 2005-01-13 Jackson Harper <jackson@ximian.com>
20475 * PictureBox.cs: Implement missing methods (except ToString, need
20476 to test that on windows) and events. When visibility is changed we
20477 need to redraw the image because the buffers are killed. When size
20478 is changed refresh if the sizemode needs it.
20480 2005-01-13 Peter Bartok <pbartok@novell.com>
20482 * Control.cs (SelectNextControl): Was using wrong method to select
20485 2005-01-13 Jordi Mas i Hernandez <jordi@ximian.com>
20487 * ComboBox.cs: fixes dropstyle
20489 2005-01-13 Peter Bartok <pbartok@novell.com>
20492 - Implemented Select() override
20493 - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
20494 - Now sets keyboard focus on startup
20495 * Control.cs (SelectNextControl): Now properly handles directed=true
20497 - WndProc: Now passes tab key on to base if AcceptTabChar=false
20498 - Added (really bad) focus rectangle (mostly for testing)
20499 * TextBox.cs: Added code to handle getting/loosing focus and invalidating
20500 to enforce redraw on focus changes
20501 * ContainerControl.cs:
20502 - Fixed detection of Shift-Tab key presses
20503 - Fixed traversal with arrow keys
20504 * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
20505 gonna keep this or if it's complete yet
20507 2005-01-13 Jordi Mas i Hernandez <jordi@ximian.com>
20509 * ComboBox.cs: missing properties, fixes
20511 2005-01-13 Peter Bartok <pbartok@novell.com>
20513 * Panel.cs (ctor): Setting Selectable window style to off
20514 * Splitter.cs (ctor): Setting Selectable window style to off
20515 * GroupBox.cs (ctor): Setting Selectable window style to off
20516 * Label.cs (ctor): Setting Selectable window style to off
20518 2005-01-12 Miguel de Icaza <miguel@ximian.com>
20520 * UpDownBase.cs (InitTimer): If the timer has been already
20521 created, enable it.
20523 Use a TextBox instead of a Label.
20525 2005-01-12 Jackson Harper <jackson@ximian.com>
20527 * TreeView.cs: Refresh the tree after sorting the nodes. Always
20528 draw the connecting node lines (when ShowLines is true).
20529 * TreeNode.cs: The nodes index can now be updated. This is used
20530 when a node collection is sorted.
20531 * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
20532 insert or an existing unsorted node collection can be sorted.
20534 2005-01-12 Peter Bartok <pbartok@novell.com>
20536 * ContainerControl.cs: Implemented ProcessDialogKeys()
20538 2005-01-12 Peter Bartok <pbartok@novell.com>
20541 - Implemented SelectNextControl() method
20542 - Several focus related bug fixes
20543 - Fixed Docking calculations to match MS documentation and
20546 2005-01-12 Jordi Mas i Hernandez <jordi@ximian.com>
20548 * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
20551 2005-01-12 Peter Bartok <pbartok@novell.com>
20554 - Fixed broken Contains() method
20555 - Implemented GetNextControl() method. Finally. This is the pre-
20556 requisite for focus handling.
20558 2005-01-12 Peter Bartok <pbartok@novell.com>
20560 * OSXStrucs.cs: Added
20562 2005-01-12 Peter Bartok <pbartok@novell.com>
20565 - Removed PeekMessageFlags
20566 - Implemented SetWindowStyle() method
20567 * XplatUIStructs.cs: Added PeekMessageFlags
20568 * X11Structs: Added missing border_width field to XWindowChanges struct
20570 - PeekMessage: Now throws exception if flags which are not yet
20571 supported are passed
20572 - Implemented SetWindowStyle() method
20573 - Fixed SetZOrder to handle AfterHwnd properly
20574 * XplatUI.cs: Added SetWindowStyle() method
20575 * XplatUIDriver.cs: Added SetWindowStyle() abstract
20577 - Implemented UpdateStyles() method
20578 - Implemented UpdateZOrder() method
20579 * XplatUIOSX.cs: Added SetWindowStyle() stub
20581 2005-01-12 Geoff Norton <gnorton@customerdna.com>
20583 * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
20587 2005-01-11 Jackson Harper <jackson@ximian.com>
20589 * TreeView.cs: Still need to draw lines to siblings even if out of
20590 the current node is out of the clip.
20592 2005-01-11 Jackson Harper <jackson@ximian.com>
20594 * TreeView.cs: When setting the hbar/vbar/grip position use
20595 SetBounds so that perform layout is only called once. Also suspend
20596 and resume layout so layout is only done once for all controls.
20597 - Removed some debug fluff
20598 * SizeGrip.cs: Call base implmentation in overriding methods.
20599 - When visibility is changed the drawing buffers are killed so we
20602 2005-01-11 Jackson Harper <jackson@ximian.com>
20604 * TreeView.cs: Calculate the open node count while drawing. This
20605 saves us an entire tree traversal for every paint operation. Use
20606 a member var for the open node count so less vars are passed around.
20608 2005-01-11 John BouAntoun <jba-mono@optusnet.com.au>
20610 * MonthCalendar.cs:
20611 - fixed selection to use mousemove, not mouse polling on timer
20612 * ThemeWin32Classic.cs
20613 - removed redundant unused variable "no_more_content"
20615 2005-01-11 Peter Bartok <pbartok@novell.com>
20617 * XplatUIX11.cs (DoEvents): Needs to return when no more events
20618 are pending, so it now calls PeekMessage instead of GetMessage;
20619 implemented a incomplete version of PeekMessage
20621 2005-01-11 Peter Bartok <pbartok@novell.com>
20623 * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
20625 * TextBoxBase.cs: Added sending of TextChanged event
20627 2005-01-10 Jackson Harper <jackson@ximian.com>
20629 * TreeView.cs: Try not to draw outside the clipping rectangle on
20632 2005-01-10 Jordi Mas i Hernandez <jordi@ximian.com>
20634 * ComboBox.cs: keyboard navigation, item navigation, bug fixes
20636 2005-01-10 Jackson Harper <jackson@ximian.com>
20639 - Implement fast scrolling. Now only the newly
20640 exposed nodes are drawn and the old image is moved using the
20641 XplatUI::ScrollWindow method.
20642 - Factor in height of nodes when calculating whether or not the
20643 node is in the clipping rect.
20645 2005-01-10 Jackson Harper <jackson@ximian.com>
20647 * TreeNodeCollection.cs: Refresh the tree when a new node is added.
20649 2005-01-10 Peter Bartok <pbartok@novell.com>
20651 * Application.cs: Added temporary hack to resolve all our resize
20652 required issues on startup. This will get fixed properly at
20653 some point in the future
20655 2005-01-10 Jackson Harper <jackson@ximian.com>
20657 * SizeGrip.cs: New internal class that is used as a sizing
20658 grip control...hence the name.
20660 2005-01-10 Peter Bartok <pbartok@novell.com>
20662 * Control.cs: Implemented proper TabIndex handling, now assigning
20663 a tabindex when a control is added to a container
20664 * GroupBox.cs (ctor): Now sets the Container style bit, required
20665 for Control.GetNextControl()
20667 2005-01-09 Jackson Harper <jackson@ximian.com>
20669 * TextBoxBase.cs: Clear window when scrolling (fixes build).
20671 2005-01-09 Peter Bartok <pbartok@novell.com>
20673 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
20674 XplatUIX11.cs: Added ability to control ScrollWindow expose and
20675 an overload for ScrollWindow to allow only scrolling a rectangle
20677 2005-01-09 Peter Bartok <pbartok@novell.com>
20680 - Implemented SetDesktopBounds method
20681 - Implemented SetDesktopLocation method
20683 2005-01-08 Jackson Harper <jackson@ximian.com>
20685 * TreeView.cs: Only set the vbar's Maximum and LargeChange when
20686 the node count has changed, this removes to VScroll::Refresh calls
20689 2005-01-08 Geoff Norton <gnorton@customerdna.com>
20691 * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
20693 2005-01-07 Jackson Harper <jackson@ximian.com>
20695 * TreeNode.cs: Just update the single node when it is
20696 checked. Don't refresh after toggling, the Expand/Collapse already
20698 * TreeView.cs: Respect clipping a little more when drawing. Try
20699 not to redraw things that don't need to be redrawn. Just hide the
20700 scrollbars when they are no longer needed instead of removing
20701 them, so they don't have to be created again and again.
20703 2005-01-07 Geoff Norton <gnorton@customerdna.com>
20705 * XplatUIOSX.cs (SetCaretPos): We need to translate the view
20706 coordinates to window space to place the caret properly, FIXED.
20707 Implement GetWindowState & SetWindowState
20709 2005-01-06 Peter Bartok <pbartok@novell.com>
20712 - Implemented ClientSize property
20713 - Implemented DesktopBounds property
20714 - Implemented DesktopLocation property
20715 - Implemented IsRestrictedWindow property
20716 - Implemented Size property
20717 - Implemented TopLevel property
20718 - Implemented FormWindowState property
20720 - Implemented GetTopLevel() method
20721 - Implemented SetTopLevel() method
20722 * X11Structs.cs (Atom):
20723 - Added AnyPropertyType definition
20724 - Added MapState definiton and updated XWindowAttribute struct
20725 * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
20726 * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
20727 * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
20729 - Implemented GetWindowState() and SetWindowState() methods
20730 - Fixed Win32GetWindowLong return type
20732 - Introduced central function for sending NET_WM messages
20733 - Implemented GetWindowState() and SetWindowState() methods
20734 * TextBoxBase.cs (set_Lines):
20735 - Now uses Foreground color for text added via Text property (Duh!)
20736 - Added code to remember programmatically requested size (fixes
20737 behaviour when Multiline is set after Size)
20738 - Added AutoSize logic
20740 2005-01-06 Jackson Harper <jackson@ximian.com>
20742 * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
20744 2005-01-06 Jackson Harper <jackson@ximian.com>
20746 * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
20747 set to less then 0.
20749 2005-01-06 Jackson Harper <jackson@ximian.com>
20751 * ScrollableControl.cs: Lazy init the scrollbars.
20753 2005-01-06 Jackson Harper <jackson@ximian.com>
20755 * Theme.cs: Speed up getting pens and solid brushes, by using
20756 their ARGB as a hash instead of tostring and not calling Contains.
20758 2005-01-06 Peter Bartok <pbartok@novell.com>
20761 - Implemented OnActivated and OnDeactivate event trigger
20762 - Implemented Activate() method
20763 - Fixed ShowDialog() to activate the form that was active before
20764 the dialog was shown
20766 - Added global active_window var that tracks the currently active
20768 - Now always grabs Property changes from the root window to always
20769 catch changes on the active window property
20770 - Added code to PropertyNotify handler to send Active/Inactive
20771 messages when state changes. This puts X11 and Win32 en par on
20772 WM_ACTIVATE notifications (except for double notifications when
20773 the user clicks away from our modal window to another one of our
20776 2005-01-05 Jackson Harper <jackson@ximian.com>
20778 * ImageList.cs: Implment ctor
20780 2005-01-05 Geoff Norton <gnorton@customerdna.com>
20782 * XplatUIOSX.cs: Implement Activate/SetTopmost
20784 2005-01-05 Geoff Norton <gnorton@customerdna.com>
20786 * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
20788 2005-01-05 Geoff Norton <gnorton@customerdna.com>
20790 * XplatUIOSX.cs: Implement GetActive/SetFocus.
20792 2005-01-05 Peter Bartok <pbartok@novell.com>
20794 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
20795 XplatUIOSX.cs: Added GetActive method to return the currently
20796 active window for the application (or null, if none is active)
20798 - Implemented ActiveForm
20799 - Commented out owner assignment for modal dialogs (causes problems
20800 on Win32, since the owner will be disabled)
20801 - Reworked some Active/Focus handling (still incomplete)
20802 * CommonDialog.cs: Commented out owner assignment for modal dialogs
20803 (causes problems on Win32, since the owner will be disabled)
20804 * IWin32Window: Added ComVisible attribute
20806 2005-01-05 Peter Bartok <pbartok@novell.com>
20808 * ToolTip.cs (WndProc): Enable setting focus now that we have the
20809 required XplatUI functions.
20811 2005-01-05 Peter Bartok <pbartok@novell.com>
20813 * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
20814 XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
20815 to implement focus and activation handling; still incomplete and
20818 2005-01-04 Peter Bartok <pbartok@novell.com>
20820 * TextBoxBase.cs: Changed access level for Document property to
20821 match switch to internal for TextControl
20823 2005-01-04 Peter Bartok <pbartok@novell.com>
20825 * AccessibleObject: Added ComVisible attribute
20827 2005-01-04 Jackson Harper <jackson@ximian.com>
20829 * X11Keyboard.cs: Remove unneeded var.
20831 2005-01-04 Jackson Harper <jackson@ximian.com>
20833 * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
20835 * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
20836 ClientMessage. This makes apps exit cleanly (more often).
20838 2005-01-04 Jackson Harper <jackson@ximian.com>
20840 * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
20841 handling focus, return correct colors and fonts,
20842 * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
20843 handle selection, horizontal scrolling, and mouse interaction.
20845 2005-01-04 Peter Bartok <pbartok@novell.com>
20847 * ICommandExecutor.cs: Added
20848 * IDataGridColumnStyleEditingNotificationService.cs: Added
20849 * IFeatureSupport.cs: Added
20850 * IFileReaderService.cs: Added
20851 * IDataObject.cs: Added ComVisible attribute
20852 * AmbientProperties.cs: Added
20853 * BaseCollection.cs: Added missing attributes
20854 * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
20855 * BaseCollection.cs: Added missing attributes
20856 * Binding.cs: Added TypeConverter attribute
20857 * BindingContext.cs: Added DefaultEvent attribute
20858 * BindingsCollection.cs: Added DefaultEvent attribute
20859 * Button.cs: Added DefaultValue attribute
20860 * DragEventArgs.cs: Added ComVisible attribute
20861 * GiveFeedbackEventArgs.cs: Added ComVisible attribute
20862 * KeyEventArgs.cs: Added ComVisible attribute
20863 * KeyPressEventArgs.cs: Added ComVisible attribute
20864 * MouseEventArgs.cs: Added ComVisible attribute
20865 * NavigateEventArgs.cs: Added
20866 * NavigateEventHandler.cs: Added
20867 * FeatureSupport.cs: Added
20868 * OSFeature.cs: Added
20869 * Theme.cs: Added abstract Version property to support OSFeature
20870 * ThemeWin32Classic.cs: Added Version property to
20871 support OSFeature.Themes
20872 * ProgressBar.cs: Removed OnPaintBackground override, not required since
20873 the proper styles to avoid background drawing are set, also doesn't
20875 * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
20876 * QueryContinueDragEventArgs.cs: Added ComVisible attribute
20877 * ScrollEventArgs.cs: Added ComVisible attribute
20878 * SplitterEventArgs.cs: Added ComVisible attribute
20879 * AccessibleSelection.cs: Added Flags attribute
20880 * Appearance.cs: Added ComVisible attribute
20881 * Border3DSide.cs: Added ComVisible attribute
20882 * Border3DStyle.cs: Added ComVisible attribute
20883 * BorderStyle.cs: Added ComVisible attribute
20884 * DragAction.cs: Added ComVisible attribute
20885 * ErrorBlinkStyle.cs: Added
20886 * ScrollEventType.cs: Added ComVisible attribute
20887 * AnchorStyles.cs: Added Editor attribute
20888 * DockStyle.cs: Added Editor attribute
20889 * HorizontalAlignment.cs: Added ComVisible attribute
20890 * HelpEventArgs.cs: Added ComVisible attribute
20891 * PaintEventArgs.cs: Added IDisposable
20893 2005-01-04 Peter Bartok <pbartok@novell.com>
20895 * TextControl.cs: Switched Line, LineTag and Document classes to
20898 2005-01-04 Jordi Mas i Hernandez <jordi@ximian.com>
20900 * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
20901 Simple mode, fixes, IntegralHeight, etc.
20903 2005-01-04 Peter Bartok <pbartok@novell.com>
20905 * TextBoxBase.cs: Using proper font variable now
20907 2005-01-04 Peter Bartok <pbartok@novell.com>
20909 * Form.cs (ShowDialog): Set parent to owner, if provided
20910 * GroupBox.cs: Removed unused vars
20912 - Added GetHashCode() for Document and LineTag classes
20913 - Removed unused variables
20914 - Added CharIndexToLineTag() and LineTagToCharIndex() methods
20915 to allow translation between continuous char position and line/pos
20916 * CheckBox.cs: Removed vars that are provided by base class
20917 * RadioButton.cs: Removed vars that are provided by base class, added
20918 new keyword where required
20919 * LinkLabel.cs: Added new keyword where required
20920 * Control.cs (WndProc): Removed unused variable
20922 - Finished SelectionLength property
20923 - Implemented SelectionStart property
20924 - Implemented Text property
20925 - Removed unused vars
20926 * MessageBox.cs: Added new keyword where required
20927 * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
20929 * MenuAPI.cs: Added new keyword where required
20930 * ButtonBase.cs: Removed vars that are provided by base class, added
20931 new keyword where required
20932 * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
20933 argument to double, to allow compiling with csc 2.0 (Atsushi ran
20935 * Application.cs (Run): Now triggers the ThreadExit event
20936 * CommonDialog.cs: Added new keyword where required; now properly sets
20937 parent (owner) for dialog
20938 * XplatUIX11.cs: Commented out unused vars
20939 * StatusBar.cs: Fixed signature for Text property
20940 * TabPage.cs: Undid Jordi's removal of unused var, now using the var
20942 2005-01-04 Jordi Mas i Hernandez <jordi@ximian.com>
20944 * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
20945 TrackBar.cs, MonthCalendar.cs: remove unused vars
20947 2005-01-03 Jackson Harper <jackson@ximian.com>
20949 * ThemeWin32Classic.cs:
20950 * X11Keyboard.cs: Remove unused vars.
20952 2005-01-03 Peter Bartok <pbartok@novell.com>
20955 - set_Text: Tied into TextControl
20956 - set_TextAlignment: Tied into TextControl
20958 - Added alignment properties and implemented alignment handling
20959 and drawing (still has a bug, not generating proper expose events)
20960 - Added new Line() constructor to allow passing the line alignment
20961 - Fixed selection setting, properly handling end<start now
20962 - Added aligment considerations to RecalculateDocument()
20964 - Now properly enforces control height for single line controls
20965 - Added support for CharacterCasing
20966 - Added IsInputKey override
20967 - Fixed Keys.Enter logic
20968 - Added SetBoundsCore override
20969 - Fixed mouse selection handling
20971 2005-01-03 Jackson Harper <jackson@ximian.com>
20974 - Collapse and uncheck all nodes when CheckBoxes is disabled.
20975 - Checkboxes are always aligned to the bottom of the node,
20976 regardless of item height.
20977 - Use the node bounds to draw the text so we can center it when
20978 the item height is greater then the font height.
20979 - Node::Bounds are only the text part of the node.
20980 * TreeNode.cs: New method to combine collapsing and unchecking all
20983 2005-01-02 Jackson Harper <jackson@ximian.com>
20985 * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
20986 * TreeNode.cs: Add a bounding box for the checkbox, refresh the
20987 tree when a check is changed. TODO: Only refresh the checked node.
20989 2004-12-30 Jackson Harper <jackson@ximian.com>
20991 * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
20992 * TreeNode.cs: When collapsing make sure to never collapse the
20995 2004-12-29 Jackson Harper <jackson@ximian.com>
20997 * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
20999 2004-12-28 Zoltan Varga <vargaz@freemail.hu>
21001 * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
21003 2004-12-28 Peter Bartok <pbartok@novell.com>
21005 * MessageBox.cs (get_CreateParams): Don't use owner var if it's
21008 2004-12-28 Peter Bartok <pbartok@novell.com>
21010 * Control.cs (WndProc): Added WM_HELP handler, now generates
21011 HelpRequested event
21012 * Form.cs: Added HelpButton property and required support code
21013 * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
21015 2004-12-28 Peter Bartok <pbartok@novell.com>
21018 - Made DialogForm.owner variable internal
21019 - Added check to ensure owner form is set before setting
21020 owner properties in CreateParams
21022 2004-12-28 Geoff Norton <gnorton@customerdna.com>
21024 * XplatUIOSX.cs: Implement mouse hovering. Fix QDPoint struct to avoid
21025 swizzling. Implement ClientToScreen and ScreenToClient. Implement
21026 GetCursorPos. Fix major visibility issues. Rework the windowing
21027 system to support borderless/titleless windows (implements menus).
21028 Fix GetWindowPos. Implement initial background color support for
21031 2004-12-28 Peter Bartok <pbartok@novell.com>
21033 * Form.cs (get_CreateParams): Make sure we have an owner before using
21034 the owner variable. Implement proper default if no owner exists
21036 2004-12-28 Peter Bartok <pbartok@novell.com>
21038 * In preparation for making Managed.Windows.Forms the default build target
21039 for System.Windows.Forms, the following stubbed files were added.
21040 Dialogs are currently being implemented by contributors and are only
21041 short-term place holders.
21042 * ColorDialog.cs: Initial check-in (minmal stub)
21043 * DataGrid.cs: Initial check-in (minimal stub)
21044 * DataGridLineStyle.cs: Initial check-in (minimal stub)
21045 * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
21046 * DataGridTableStyle.cs: Initial check-in (minimal stub)
21047 * FontDialog.cs: Initial check-in (minimal stub)
21048 * FileDialog.cs: Initial check-in (minimal stub)
21049 * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
21050 * GridTableStylesCollection.cs: Initial check-in (minimal stub)
21051 * OpenFileDialog: Initial check-in (minimal stub)
21052 * IComponentEditorPageSite.cs: Initial check-in
21053 * Splitter.cs: Initial check-in (for Jackson)
21054 * SplitterEventArgs.cs: Initial check-in (for Jackson)
21055 * SplitterEventHandler.cs: Initial check-in (for Jackson)
21056 * TextBox.cs: Initial check-in; still needs some wiring to
21057 TextControl backend
21058 * Form.cs: Implemented ControlBox property
21059 * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
21060 * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
21061 * TextControl.cs: Added selection functionality; added todo header
21063 - Implemented Lines property
21064 - Implemented TextHeight property
21065 - Implemented SelectedText property
21066 - Implemented SelectionLength property
21067 - Implemented SelectAll method
21068 - Implemented ToString method
21069 - Removed and cleaned up some debug code
21070 - Implemented (still buggy) mouse text selection
21072 2004-12-27 Jordi Mas i Hernandez <jordi@ximian.com>
21074 * ComboBox.cs: Complete DropDownList implementation, fixes.
21076 2004-12-26 Jordi Mas i Hernandez <jordi@ximian.com>
21078 * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
21079 * ComboBoxStyle.cs: ComboBoxStyle enum
21080 * ComboBox.cs: Initial work on ComboBox control
21082 2004-12-21 Peter Bartok <pbartok@novell.com>
21084 * Control.cs (ctor, CreateParams): Moved setting of is_visible
21085 forward so that anything that creates a window gets the default,
21086 also no longer uses Visible property in CreateParams to avoid
21087 walking up the parent chain and possibly get the wrong visible
21088 status. Fixed IsVisible to no longer walk up to the parent.
21090 2004-12-21 Peter Bartok <pbartok@novell.com>
21092 * Form.cs (ShowDialog): Unset modality for the proper window
21094 2004-12-20 Peter Bartok <pbartok@novell.com>
21096 * CommonDialog.cs: Initial check-in
21098 2004-12-20 Peter Bartok <pbartok@novell.com>
21100 * Control.cs (Visible): Now uses the parent window instead of the
21101 client area window for the property
21104 - ShowDialog(): Now uses the proper window for modality
21105 - The default visibility state for the form parent is now false. This
21106 will prevent the user from seeing all the changes to the form and
21107 its controls before the application hits Application.Run()
21108 - Removed some stale commented out code
21111 - Added FindWindow() method to have a method to check for existence
21113 - Added ability to override default exception handling (for example
21114 when debugging with VS.Net; to do this the ExternalExceptionHandler
21116 - Removed some useless debug output
21119 - Removed r37929 (SetModal patch from Ashwin Bharambe), was
21120 not working as expected
21121 - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
21122 property to allow switching back to the modal window if focus is
21123 given to another one of our windows (Application Modal)
21124 - Now only sets override_redirect if we create a window
21126 - Moved EventMask selection before mapping of newly created window
21127 so we can catch the map event as well
21128 - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
21129 - Added various Atom related DllImports
21130 - Implemented Exit() method
21131 - .ctor() : No longer shows window if WS_VISIBLE is not defined
21132 in the CreateParams
21134 * MessageBox.cs: Now properly deals with the FormParent window by
21135 providing an override the FormParent CreateParams property to
21136 set as POPUP instead of OVERLAPPED window.
21138 2004-12-19 Geoff Norton <gnorton@customerdna.com>
21140 * XplatUIOSX.cs: Implement DestroyWindow. Implement ScrollWindow
21141 Minor code cleanup.
21143 2004-12-19 Geoff Norton <gnorton@customerdna.com>
21145 * XplatUIOSX.cs (SetModal): Implement this method on OSX.
21147 2004-12-18 Peter Bartok <pbartok@novell.com>
21149 * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
21150 implementing SetModal() method
21152 2004-12-18 Peter Bartok <pbartok@novell.com>
21154 * X11Structs.cs (XGCValues): Fixed type of function element
21155 * XplatUI.cs: Added ScrollWindow() method
21156 * XplatUIDriver.cs: Added ScrollWindow() abstract
21157 * XplatUIWin32.cs: Implemented ScrollWindow() method
21158 * XplatUIX11.cs: Implemented ScrollWindow() method
21159 * XplatUIOSX.cs: Stubbed out ScrollWindow() method
21161 2004-12-17 Geoff Norton <gnorton@customerdna.com>
21163 * XplatUIOSX.cs: Fix cursor to use an Invert instead of drawing it
21164 Some more keyboard support (INCOMPLETE)
21166 2004-12-17 Peter Bartok <pbartok@novell.com>
21169 - Added color attribute to line tags.
21170 - Added color argument to all functions dealing with tags
21171 - Added color argument support to various functions
21172 - Fixed miss-calculation of baseline/shift in certain circumstances
21174 * TextBoxBase.cs: Added new color option to test code
21176 2004-12-17 Jackson Harper <jackson@ximian.com>
21179 * MonthCalendar.cs: Signature fixes
21181 2004-12-17 Geoff Norton <gnorton@customerdna.com>
21183 * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
21184 keyboard event moved it. Create a new graphics context for each paint resolves this
21186 2004-12-17 Geoff Norton <gnorton@customerdna.com>
21188 * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
21189 Make caret exist and go blink blink. Initial keyboard support.
21190 Fix exception handler, Add Invalidate support. Change way RefreshWindow
21193 2004-12-17 Jackson Harper <jackson@ximian.com>
21195 * XplatUIStructs.cs: Updated set of virtual keycodes.
21196 * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
21198 2004-12-17 Jackson Harper <jackson@ximian.com>
21200 * XplatUIX11.cs: Prune old keyboard code.
21202 2004-12-17 Jackson Harper <jackson@ximian.com>
21204 * XplatUIX11.cs: When generating mouse wparams get the modifier
21205 keys from the ModifierKeys property.
21207 2004-12-17 Jackson Harper <jackson@ximian.com>
21209 * X11Keyboard.cs: Send up/down input when generating
21210 messages. Remove some unused vars.
21212 2004-12-17 Jackson Harper <jackson@ximian.com>
21215 * TreeView.cs: get rid of warnings.
21217 2004-12-17 Jackson Harper <jackson@ximian.com>
21219 * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
21221 2004-12-17 Jordi Mas i Hernandez <jordi@ximian.com>
21223 * ListBox.cs: bug fixes, changes for CheckedListBox.cs
21224 CheckedListBox.cs: Implementation
21226 2004-12-17 Peter Bartok <pbartok@novell.com>
21228 * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
21230 2004-12-16 Peter Bartok <pbartok@novell.com>
21233 - InsertCharAtCaret(): Fixed start pos fixup
21234 - CaretLine_get: No longer derives the line from the tag, the tag
21235 could be stale if lines in the document have been added or deleted
21236 - RebalanceAfterDelete(): Fixed bug in balancing code
21237 - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
21238 - Line.Streamline(): Now can also elminate leading empty tags
21239 - DumpTree(): Added a few more tests and prevented exception on
21241 - Added Debug section for Combining lines
21242 - Delete(): Now copies all remaining properties of a line
21245 - Left mousebutton now sets the caret (and middle button still acts
21246 as formatting tester, which must go away soon)
21247 - Added Debug section for Deleting/Combining lines
21248 - Fixed calculations for UpdateView after Combining lines
21250 2004-12-16 Peter Bartok <pbartok@novell.com>
21252 * TextControl.cs: Now properly aligns text on a baseline, using the
21253 new XplatUI.GetFontMetrics() method. Simplified several calculations
21254 * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
21257 2004-12-16 Peter Bartok <pbartok@novell.com>
21259 * XplatUI.cs: Added GetFontMetrics() method
21260 * XplatUIDriver.cs: Added GetFontMetrics() abstract
21261 * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
21262 into libgdiplus, our private GetFontMetrics function
21263 * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
21264 * XplatUIWin32.cs: Implemented GetFontMetrics() method
21266 2004-12-16 Jackson Harper <jackson@ximain.com>
21268 * XplatUIStruct.cs: Add enum for dead keys
21269 * X11Keyboard.cs: Map and unmap dead keys.
21271 2004-12-16 Jackson Harper <jackson@ximian.com>
21273 * X11Keyboard.cs: Detect and use the num lock mask.
21275 2004-12-16 Peter Bartok <pbartok@novell.com>
21277 * Control.cs (CreateGraphics): Added check to make sure the
21278 handle of the window exists before calling Graphics.FromHwnd()
21280 2004-12-16 Peter Bartok <pbartok@novell.com>
21282 * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
21283 contains a lot of code that's not supposed to be there for the
21284 real thing, but required for developing/testing the textbox
21287 2004-12-16 Peter Bartok <pbartok@novell.com>
21290 - Fixed Streamline method
21291 - Added FindTag method to Line
21292 - Added DumpTree method for debugging
21293 - Added DecrementLines() method for deleting lines
21294 - Fixed UpdateView to update the cursor to end-of-line on single-line
21296 - Added PositionCaret() method
21297 - Fixed MoveCaret(LineDown) to move into the last line, too
21298 - Added InsertChar overload
21299 - Fixed InsertChar tag offset calculations
21300 - Added DeleteChar() method
21301 - Added Combine() method for folding lines
21302 - Fixed Delete() method, no longer allocates wasted Line object and
21303 now copies all properties when swapping nodes
21304 - Delete() method now updates document line counter
21306 2004-12-15 Jackson Harper <jackson@ximian.com>
21308 * XplatUIX11.cs: Get the modifier keys from the keyboard driver
21309 * X11Keyboard.cs: Expose the currently selected modifier keys
21310 through a property.
21312 2004-12-15 Peter Bartok <pbartok@novell.com>
21314 * TextControl.cs: Initial check-in. Still incomplete
21316 2004-12-15 Jackson Harper <jackson@ximian.com>
21319 * TreeView.cs: Fix build on csc (second time today ;-))
21321 2004-12-15 Jackson Harper <jackson@ximian.com>
21323 * TreeView.cs: Store the treenodes plus/minus box bounds when it
21324 is calculated and use this for click testing.
21325 * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
21327 2004-12-15 Jackson Harper <jackson@ximian.com>
21329 * TreeView.cs: Pass the nodes image index to the image list when
21330 drawing that image.
21332 2004-12-15 Jackson Harper <jackson@ximian.com>
21334 * X11Keyboard.cs: Set messages hwnd.
21335 * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
21336 post_message calls.
21338 2004-12-15 Jackson Harper <jackson@ximian.com>
21340 * X11Keyboard.cs: Fix to compile with csc.
21342 2004-12-15 Jackson Harper <jackson@ximian.com>
21344 * X11Structs.cs: Add key mask values
21345 * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
21346 * X11Keyboard.cs: New file - Extrapolates and interpolates key
21347 down/up foo into WM_CHAR foo
21348 * KeyboardLayouts.cs: Common keyboard layouts
21349 * XplatUIX11.cs: Add the keyboard driver. Add functionality to
21350 post messages into the main queue.
21352 2004-12-13 Jordi Mas i Hernandez <jordi@ximian.com>
21354 * Button.cs: implement ProcessMnemonic
21355 * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
21357 * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
21358 * ButtonBase.cs: Show HotkeyPrefix (not the &)
21360 2004-12-12 John BouAntoun <jba-mon@optusnet.com.au>
21362 * MonthCalendar.cs: Implemented click-hold for next/previous month
21365 2004-12-11 Peter Bartok <pbartok@novell.com>
21368 - Added XKeyboardState (moved from XplatUIX11.cs)
21369 - Added XCreateGC related enums and structures
21370 - Added GXFunction for XSetFunction
21372 * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
21374 * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
21375 CaretVisible() calls
21377 * ToolTip.cs: Added code to prevent stealing focus from app windows
21379 * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
21380 DestroyCaret, SetCaretPos and CaretVisible)
21383 - Added implementation for caret functions
21384 - Moved hover variables into a struct, to make it a bit easier
21385 on the eyes and to debug
21386 - Removed XKeyboardState (moved to XplatUIX11.cs)
21387 - Moved Keyboard properties into the properties region
21389 * Control.cs (get_Region): Control.CreateGraphics is the appropriate
21390 call to get a graphics context for our control
21392 * XplatUIOSX.cs: Added empty overrides for the new caret functions
21394 * TreeView.cs: Fixed bug. No matter what color was set it would always
21395 return SystemColors.Window
21397 * XplatUIWin32.cs: Implemented caret overrides
21399 2004-12-10 Jordi Mas i Hernandez <jordi@ximian.com>
21401 * ListBox.cs: fire events, implement missing methods and properties,
21404 2004-12-10 John BouAntoun <jba-mono@optusnet.com.au>
21406 * MonthCalendar.cs: invalidation bug fixing
21407 * ThemeWin32Classic.cs: paint fixing
21409 2004-12-09 Geoff Norton <gnorton@customerdna.com>
21411 * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
21412 prepare the CGContextRef there now.
21414 2004-12-09 John BouAntoun <jba-mono@optusnet.com.au>
21416 * MonthCalendar.cs:
21417 - optimisationL only invalidate areas that have changed
21418 * ThemeWin32Classic.cs:
21419 - only paint parts that intersect with clip_area
21421 2004-12-09 Peter Bartok <pbartok@novell.com>
21423 * Application.cs: Undid changes from r37004 which cause problems
21426 2004-12-09 Ravindra <rkumar@novell.com>
21428 * ToolBar.cs: Added support for displaying ContextMenu
21429 attached to a button on ToolBar.
21430 * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
21433 2004-12-09 Jordi Mas i Hernandez <jordi@ximian.com>
21435 * Label.cs: autosize works in text change and removes unnecessary
21438 2004-12-09 Jordi Mas i Hernandez <jordi@ximian.com>
21440 * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
21443 2004-12-08 Geoff Norton <gnorton@customerdna.com>
21445 * XplatUIOSX.cs: Added mouse move/click/grab support
21446 Remove some debugging WriteLines not needed anymore.
21447 Add window resizing/positioning.
21448 Fix visibility on reparenting.
21450 2004-12-08 Peter Bartok <pbartok@novell.com>
21452 * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
21454 2004-12-07 Geoff Norton <gnorton@customerdna.com>
21456 * XplatUIOSX.cs: Initial checkin
21457 * XplatUI.cs: Use the Quartz driver if the environment is set to use it
21459 2004-12-03 Ravindra <rkumar@novell.com>
21461 * ListView.cs: Added some keybindings and fixed scrolling.
21462 ScrollBars listen to ValueChanged event instead of Scroll
21463 Event. This would let us take care of all changes being
21464 done in the scrollbars' values programmatically or manually.
21465 * ListView.cs (CanMultiselect): Added a check for shift key.
21466 * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
21467 * ListViewItem.cs (Clone): Fixed. We need to make a copy
21468 of ListViewSubItemCollection as well.
21470 2004-12-06 Peter Bartok <pbartok@novell.com>
21472 * Control.cs (Parent): Added check and exception to prevent
21475 2004-12-03 Jordi Mas i Hernandez <jordi@ximian.com>
21477 * ListBox.cs: implemented clipping, selection single and multiple,
21480 2004-12-03 Ravindra <rkumar@novell.com>
21482 * ListView.cs (ListView_KeyDown):
21483 * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
21484 when CTRL key is pressed.
21485 * ListViewItem.cs (Selected): Fixed setting the property.
21487 2004-12-03 Marek Safar <marek.safar@seznam.cz>
21489 * Application.cs (OnThreadException): Use ThreadExceptionDialog.
21491 * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
21492 MinimizeBox, ShowInTaskbar, TopMost properties.
21494 * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
21495 will be implemented).
21497 2004-12-03 Marek Safar <marek.safar@seznam.cz>
21499 * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
21501 * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
21504 * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
21506 * TreeView.cs: BackColor is Colors.Window.
21508 2004-12-01 Jackson Harper <jackson@ximian.com>
21510 * TreeView.cs: When resizing the tree if the user is making it
21511 smaller we don't get expose events, so we need to handle adding
21512 the horizontal scrollbar in the size changed handler as well as
21513 the expose handler.
21515 2004-12-02 Jordi Mas i Hernandez <jordi@ximian.com>
21517 * DrawItemState.cs: fixes wrong enum values
21519 2004-12-01 Jackson Harper <jackson@ximian.com>
21521 * TreeView.cs: Resize the hbar as well as the vbar on resize.
21523 2004-12-01 Jackson Harper <jackson@ximian.com>
21525 * NodeLabelEditEventArgs.cs:
21526 * NodeLabelEditEventHandler.cs:
21527 * OpenTreeNodeEnumerator.cs:
21529 * TreeNodeCollection.cs:
21531 * TreeViewAction.cs:
21532 * TreeViewCancelEventArgs.cs:
21533 * TreeViewCancelEventHandler.cs:
21534 * TreeViewEventArgs.cs:
21535 * TreeViewEventHandler.cs: Initial implementation.
21537 2004-12-01 Ravindra <rkumar@novell.com>
21539 * ListView.cs (CalculateListView): Fixed scrolling related
21540 calculations. Also, removed some debug statements from other
21542 * ListViewItem.cs: Changed access to 'selected' instance variable
21543 from private to internal.
21544 * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
21546 2004-12-01 Jordi Mas i Hernandez <jordi@ximian.com>
21548 * ThemeWin32Classic.cs: remove cache of brush and pens for
21549 specific controls and use the global system, fixes scrollbutton
21550 bugs (for small sizes, disabled, etc)
21552 * ScrollBar.cs: does not show the thumb for very small controls
21553 (as MS) and allow smaller buttons that the regular size
21555 2004-12-01 Miguel de Icaza <miguel@ximian.com>
21557 * UpDownBase.cs: Add abstract methods for the interface.
21558 Add new virtual methods (need to be hooked up to TextEntry when it
21560 Add override methods for most features.
21561 Computes the size, forces the height of the text entry.
21563 * NumericUpDown.cs: Put here the current testing code.
21565 * Set eol-style property on all files that do not have mixed line
21566 endings, to minimize the future problems. There are still a few
21567 files with mixed endings, and someone should choose whether they
21568 want to move it or not.
21570 2004-11-30 Jordi Mas i Hernandez <jordi@ximian.com>
21572 * MonthCalendar.cs, ListView.cs: use Theme colours instead of
21575 2004-11-30 Ravindra <rkumar@novell.com>
21577 * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
21578 drawing and replaced use of SystemColors by theme colors.
21579 * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
21580 * ListView.cs (ListViewItemCollection.Add): Throw exception when
21581 same ListViewItem is being added more than once.
21583 2004-11-30 John BouAntoun <jba-mono@optusnet.com.au>
21585 * MonthCalendar.cs:
21586 - ControlStyles love to make the control not flicker
21588 2004-11-30 Peter Bartok <pbartok@novell.com>
21590 * CharacterCasing.cs: Added
21592 2004-11-29 Peter Bartok <pbartok@novell.com>
21594 * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
21595 TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
21596 I am removing these files as they conflict with already completed
21597 work. While it is fantastic to get contributions to MWF, I
21598 respectfully ask that everyone please coordinate their contributions
21599 through mono-winforms-list or #mono-winforms at this time. We're
21600 explicitly avoiding stubbing and don't want controls that don't have
21601 their basic functionality implemented in svn. Please also see
21602 http://www.mono-project.com/contributing/winforms.html
21605 2004-11-29 Marek Safar <marek.safar@seznam.cz>
21607 * Application.cs (ModalRun): Don't hang after exit.
21609 * Theme.cs: New TreeViewDefaultSize property.
21611 * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
21612 with less hardcoded SystemColors constant.
21613 Implemented TreeViewDefaultSize.
21615 * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
21616 TreeViewAction.cs, TreeViewEventArgs.cs: New files.
21619 2004-11-29 John BouAntoun <jba-mono@optusnet.com.au>
21621 * MonthCalendar.cs:
21622 - Fix NextMonthDate and PrevMonthDate click moving calendar
21624 2004-11-26 John BouAntoun <jba-mono@optusnet.com.au>
21626 * MonthCalendar.cs:
21627 - Fix usage of ScrollChange Property when scrolling months
21629 2004-11-26 Jordi Mas i Hernandez <jordi@ximian.com>
21631 * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
21632 - Fixes menu destroying
21633 - Support adding and removing items on already created menus
21635 2004-11-26 John BouAntoun <jba-mono@optusnet.com.au>
21637 * MonthCalendar.cs:
21638 - Re-worked all bolded dates handling to match win32
21639 * ThemeWin32Classic.cs:
21640 - Fixed rendering with bolded dates
21642 2004-11-25 Jordi Mas i Hernandez <jordi@ximian.com>
21644 * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
21645 - Horizontal scroolbar
21650 2004-11-25 John BouAntoun <jba-mono@optusnet.com.au>
21652 * MonthCalendar.cs:
21653 - Fix Usage of MaxSelectionCount from SelectionRange
21654 - Fixed Shift + Cursor Selection
21655 - Fixed Shift + (Pg up/Pg dn, Home/End) selection
21656 - Fixed normal cursor selection to be compat with win32
21657 - Fixed Shift + Mouse Click selection
21659 2004-11-24 Peter Bartok <pbartok@novell.com>
21661 * XplatUI.cs (DispatchMessage): Switched to return IntPtr
21662 * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
21664 - CreatedKeyBoardMsg now updates keystate with Alt key
21665 - Added workaround for timer crash to CheckTimers, Jackson will
21666 develop a proper fix and check in later
21667 - Implemented DispatchMessage
21668 - Removed calling the native window proc from GetMessage (call
21669 now moved to DispatchMessage)
21671 * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
21672 the keydata (Fixes bug #69831)
21675 - (DispatchMessage): Switched to return IntPtr
21676 - Added DllImport for SetFocus
21678 2004-11-24 Ravindra <rkumar@novell.com>
21680 * ThemeWin32Classic.cs: Fixed ListView border and checkbox
21681 background drawing.
21682 * ListViewItem.cs: Fixed various properties, calculations
21683 and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
21684 * ListView.cs: Fixed calculations, BackColor, ForeColor properties
21685 and some internal properties. Fixed MouseDown handler and Paint
21688 2004-11-24 John BouAntoun <jba-mono@optusnet.com.au>
21690 * MonthCalendar.cs: Add TitleMonth ContextMenu handling
21692 2004-11-24 John BouAntoun <jba-mono@optusnet.com.au>
21694 * ContainerControl.cs: correct accidental check in of local changes
21696 2004-11-24 John BouAntoun <jba-mono@optusnet.com.au>
21698 * ThemeWin32Classic.cs:
21699 - Fixed Drawing Last month in grid (sometimes not showing)
21700 * MonthCalendar.cs:
21701 - Fixed title width calculation bug (makeing title small)
21703 2004-11-23 Peter Bartok <pbartok@novell.com>
21706 - Added generation of WM_MOUSEHOVER event
21707 - Added missing assignment of async_method atom
21708 - Fixed WM_ERASEBKGND; now only redraws the exposed area
21710 2004-11-23 John BouAntoun <jba-mono@optusnet.com.au>
21712 * ThemeWin32Classic.cs:
21713 - Fixed Drawing of today circle when showtodaycircle not set
21714 - fixed drawing of first and last month in the grid (gay dates)
21715 * MonthCalendar.cs:
21716 - Fixed Drawing of today circle
21717 - Fixed drawing of grady dates
21718 - Fixed HitTest for today link when ShowToday set to false
21719 - Fixed DefaultSize to obey ShowToday
21721 2004-11-23 John BouAntoun <jba-mono@optusnet.com.au>
21723 * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
21724 * System.Windows.Forms/Theme.cs
21725 * MonthCalendar.cs: added for MonthCalendar
21726 * SelectionRange.cs: added for MonthCalendar
21727 * Day.cs: added for MonthCalendar: added for MonthCalendar
21728 * DateRangeEventArgs.cs: added for MonthCalendar
21729 * DateRangeEventHandler.cs: added for MonthCalendar
21731 2004-11-22 Ravindra <rkumar@novell.com>
21733 * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
21736 2004-11-22 Miguel de Icaza <miguel@ximian.com>
21738 * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
21741 * NumericUpDown.cs: Added new implementation.
21742 * UpDownBase.cs: Added new implementation.
21744 * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
21747 * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
21750 * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
21753 2004-11-21 Miguel de Icaza <miguel@ximian.com>
21755 * Timer.cs (Dispose): Should call the base dispose when
21758 2004-11-19 Jordi Mas i Hernandez <jordi@ximian.com>
21760 * ScrollBar.cs: updates thumb position when max, min or increment
21763 2004-11-21 Ravindra <rkumar@novell.com>
21765 * ListView.cs: Implemented item selection, activation and
21766 column header style. Fixed properties to do a redraw, if
21767 required. Added support for MouseHover, DoubleClick, KeyDown
21768 and KeyUp event handling and some minor fixes.
21769 * ListViewItem.cs: Fixed constructor.
21770 * ThemeWin32Classic.cs: Improved drawing for ListView.
21772 2004-11-19 Jordi Mas i Hernandez <jordi@ximian.com>
21774 * ThemeWin32Classic.cs: initial listbox drawing code
21775 * DrawMode.cs: new enumerator
21776 * ListControl.cs: stubbed class
21777 * ListBox.cs: initial implementation
21778 * Theme.cs: new methods definitions
21779 * SelectionMode.cs: new enumerator
21781 2004-11-17 Peter Bartok <pbartok@novell.com>
21783 * XplatUIWin32.cs: Added double-click events to the class style
21784 * Control.cs (WndProc):
21785 - Added handling of click-count to MouseDown/ MouseUp events.
21786 - Added handling of middle and right mouse buttons
21787 - Removed old debug code
21789 2004-11-17 Jackson Harper <jackson@ximian.com>
21791 * XplatUIX11.cs: Use the new Mono.Unix namespace.
21793 2004-11-17 Ravindra <rkumar@novell.com>
21795 * ListView.cs: Added event handling for MouseMove/Up/Down.
21796 * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
21797 * ThemeWin32Classic.cs: We need to clear the graphics context and
21798 draw column header in a proper state.
21801 2004-11-17 Jordi Mas i Hernandez <jordi@ximian.com>
21803 * Menu.cs: fixes signature
21805 2004-11-16 Peter Bartok <pbartok@novell.com>
21807 * XplatUIX11.cs (GetMessage): Implemented generation of
21808 double click mouse messages
21810 2004-11-12 Jordi Mas i Hernandez <jordi@ximian.com>
21812 * Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
21815 2004-11-11 Peter Bartok <pbartok@novell.com>
21817 * HandleData.cs: Added Visible property
21818 * XplatUIX11.cs (IsVisible): Now uses Visible property from
21820 * XplatUIX11.cs: Removed old debug leftovers
21821 * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
21822 * Control.cs (WndProc): Removed old debug leftovers,
21823 streamlined handling of WM_WINDOWPOSCHANGED, removed un-
21824 needed WM_SIZE handling
21826 2004-11-11 Jackson Harper <jackson@ximian.com>
21828 * OwnerDrawPropertyBag.cs:
21829 * TreeViewImageIndexConverter.cs: Initial implementation
21831 2004-11-10 Jackson Harper <jackson@ximian.com>
21833 * ThemeWin32Classic.cs:
21834 * TabControl.cs: instead of moving tabs by the slider pos just
21835 start drawing at the tab that is offset by the slider. This way
21836 scrolling always moves by exactly one tab.
21838 2004-11-10 Jackson Harper <jackson@ximian.com>
21840 * TabControl.cs: You can only scroll left when the slider has
21841 already ben moved right.
21843 2004-11-10 Jackson Harper <jackson@ximian.com>
21845 * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
21848 2004-11-10 Jackson Harper <jackson@ximian.com>
21850 * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
21853 2004-11-09 Jackson Harper <jackson@ximian.com>
21855 * TabControl.cs (CalcXPos): New helper method so we can determine
21856 the proper place to start drawing vertical tabs.
21857 * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
21859 2004-11-09 Jackson Harper <jackson@ximian.com>
21861 * TabControl.cs: Calculate sizing and rects for left aligned tabs.
21862 * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
21863 and Bottom, left and right are illegal values for this and
21864 multiline is enabled when the alignment is set to left or right.
21865 (DrawTab): Each alignment block should draw the text itself now
21866 because Left requires special love. Also add rendering for Left
21869 2004-11-09 Jordi Mas i Hernandez <jordi@ximian.com>
21871 * Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
21872 does not destroy the windows, removes debugging messages
21874 2004-11-09 jba <jba-mono@optusnet.com.au>
21876 * ThemeWin32Classic.cs
21877 (DrawButtonBase): Fix verticle text rect clipping in windows
21878 (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
21879 rendering and incorrect text rect clipping
21880 (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
21881 rendering and incorrect text rect clipping
21883 2004-11-08 Jackson Harper <jackson@ximian.com>
21885 * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
21886 bottom when they are bottom aligned so the bottoms of the tabs get
21888 * TabControl.cs (DropRow): Move rows up instead of down when the
21889 tab control is bottom aligned.
21891 2004-11-08 13:59 pbartok
21894 - Added handling for various window styles
21895 - Added handling for popup windows
21896 - Added SetTopmost handling
21898 2004-11-08 13:55 pbartok
21901 - Added argument to SetTopmost method
21902 - Fixed broken ClientToScreen function
21904 2004-11-08 13:53 pbartok
21906 * XplatUIStructs.cs:
21907 - Added missing WS_EX styles
21909 2004-11-08 13:53 pbartok
21911 * XplatUI.cs, XplatUIDriver.cs:
21912 - Added argument to SetTopmost
21914 2004-11-08 13:52 pbartok
21917 - Added XSetWindowAttributes structure
21918 - Improved XWindowAttributes structure
21919 - Added SetWindowValuemask enum
21920 - Added window creation arguments enum
21921 - Added gravity enum
21922 - Added Motif hints structure
21923 - Added various Motif flags and enums
21924 - Added PropertyMode enum for property functions
21926 2004-11-08 13:50 pbartok
21929 - Fixed arguments for updated SetTopmost method
21931 2004-11-08 13:49 pbartok
21934 - Fixed arguments for updated SetTopmost function
21935 - Fixed usage of PointToClient
21937 2004-11-08 13:44 pbartok
21940 - Added Clipping of children and siblings
21942 2004-11-08 13:41 pbartok
21945 - Removed SetMenuBarWindow call. We do this in Form.cs
21947 2004-11-08 13:40 jackson
21949 * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
21950 scrolling jimmi in the correct location with bottom aligned tabs
21952 2004-11-08 13:36 pbartok
21954 * ContainerControl.cs:
21955 - Implemented BindingContext
21956 - Implemented ParentForm
21958 2004-11-08 12:46 jackson
21960 * TabControl.cs: Put bottom rendered tabs in the right location
21962 2004-11-08 07:15 jordi
21964 * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
21967 2004-11-05 17:30 jackson
21969 * TabControl.cs: When selected tabs are expanded make sure they
21970 don't go beyond the edges of the tab control
21972 2004-11-05 14:57 jackson
21974 * TabControl.cs: Reset show_slider so if the control is resized to
21975 a size where it is no longer needed it's not displayed anymore
21977 2004-11-05 13:16 jackson
21979 * TabControl.cs: Make tab pages non visible when added to the
21982 2004-11-05 12:42 jackson
21984 * TabControl.cs: Implement SizeMode.FillToRight
21986 2004-11-05 12:16 jackson
21988 * Control.cs: Do not call CreateHandle if the handle is already
21991 2004-11-05 11:46 jackson
21993 * TabControl.cs: Remove superflous call to CalcTabRows
21995 2004-11-05 09:07 jackson
21997 * XplatUIX11.cs: Update for Mono.Posix changes
21999 2004-11-05 07:00 ravindra
22001 * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
22004 2004-11-04 22:47 jba
22006 * ThemeWin32Classic.cs:
22007 - Fix Button rendering for FlatStyle = Flat or Popup
22008 - Fix RadioButton and CheckBox rendering when Appearance = Button
22009 (normal and flatstyle).
22010 - Correct outer rectangle color when drawing focus rectangle
22011 - Adjust button bounds to be 1 px smaller when focused
22012 - Make button not draw sunken 3d border when pushed (windows compat)
22013 - Fix CPDrawBorder3D to not make bottom right hand corner rounded
22014 - Offset the text in RadioButton and Checkbox when being rendered as
22016 - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
22018 - Fixed disabled rendering for colored flatstyle radiobuttons (both)
22019 - Fixed disabled text rendering for normally rendered radiobuttons
22021 2004-11-04 10:26 jackson
22023 * TabControl.cs: Recalculate tab rows when resizing
22025 2004-11-04 07:47 jordi
22027 * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
22028 collection completion, drawing issues, missing features
22030 2004-11-04 05:03 ravindra
22033 - We need to recalculate the Thumb area when
22034 LargeChange/maximum/minimum values are changed.
22035 - We set the 'pos' in UpdatePos() method to minimum, if it's less
22036 than minimum. This is required to handle the case if large_change is
22037 more than max, and use LargeChange property instead of large_change
22039 - We return max+1 when large_change is more than max, like MS does.
22041 2004-11-04 04:29 ravindra
22043 * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
22044 - Changed default value signatures (prefixed all with ListView).
22045 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
22047 - Fixed calculations for ListViewItem and implemented Clone()
22050 2004-11-04 04:26 ravindra
22052 * Theme.cs, ThemeWin32Classic.cs:
22053 - Changed default ListView values signatures (prefixed all with
22055 - Fixed default size values for VScrollBar and HScrollBar.
22056 - Fixed DrawListViewItem method.
22058 2004-11-04 04:05 ravindra
22060 * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
22062 2004-11-04 04:04 ravindra
22064 * ImageList.cs: Implemented the missing overload for Draw method.
22066 2004-11-03 19:29 jackson
22068 * TabControl.cs: Handle dropping rows on selection properly
22070 2004-11-03 11:59 jackson
22072 * TabControl.cs: remove debug code
22074 2004-11-03 11:52 jackson
22076 * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
22077 the scrolly widgerywoo
22079 2004-11-02 13:52 jackson
22081 * TabControl.cs: Resize the tab pages and tabs when the tab control
22084 2004-11-02 13:40 jackson
22086 * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
22087 selected tab to the bottom
22089 2004-11-02 13:39 jackson
22091 * TabPage.cs: Store the tab pages row
22093 2004-11-02 12:33 jordi
22095 * MenuItem.cs: fixes handle creation
22097 2004-11-02 11:42 jackson
22099 * TabControl.cs: signature fix
22101 2004-11-02 08:56 jackson
22103 * TabControl.cs: Calculate whether the tab is on an edge properly.
22104 Remove top secret debugging code
22106 2004-11-01 19:57 jackson
22108 * TabControl.cs: Add click handling, and proper sizing
22110 2004-11-01 19:47 jackson
22112 * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
22115 2004-11-01 19:39 jackson
22117 * TabPage.cs: add internal property to store the bounds of a tab
22120 2004-10-30 04:23 ravindra
22122 * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
22125 2004-10-30 04:21 ravindra
22127 * ListView.cs, ListViewItem.cs: Added support for scrolling and
22128 fixed calculations.
22130 2004-10-30 03:06 pbartok
22133 - Removed extension of DllImported libs
22135 2004-10-29 09:55 jordi
22137 * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
22138 navigation, itemcollection completion, menu fixes
22140 2004-10-27 22:58 pbartok
22143 - Now throws a nice error message when no X display could be opened
22145 2004-10-26 13:51 jordi
22147 * ListView.cs: removes warning
22149 2004-10-26 03:55 ravindra
22151 * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
22152 ThemeWin32Classic.cs: Some formatting for my last checkins.
22154 2004-10-26 03:36 ravindra
22156 * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
22157 control and default values.
22159 2004-10-26 03:35 ravindra
22161 * Theme.cs: Added some default values for ListView control.
22163 2004-10-26 03:33 ravindra
22165 * ToolBar.cs: ToolBar should use the user specified button size, if
22166 there is any. Added a size_specified flag for the same.
22168 2004-10-26 03:33 ravindra
22170 * ColumnHeader.cs: Added some internal members and calculations for
22173 2004-10-26 03:32 ravindra
22175 * ListViewItem.cs: Calculations for ListViewItem.
22177 2004-10-26 03:31 ravindra
22179 * ListView.cs: Added some internal members and calculations for
22182 2004-10-22 13:31 jordi
22184 * MenuAPI.cs: speedup menus drawing
22186 2004-10-22 13:16 jackson
22188 * XplatUIX11.cs: Make sure to update exposed regions when adding an
22191 2004-10-22 11:49 jackson
22195 2004-10-22 11:41 jackson
22197 * Control.cs: Check to see if the window should have its background
22198 repainted by X when drawing.
22200 2004-10-22 11:31 jackson
22202 * XplatUIX11.cs: When invalidating areas only use XClearArea if
22203 clear is true, this way we do not get flicker from X repainting the
22206 2004-10-22 11:28 jackson
22208 * XEventQueue.cs: Queue properly
22210 2004-10-21 09:38 jackson
22212 * XEventQueue.cs: Fix access modifier
22214 2004-10-21 09:36 jackson
22216 * XEventQueue.cs: Don't loose messages
22218 2004-10-21 09:22 jackson
22220 * XEventQueue.cs: Don't loose messages
22222 2004-10-20 04:15 jordi
22224 * BootMode.cs: enum need it by SystemInfo
22226 2004-10-19 21:58 pbartok
22229 - Small sanity check
22231 2004-10-19 21:56 pbartok
22234 - Added private FormParentWindow class which acts as the container
22235 for our form and as the non-client area where menus are drawn
22236 - Added/Moved required tie-ins to Jordi's menus
22237 - Fixed/Implemented the FormStartPosition functionality
22239 2004-10-19 21:52 pbartok
22242 - Removed unneeded locals
22243 - Added code to all size and location properties to understand and
22244 deal with the parent container of Form
22246 2004-10-19 21:33 pbartok
22249 - Fixed to deal with new Form subclasses for menus
22251 2004-10-19 17:48 jackson
22253 * XEventQueue.cs: commit correct version of file
22255 2004-10-19 16:50 jackson
22257 * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
22259 2004-10-19 16:15 jordi
22261 * MenuAPI.cs: MenuBarCalcSize returns the height
22263 2004-10-19 08:31 pbartok
22266 - Added missing call to PreProcessMessage before calling OnXXXKey
22269 2004-10-19 00:04 ravindra
22271 * ToolTip.cs: Fixed constructor.
22273 2004-10-18 09:31 jordi
22275 * MenuAPI.cs: menuitems in menubars do not have shortcuts
22277 2004-10-18 09:26 jordi
22279 * MenuItem.cs: fixes MenuItem class signature
22281 2004-10-18 08:56 jordi
22283 * MenuAPI.cs: prevents windows from showing in the taskbar
22285 2004-10-18 00:28 ravindra
22287 * ToolTip.cs: Suppressed a warning message.
22289 2004-10-18 00:27 ravindra
22291 * Control.cs: Default value of visible property must be true.
22293 2004-10-17 23:19 pbartok
22296 - Complete implementation
22298 2004-10-17 23:19 pbartok
22301 - Added EnableWindow method
22302 - Added SetModal stub
22303 - Added generation of WM_ACTIVATE message (still needs testing)
22304 - Added SetTopMost stub
22305 - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
22307 2004-10-17 23:17 pbartok
22310 - Removed VirtualKeys to XplatUIStructs
22311 - Implemented SetTopMost method
22312 - Implemented EnableWindow method
22313 - Bugfix in ScreenToClient()
22314 - Bugfixes in ClientToScreen()
22316 2004-10-17 22:51 pbartok
22318 * XplatUIStructs.cs:
22319 - Added WS_EX styles to WindowStyles enumeration
22321 2004-10-17 22:50 pbartok
22323 * XplatUI.cs, XplatUIDriver.cs:
22324 - Added method for enabling/disabling windows
22325 - Added method for setting window modality
22326 - Added method for setting topmost window
22328 2004-10-17 22:49 pbartok
22330 * ThemeWin32Classic.cs:
22331 - Added ToolTip drawing code
22333 2004-10-17 22:49 pbartok
22336 - Added ToolTip abstracts
22338 2004-10-17 22:47 pbartok
22341 - Fixed Form.ControlCollection to handle owner relations
22342 - Added Owner/OwnedForms handling
22343 - Implemented Z-Ordering for owned forms
22344 - Removed unneeded private overload of ShowDialog
22345 - Fixed ShowDialog, added the X11 incarnation of modal handling (or
22347 - Fixed Close(), had wrong default
22348 - Added firing of OnLoad event
22349 - Added some commented out debug code for Ownership handling
22351 2004-10-17 22:16 pbartok
22354 - Fixed/implemented flat list of controls
22356 2004-10-17 22:14 pbartok
22359 - Added code to simulate modal dialogs on Win32
22361 2004-10-17 16:11 jordi
22363 * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
22366 2004-10-17 13:39 jordi
22368 * MenuAPI.cs: menu drawing fixes
22370 2004-10-15 09:10 ravindra
22372 * StructFormat.cs: General Enum.
22374 2004-10-15 09:09 ravindra
22376 * SizeGripStyle.cs: Enum for Form.
22378 2004-10-15 09:08 ravindra
22380 * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
22381 in Theme for ListView.
22383 2004-10-15 09:06 ravindra
22385 * ColumnHeader.cs: Flushing some formatting changes.
22387 2004-10-15 09:05 ravindra
22389 * ListViewItem.cs: Implemented GetBounds method and fixed coding
22392 2004-10-15 09:03 ravindra
22394 * ListView.cs: Implemented Paint method and fixed coding style.
22396 2004-10-15 07:34 jordi
22398 * MenuAPI.cs: fix for X11
22400 2004-10-15 07:32 ravindra
22402 * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
22403 - Renamed Paint() method to Draw() for clarity. Also, moved
22404 DrawImage() to OnPaint().
22406 2004-10-15 07:25 ravindra
22408 * CheckBox.cs, RadioButton.cs:
22409 - Removed Redraw (), we get it from ButtonBase.
22410 - Implemented Paint (), to do class specific painting.
22412 2004-10-15 07:16 ravindra
22415 - Redraw () is not virtual now.
22416 - Added an internal virtual method Paint (), so that
22417 derived classes can do their painting on their own.
22418 - Modified OnPaint () to call Paint ().
22420 2004-10-15 06:43 jordi
22422 * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
22423 MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
22425 2004-10-15 00:30 ravindra
22428 - MessageBox on windows does not have min/max buttons.
22429 This change in CreateParams fixes this on Windows. We
22430 still need to implement this windowstyle behavior in
22433 2004-10-14 05:14 ravindra
22436 - Changed Redraw () to do a Refresh () always.
22437 - Fixed the MouseMove event handling when mouse is pressed,
22438 ie drag event handling.
22439 - Replaced the usage of ToolBarButton.Pressed property to
22440 ToolBarButton.pressed internal variable.
22442 2004-10-14 05:10 ravindra
22444 * ToolBarButton.cs:
22445 - Added an internal member 'inside' to handle mouse move
22446 with mouse pressed ie mouse drag event.
22447 - Changed 'Pressed' property to return true only when
22448 'inside' and 'pressed' are both true.
22449 - Some coding style love.
22451 2004-10-14 00:17 ravindra
22453 * Form.cs: Fixed class signature. ShowDialog (Control) is not a
22456 2004-10-14 00:15 ravindra
22458 * ButtonBase.cs: Redraw () related improvements.
22460 2004-10-14 00:14 ravindra
22462 * MessageBox.cs: Moved InitFormSize () out of Paint method and
22463 removed unnecessary calls to Button.Show () method.
22465 2004-10-13 17:50 pbartok
22469 - Removed destroying of window until we solve the problem of X
22470 destroying the window before us on shutdown
22472 2004-10-13 16:32 pbartok
22475 - Now Redraws on MouseUp for FlatStyle Flat and Popup
22477 2004-10-13 14:18 pbartok
22480 - Added code to destroy the X window
22482 2004-10-13 14:18 pbartok
22485 - Added code to destroy a window
22487 2004-10-13 14:12 pbartok
22490 - Added the Redraw on Resize that got dropped in the last rev
22492 2004-10-13 09:06 pbartok
22494 * ThemeWin32Classic.cs:
22495 - Path from John BouAntoun:
22496 * Fix check rendering (centre correctly for normal style, offset
22497 correctly for FlatStyle).
22498 * Fix border color usage (use backcolor) for FlatStyle.Popup
22499 * Use checkbox.Capture instead of checkbox.is_pressed when
22500 rendering flatstyle states.
22502 2004-10-12 21:48 pbartok
22504 * ThemeWin32Classic.cs:
22505 - Removed all occurences of SystemColors and replaced them with the
22506 matching theme color
22508 2004-10-12 21:41 pbartok
22510 * ThemeWin32Classic.cs:
22511 - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
22512 him using the function for flatstyle drawing
22513 - Changed functions to use the new version of CPDrawBorder3D
22515 2004-10-12 21:15 pbartok
22518 - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
22519 match MS documentation. They need to return defined colors if the
22520 passed color matches the configured control color. Thanks to John
22521 BouAntoun for pointing this out.
22523 2004-10-12 20:57 pbartok
22526 - Fix from John BouAntoun: Raise ForeColorChanged event when text
22529 2004-10-12 20:46 pbartok
22532 - Fix from John BouAntoun: Now properly sets the Appearance property
22534 2004-10-12 20:45 pbartok
22536 * ThemeWin32Classic.cs:
22537 - Fixes from John BouAntoun: now handles forecolors and backcolors
22538 for flatstyle rendered controls much better; It also fixes normal
22539 checkbox rendering when pushed or disabled.
22541 2004-10-08 02:50 jordi
22543 * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
22546 2004-10-07 08:56 jordi
22548 * ThemeWin32Classic.cs: Removes deletion of cached brushes
22550 2004-10-06 03:59 jordi
22552 * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
22553 XplatUIWin32.cs: removes warnings from compilation
22555 2004-10-05 12:23 jackson
22557 * RadioButton.cs: Fix ctor
22559 2004-10-05 11:10 pbartok
22562 - Partial implementation by Benjamin Dasnois
22564 2004-10-05 10:15 jackson
22566 * ThemeWin32Classic.cs: Improve rendering of the radio button patch
22569 2004-10-05 03:07 ravindra
22572 - Removed a private method, Draw ().
22573 - Fixed the ButtonDropDown event handling.
22574 - Fixed MouseMove event handling.
22576 2004-10-05 03:04 ravindra
22578 * ThemeWin32Classic.cs:
22579 - Added DrawListView method and ListViewDefaultSize property.
22580 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
22581 - Changed DOS style CRLF to Unix format (dos2unix).
22583 2004-10-05 03:03 ravindra
22586 - Added DrawListView method and ListViewDefaultSize property.
22588 2004-10-05 02:42 ravindra
22590 * ToolBarButton.cs: Added an internal member dd_pressed to handle
22591 clicks on DropDown arrow.
22593 2004-10-04 22:56 jackson
22595 * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
22596 ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
22597 Control handle the buffers, derived classes should not have to
22598 CreateBuffers themselves.
22600 2004-10-04 21:20 jackson
22602 * StatusBar.cs: The control handles resizing the buffers now.
22604 2004-10-04 21:18 jackson
22606 * Control.cs: When resizing the buffers should be invalidated. This
22607 should be handled in Control not in derived classes.
22609 2004-10-04 14:45 jackson
22613 2004-10-04 02:14 pbartok
22615 * LeftRightAlignment.cs:
22618 2004-10-04 01:09 jordi
22620 * ThemeWin32Classic.cs: fixes right button position causing right
22621 button not showing on horizontal scrollbars
22623 2004-10-02 13:12 pbartok
22626 - Simplified the Invalidate method by using an X call instead of
22627 generating the expose ourselves
22628 - Added an expose when the window background is changed
22629 - Implemented ClientToScreen method
22631 2004-10-02 13:08 pbartok
22634 - Added Win32EnableWindow method (test for implementing modal
22636 - Added ClientToScreen method and imports
22638 2004-10-02 13:07 pbartok
22640 * XplatUI.cs, XplatUIDriver.cs:
22641 - Added ClientToScreen coordinate translation method
22643 2004-10-02 13:06 pbartok
22645 * KeyPressEventArgs.cs:
22646 - Fixed access level for constructor
22648 2004-10-02 13:06 pbartok
22651 - Changed access level for the window_collection hash table
22653 2004-10-02 13:05 pbartok
22656 - Added KeyPreview property
22657 - Added Menu property (still incomplete, pending Jordi's menu work)
22658 - Implemented ProcessCmdKey
22659 - Implemented ProcessDialogKey
22660 - Implemented ProcessKeyPreview
22662 2004-10-02 13:02 pbartok
22665 - Added private method to get the Control object from the window
22667 - Implemented ContextMenu property
22668 - Implemented PointToScreen
22669 - Implemented PreProcessMessage
22670 - Implemented IsInputChar
22671 - Implemented IsInputKey
22672 - Implemented ProcessCmdKey
22673 - Completed ProcessKeyEventArgs
22674 - Fixed message loop to call the proper chain of functions on key
22676 - Implemented ProcessDialogChar
22677 - Implemented ProcessDialogKey
22678 - Implemented ProcessKeyMessage
22679 - Implemented ProcessKeyPreview
22680 - Added RaiseDragEvent stub (MS internal method)
22681 - Added RaiseKeyEvent stub (MS internal method)
22682 - Added RaiseMouseEvent stub (MS Internal method)
22683 - Added RaisePaintEvent stub (MS Internal method)
22684 - Added ResetMouseEventArgs stub (MS Internal method)
22685 - Implemented RtlTranslateAlignment
22686 - Implemented RtlTranslateContent
22687 - Implemented RtlTranslateHorizontal
22688 - Implemented RtlTranslateLeftRight
22689 - Added generation of KeyPress event
22691 2004-10-02 05:57 ravindra
22693 * ListViewItem.cs: Added attributes.
22695 2004-10-02 05:32 ravindra
22697 * ListView.cs: Added attributes.
22699 2004-10-01 11:53 jackson
22701 * Form.cs: Implement the Close method so work on MessageBox can
22704 2004-09-30 14:06 pbartok
22709 2004-09-30 11:34 jackson
22711 * RadioButton.cs: Fix typo. Patch by John BouAntoun.
22713 2004-09-30 07:26 ravindra
22715 * ListViewItemConverter.cs: Converter for ListViewItem.
22717 2004-09-30 07:26 ravindra
22719 * SortOrder.cs: Enum for ListView control.
22721 2004-09-30 07:25 ravindra
22723 * ColumnHeader.cs: Supporting class for ListView control.
22725 2004-09-30 07:24 ravindra
22727 * ListView.cs, ListViewItem.cs: Initial implementation.
22729 2004-09-30 07:20 ravindra
22731 * ItemActivation.cs: Enum for ListView Control.
22733 2004-09-29 20:29 pbartok
22736 - Added lookup of pixel value for background color; tries to get a
22737 color 'close' to the requested color, it avoids having to create a
22738 colormap. Depending on the display this could mean the used color
22739 is slightly off the desired color. Might have to change it to a more
22740 resource intensive colormap approach, but it will work as a
22741 workaround to avoid red screens.
22743 2004-09-29 14:27 jackson
22745 * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
22747 2004-09-28 12:44 pbartok
22749 * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
22750 HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
22751 ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
22752 Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
22753 TrackBar.cs, VScrollBar.cs:
22754 - Streamlined Theme interfaces:
22755 * Each DrawXXX method for a control now is passed the object for
22756 the control to be drawn in order to allow accessing any state the
22757 theme might require
22759 * ControlPaint methods for the theme now have a CP prefix to avoid
22760 name clashes with the Draw methods for controls
22762 * Every control now retrieves it's DefaultSize from the current
22765 2004-09-28 12:17 jackson
22767 * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
22770 2004-09-24 14:57 jackson
22772 * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
22773 Gives us a nice little performance boost.
22775 2004-09-24 12:02 jackson
22777 * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
22778 TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
22779 Control and supporting classes. Initial checkin
22781 2004-09-23 13:08 jackson
22783 * Form.cs: Temp build fixage
22785 2004-09-23 01:39 ravindra
22787 * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
22788 ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
22789 ItemDragEventArgs.cs, ItemDragEventHandler.cs,
22790 LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
22791 EventHandlers needed by ListView Control.
22793 2004-09-22 14:12 pbartok
22795 * ScrollableControl.cs:
22796 - Implemented DockPadding property
22797 - Implemented AutoScroll property
22798 - Implemented AutoScrollMargin property
22799 - Implemented AutoScrollMinSize property
22800 - Implemented AutoScrollPosition property
22801 - Implemented DisplayRectangle property (still incomplete)
22802 - Implemented CreateParams property
22803 - Implemented HScroll property
22804 - Implemented VScroll property
22805 - Implemented OnVisibleChanged property
22807 2004-09-22 14:09 pbartok
22810 - Added Form.ControllCollection class
22811 - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
22812 RemoveOwnedForm (still incomplete, missing on-top and common
22813 minimize/maximize behaviour)
22814 - Added StartPosition property (still incomplete, does not use when
22816 - Added ShowDialog() methods (still incomplete, missing forcing the
22819 2004-09-22 14:05 pbartok
22822 - Added message loop for modal dialogs
22824 2004-09-22 14:02 pbartok
22827 - Fixed wrong types for events
22829 2004-09-22 14:00 pbartok
22831 * Shortcut.cs, FormWindowState.cs:
22832 - Fixed wrong values
22834 2004-09-22 12:01 jackson
22836 * Control.cs: Text is never null
22838 2004-09-20 22:14 pbartok
22841 - Fixed accessibility level for Idle handler
22843 2004-09-20 18:54 jackson
22845 * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22846 XplatUIX11.cs: New message loop that uses poll so we don't get a
22849 2004-09-17 10:43 pbartok
22852 - Fixed behaviour of arrow buttons. Now properly behaves like
22853 Buttons (and like Microsoft's scrollbar arrow buttons)
22855 2004-09-17 10:14 pbartok
22858 - Added missing release of keyboard/mouse capture
22860 2004-09-17 06:18 jordi
22862 * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
22863 Theme.cs: Very early menu support
22865 2004-09-16 17:45 pbartok
22868 - Fixed sending a window to the front
22869 - Added overload for SetWindowPos to avoid casting
22871 2004-09-16 17:44 pbartok
22874 - Added SendToBack and BringToFront methods
22876 2004-09-16 07:00 ravindra
22878 * Copyright: Added Novell URL.
22880 2004-09-16 07:00 ravindra
22882 * ToolBar.cs: Invalidate should be done before redrawing.
22884 2004-09-15 21:19 ravindra
22886 * ColumnHeaderStyle.cs: Enum for ListView Control.
22888 2004-09-15 21:18 ravindra
22890 * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
22893 2004-09-13 18:26 jackson
22895 * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
22898 2004-09-13 18:13 jackson
22900 * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
22901 a second thread and post messages into the main threads message
22902 queue. This makes timing much more consistent. Both win2K and XP
22903 have a minimum timer value of 15 milliseconds, so we now do this
22906 2004-09-13 15:18 pbartok
22908 * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22910 - Added Z-Ordering methods
22912 2004-09-13 10:56 pbartok
22915 - Fixed #region names
22916 - Moved properties and methods into their proper #regions
22918 2004-09-13 10:51 pbartok
22921 - Added Accept and CancelButton properties
22922 - Added ProcessDialogKey() method
22924 2004-09-13 08:18 pbartok
22926 * IWindowTarget.cs:
22929 2004-09-10 21:50 pbartok
22932 - Added DoDragDrop() [incomplete]
22933 - Properly implemented 'Visible' handling
22934 - Added SetVisibleCore()
22935 - Implemented FindChildAtPoint()
22936 - Implemented GetContainerControl()
22937 - Implemented Hide()
22939 2004-09-10 19:28 pbartok
22942 - Moved methods into their appropriate #regions
22943 - Reordered methods within regions alphabetically
22945 2004-09-10 18:57 pbartok
22947 * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
22948 - Added method to retrieve text from window
22950 2004-09-10 18:56 pbartok
22953 - Moved some internal functions into the internal region
22954 - Implemented FontHeight
22955 - Implemented RenderRightToLeft
22956 - Implemented ResizeRedraw
22957 - Implemented ShowFocusCues
22958 - Implemented ShowKeyboardCues
22959 - Implemented FromChildHandle
22960 - Implemented FromHandle
22961 - Implemented IsMnemonic
22962 - Implemented ReflectMessage
22963 - All public and protected Static Methods are now complete
22965 2004-09-10 16:54 pbartok
22968 - Implemented remaining missing public instance properties
22969 - Alphabetized some out of order properties
22971 2004-09-10 05:51 ravindra
22973 * PictureBox.cs: Added a check for null image.
22975 2004-09-10 00:59 jordi
22977 * GroupBox.cs: remove cvs tag
22979 2004-09-09 05:25 ravindra
22981 * ToolBar.cs: Make redraw accessible from ToolBarButton.
22983 2004-09-09 05:23 ravindra
22985 * ToolBarButton.cs: Changes in ToolBarButton need to make it's
22988 2004-09-09 02:28 pbartok
22990 * ThemeWin32Classic.cs:
22991 - Improve disabled string look
22993 2004-09-09 01:15 jordi
22995 * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
22998 2004-09-08 23:56 ravindra
23000 * ItemBoundsPortion.cs: It's enum, not a class!
23002 2004-09-08 23:47 ravindra
23004 * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
23007 2004-09-08 21:13 ravindra
23009 * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
23012 2004-09-08 21:03 ravindra
23014 * ThemeWin32Classic.cs: PictureBox would not draw a null image to
23017 2004-09-08 21:01 ravindra
23019 * ScrollableControl.cs: Removed unreachable code.
23021 2004-09-08 06:45 jordi
23023 * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
23025 2004-09-08 01:00 jackson
23027 * XplatUIX11.cs: Only run the timers when updating the message
23028 queue. This effectively gives X messages a higher priority then
23029 timer messages. Timers still need love though
23031 2004-09-07 14:01 jackson
23033 * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
23034 this for us and the handle is no longer valid.
23036 2004-09-07 13:59 jackson
23038 * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
23039 loop that manages to not crash. TODO: Add poll and cleanup timers
23041 2004-09-07 11:12 jordi
23043 * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
23045 2004-09-07 03:40 jordi
23047 * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
23048 fixes, methods, multiple links
23050 2004-09-06 06:55 jordi
23052 * Control.cs: Caches ClientRectangle rectangle value
23054 2004-09-05 02:03 jordi
23056 * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
23059 2004-09-04 11:10 jordi
23061 * Label.cs: Refresh when font changed
23063 2004-09-02 16:24 pbartok
23066 - Added sanity check to creation of double buffer bitmap
23068 2004-09-02 16:24 pbartok
23071 - Fixed selection of text color
23072 - Fixed handling of resize event; now properly recreates double
23074 - Added missing assignment of TextAlignment
23075 - Added proper default for TextAlignment
23077 2004-09-02 14:26 pbartok
23080 - Added missing RadioButton.RadioButtonAccessibleObject class
23082 2004-09-02 14:26 pbartok
23085 - Added missing Control.ControlAccessibleObject class
23086 - Started to implement Select()ion mechanisms, still very incomplete
23088 2004-09-02 14:25 pbartok
23090 * AccessibleObject.cs:
23091 - Added missing methods
23093 2004-09-02 14:23 pbartok
23095 * AccessibleNavigation.cs, AccessibleSelection.cs:
23098 2004-09-02 10:32 jordi
23100 * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
23101 pool for pens, brushes, and hatchbruses
23103 2004-09-01 15:30 jackson
23105 * StatusBar.cs: Fix typo
23107 2004-09-01 14:44 pbartok
23112 2004-09-01 14:39 pbartok
23114 * Button.cs, RadioButton.cs:
23115 - Functional initial check-in
23117 2004-09-01 14:01 pbartok
23120 - Added missing default
23121 - Added missing region mark
23123 2004-09-01 09:10 jordi
23125 * Label.cs: fixes method signatures, new methods, events, fixes
23128 2004-09-01 07:19 jordi
23130 * Control.cs: Init string variables with an empty object
23132 2004-09-01 04:20 jordi
23134 * Control.cs: fires OnFontChanged event
23136 2004-08-31 20:07 pbartok
23139 - Enabled display of strings
23141 2004-08-31 20:05 pbartok
23144 - Added (partial) implementation of DialogResult; rest needs to be
23145 implemented when the modal loop code is done
23147 2004-08-31 19:55 pbartok
23150 - Fixed to match the removal of the needs_redraw concept
23152 2004-08-31 19:55 pbartok
23155 - Removed the rather odd split between 'needs redraw' and redrawing
23156 - Now handles the events that require regeneration (ambient
23157 properties and size)
23159 2004-08-31 19:41 pbartok
23162 - Added firing of BackColorChanged event
23163 - Added TopLevelControl property
23164 - Fixed handling of WM_ERASEBKGRND message
23166 2004-08-31 12:49 pbartok
23172 2004-08-31 12:48 pbartok
23175 - Finished (famous last words)
23177 2004-08-31 04:35 jordi
23179 * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
23180 scrolling bugs, adds new methods
23182 2004-08-30 14:42 pbartok
23185 - Implemented CheckBox drawing code
23187 2004-08-30 14:42 pbartok
23190 - Made Redraw() and CheckRedraw() virtual
23191 - Improved mouse up/down/move logic to properly track buttons
23193 2004-08-30 09:44 pbartok
23196 - Updated to fix broken build. Not complete yet.
23198 2004-08-30 09:28 pbartok
23203 2004-08-30 09:17 pbartok
23208 2004-08-27 16:12 ravindra
23210 * ToolBarButton.cs: Added TypeConverter attribute.
23212 2004-08-27 16:07 ravindra
23214 * ImageIndexConverter.cs: Implemented.
23216 2004-08-27 14:17 pbartok
23219 - Removed unneeded stack vars
23220 - First attempt to fix sizing issues when layout is suspended
23222 2004-08-25 15:35 jordi
23224 * ScrollBar.cs: more fixes to scrollbar
23226 2004-08-25 14:04 ravindra
23228 * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
23229 Added the missing divider code and grip for ToolBar Control.
23231 2004-08-25 13:20 pbartok
23234 - Control now properly passes the ambient background color to child
23237 2004-08-25 13:20 jordi
23239 * ScrollBar.cs: small bug fix regarding bar position
23241 2004-08-25 12:33 pbartok
23244 - Now only calls SetTimer or KillTimer if the enabled state has
23247 2004-08-25 12:33 pbartok
23250 - Fixed timer handling, now seems to work
23251 - Improved error message for window creation
23253 2004-08-25 12:32 pbartok
23256 - Fixed generation of MouseUp message
23258 2004-08-25 12:29 jordi
23260 * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
23261 and fixes for progressbar
23263 2004-08-24 18:43 ravindra
23265 * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
23266 in ToolBar control.
23268 2004-08-24 17:15 pbartok
23272 - Added missing events
23275 2004-08-24 17:14 pbartok
23277 * StatusBar.cs, PictureBox.cs:
23278 - Now uses Control's CreateParams
23280 2004-08-24 16:36 pbartok
23283 - Fixed background color handling
23284 - Fixed sending of enter/leave events on a grab
23286 2004-08-24 16:35 pbartok
23289 - Refined definitions for CrossingEvent
23291 2004-08-24 12:37 jordi
23293 * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
23294 formmating, methods signature, and adds missing events
23296 2004-08-24 12:24 jordi
23298 * Control.cs: fire OnEnabledChanged event
23300 2004-08-24 11:17 pbartok
23303 - Implemented SetTimer() and KillTimer()
23305 2004-08-24 11:16 pbartok
23308 - Now uses Remove instead of Add to kill the timer
23310 2004-08-24 10:16 jackson
23312 * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
23313 picture boxes in the theme now. Draw picture box borders and obey
23316 2004-08-24 05:49 jackson
23318 * Timer.cs: Remove top secret debugging code
23320 2004-08-24 05:34 jackson
23322 * PictureBox.cs: Temp hack to make picture boxes draw their full
23325 2004-08-24 05:29 jackson
23327 * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23328 XplatUIX11.cs: Move timers to the driver level. On X they are
23329 queued by the driver and checked on idle.
23331 2004-08-24 01:07 jackson
23333 * XplatUIX11.cs: Use a queue for async messages instead of passing
23334 them as ClientMessages since that was totally broken. Also simply
23335 check for events and return an idle message if none are found. This
23336 gives us an idle handler, and prevents deadlocking when no messages
23339 2004-08-23 18:19 ravindra
23341 * XplatUIWin32.cs: Removed the unwanted destructor.
23343 2004-08-23 17:27 pbartok
23346 - Finishing touches. Works now, just needs some optimizations.
23348 2004-08-23 16:53 jordi
23350 * ScrollBar.cs: small fix
23352 2004-08-23 16:45 pbartok
23355 - Removed debug output
23358 2004-08-23 16:43 jordi
23360 * ScrollBar.cs: [no log message]
23362 2004-08-23 16:10 pbartok
23365 - Fixed handling of WM_CLOSE message
23366 - Removed debug output
23368 2004-08-23 16:09 pbartok
23371 - Added handling of Idle event
23372 - Added handling of form closing
23373 - Fixed reporting of MessageLoop property
23374 - Removed some unneeded code, should provide a bit of a speedup
23376 2004-08-23 15:22 pbartok
23379 - Added InitLayout() method
23380 - Added code to properly perform layout when Anchor or Dock property
23382 - Changed 'interpretation' of ResumeLayout. MS seems to have a
23383 LAMESPEC, tried to do it in a way that makes sense
23385 2004-08-23 14:10 jordi
23387 * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
23388 properties and methods
23390 2004-08-23 13:55 pbartok
23393 - Properly fixed Jordi's last fix
23394 - Now uses Cursor's Position property instead of calling XplatUI
23397 2004-08-23 13:44 jordi
23399 * PaintEventHandler.cs: Adding missing attribute
23401 2004-08-23 13:39 pbartok
23404 - Implemented Position property
23406 2004-08-23 13:39 pbartok
23408 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23409 - Added method to move mouse cursor
23411 2004-08-23 13:39 pbartok
23414 - Fixed setting of background color
23415 - Added method to move mouse cursor
23417 2004-08-23 13:16 jordi
23419 * Control.cs: avoids null exception
23421 2004-08-22 17:46 jackson
23423 * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
23426 2004-08-22 17:40 jackson
23428 * XplatUIX11.cs: Add some missing locks
23430 2004-08-22 15:10 pbartok
23432 * Control.cs, Form.cs:
23433 - Removed OverlappedWindow style from Control, instead it's default
23435 - Made form windows OverlappedWindow by default
23437 2004-08-22 13:34 jackson
23439 * ScrollBar.cs: Update the position through the Value property so
23440 the OnValueChanged event is raised.
23442 2004-08-22 12:04 pbartok
23445 - Added Cursor.cs and UserControl.cs
23447 2004-08-22 12:03 pbartok
23450 - Started implementation, not usable yet
23452 2004-08-22 12:00 pbartok
23455 - Implemented UserControl (complete)
23457 2004-08-21 19:20 ravindra
23459 * ToolBar.cs: Correcting the formatting mess of VS.NET.
23461 2004-08-21 18:49 ravindra
23463 * ToolBar.cs: Probably this completes the missing attributes in
23466 2004-08-21 18:03 ravindra
23468 * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
23469 Fixed toolbar control signatures.
23471 2004-08-21 16:32 pbartok
23476 2004-08-21 16:30 pbartok
23481 2004-08-21 16:19 pbartok
23483 * Control.cs, Label.cs:
23486 2004-08-21 15:57 pbartok
23489 - Added loads of debug output for development
23490 - Fixed typo in method name
23492 2004-08-21 15:52 pbartok
23494 * ToolBarButtonClickEventArgs.cs:
23495 - Added missing base class
23497 2004-08-21 14:53 pbartok
23500 - Updated to match new GrabWindow signature
23502 2004-08-21 14:51 pbartok
23504 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23505 - Added method to get default display size
23507 2004-08-21 14:23 pbartok
23509 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23510 - Added method to query current grab state
23511 - Added argument to allow confining a grab to a window
23513 2004-08-21 14:22 pbartok
23516 - Added [Flags] attribute so that modifiers can be used in bitwise
23519 2004-08-21 14:21 pbartok
23521 * TrackBar.cs, ScrollBar.cs:
23522 - Replaced direct XplatUI calls with their Control counterpart
23524 2004-08-21 13:32 pbartok
23527 - Implemented Created property
23529 2004-08-21 13:28 pbartok
23532 - Implemented ContainsFocus
23534 2004-08-21 13:26 pbartok
23537 - Implemented CausesValidation
23539 2004-08-21 13:21 pbartok
23542 - Implemented CanFocus
23543 - Implemented CanSelect
23544 - Implemented Capture
23546 2004-08-21 12:35 pbartok
23549 - Fixed bug with Async message handling
23550 - Implemented getting the ModifierKeys
23552 2004-08-21 12:32 jackson
23554 * AsyncMethodResult.cs: Make sure we have the mutex before we
23555 release it. Fixes BeginInvoke on windows
23557 2004-08-21 11:31 pbartok
23559 * XplatUIWin32.cs, XplatUIX11.cs:
23560 - Drivers now return proper mouse state
23562 2004-08-21 10:54 jackson
23564 * Control.cs: Implement EndInvoke
23566 2004-08-21 10:48 jackson
23568 * Timer.cs: Remove unneeded finalizer
23570 2004-08-20 19:52 ravindra
23572 * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
23573 in mouse event handling in the ToolBar control.
23575 2004-08-20 19:50 ravindra
23577 * ImageList.cs: Changed draw method to use the arguments passed in
23580 2004-08-20 18:58 pbartok
23582 * XplatUIStructs.cs:
23583 - Added private message for async communication
23585 2004-08-20 17:38 ravindra
23587 * Control.cs: Made RightToLeft property virtual and removed a
23590 2004-08-20 14:39 jordi
23592 * ThemeGtk.cs: use style_attach
23594 2004-08-20 14:39 pbartok
23597 - Added jackson's Async code from X11 to Win32
23599 2004-08-20 14:09 pbartok
23602 - Added all new files
23604 2004-08-20 14:09 pbartok
23607 - Added call to set window background color
23609 2004-08-20 14:03 pbartok
23611 * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
23612 - Added method for setting the window background
23614 2004-08-20 14:02 pbartok
23617 - Added method for setting the background color
23618 - Added handling for erasing the window background
23620 2004-08-20 13:45 jordi
23622 * TrackBar.cs: fixes timer, new properties and methods
23624 2004-08-20 13:34 jackson
23626 * ScrollBar.cs: Use the SWF timer so callbacks are run in the
23629 2004-08-20 13:22 jackson
23631 * Timer.cs: Timer Tick events are now handed through Controls Async
23632 mechanism so the callbacks are executed in the same thread as X
23634 2004-08-20 13:19 jackson
23636 * XplatUIDriver.cs: Expose functionality to send async messages
23639 2004-08-20 13:18 jackson
23641 * Control.cs: Implement Begininvoke
23643 2004-08-20 13:14 jackson
23645 * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
23646 messages through the driver
23648 2004-08-20 13:12 jackson
23650 * XplatUIX11.cs: Lock before all X operations. Also added Async
23651 method functionality through XSendEvent
23653 2004-08-20 13:11 jackson
23655 * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
23656 This will screw up on 64 bit systems)
23658 2004-08-20 13:10 jackson
23660 * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
23661 Async messages through X/Win32
23663 2004-08-19 19:39 pbartok
23666 - Updated code to match new HandleData.DeviceContext type
23668 2004-08-19 19:38 pbartok
23671 - Made DeviceContext a generic object to allow usage from various
23673 - Added support for queueing Windows messages
23675 2004-08-19 19:37 pbartok
23678 - Added generation of MouseEnter, MouseLeave and MouseHover events
23679 - Added cleanup on EndPaint
23681 2004-08-19 19:17 pbartok
23684 - Added handling of WM_MOUSEHOVER
23685 - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
23688 2004-08-19 18:55 jordi
23690 * ThemeGtk.cs: fixes button order
23692 2004-08-19 18:12 jordi
23694 * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
23696 2004-08-19 17:09 pbartok
23699 - Added Right property
23700 - Added RightToLeft property
23702 2004-08-19 16:27 jordi
23704 * ThemeGtk.cs: experimental GTK theme support
23706 2004-08-19 16:26 jordi
23708 * ITheme.cs, Theme.cs: move themes from an interface to a class
23710 2004-08-19 16:25 jordi
23712 * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
23715 2004-08-19 16:04 pbartok
23718 - Added colormap basics
23719 - Added a way to re-initialize with a different display handle
23720 - Fixed setting of the window background color
23721 - Added various X11 imports related to colors and colormaps
23723 2004-08-19 15:51 pbartok
23726 - Removed packing hints (Paolo suggested this a while back)
23727 - fixed colormap type
23728 - Added default Atom types
23729 - Added Screen and color structs and enums
23731 2004-08-19 15:39 pbartok
23734 - Added missing Draw() method
23735 - Added missing RecreateHandle event
23737 2004-08-19 15:30 pbartok
23740 - Added handling of WM_CLOSE
23742 2004-08-18 13:16 jordi
23744 * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
23747 2004-08-18 09:56 jordi
23749 * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
23751 2004-08-17 15:31 ravindra
23753 * SWF.csproj: Updated project.
23755 2004-08-17 15:25 pbartok
23758 - Drawing improvement; don't call UpdateBounds if we are not visible
23759 (or have been minimized)
23761 2004-08-17 15:24 pbartok
23764 - Finished IsVisible
23765 - Added Win32GetWindowPlacement
23767 2004-08-17 15:08 jackson
23769 * Panel.cs: Initial checkin of the Panel
23771 2004-08-17 14:25 pbartok
23774 - Fixed broken handling of default window sizes
23776 2004-08-17 13:29 jackson
23778 * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
23779 has a large startup time.
23781 2004-08-17 10:25 jackson
23783 * HandleData.cs: union areas properly
23785 2004-08-17 10:12 jackson
23787 * HandleData.cs: union areas properly
23789 2004-08-16 20:00 ravindra
23791 * ToolBar.cs, ToolBarButton.cs: Added attributes.
23793 2004-08-16 18:48 ravindra
23795 * ToolBar.cs: Added attributes.
23797 2004-08-16 17:17 ravindra
23799 * SWF.csproj: Updated project.
23801 2004-08-16 17:16 jackson
23803 * XplatUIX11.cs: Check for more expose events before sending a
23804 WM_PAINT so they can all be grouped together. This makes dragging a
23805 window across another window redraw in a sane way.
23807 2004-08-16 15:47 pbartok
23810 - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
23811 support OnMouseEnter/Leave()
23812 - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
23815 2004-08-16 15:46 pbartok
23817 * XplatUIStructs.cs, XplatUIX11.cs:
23818 - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
23819 OnMouseEnter/Leave()
23821 2004-08-16 15:34 jackson
23823 * XplatUIX11.cs: Group multiple expose events in HandleData, make
23824 sure messages get the message field set to WM_NULL if they are not
23827 2004-08-16 15:24 jackson
23829 * HandleData.cs: HandleData is used for storing message information
23832 2004-08-15 17:23 ravindra
23834 * ColorDepth.cs: Added attribute.
23836 2004-08-15 17:23 ravindra
23838 * SWF.csproj: Updated project for ToolBar Control.
23840 2004-08-15 17:20 ravindra
23842 * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
23843 control and also dos2unix format.
23845 2004-08-15 17:13 ravindra
23847 * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
23848 ToolBarButtonClickEventArgs.cs,
23849 ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
23850 ToolBarTextAlign.cs: First Implementation of ToolBar control.
23852 2004-08-15 15:31 pbartok
23855 - First (mostly) working version
23857 2004-08-13 16:15 pbartok
23860 - Fixed Anchor default
23862 2004-08-13 15:43 pbartok
23865 - Changed GetCursorPos signature
23867 2004-08-13 15:42 pbartok
23869 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23870 - Changed signature for GetCursorPos
23872 2004-08-13 15:25 pbartok
23876 - Fixed resizing/exposure handling
23878 2004-08-13 15:22 jordi
23880 * ThemeWin32Classic.cs: removes redundant code and fixes issues
23883 2004-08-13 14:55 jordi
23885 * TrackBar.cs: change from wndproc to events
23887 2004-08-13 13:00 jordi
23889 * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23890 XplatUIX11.cs: implements PointToClient (ScreenToClient)
23892 2004-08-13 12:53 pbartok
23895 - Changed GetWindowPos to also provide client area size
23896 - Fixed broken prototypes for several win32 functions
23898 2004-08-13 12:53 pbartok
23900 * XplatUI.cs, XplatUIDriver.cs:
23901 - Changed GetWindowPos to also provide client area size
23903 2004-08-13 12:52 pbartok
23906 - Added generation of WM_POSCHANGED
23907 - Changed GetWindowPos to also provide client area size
23909 2004-08-13 12:52 pbartok
23912 - Added Dispose() and destructor
23913 - Fixed resizing and bounds calculation
23915 - Added memory savings for invisible windows
23917 2004-08-13 12:46 jordi
23919 * TrackBar.cs: adds timer and grap window
23921 2004-08-13 10:25 jackson
23923 * Timer.cs: SWF Timer
23925 2004-08-12 16:59 pbartok
23927 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23928 - Implemented method to get current mouse position
23930 2004-08-12 14:29 jordi
23932 * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
23933 enhancement, fix mouse problems, highli thumb, etc
23935 2004-08-12 13:31 pbartok
23938 - Fixed Anchoring bugs
23940 2004-08-12 13:01 jackson
23942 * StatusBar.cs: Don't forget things
23944 2004-08-12 12:54 jackson
23946 * ThemeWin32Classic.cs: Handle owner draw status bars
23948 2004-08-12 12:54 jackson
23950 * StatusBar.cs: Implement missing properties, events, and methods.
23951 Handle mouse clicking
23953 2004-08-12 10:19 jackson
23955 * StatusBarPanelClickEventArgs.cs,
23956 StatusBarPanelClickEventHandler.cs: Classes for handling status
23957 bar panel click events
23959 2004-08-12 10:10 jackson
23961 * Control.cs: Add missing properties
23963 2004-08-12 09:46 pbartok
23965 * BindingsManagerBase.cs:
23966 - Name changed to BindingManagerBase.cs
23968 2004-08-12 09:25 jordi
23970 * ScrollableControl.cs: calls ctrlbase instead of exeception
23972 2004-08-11 16:28 pbartok
23974 * InputLanguageChangingEventArgs.cs:
23975 - Never check in before compiling. Fixes the last check-in
23977 2004-08-11 16:26 pbartok
23979 * InputLanguageChangingEventArgs.cs:
23980 - More signature fixes
23982 2004-08-11 16:20 pbartok
23984 * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
23985 Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
23986 ImageListStreamer.cs, InputLanguage.cs,
23987 InputLanguageChangedEventArgs.cs,
23988 InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
23989 LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
23990 ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
23991 XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23994 2004-08-11 16:16 pbartok
23998 - Added .Net 1.1 method
24000 2004-08-11 15:25 pbartok
24003 - Fixed BindingManagerBase.cs filename
24005 2004-08-11 15:22 pbartok
24007 * BindingManagerBase.cs:
24008 - Was checked in with wrong filename
24010 2004-08-11 14:50 pbartok
24015 2004-08-11 13:41 jordi
24017 * XplatUIWin32.cs: Fixes ClientRect
24019 2004-08-11 13:19 pbartok
24021 * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24023 - We had SetWindowPos and MoveWindow to set window positions and
24024 size, removed MoveWindow. We have GetWindowPos, so it made sense to
24025 keep SetWindowPos as matching counterpart
24026 - Added some X11 sanity checking
24028 2004-08-11 12:59 pbartok
24031 - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
24032 (It seems that SetBounds is just a front for SetBoundsCore and
24033 SetBoundsCore updates the underlying window system and
24034 UpdateBounds is responsible for updating the variables associated
24035 with the Control and sending the events)
24036 - Major cleanup of Size handling; we now have two sizes, client_size
24037 and bounds. Bounds defines the window with decorations, client_size
24040 2004-08-11 12:55 pbartok
24042 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24043 - Added method to calculate difference between decorated window and
24046 2004-08-11 12:54 pbartok
24049 - Forcing redraw on resize
24051 2004-08-11 11:43 pbartok
24054 - Removed disposing of the actual images when the list is disposed
24056 2004-08-11 09:13 pbartok
24059 - Now properly reparents windows
24061 2004-08-11 08:37 pbartok
24066 2004-08-11 07:47 pbartok
24069 - Rewrote the collection stuff. Might not be as fast now, not
24070 keeping the number of children around and accessible directly, but
24071 it's more straightforward
24073 2004-08-11 07:44 pbartok
24075 * AccessibleObject.cs:
24076 - Fixed to match ControlCollection rewrite
24078 2004-08-11 07:43 pbartok
24081 - Added missing creation of the collection list
24083 2004-08-10 20:08 jackson
24085 * StatusBar.cs: Get the paint message from WndProc
24087 2004-08-10 19:31 jackson
24089 * ThemeWin32Classic.cs: Create Brushes as little as possible
24091 2004-08-10 19:20 jackson
24093 * UICues.cs: Add Flags attribute
24095 2004-08-10 19:19 jackson
24097 * StatusBarPanel.cs: Signature cleanup
24099 2004-08-10 19:10 jackson
24101 * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
24102 Initial implementation of status bar item drawing
24104 2004-08-10 17:27 jordi
24106 * TrackBar.cs: add missing methods, properties, and restructure to
24109 2004-08-10 16:24 jackson
24111 * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
24112 ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
24115 2004-08-10 13:21 jordi
24117 * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
24118 enhancements and standarize on win colors defaults
24120 2004-08-10 12:52 jackson
24122 * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
24123 ThemeWin32Classic.cs: Implement DrawItem functionality
24125 2004-08-10 12:47 jordi
24127 * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
24129 2004-08-10 12:32 jordi
24131 * Control.cs: throw ontextchange event
24133 2004-08-10 11:43 pbartok
24136 - Added more to the still unfinished Dock/Anchor layout code
24138 2004-08-10 11:39 pbartok
24140 * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
24141 - Added GetWindowPos method
24143 2004-08-10 11:36 pbartok
24146 - Implemented several methods
24148 2004-08-10 09:47 jackson
24150 * TrackBar.cs: Allow control to handle buffering
24152 2004-08-10 09:41 jackson
24154 * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
24156 2004-08-10 09:24 jackson
24158 * Label.cs, LinkLabel.cs: Let Control handle buffering.
24160 2004-08-10 09:09 jackson
24162 * StatusBar.cs: Let Control handle all the buffering.
24164 2004-08-10 09:08 jackson
24166 * Control.cs: Control will now handle the buffering code, so each
24167 control does not have to implement this.
24169 2004-08-10 08:34 jackson
24171 * XplatUIDriver.cs: Use default colors from the theme
24173 2004-08-09 17:12 pbartok
24176 - Fixed several bugs Ravindra pointed out
24178 2004-08-09 16:11 pbartok
24181 - Added incomplete dock layout code
24182 - Added support for mouse wheel
24184 2004-08-09 16:09 pbartok
24187 - Added handling for middle and right mousebutton
24188 - Added handling for mouse wheel
24189 - Added handling for key state and mouse state and position
24190 - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
24193 2004-08-09 15:40 jackson
24195 * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
24196 StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
24199 2004-08-09 15:37 jackson
24201 * StatusBar.cs: Initial implementation of StatusBar
24203 2004-08-09 15:36 jackson
24205 * ITheme.cs: Add support for drawing status bar and getting status
24208 2004-08-09 15:35 pbartok
24213 2004-08-09 15:34 jackson
24215 * ThemeWin32Classic.cs: Add support for drawing status bar and get
24216 status bar item sizes
24218 2004-08-09 15:21 jackson
24220 * ThemeWin32Classic.cs: Use known colors for default control
24223 2004-08-09 15:12 jackson
24225 * ThemeWin32Classic.cs: Make the default font static, it is static
24226 in control so this doesn't change functionality and creating fonts
24229 2004-08-09 14:56 pbartok
24232 - Added GrabMode enum
24234 2004-08-09 14:55 pbartok
24236 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24237 - Removed Run method, was only required for initial development
24239 2004-08-09 14:51 pbartok
24241 * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24242 - Implemented GrabWindow/ReleaseWindow methods to allow pointer
24245 2004-08-09 13:48 pbartok
24248 - Fixed default sizing for child windows
24250 2004-08-09 12:56 pbartok
24253 - Added generation of WM_DESTROY message
24254 - Added handling of window manager induced shutdown
24256 2004-08-09 11:31 jackson
24258 * ThemeWin32Classic.cs: New names for control properties
24260 2004-08-09 11:25 jackson
24262 * Control.cs: Use new color names
24264 2004-08-09 11:02 jackson
24266 * XplatUI.cs: Get default window properties from the theme
24268 2004-08-09 11:01 jackson
24270 * ITheme.cs: The theme engine now controls default window
24273 2004-08-09 11:00 jackson
24275 * ThemeWin32Classic.cs: Add default window color properties
24277 2004-08-09 10:17 jackson
24279 * ThemeWin32Classic.cs: Use correct default back color
24281 2004-08-09 10:05 jackson
24283 * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
24286 2004-08-09 09:56 jackson
24288 * XplatUI.cs: Remove defaults, these are handled by the theme now.
24290 2004-08-09 09:54 jackson
24292 * Control.cs: Get default properties from the theme.
24294 2004-08-09 09:53 jackson
24296 * ITheme.cs: Themes now handle default control properties
24298 2004-08-09 09:53 jackson
24300 * ThemeWin32Classic.cs: Themes now handle default control
24301 properties so coloring will be consistent
24303 2004-08-08 16:54 jordi
24305 * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
24307 2004-08-08 15:08 jordi
24309 * XplatUIX11.cs: fixes keyboard crash
24311 2004-08-08 13:47 jordi
24313 * Label.cs: add cvs header info
24315 2004-08-08 12:09 jackson
24317 * ThemeWin32Classic.cs: Add pen_buttonface
24319 2004-08-08 11:52 jordi
24321 * Label.cs, LinkLabel.cs: [no log message]
24323 2004-08-08 11:34 jordi
24325 * ThemeWin32Classic.cs: Use Windows Standard Colours
24327 2004-08-07 17:32 jordi
24329 * TrackBar.cs: throw exceptions of invalid enums values
24331 2004-08-07 17:31 jordi
24333 * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
24336 2004-08-07 16:56 jackson
24338 * HorizontalAlignment.cs: Initial checkin
24340 2004-08-07 13:16 jordi
24342 * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
24345 2004-08-07 13:05 jordi
24347 * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
24348 GetSysColor defines
24350 2004-08-06 18:01 pbartok
24352 * ThemeWin32Classic.cs:
24353 - Fixed some rounding issues with float/int
24355 2004-08-06 18:00 jackson
24357 * DockStyle.cs, AnchorStyles.cs:
24359 Add flags and serializable attributes.
24361 2004-08-06 17:46 pbartok
24364 - Implemented GetParent
24366 2004-08-06 17:18 pbartok
24369 - Fixed some rounding issues with float/int
24371 2004-08-06 17:17 pbartok
24373 * X11Structs.cs, XplatUIX11.cs:
24374 - Fixed Refresh and Invalidate
24376 2004-08-06 15:30 pbartok
24378 * Control.cs, X11Structs.cs, XplatUIX11.cs:
24379 - Fixed recursive loop when resizing
24380 - Improved/fixed redrawing on expose messages
24382 2004-08-06 09:53 jordi
24384 * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
24385 keyboard navigation
24387 2004-08-06 08:02 pbartok
24389 * X11Structs.cs, XplatUIX11.cs:
24390 - Fixed reparenting
24391 - Fixed window border creation
24393 2004-08-05 15:38 pbartok
24396 - Attempted fix for reparenting problems
24398 2004-08-04 15:14 pbartok
24401 - Fixed Invalidation bug (calculated wrong client area)
24402 - Added ClientSize setter
24404 2004-08-04 15:13 pbartok
24407 - Added AutoScale properties
24409 2004-08-04 15:13 pbartok
24412 - Added latest files
24414 2004-08-04 14:11 pbartok
24416 * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24418 - Added Invalidate handling
24420 2004-08-03 17:09 jordi
24422 * XplatUIDriver.cs: fixes spelling mistake
24424 2004-07-27 09:53 jordi
24426 * TrackBar.cs: fixes trackbar events, def classname, methods
24429 2004-07-27 09:29 jordi
24431 * ScrollBar.cs: fixes scrollbar events
24433 2004-07-27 04:38 jordi
24435 * Control.cs: changes to be able to run winforms samples
24437 2004-07-26 11:42 jordi
24439 * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
24440 ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
24442 2004-07-26 05:41 jordi
24444 * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
24445 MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
24448 2004-07-22 09:22 jordi
24450 * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
24451 check link overlapping, implement events, and fixes
24453 2004-07-21 10:28 jordi
24455 * DialogResult.cs, IButtonControl.cs: fixes comments filenames
24457 2004-07-21 10:19 jordi
24459 * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
24460 LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
24461 LinkLabelLinkClickedEventArgs.cs,
24462 LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
24463 XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
24466 2004-07-19 13:09 jordi
24468 * Control.cs, Label.cs: label control re-written: added missing
24469 functionlity, events, and properties
24471 2004-07-19 10:49 jordi
24473 * Control.cs: fixes SetBounds logic
24475 2004-07-19 01:29 jordi
24477 * Control.cs: Call RefreshWindow only if the window has created
24479 2004-07-15 14:05 pbartok
24481 * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
24482 - Implemented ImageList and ImageList.ImageCollection classes
24483 - Added ColorDepth enumeration
24484 - Updated SWF VS.Net project
24486 2004-07-15 11:06 jordi
24488 * XplatUIStructs.cs: added MsgButons enum
24490 2004-07-15 11:03 jordi
24492 * Control.cs: added basic mouse handeling events
24494 2004-07-15 03:38 jordi
24496 * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
24497 Vertical TrackBar control implementation
24499 2004-07-13 09:33 jordi
24501 * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
24503 2004-07-13 09:31 jordi
24505 * Control.cs, Form.cs: commit: new properties and fixes form size
24508 2004-07-09 14:13 miguel
24510 * ProgressBar.cs: Spelling
24512 2004-07-09 11:25 pbartok
24515 - Removed usage of Rectangle for drawing. Miguel pointed out it's
24518 2004-07-09 11:17 miguel
24520 * ProgressBar.cs: 2004-07-09 Miguel de Icaza <miguel@ximian.com>
24522 * ProgressBar.cs: Fixed spelling for `block'
24524 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
24527 Avoid using the += on rect.X, that exposed a bug in the compiler.
24529 2004-07-08 23:21 pbartok
24531 * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
24532 AnchorStyles.cs, Application.cs, ApplicationContext.cs,
24533 BaseCollection.cs, Binding.cs, BindingContext.cs,
24534 BindingMemberInfo.cs, BindingsCollection.cs,
24535 BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
24536 BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
24537 ButtonState.cs, CaptionButton.cs, CheckBox.cs,
24538 ContainerControl.cs, Control.cs, ControlEventArgs.cs,
24539 ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
24540 ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
24541 CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
24542 DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
24543 FrameStyle.cs, GiveFeedbackEventArgs.cs,
24544 GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
24545 HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
24546 IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
24547 InputLanguageChangedEventArgs.cs,
24548 InputLanguageChangedEventHandler.cs,
24549 InputLanguageChangingEventArgs.cs,
24550 InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
24551 InvalidateEventArgs.cs, InvalidateEventHandler.cs,
24552 KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
24553 KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
24554 LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
24555 MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
24556 PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
24557 QueryAccessibilityHelpEventArgs.cs,
24558 QueryAccessibilityHelpEventHandler.cs,
24559 QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
24560 RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
24561 ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
24562 ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
24563 TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
24564 UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
24565 XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
24566 XplatUIX11.cs, lang.cs: