2006-07-12 Jackson Harper * ComboBox.cs: Clear out old items before setting the item list. This prevents databound controls from having their items added twice. 2006-07-12 Jackson Harper * TextBoxBase.cs: * ListView.cs: Don't need to override SETFOCUS anymore, we can do this using the internal methods. * Control.cs: Add OnGotFocusInternal. A new method that allows controls to "override" OnGotFocus and change focus behavior if needed. - Same thing for LostFocus * ComboBox.cs: Pass off focus to the text control properly. 2006-07-12 Alexander Olk * FileDialog.cs: Added GetFoldersOnly to MWFVFS * FolderBrowserDialog.cs: Almost a complete rewrite. - Better support for Environment.Specialfolders - Added support for MWFVFS - Made setting SelectedPath work 2006-07-12 Jackson Harper * Control.cs: Optimze getting all the controls. 2006-07-11 Jackson Harper * ContainerControl.cs: Override SETFOCUS in the container control, so that it is not selected on mouse click. 2006-07-11 Peter Dennis Bartok * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. Hopefully we will have a better way once all of focus is complete. 2006-07-11 Peter Dennis Bartok * ThemeWin32Classic.cs: Commented out some debug code and fixed a compile error with csc. 2006-07-11 Jackson Harper * Control.cs: When hiding a control only select the next control if the current control was focused. - Don't handle enter/leave when setting/killing focus, this is done by the container control. - Remove is_selected, it's not needed anymore. - Add utility methods for selecting a child control, and for firing the Enter/Leave events. * ContainerControl.cs: When a control is activated fire the enter/leave events. - Don't wrap when processing the tab key, so that focus can be moved outside of the container. - Use the correct active control 2006-07-11 Jackson Harper * ComboBox.cs: Remove some debug code that was blinding me. * UpDownBase.cs: These controls actually aren't implicit, they are visible to the user. 2006-07-10 Chris Toshok * DataGridTableStyle.cs: just check if the property type is bool. if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn. Don't use CanRenderType. * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "", if our text == NullText. Remove CanRenderType. * DataGridBoolColumn.cs: nuke CanRenderType. * DataGrid.cs: reenable some code to end the current edit inside of set_CurrentCell. This fixes the other 1.1.16 regression. Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height. Also, remove the visible_row_count arg from CalcRowHeaders, since we don't need to worry about the actual height of the area. 2006-07-10 Chris Toshok * DataGridTextBoxColumn.cs: if when we Commit we're in navigate mode, just return. * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect the real sense of the IsInEditOrNavigateMode property (true = navigate, false = edit). Also, update OnKeyPress to reflect this. * DataGridTableStyle.cs (CreateColumnsForTable): even if the column style exists, we still need to set its property descriptor to match up with our list manager. 2006-07-10 Chris Toshok * ThemeWin32Classic.cs: implement the new row/header painting approach. The parent row painting will likely go away and replaced with label controls, but the rest seems to work ok (and efficiently). * Theme.cs: change the way we draw datagrid rows. we don't draw the row headers as a block now. Instead we draw them in the normal draw-row loop. Add some calls for drawing parent rows and relation rows. * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is a default table style. Set the defaults from ThemeEngine.Current, not SystemColors. Fix lots of misc issues with property setters. * DataGrid.cs: move loads of style information out of this class as it's being duplicated with DataGridTableStyle. keep track of a special DataGridTableStyle for the properties we used to mirror here. Switch all the style properties to access this table style instead of instance fields of this class. Also add a internal class to represent parent rows (more needs to be stored here, like the selection state from the parent table, as well as the expansion state.) Also, for datasources with relations, do the right thing for collapse/expand, and add support for the navigation/parent row buttons. Lastly, fix the crash in the 1.1.16 build. * GridTableStylesCollection.cs: make the explicit interface implementations call the class's methods as opposed to duplicating them. * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to 0 so the text doesn't jump around when we move the cursor. 2006-07-10 Jackson Harper * TextBoxBase.cs: * ListBox.cs: Match MS's ToString (this makes debugging focus stuff infinitely easier). 2006-07-10 Jackson Harper * Control.cs (SelectNextControl): When checking the control's parent use this instead of ctrl.parent so that null can be passed to SelectNextControl. (I have unit tests for this). - Remove unused var. 2006-07-10 Chris Toshok * CurrencyManager.cs: correct one regression, the removal of the finalType field. Also, add a MonoTODO on CanAddRows, implement Refresh() correctly, and fix some event emission in ListChangedHandler. 2006-07-07 Alexander Olk * FileDialog.cs: Don't use brackets for new folders if they exist under *nix. Instead use -(number of existing folders +1). 2006-07-07 Alexander Olk * FileDialog.cs: - Fixed really nasty bug #78771 - Don't block the whole GUI when reading directories with a lot of entries. Use an other thread instead and call BeginInvoke to update the ListView in MWFFileView 2006-07-07 Chris Toshok * Control.cs (Dispose): release any Capture when disposing. 2006-07-07 Chris Toshok * LinkLabel.cs (Select): if we chain up to the parent, set focused_index to -1 so we'll search for the first available link the next time the user tabs into us. Also, if the direction is backward and focused_index == -1, start the search from the last element. 2006-07-07 Chris Toshok * LinkLabel.cs (CreatePiecesFromText): if the link's range piece is beyond the end of the text, don't do anything. (CreateLinkPieces): set our ControlStyles.Selectable based on whether or not we have any links. (Link.Invalidate): use a loop instead of foreach. (Link.set_Start): null out owner.sorted_links so it'll be recreated by CreateLinkPieces. 2006-07-06 Chris Toshok * LinkLabel.cs: revert the SetStyle change. 2006-07-06 Chris Toshok * LinkLabel.cs (.ctor): SetStyle Selectable to true. (OnEnableChanged): s/Refresh/Invalidate (OnGotFocus): if we have a focused index already, refocus it (so if we mouse out/in to the window it'll focus the right link). (OnKeyDown): move the tab handling out of here. (OnLostFocus): don't set focused_index to -1, so we can refocus it when we lose focus. (OnMouseDown): don't Capture here - Control handles it. Also, focus the active link. (OnMouseUp): don't deal with Capture. (OnPaintBackgroundInternal): remove. (OnTextAlignChanged): CreateLinkPieces before calling the superclass's method. (OnTextChanged): call CreateLinkPieces before calling superclass's method. (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to move around. (Select): implement this, moving the selection between different links, and call parent.SelectNextControl if we don't have another link to focus in the given direction. (CreateLinkPieces): call Invalidate instead of Refresh. 2006-07-06 Chris Toshok * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the new LinkLabel internals. * LinkLabel.cs: fairly major rewrite. get rid of all the loops over pieces looking for active/focused/etc links. also, deal with runs of text (and links) with embedded \n's in them, and use MeasureCharacterRanges instead of MeasureString to figure out the regions text occupies. Lastly, do the usual s/Refresh/Invalidate two-step. 2006-07-04 Jackson Harper * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have XKB or key auto repeat, do it manually. Without key auto repeat, when a key is held down we get key press, key release, key press, key release, ... with auto repeat we get key press, key press, key press ..., and then a release when the key is actually released. 2006-07-03 Jackson Harper * TabControl.cs: * ThemeWin32Classic.cs: Tabs do not obey normal background color rules, they are always control color regardless of the background color. 2006-07-02 Alexander Olk * FileDialog.cs: Added internal class MWFConfig. Removed Registry support and replaced it with support for the new MWFConfig class. See MWFConfig comments for more information. 2006-06-30 Alexander Olk * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus rectangle. Added some patches from eno from bug #78490 and fixed the arrow position for small up and down CPDrawScrollButtons. 2006-06-30 Jackson Harper * InternalWindowManager.cs: Remove some debug code. * Form.cs: When an MdiParent is set to null, the window is "detatched" and becomes a normal window. * MdiClient.cs: Don't bring the new child form to the front until it is activated (setting it as active does this), this makes the previously active forms titlebar get redrawn as inactive. 2006-06-29 Peter Dennis Bartok * PrintDialog.cs: Labels need a tab index too, otherwise they overlap with later controls 2006-06-29 Mike Kestner * MenuAPI.cs: handle arrow keys in keynav state. Go active on down arrow in keynav state. Fixes #78682. 2006-06-28 Atsushi Enomoto * PrintDialog.cs: Reorder, relayout, remove extra code, set tab order (fixes #78393) 2006-06-28 Jonathan Pobst * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs, ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs, FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs, GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs, ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs, Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs, TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs, ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x enumerations (FlagsAttribute, SerializableAttribute, added/removed values) 2006-06-28 Mike Kestner * ComboBox.cs: implement scroll wheel support. Fixes #78360. 2006-06-28 Atsushi Enomoto * PropertyGrid.cs, PropertyGridTextBox.cs : explicitly set BackColor to differentiate item lines from other area (It also makes BackColor consistent and compatible with .NET). Fixed bug #78564. 2006-06-28 Jonathan Chambers * PropertyGrid.cs: refresh toolbar when PropertySort is set. Patch from Eno for #78555. 2006-06-27 Chris Toshok * ThemeWin32Classic.cs: s/grid.grid_drawing/grid * DataGridColumnStyle.cs: same. * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file. * DataGridDrawingLogic.cs: nuke. 2006-06-27 Chris Toshok * DataGridTableStyle.cs: clean up the constructors, and build the list of child relations for this table. I have no idea if this is where we should be doing it (it probably isn't), but since we're already iterating over the properties.. * DataGrid.cs: add row resizing. for now we add a DataGridRow struct and array for keeping track of row information, similar to what's shown in a hack on http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx. * Theme.cs: be consistent about the naming of DataGrid methods, prefering ColumnWidths and RowHeights over columnsWidths and RowsHeights. * ThemeWin32Classic.cs: same, and also add support for variable sized rows (and the +/- expansion icons for related rows). 2006-06-27 Peter Dennis Bartok * TextBoxBase.cs: Applied Eno's patch from #78660 2006-06-27 Peter Dennis Bartok * Form.cs (ScaleCore): We don't want to scale our form if it's state is minimized or maximized, but we still need to scale our child windows. Also, added try/finally block to ensure layout gets reset (Fixes #78697) 2006-06-27 Peter Dennis Bartok * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700) 2006-06-27 Peter Dennis Bartok * Form.cs: Fixed c+p error and added check to resize form if minimum size is bigger than current size (Fixes #78709) 2006-06-26 Peter Dennis Bartok * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704) 2006-06-26 Mike Kestner * ComboBox.cs: only do Keypress handling in the combo when there are items in the collection. Fixes #78710. 2006-06-26 Chris Toshok * Binding.cs: make this work bi-directionally. also, clear up other mixups between Push/Pull Data (e.g. we're supposed to pull data when validating). * BindingManagerBase.cs: trim some fully qualified collection types. * PropertyManager.cs (get_IsSuspended): oops, fix this check. 2006-06-23 Chris Toshok * PropertyManager.cs: It appears (according to the unit tests) that PropertyManager doesn't use PropertyDescriptor.AddValueChanged to track propery value changes in its datasource, but uses the same scheme as Binding, where it looks for a Changed event and binds to it. Also, according to the docs, IsSuspended always returns false for a property manager with a non-null datasource. 2006-06-22 Peter Dennis Bartok * Form.cs: (ShowDialog): If we're returning a forced cancel we still need to update the actual DialogResult. (Fixes #78613) 2006-06-22 Peter Dennis Bartok * Form.cs (ShowDialog): Release any captures before running the new message pump (fixes #78680) 2006-06-22 Mike Kestner * ListView.cs: Layout column widths properly in details mode even if HeaderStyle.None is set. Fixes #78691. 2006-06-21 Peter Dennis Bartok * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially. 2006-06-21 Peter Dennis Bartok * Control.cs (ContainsFocus): Using new driver method to get focused window, instead of trying to use internal tracking var, which can recursion issues (Fixes #78685) * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added GetFocus method to return focused window 2006-06-21 Gonzalo Paniagua Javier * ColorDialog.cs: when the mouse button is pressed inside the color matrix, don't let the cursor move out of it until the button is released, which is the behavior on windows. Changed 'colours' by 'colors' to use the same word consistently. 2006-06-21 Chris Toshok * DataGrid.cs: add in some basic navigation stuff (navigating to a child relation and back, using a stack). Also, remove GetDataSource and the code that calls it - it's not needed. Also, track CurrencyManager.ListName's removal. 2006-06-21 Chris Toshok * CurrencyManager.cs: push some of the original type checking from BindingContext.CreateBindingManager to here, and remove some of the finalType stuff. Need more tests to make sure I've got the ListName part right, and we might need more in SetDataSource. * PropertyManager.cs: add a ctor that takes just the datasource, and no property name. Make SetDataSource work with a null property_name, and make Current return the data_source if the property descriptor is null. this makes 'string foo = "hi"; BindingContext[foo].Current' return "hi" as it should. * RelatedCurrencyManager.cs: make this code more generic - there's no reason the parent manager has to be CurrencyManager, and there's no reason to pass the DataRelation. It suffices to use a BindingManagerBase and PropetyDescriptor. * RelatedPropertyManager.cs: make a similar change here. * BindingContext.cs: make CreateBindingManager the beautiful, tiny flower I knew it could be. 2006-06-20 Chris Toshok * PropertyManager.cs: the PropertyChangedHandler is invoked when data in the source has changed and we need to update the control, so s/PullData/PushData. * CurrencyManager.cs: Refresh is meant to update the control from data in the datasource. So, s/PullData/PushData. * BindingContext.cs: add more ugliness (we weren't handling the case where data_source = DataTable and data_member = column_name). * Binding.cs: fix PushData/PullData mixup. Both are interpreted from the perspective of the datasource. PullData pulls from the control, PushData pushes to the control. 2006-06-20 Chris Toshok * BindingContext.cs: rewrite the CreateBindingManager code to handle navigation paths more or less properly. This could definitely stand some more work, in particular to push the recursion up to the toplevel. But that relies on fixes in other places (System.Data comes to mind). Also, move to a flat hashtable (and encode the twolevel nature of the dictionary into the hash key). This lets us implement the IEnumerable.GetEnumerator method. * RelatedCurrencyManager.cs: new class. Update our view based on our relation and our parent CurrencyManager's position. * CurrencyManager.cs: split out some logic from the ctor into SetView, so it can be called from the new RelatedCurrencyManager subclass. * RelatedPropertyManager.cs: new class. Update our datasource based on the position of our parent CurrencyManager. * PropertyManager.cs: split out some logic from the ctor into SetDataSource, so it can be called from the new RelatedDataSource subclass. Also, make the Current getter return the value of the PropertyDescriptor, not the data_source. * Binding.cs: no need to duplicate the string splitting code here. 2006-06-19 Peter Dennis Bartok * Control.cs: - set_Enabled: OnEnabledChanged is not called if the inherited state of the control is not altered, even though we might be changing the internal state of the control (#78458) - set_Enabled: (Re)Moved the enabling/disabling of the window to OnEnabledChanged, to allow easy altering of any child window state - OnEnabledChanged: Added code to enable/disable driver window state - OnParentEnabledChanged: Instead of firing the event, call OnEnabledChanged, which will fire the event and also a) set driver window state and pass the enabled state to any grandchildren (#78458) 2006-06-19 Jackson Harper * InternalWindowManager.cs: We don't set the cursor explicitly thats done via the response to NCHITTESTs. - Don't need to adjust for titlebar heights anymore, the coordinates are coming in the correct coordinates now (see peters last patch). 2006-06-19 Peter Dennis Bartok * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly being translated relative to whole window, instead of client window. That caused broken offsets on mouseclick (and caused gas for our InternalWindowManager) 2006-06-15 Peter Dennis Bartok * TextControl.cs: - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown - Undo(): Added replay of cursor move on DeleteChars action; added calling Undo() again if a recorded cursor move is invalid (to ensure that some action is performed on Undo) * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482) 2006-06-16 Jackson Harper * MdiClient.cs: Instead of just sizing maximized windows when there is a resize we also have to adjust the Y of minimized windows, so they stay pinned to the bottom of the mdi container. - Eliminate separate tracking of the active control, we can just get this from the controls collection. - Paint the decorations for the newly activated titlebar so we get a pretty blue bar. * InternalWindowManager.cs: * ThemeWin32Classic.cs: Minimized windows get all three buttons even if they are a tool window. 2006-06-15 Peter Dennis Bartok * TextControl.cs (Undo): Handle non-existent cursor locations in the undo buffer, these can happen when text was deleted and the cursor was recorded first. Since we will also have a recorded cursor after the delete this is not an issue. (Fixes #78651) 2006-06-14 Peter Dennis Bartok * AccessibleObject.cs: Remove dependence on Control.is_selected; instead properly track control states internally (allows us to remove is_selected from Control) 2006-06-14 Gonzalo Paniagua Javier * ImageListStreamer.cs: correctly generate the 1bpp mask for images whose width is not a multiple of 8. 2006-06-13 Jackson Harper * MdiClient.cs: Only maximize the next child if the current one is maximized. 2006-06-13 Chris Toshok * DataGridColumnStyle.cs: Invalidate the column when HeaderText is modified. Also, guard against grid or grid_drawing being null in Invalidate. * DataGrid.cs: Reformat tons of getters/setters. In the DataMember setter, just call SetNewDataSource instead of duplicating some of its functionality. In SetNewDataSource, don't check ListManager for null, since the property getter creates the object if needed. * DataGridTableStyle.cs: don't set TableStyle or call SetDataGridInternal on the column here, it's done in GridColumnStylesCollection.Add. * GridColumnStylesCollection.cs: fix all the explicit interface implementations to just call our methods. Nuke AddInternal() and move the body of it to Add(). Also, add a call to column.SetDataGridInternal to Add(). * DataGridTextBoxColumn.cs (.ctors): call this() instead of base()+duplicate code. Also, use the Format property instead of format to generate an Invalidate ala MS. Lastly, create the textbox here, unconditionally. (set_Format): call Invalidate. (get_TextBox): no need to call EnsureTextBox. (Commit): remove the message box. (Edit) remove the call to EnsureTextBox. (EndEdit): call HideEditBox instead of ReleaseHostedControl. (EnterNullValue): no need to check textbox for null. (HideEditBox): no need to check textbox for null. (SetDataGridInColumn): add the textbox to the grid's controls. (EnsureTextBox): nuke. 2006-06-13 Jackson Harper * MdiWindowManager.cs: Hook up to the maximized menus paint event and redraw the buttons when needed. Unhook when the window is unmaximized. * MainMenu.cs: Add an internal Paint event, the mdi window manager needs this so that it can redraw its buttons when the menu is repainted. * InternalWindowManager.cs: * Form.cs: The method order has changed for DrawMaximizedButtons, so that it can be a PaintEventHandler. 2006-06-13 Jackson Harper * MdiClient.cs: When we close a maximized mdi window, the next mdi window is activated and maximized, even if it wasn't before. - When a new window is activated repaint the decorations of the old one, so that it no longer has the Active "look" (the blue titlebar). * InternalWindowManager.cs: Open up CreateButtons to base classes so they can recreate the buttons on state changes. - If a window is maximized give it all three buttons * MdiWindowManager.cs: Create the titlebar buttons when the state is changed, this is needed because a toolwindow will not have all three buttons until it is maximized. 2006-06-13 Atsushi Enomoto * ProgressBar.cs : PerformStep() shouldn't exceed Maximum. Fixed bug #78609. 2006-06-12 Jackson Harper * KeysConverter.cs: Make sure we handle the Ctrl special case if its the only key. 2006-06-12 Jackson Harper * Theme.cs: Add a method to get the size of a managed window toolbar button. * InternalWindowManager.cs: Remove the ButtonSize property, this should be retrieved from the theme. * MdiWindowManager.cs: Get the button size from the theme * ThemeWin32Classic.cs: Make the method to get the managed window titlebar button size public. - Handle the different button sizes of maximized toolwindows (should match any maximized window). - Get the titlebar height from the theme, not the WM (which gets it from the theme). 2006-06-12 Jackson Harper * InternalWindowManager.cs: Handle NC Double Clicks, passing the event down to the mdi window manager. - Expose some extra stuff to base classes - Make sure to end the Capture on an NC Mouse up, so that we can get double clicks properly, and the sizing doens't stick. - When doing PointToClient contain it in the workable desktop area, this prevents windows from changing size when the cursor is pulled outside of the working area while sizing. * MdiWindowManager.cs: When we get a double click maximize the window. - Reset the cursor after handling mode changes. 2006-06-12 Peter Dennis Bartok * XplatUIX11.cs (WorkingArea): Read the actual workarea for the current desktop, instead of just assuming a 0, 0 origin. This is needed for our internal window manager, to know the top margin of the desktop 2006-06-12 Chris Toshok * DataGrid.cs (set_CurrentCell): concede focus as we move around. we need this to get rid of the selected background in the bool column. (CancelEditing): move the ConcedeFocus call to above the Abort call. Also, set is_changing to false and invalidate the row header if we were changing before. (ProcessKeyPreviewInternal): remove, since noone outside this class calls it anymore. Roll the code into ProcessKeyPreview. (EndEdit): remove the internal version. (InvalidateCurrentRowHeader): make private. * DataGridBoolColumn.cs: simplify this class a bunch. remove the Keys.Escape handling (and with it the last call to DataGrid.EndEdit from outside the class.) 2006-06-12 Chris Toshok * DataGridTextBox.cs (.ctor): isedit defaults to false. (OnKeyPress): set isedit to true. (ProcessKeyMessage): remove Keys.Enter handling from here. it's already handled by the grid. * DataGrid.cs (set_CurrentCell): more work here. it's still not right. ugh. (set_DataSource): SetDataSource always returns true, so stop putting it in an if statement. (EndEdit): get rid of some {}'s (ProcessGridKey): return true in case Keys.Escape. (ProcessKeyPreviewInternal): only handle KEYDOWN messages. (ConnectListManagerEvents,DisconnectListManagerEvents): connect to PositionChanged, stopped connecting to CurrentChanged. (GetDataSource): simplify this a bunch. (SetDataSource): change return type from bool to void. (OnListManagerPositionChanged): rename OnListManagerCurrentChanged to this, and make sure we don't set ListManager.Position inside set_CurrentCell. (OnListManagerItemChanged): if we're passed an actual index, redraw that row. * CurrencyManager.cs (set_Position): don't call PullData here. 2006-06-09 Jackson Harper * TreeNode.cs: Recalculate the visible order before doing the Expand/Collapse Below calls, because those calls generate an expose. - Reduce calls to the TreeView property, which is mildly expensive by using a local var. * Form.cs: Layout the MDI child windows when creating the parent form. - Don't use the internal constructor anymore * MdiClient.cs: use the parent form width/height (if available) when laying out the child windows, we do this because the mdiclient isn't docked yet when the initial layout is done. - Don't need an internal constructor anymore. 2006-06-08 Gonzalo Paniagua Javier * FileDialog.cs: handle access errors when trying to create a folder or changing to a directory. No need to initialize out parameters. 2006-06-08 Alexander Olk * FileDialog.cs: Append a number when creating a new folder if the folder already exists (use parenthesis instead of square brackets) 2006-06-08 Alexander Olk * FileDialog.cs: - Disabled registry support for windows and added better registry error checking for other systems (need to investigate why it works perfectly on my system) - If a folder already exist show an error MessageBox instead of trying to create an indexed name. - Fixed a non intentional typo. 2006-06-08 Gonzalo Paniagua Javier * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null. 2006-06-08 Alexander Olk * FileDialog.cs: When creating a new folder don't crash if the folder already exists. 2006-06-08 Alexander Olk * FileDialog.cs: Allmost a complete rewrite. - added a "virtual" file system that handles the differences between unix and windows file systems (especially the directory structure). Moved most of the directory and file handling code into the vfs. Added vfs classes: MWFVFS, FileSystem, WinFileSystem, UnixFileSystem and FSEntry. - Recently used folder/directory, size, location and used file names (file name ComboBox) are now stored in the registry and get read before the dialog shows up (fixes part 6 of bug #78446). - Creation of new folders/directories is now possible (context menu or ToolBar). Added TextEntryDialog for this that fills in the gap until ListView.LabelEdit works. - Fixed cursor handling (bug #78527) and focus handling for PopupButtonPanel - Various "Search in" ComboBox enhancements. The content of the dropdown listbox now almost matches ms. - Changed the behaviour when the user switches to SpecialFolder Recent to show the ListView in View.Details. - Beside using the ToolBar to change the View property of the file ListView it is now possible to use the context menu too. 2006-06-08 Alexander Olk * ComboBox.cs: Don't create a new ObjectCollection when an item gets inserted. Just insert the item in the existing object_items ArrayList. 2006-06-08 Jackson Harper * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so that the treeview and root node checks are done also, this fixes a regression i caused in the unit tests. 2006-06-07 Wade Berrier * RichTextBox.cs: More ISO8859-1 -> unicode 2006-06-07 Mike Kestner * ComboBox.cs : use items to hold highlight/selection so that collection insertions don't require synchronization. 2006-06-07 Jackson Harper * InternalWindowManager.cs: Simplify (and FIX) the window sizing routine. We now always keep the sized edge at the cursor instead of computing movement and adjusting rects. There is one buglet with this method though when the cursor is moved over area that the window can not expand too (such as the toolbars on the desktop). 2006-06-07 Gonzalo Paniagua Javier * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null here. Fixes crash on startup in AlbumSurfer. 2006-06-07 Peter Dennis Bartok * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode values 2006-06-07 Gonzalo Paniagua Javier * XplatUIX11.cs: call XPending and XNextEvent inside the same lock() statement to avoid calling XNextEvent which will block if another thread took the event that we were expecting. Fixes bug #78605. 2006-06-07 Mike Kestner * ListView.cs : isolated checkbox clicking from the selection logic. Toggle check state on item doubleclicks. Really fixes #78454 part2. 2006-06-06 Carlos Alberto Cortez * Form.cs: Check that the value passed to Form.DialogResult is a valid enum value. 2006-06-06 Gonzalo Paniagua Javier * FileDialog.cs: disable the up button when in 'Recently Used' or 'My Computer'. Clicking it in the network view goes to 'My Computer'. Added CIFS filesystem type. Display the mount point of filesystems. Avoid duplicate mount points (happens for me with CIFS); 2006-06-06 Jackson Harper * InternalWindowManager.cs: Draw the maximized windows buttons when resizing. 2006-06-06 Gonzalo Paniagua Javier * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for all other dialogs. Fixes bug #78585. 2006-06-06 Mike Kestner * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too. Only invalidate checkbox on checkstate changes to avoid flicker. * ListBox.cs : avoid unselect/select when clicking selected item. avoid reselection flicker for already multiselected items. Fixes #78382. 2006-06-06 Jackson Harper * MdiWindowManager.cs: When the window is closed do an NCRecalc on the parent form so that the menu is removed if needed. 2006-06-06 Mike Kestner * ListBox.cs : add ScrollWindow call to UpdateTopItem. fix Prev/Next/PrevPage/NextPage/Home/End index calculation. Fixes #78559. 2006-06-06 Mike Kestner * CheckedListBox.cs : rebuild check collection on Add. Fixes #78426. 2006-06-06 Jackson Harper * Control.cs: Use the property (instead of the field) to get the default cursor so it is instantiated correctly. * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with resizes so we need to manually repaint the window decorations here. - Set the titlebar button locations as soon as they are created, otherwise they are not set correctly on win32. 2006-06-06 Chris Toshok * CurrencyManager.cs (set_Position): call PullData before OnCurrentChanged. (AddNew): after calling IBindingList.AddNew, update our listposition, and call OnCurrentChanged/OnPositionChanged (without calling PullData). (OnCurrentChanged): remove the call to PullData from here. (OnItemChanged): remove the call to PushData from here. (OnPositionChanged): change the test from == null to != null to match the other methods. (ListChangedHandler): the grossest part of the patch. Implement this such that it passes the unit tests in CurrencyManagerTest and the output more or less matches that of MS's implementation. 2006-06-06 Mike Kestner * ListView.cs : only update check state on single click. * ThemeWin32Classic.cs : fix focus drawing for details view without fullrowselect. Fixes #78454. * XplatUIX11.cs : fix for double click emission. 2006-06-05 Jonathan Chambers * PropertyGridView.cs : Applied Atsushi's patch to fix font dialog bug (#78197). 2006-06-05 Jackson Harper * TreeNode.cs: Compute the next node for expanding/collapsing correctly. We now factor in nodes without a NextNode correctly. (Fixes somes cases in nunit-gui). * InternalWindowManager.cs: Set the bounds when updating the virtual position of a tool window. 2006-06-05 Chris Toshok * DataGrid.cs: rename cached_currencymgr to list_manager. (set_CurrentCell): move SetCurrentCell code here, and clean it up some. (CurrentRow, CurrentColumn): single accessors so we can make the cursor movement code a lot easier to understand. (CurrentRowIndex): implement this in terms of CurrentRow. (BeginEdit): clean this up a bit. (CancelEditing): sort out the is_editing/is_changing/is_adding stuff a little. (EndEdit): minor changes. (OnKeyDown): add a comment about a (most likely) unnecessary check. (OnMouseDown): cancel editing when we click on a row header. And use the CurrentRow setter, not CurrentCell. (ProcessDialogKey): directly call ProcessGridKey. (UpdateSelectionAfterCursorMove): factor out this common block of code (it's used everywhere that we move the cursor by updating row or column). (ProcessGridKey): pretty substantial overhaul. Use the CurrentRow/CurrentColumn properties to make the code a lot more readable. Only use the CurrentCell property when we have to modify both row and column at once. Tab behavior is still broken, and Delete is untested. (Select): if we have no selected rows, set selection_start to @row. (EditCurrentCell): rename EditCell this. It was only ever invoked with CurrentCell as the arg, so drop the arg and rename it. * DataGridColumnStyle.cs: clean up the constructors a little, and drop CommonConstructor(). * DataGridTextBox.cs (.ctor): set accepts_return to true so we actually get notified when the user hits it. (ProcessKeyMessage): *substantially* simplify this method. There's no reason (that I can see) for the textbox to be making calls into the datagrid at all. Remove all of them but the ones for Enter handling. those will take some more work. * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by calling HideEditBox. (HideEditBox): if we have an active textbox, render it invisible without causing a re-layout of the datagrid. 2006-06-05 Mike Kestner * ListView.cs : fix NRE crasher when focuseditem is cleared by collection changes by resetting it to Items[0]. Fixes #78587. 2006-06-05 Gonzalo Paniagua Javier * MessageBox.cs: if the height of the text is larger than the icon_size, use that. Fixes bug #78575. 2006-06-05 Jackson Harper * TreeView.cs: Fix line drawing when scrolling. To do this each node is basically responsible for drawing its entire horizontal area. When drawing a node it draws its parent node lines if needed. - Adjust the clip area to the viewport rectangle - Fix Left/Right key handling to match MS. (It expand/collapses and moves to parents/first child but does not move selection to sibling nodes). - Fix SetTop to work with new bound calculation code - When scrollbars are no longer needed we need to reset scrolling vars and recalculate the visible order so the redraw is correct * TreeNode.cs: We can't expand/collapse nodes with no children. 2006-06-03 John Luke * X11DesktopColors.cs: dllimport the exact gtk and gdk versions so the colors work without dev packages 2006-06-02 Peter Dennis Bartok * Control.cs - Select: Implemented to just use activate. Seems to match MS behaviour closest. Documented to only do actual control walking based on it's parameters if in a container control so I moved the code there. - Removed selection check logic from our internal Select() method * ContainerControl.cs: - Select: Moved selection logic from Control here, since MS documents that containers obey the bool arguments. No longer calling base 2006-06-02 Jackson Harper * TreeView.cs: If the selected node isn't changed when we get focus update the previously selected node so that we see the selection box. 2006-06-02 Mike Kestner * ComboBox.cs: restructure grab and general mouse event handling. Make the composite control raise mouse events like it was a single control for leaves/enters/motion/up/down events. fix dropdown list coordinate mangling and refactor it into the scrollbar subclass to reduce code duplication. Fixes #78282 #78361 and #78457. 2006-06-02 Mike Kestner * ScrollBar.cs: remove Capture setting/clearing, as it happens automatically in the Control.WndProc. 2006-06-01 Gonzalo Paniagua Javier * FileDialog.cs: fix crash when running SharpChess, which sets the FilterIndex to 2 with only one Filter. 2006-06-01 Gonzalo Paniagua Javier * ToolBar.cs: add SizeSpecified property. * ToolBarButton.cs: when the ButtonSize is calculated by the container, try to figure out our real size, otherwise fallback to what the container says. 2006-06-01 Peter Dennis Bartok * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up * Control.cs (WndProc): MS always calls the DefWndProc to pass up the event 2006-06-01 Mike Kestner * ListView.cs: revamp the focus management in ListView. It still causes churn of LostFocus/GotFocus emissions on clicks, but it's better than not handling focus at all. Will revisit when pdb feels the general focus handling is solid. Fixes #78526. 2006-06-01 Jackson Harper * TreeView.cs: Set the default border style in the constructor. - Move painting to use OnPaintInternal instead of capturing WM_PAINT, this is the correct way of doing things - UpdateBelow shouldn't invalidate the scrollbar area - Cap the top on update below in case the node was above the top of the viewport rectangle. - ExpandBelow and Collapse below need to obey Begin/End Update. * TreeNode.cs: Make is_expanded internal so the treenode collection can change it without firing the whole event chain. * TreeNodeCollection.cs: When clearing all the child nodes make sure to recalc the visible order. - Improve algo for remove the top node 2006-06-01 Peter Dennis Bartok * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to SendMessage directly calling window procedures, which in turn might call SetFocus() 2006-06-01 Peter Dennis Bartok * Control.cs: Don't handle WM_SETFOCUS if the same window already has focus (works around X11 sending a FocusIn after our SetFocus) * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window 2006-06-01 Alexander Olk * Mime.cs: Fix for the NET_2_0 build. NameValueCollection needs StringComparer now. 2006-05-31 Chris Toshok * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also return (via an out parameter) the starting X of the column. (UpdateVisibleColumn): track change to FromPixelToColumn. (HitTest): add a ColumnResize case here. (DrawResizeLine): new function, probably poorly named. * DataGrid.cs (.ctor): get rid of cached_currencymgr_events. We only need to keep one reference. (set_ListManager): same. (OnMouseDown): call HitTest instead of grid_drawing.HitTest. Also, add support for HitTestType.ColumnResize. (OnMouseMove): add column resize behavior here, and change the cursor to the correct one as we move around the datagrid. (OnMouseUp): terminate the column resize if we're resizing. (ProcessGridKey): from the MS docs, Alt-0 enters the null value for the current cell. (ConnectListManagerEvents): use cached_currencymgr. (DisconnectListManagerEvents): fill this in, using cached_currencymgr. (SetCurrentCell): remove cached_currencymgr_events handling. (SetDataMember): only call DisconnectListManagerEvents if cached_currencymgr is != null. (SetDataSource): same. (OnListManagerCurrentChanged): cached_currencymgr_events -> cached_currencymgr. 2006-05-31 Jackson Harper * BindingManagerBase.cs: Remove somedebug code that creeped into SVN. * TreeNode.cs: We get the indent level dynamically right now, so don't track it as a member. * TreeNodeCollection.cs: Make sure all nodes added to the list have parents, treeviews/topnodes setup properly. - Don't attempt to track indent level. 2006-05-30 Jackson Harper * BindingContext.cs: Create the currency manager tables here. This allows us to more easily create null tables (when bad data members are used), and more easily create related currency managers. * CurrencyManager.cs: All the table creation stuff is done by the binding context now. - Current should throw an exception if listposition is -1. - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't been bound yet. 2006-05-30 Mike Kestner * ListView.cs: allow reexpansion of zero-width column headers. Fixes #78528. 2006-05-28 Chris Toshok * CurrencyManager.cs (get_Current): after the late binding listposition = -1 fix, we need to guard against it here and return null, otherwise we raise an exception (which is swallowed elsewhere, and breaks datagrid databinding.) 2006-05-26 Peter Dennis Bartok * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other than WM_SYSKEY, don't throw if get something unexpected (#78507) 2006-05-26 Jackson Harper * ControlPaint.cs: * ThemeWin32Classic.cs: For color comparisons just use the ARGB values, it's faster and it's all we care about (we don't care if the names aren't equal). * KeyboardLayouts.cs: Eliminate some dead code. - Lazy init things * X11Keyboard.cs: Lazy init keyboard detection. - Cleanup access modifiers a little. 2006-05-26 Peter Dennis Bartok * XplatUIX11.cs: Once again, attempting to get layout just right. 2006-05-26 Peter Dennis Bartok * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate the sizes of each link section, that will result in sizes that match DrawString's layout (Fixes #78391) 2006-05-27 Alexander Olk * FileDialog.cs: If AddExtension property is true autocomplete the extensions in SaveFileDialog correctly. Fixes bug #78453. Set MyNetwork and MyComputer to "C:\" for windows. This should fix part 8 of bug #78446 for now. 2006-05-26 Chris Toshok * DataGrid.cs (ColumnStartedEditing): fill these in. for now just invalidate the current row header if we need to, but presumably we'll invalidate the row corrsponding to the bounds or editingControl. (GridHScrolled): switch back to this method, as it's part of the public api. *sigh*. (GridVScrolled): same. (OnMouseWheel): hack up something that more or less works. Call GridHScrolled/GridVScrolled directly, instead of duplicating much of their code here. (EnsureCellVisibility): reinstate a bunch of this code, since we can't just set the scrollbar Value and expect to do all the work in the ValueChanged handler. Also, Call Update() after scrolling in one direction so the other XplatX11.ScrollWindow call has the proper stuff in the proper places. (EditCell): set is_editing to true before calling .Edit. * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it, don't bother comparing first. (OnKeyPress): call grid.ColumnStartedEditing before calling base.OnKeyPress. this will set is_changing and invalidate the row header if necessary. (ProcessKeyMessage): for WM_CHAR messages, call ProcessKeyEventArgs directly. swallow anything other than WM_CHAR and WM_KEYDOWN. * DataGridBoolColumn.cs (Edit): don't set is_editing to true here. it's done in the DataGrid. (NextState): call grid.ColumnStartedEditing, which takes care of invalidating the row header (and setting is_changing). * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true here. it's done in the DataGrid. 2006-05-25 Gonzalo Paniagua Javier * Control.cs: allow changing the cursor when the mouse position is out of bounds but Capture is set. * LinkLabel.cs: handle the case when the mouse button is pressed on the linklabel but released somewhere else. 2006-05-25 Jackson Harper * TreeView.cs: When we get focus if there is no selected node make it the top node - Remove some uneeded setup code from Draw. * TreeNodeCollection.cs: If the tree doesn't have a top node when a new node is inserted make the new node the top. * XplatUIX11.cs: * Timer.cs: Use Utc time so that no local time zone stuff needs to be used (should be faster). 2006-05-25 Chris Toshok * DataGrid.cs (EnsureCellVisibility): remove some code to fix a problem with the last commit. 2006-05-25 Chris Toshok * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do need the invalidate call here, while scrolling right-to-left via the left arrow key (i.e. moving the editing cell while scrolling). * DataGrid.cs (.ctor): remove the initialization of ctrl_pressed/shift_pressed. We no longer track them using key up/down handlers, but by using Control.ModifierKeys. Also, switch to using ValueChanged handlers on the scrollbars instead of Scrolled event handlers. This simplifies a bunch of the scrolling code. (GridHValueChanged): rename from GridHScrolled, and change it to work with the new event args. (GridVValueChanged): same. (OnMouseDown): initialize ctrl_pressed/shift_pressed here. (OnMouseWheel): actually scroll the datagrid. Don't change the selected cell. (ProcessGridKey): correct all the keyboard navigation stuff I could find. Ctrl up/down/left/right/home/end work now. (EnsureCellVisibility): correct method name spelling. Also, simplify this a touch by not explicitly calling the ScrollToRow/ScrollToColumnInPixels methods. We just set the scrollbar value. (OnKeyUpDG): no need for this method now. 2006-05-25 Gonzalo Paniagua Javier * LinkLabel.cs: display the OverrideCursor when hovering the label. Fixes bug #78392. 2006-05-25 Chris Toshok * ThemeWin32Classic.cs: fix datagrid clipping problems caused by r61019. 2006-05-25 Peter Dennis Bartok * Application.cs: Moved setting of is_modal and closing to before we create the control, to allow the event handlers called as a result of creation affect closing. Also removed Gonzalo's previous change to setting DialogResult, the behaviour has been moved to Form.ShowDialog() * Form.cs: - ShowDialog(): Removed explicit creation of the form, let RunLoop handle it instead - ShowDialog(): If no dialog result is set, we need to return Cancel - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if the close is cancelled 2006-05-25 Jackson Harper * StatusBar.cs: We only need to update the sizes of the other panels when we have auto size contents. Also we are only updating the contents of the panel, not the borders, so compensate for the border width (TODO: get this width from the theme somehow). * TreeView.cs: Scrollable is true by default - Use invalidate instead of refresh where needed - Factor the scrollable value into scrollbar updating - Update the scrollbars if the Scrollable property is altered - Update the selected node if its ImageIndex is changed - Handle null nodes in UpdateNode (mainly so we don't have to check if selected is null when updating it - Fix VisibleCount to use the ViewportRectangle so that scrollbars are factored into the visible count - Use VisibleCount for clarity in the code - When the font is changed we need to recurse through all the nodes and invalidate their sizes 2006-05-25 Gonzalo Paniagua Javier * Application.cs: set the DialogResult to fixed when the main form is hidden or destroyed while being modal. 2006-05-25 Miguel de Icaza * Theme.cs: Use Tangoified messagebox icons. (GetSizedResourceImage): Also cope with width = 0 and do not trigger a warning in that case (0 means "give me your icon from the resouce, no special size needed). 2006-05-25 Peter Dennis Bartok * Application.cs: Leave runloop if the the main modal form is hidden (fixes #78484) 2006-05-25 Atsushi Enomoto * BindingContext.cs : reject null datasource in Contains() and Item[]. * CurrencyManager.cs : check data_member validity when data_source is dataset. When it is late binding, the initial position is -1. 2006-05-24 Jackson Harper * TreeNodeCollection.cs: Dont't recalculate the visible order on inserted nodes that aren't visible. This changes the max_visible_order which confuses scrollbar settings. - Use the enumerator to get the prev node instead of duplicating code. * TreeView.cs: Use new method for setting scrollbar values - Don't set the bounds every time the scrollbar is updated - When updating below the root node use an invalidate instead of a refresh to prevent the child controls (scrollbars) from being refreshed. (UpdateBelow still needs to be reworked anyways). - Reenable SetBottom now that visible orders are set correctly, added some debug code incase we ever get bad values there again. - Set the scrollbar max to 2 less then the max value, this compensates for the max value being one above the node count, and for scrollbars adding one extra "notch". - When drawing image nodes if there is an imagelist we draw the first image in the list if the supplied image index is out of the image list's bounds. 2006-05-24 Peter Dennis Bartok * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when we receive a size change from the WM (Fixes #78503) 2006-05-24 Peter Dennis Bartok * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip rectangle (Fixes #78501) 2006-05-24 Peter Dennis Bartok * ButtonBase.cs: - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button as a bitfield. - Fixed MouseMove to no longer switch pressed state unless the left mouse button is pressed. Atsushi provided the original patch (#78485) 2006-05-24 Jackson Harper * ScrollBar.cs: New internal methods that allow us to change a couple values on the scrollbar (the most common case is maximum and large change) without getting multiple invalidates. 2006-05-24 Chris Toshok * DataGridBoolColumn.cs (Abort): revert back to the saved setting. (Edit): save off the original state in oldState, and set grid.is_editing to true. (OnKeyDown): abort editing if escape is pressed. also, call NextState if space is pressed. (OnMouseDown): call NextState. (NextState): factor out shared code from OnKeyDown and OnMouseDown here. Also, only invalidate the row header once (on the initial is_changing switch) to save on redraws. 2006-05-24 Chris Toshok * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow if the value in the cell is different than it was before. This keeps us from triggering a layout when we move around a datarid with a highlighted cell. (Edit): suspend layout when creating/positining the text box, and resume passing false so we don't ever actually re-layout. (ReleaseHostedControl): same. (EnsureTextBox): reformat slightly, and set WordWrap to false. * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all control-key sequences should go to the datagrid - remove that lock. Also, modify the conditions under which we move between cells when moving the cursor within a cell, and remove the "this" and "base" from field accesses. We weren't even consistent, given they all were in the base class. 2006-05-24 Atsushi Enomoto * Binding.cs : (.ctor) An obvious NRE fix for BindingTest.CtorNullTest(). 2006-05-23 Chris Toshok * TextBoxBase.cs (get_Text): don't add a trailing newline, add them between lines. This fixes some quirks editing cells in the datagrid. 2006-05-23 Jackson Harper * TreeView.cs: Use begin/end update when doing expand/collapse all so that we don't get flicker on the scrollbar. 2006-05-23 Jackson Harper * TreeNode.cs: Bounds are computed 'on the fly' now. This allows treenode calculations to be independant of the painting code. To do this nodes track a visible order which is calculated by the treeview. - Call new methods for expanding/collapsing nodes. These methods use scrollwindow so we don't have to update everything below the node. * TreeView.cs: Refactored drawing and scrolling code. We don't need to update nodes when drawing anymore or calculate scrollbar stuff. - Added new methods for expanding/collapsing nodes. These methods use ScrollWindow so as to not have to redraw all the nodes below. * TreeNodeCollection.cs: Recalc visible order and scrollbars when we add/remove nodes or sort. - Handle removing the selected and the top node properly. 2006-05-23 Chris Toshok * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true. maybe this should actually happen in the datagrid code? (EndEdit): no need to invalidate anything, given that ReleaseHostedControl causes the datagrid to relayout, which invalidates everything anyway. * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also in SetCurrentCell). (set_SelectionBackColor): call InvalidateSelection instead of Refresh. (set_SelectionForeColor): same. (BeginEdit): Flesh this out a bit. (CancelEditing): only do any of this if we're editing/adding. (EndEdit): same. (OnMouseDown): there's no need to cancel editing here, it's done in SetCurrentCell. (SetCurrentCell): only invalidate the current row header if it's a different row than the new one. (ShiftSelection): fix this to work like MS does. (ResetSelection): factor out the invalidation of selected_rows to InvalidateSelection. (SetDataSource): cancel any editing that's going on. * DataGridColumnStyle.cs (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing): call the non-interface version. * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the header rectangle with the clip rectangle so we don't redraw the entire header for just a small area. Gets rid of the last flicker when horizontally scrolling. (DataGridPaintRow): same. 2006-05-23 Mike Kestner * ListViewItem.cs: remove size for line hack from LargeIcon layout. * ThemeWin32Classic.cs: don't draw line. it's really the top of a poorly placed checkbox on the MS control. Fixes Alex's unfiled Critical bug report. 2006-05-23 Peter Dennis Bartok * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails, and this fixes #78493 2006-05-23 Miguel de Icaza * Theme.cs (GetSizedResourceImage): Scale images if the proper size is not found. * FileDialog.cs: Do not change the background for the side bar as it wont work nicely with the theme, and also reduces the artifacts in rendering the icons (which I want to fix too). * MimeIcon.cs (ResourceImageLoader): Load images from assembly resources, not resgen resources. (PlatformDefaultHandler): Pull images using the new API. 2006-05-23 Peter Dennis Bartok * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds a reference to the hwnd and will not remove it unless there are no pending exposures (fixes #78341) * XplatUI.cs: Improved debug 2006-05-23 Atsushi Enomoto * MenuAPI.cs : don't handle OnClick event when it was not the left button. Fixed bug #78487. 2006-05-23 Mike Kestner * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and prefer submenus to the top menu for item lookup, to avoid popping down top-row items. 2006-05-23 Alexander Olk * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop Graphics.FillRectangle as the visual results are really bad (even on win). We now draw perfect arrows (and perfect shadows when the scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses Pen.DashPattern to draw the dots of each line. 2006-05-22 Alexander Olk * FileDialog.cs: Update the filename combobox when navigating through the ListView with the cursor keys. Fixes part 7 of bug #78446. 2006-05-22 Mike Kestner * ListView.cs: raise SelectedIndexChanged on keyboard selection. Fixes #78463. 2006-05-22 Mike Kestner * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint requests. Fix a misspelled parameter and a copy paste exception error in Select. 2006-05-22 Peter Dennis Bartok * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8 to get the same width/height (5/13) on X11 as the default font has on win32. This means that our DefaultFont emSize is smaller than the the MS SWF equivalent (even thought the width/height stays the same) 2006-05-20 Jackson Harper * MdiClient.cs: * MdiWindowManager.cs: * InternalWindowManager.cs: Make sure to use the border width from the theme. 2006-05-20 Jordi Mas i Hernandez * PrintDialog.cs: Implements printer details 2006-05-19 Alexander Olk * FileDialog.cs: Added focus handling for PopupButtonPanel. Fixes part 1 and 2 of bug #78446 2006-05-19 Peter Dennis Bartok * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes instead of sticking to the first ever calculated value 2006-05-19 Mike Kestner * ComboBox.cs: fix mouse motion selection to use MousePosition and PointToClient, since Capture is set. Fixes #78344. 2006-05-19 Mike Kestner * ListView.cs: match MS behavior in Details view where items are not drawn if Columns.Count == 0. * ThemeWin32Classic.cs: only highlight ListView selection if focused. Use a separate pen to draw the check, since changing the width affects the box as well. Fixes #78454. 2006-05-18 Miguel de Icaza * ListView.cs: ArgumentOutOfRangeException, single versions of the exception should throw the name of the invalid argument. * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if there are no files listed. 2006-05-18 Jackson Harper * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing up. 2006-05-18 Peter Dennis Bartok * Control.cs: Brought back our old UpdateZOrder method as a private function and switched our calls from UpdateZOrder to the new one. This fixes the Paint.Net canvas disappearing bug. 2006-05-18 Jackson Harper * Theme.cs: * ThemeWin32Classic.cs: * InternalWindowManager.cs: Move the drawing into the theme, expose everything the theme should need from the window manager. 2006-05-18 Peter Dennis Bartok * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value from the call to NativeWindow to avoid walking up the parent chain further than needed (speeds up setting cursors and avoids setting the wrong cursor if a parent has another cursor defined) * Cursor.cs: When loading an icon as cursor, MS uses the center of the icon as hotspot, not what's contained as hotspot in the icon file. This fixes the perceived drawing offset seen with Paint.Net 2006-05-18 Peter Dennis Bartok * XplatUIX11.cs: - Store the calculated rectangle in Hwnd object and use it when setting the client size - Force Toolwindows to always be type Dock, to ensure they're on top 2006-05-18 Mike Kestner * ComboBox.cs: first pass at ComboBox rework. Layout is more consistent with MS positioning. IntegralHeight, ItemHeight, Sizing. Correctly initialize textcontrol and ListBox on DropDownStyle changes. Substantial refactoring to remove confusing nested classes. Coding standard and Get+Set->property refactorings. Shift to index based highlighting in ComboListBox instead of constantly using IndexOf and Items[]. Add invalidations on resize for DropDownList to fix ugliness in FileDialog growth. Draw borders manually since Simple mode needs to look like two independent controls. Make listbox border conditional to DropDownStyle. Improved OwnerDraw support. 2006-05-18 Sebastien Pouliot * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. Don't set the disposed graphics to null, so we can throw the "right" exception if the graphics is reused later (added a flag to avoid double disposing). Some behaviours are different under 2.0 and are filled under bug #78448. 2006-05-18 Peter Dennis Bartok * Control.cs: When double-buffering is enabled, we need to reset our graphics context between paint calls. Otherwise, any transformations and other alterations on the context will become cumulative (#77734) 2006-05-18 Mike Kestner * ListView.cs: do focused item selection like MS on clicks. Rework focus handling for ItemControl so LostFocus invalidates as well. * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if the ListView ItemControl has focus. 2006-05-17 Peter Dennis Bartok * XplatUIX11.cs: If client_window ends up being width or height zero due to border settings, move it off window inside whole_window (#78433) 2006-05-17 Alexander Olk * Mime.cs: Shrink the mime file cache correctly. 2006-05-17 Alexander Olk * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429) 2006-05-16 Peter Dennis Bartok * XplatUIX11.cs (AddExpose): More sanity checks 2006-05-16 Peter Dennis Bartok * XplatUIX11.cs: - AddExpose: Don't add expose ranges outside the size of our window - Cast opacity values to Int32 to avoid crashes with certain values - Added disabled code paths that protect against illegal cross- thread painting (Developers.exe) 2006-05-16 Peter Dennis Bartok * ProgressBar.cs: Invalidate the control when it's resized since block size is based on control size. (#78388) 2006-05-16 Miguel de Icaza * DataGrid.cs (SetDataBinding): per the discussion on irc, instead of setting the incoming argument to the "reset" value, we set the this.datamember to string.empty (before we were invalidating the incoming data). Fixes 78420 2006-05-16 Peter Dennis Bartok * Form.cs: Only apply transparency settings after the form is created. (Fixes #77800) 2006-05-16 Peter Dennis Bartok * ApplicationContext.cs: Grab the HandleDestroyed event so we know when to fire OnMainFormClosed 2006-05-16 Peter Dennis Bartok * Application.cs: Introduced sub-class to allow tracking of threads and centralized triggering of the event mess for ThreadExit, AppExit, etc.. (#76156) 2006-05-16 Alexander Olk * MimeIcon.cs: - Do not return a null icon index value for a mime subclass. Instead try the main mime type class too. - Seems that some newer distributions don't have a link to some gnome default icons anymore. So check the default gnome dir too. 2006-05-16 Jackson Harper * MdiClient.cs: Don't paint the parent background image if we have our own background image. 2006-05-16 Peter Dennis Bartok * Control.cs: - PerformLayout: Do not shrink space filled by DockStyle.Fill controls, all filled controls are supposed to overlap (#78080) - UpdateZOrder is supposed to update the control's z-order in the parent's z-order chain. Fixed to behave like that - BringToFront: Removed obsolete code - SendToBack: Simplyfied - SetChildIndex: Trigger layout calculations when Z-order changes since layout is done by z-order 2006-05-16 Chris Toshok [ fixes bug #78410 ] * DataGrid.cs (set_AlternatingBackColor): use grid_drawing.InvalidateCells instead of Refresh(). (set_BackColor): call grid_drawing.InvalidateCells. (set_BackgroundColor): use Invalidate instead of Refresh. * DataGridDrawingLogic.cs (InvalidateCells): new function, just invalidate the cell area. 2006-05-15 Chris Toshok [ fixes bug #78011 ] * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument on to DataGridPaintRow. (DataGridPaintRow): take a clip argument, and only draw the cells which intersect it. same with the not_usedarea. * Theme.cs (DataGridPaintRow) add @clip parameter. * DataGrid.cs (ScrollToColumnInPixels): simplify, use XplatUI.ScrollWindow. (ScrollToRow): same. * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case with last column which was causing a gray swath to appear with the XplatUI.ScrollWindow code. 2006-05-15 Chris Toshok * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case, use XplatUI.ScrollWindow. (VerticalScrollEvent): use XplatUI.ScrollWindow. 2006-05-15 Peter Dennis Bartok * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375) 2006-05-15 Peter Dennis Bartok * Cursors.cs: For X11, read NWSE and NESW cursors from our resource file since there are no equivalent X11 cursors 2006-05-15 Atsushi Enomoto * MonthCalendar.cs : DateTimePicker should reflect selected date on mouse*up*, not mouse*down*. Fixed originally reported part of bug #76474. 2006-05-15 Atsushi Enomoto * TabControl.cs : When argument index is equal or more than tab count, just ignore. Fixed bug #78395. 2006-05-15 Peter Dennis Bartok * Control.cs: Dispose all child controls when control is diposed (#78394) 2006-05-14 Alexander Olk * ColorDialog.cs: Finally it is possible to select the color with the text boxes 2006-05-14 Alexander Olk * PrintDialog.cs: Fix typo 2006-05-14 Alexander Olk * PrintDialog.cs: PrintDialog is not resizable * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct color. Made some ToolBar drawing methods protected virtual. 2006-05-13 Jordi Mas i Hernandez * PrintDialog.cs: Implementation of the PrintDialog 2006-05-12 Chris Toshok * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the thumb, instead use MoveThumb. This has the side effect of making most of the other thumb moving machinery use MoveThumb as well. (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we need to actually invalidate the rectangle where the new thumb will go. (MoveThumb): use XplatUI.ScrollWindow to move the thumb around. We force an Update() after, so it's not as fast as it could be, but at least there's zero flicker and no droppings. (OnMouseMoveSB): in the thumb dragging case, use MoveThumb. (UpdateThumbPos): add another argument (dirty), which says whether or not to calculate/add dirty regions which we later invalidate. For cases where we know we're going to use MoveThumb, we pass false for this. Otherwise, pass true. 2006-05-12 Jackson Harper * ThemeWin32Class.cs: Fixes for alignment and icon rendering in the status bar. 2006-05-12 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion and GetClipRegion methods and UserClipWontExposeParent property. * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods, overriding UserClipWontExposeParent property, setting to false, since Win32 handles the required expose messages to draw our clipped parent areas internally * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated PaintEventStart to set the user clip region if set. * Control.cs: - Now internally tracking the Region for the control since we need to store it if the handle is not yet created and only set it when it becomes created. Before setting the region forced handle creation - Added code to draw the parents underneath a user-clipped region * Hwnd.cs: Added UserClip property 2006-05-12 Chris Toshok * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty() (set_Maximum): same. (set_Minimum): same. (set_SmallChange): same. (OnMouseUpSB): remove the call to refresh when releasing the thumb. We shouldn't need it. 2006-05-12 Miguel de Icaza * StatusBar.cs (UpdatePanel): If the panel being refreshes has the AutoSize set to None, we do not need to relayout everything, we just need to invalidate the current region. (Draw): Do not draw the entire ClientArea, just redraw the clip area being passed. * MdiClient.cs: Make MdiClient constructor with the Form argument internal. 2006-05-12 Jackson Harper * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their parents background image, but strangely not their own. - (DrawStatusBarPanel): Take into account horizontal alignment when drawing the strings and icons. 2006-05-12 Mike Kestner * ListBox.cs: avoid invalidations for focus when the collection is empty. 2006-05-12 Chris Toshok * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't invalidate the entire thumb area. Call InvalidateDirty which limits the redraw to the thumb itself and surrounding pixels. * XplatUIX11.cs (ScrollWindow): optimize copying. 2006-05-12 Chris Toshok * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant. Figure out the positioning/layout in a single pass instead of multiple recursive invocations. Speeds up the initial display of the data grid. Also, make many things private that were originally public but unused outside this class. 2006-05-11 Jackson Harper * MdiClient.cs: Improved layout code. 2006-05-11 Jonathan Chambers * PropertyGrid.cs : Only check GetPropertiesSupported for properties, not SelectedObject. 2006-05-11 Chris Toshok * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as union of that will always be {0,0,width,height}. 2006-05-11 Jackson Harper * Form.cs: Match MS's DefaultSize for forms (they must have changed the size in sp2). 2006-05-11 Atsushi Enomoto * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368. 2006-05-11 Atsushi Enomoto * TextControl.cs : Fixed bug #78109. This incorrect position comparison caused crash on automatic line split. * TextBoxBase.cs : reduce duplicate code. 2006-05-10 Jackson Harper * MdiClient.cs: Active form is only sent to the back when using the Next form functionality, when a form is clicked the current active shouldn't be sent to the back. - Layout the mdi windows when the container is first made visible. * Form.cs: Give the MdiClient a ref to the containing form when we create it. 2006-05-10 Atsushi Enomoto * LinkLabel.cs : link_font could be uninitialized, so populate one before actual use. Fixed bug #78340. 2006-05-10 Atsushi Enomoto * XplatUIX11.cs : clipboard format native value is IntPtr. Fixed bug #78283. 2006-05-10 Peter Dennis Bartok * Control.cs: - Instead of showing context menus directly we send WM_CONTEXTMENU, which is passed up the parent chain by DefWndProc - We now handle WM_CONTEXTMENU to display any menu, or pass it to DefWndProc (#77956) * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc 2006-05-10 Jackson Harper * MdiClient.cs: We need to remove the controls from the mdi collection, when we close the window. * MdiWindowManager.cs: Special handling of closing mdi windows. * InternalWindowManager.cs: Make the close method virtual so the mdi window manager can handle it specially. 2006-05-10 Jordi Mas i Hernandez * DataGrid.cs: - Recalculate grid when the data source has changed - Matches styles provided by user from all data sources types * DataGridTableStyle.cs: For columns that provided by the user set the with the preferred value is there was unassigned. * CurrencyManager.cs: throw OnItemChanged event 2006-05-10 Peter Dennis Bartok * PictureBox.cs: Don't animate until handle is created. Start animation when handle is created. 2006-05-10 Peter Dennis Bartok * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match current codebase. * XEventQueue.cs: We don't need to provide the extra info 2006-05-10 Jackson Harper * MdiClient.cs: If the mdi clients parent form has a background image set, we draw that background image for the mdi area's background. 2006-05-10 Peter Dennis Bartok * TextBoxBase.cs: Set IBeam cursor (#78347) 2006-05-10 Mike Kestner * ToolBar.cs: fix some text padding issues with ButtonSize calculation. Update the default size to match MS documentation. * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified button size. Fixes #78296. 2006-05-10 Mike Kestner * ListBox.cs: use is_visible for scrollbar positioning in case the control isn't on screen yet. Fix off by one with Right vs Width usage. Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258. 2006-05-10 Jackson Harper * X11Dnd.cs: Drop to a control with another control on top of it. * ToolBar.cs: Work on a copy of the buttons list, so that it can be modified in click handlers. TODO: Look for similar problems in other controls. 2006-05-09 Jackson Harper * Form.cs: Window managers need the old window state when setting window state now. * InternalWindowManager.cs: Allow the base mdi window manager to handle more of the MDI only stuff (like maximize buttons). * MdiWindowManager.cs: Fix some snafus in changing the window state. Add all the menu functionality, for both popup and maximized menus. * MdiClient.cs: When a new form is selected the currently activated form is sent to the back, this matches MS. - Implement a new method to activate the next mdi child window. 2006-05-08 Peter Dennis Bartok * Control.cs: - Added new InternalCapture method to allow controls to prevent the capture behaviour on the click handlers - Switched to use InternalCapture * ComboBox.cs: - Using InternalCapture to prevent mouse captures from being released on mouse button release (Fixes #78100) * XplatUIX11.cs (DeriveStyles): Now checks caption state and only returns Form borders if a caption is present. (Fixes #78310) 2006-05-08 Peter Dennis Bartok * TreeNode.cs: Changed serialization .ctor to not require every field to be present. (#78265) * OwnerDrawPropertyBag.cs: Added serialization .ctor 2006-05-05 Alexander Olk * MimeIcon.cs: for is faster than foreach for strings. 2006-05-05 Mike Kestner * CheckedListBox.cs: update check handling code to not use selected. * ListBox.cs: rewrite of mouse selection handling to correspond to MS behavior for visual feedback, motion response, shift/ctrl handling, and properly deal with all 4 selection modes. Updates to bounds handling logic. Add scroll wheel support. [Fixes #77842] 2006-05-05 Peter Dennis Bartok * ListView.cs: - Moved adding of Implicit controls into .ctor. That way, subsequent creation of the controls will not cause them to think they are toplevel windows (fixes #78200 header problem) - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour - Switched visibility setting of header control to use internal field to avoid triggering handle creation - Now checking if handle is created before causing a refresh when items are added (This makes us now match handle creation time with MS) * Splitter.cs: Removed loading of private splitter cursor, switched to Cursors version now that that is loading the right ones * Cursors.cs: Load proper splitter cursors from resources * Cursor.cs: Added second method of loading resource cursors for the VS.Net users amongst us 2006-05-05 Mike Kestner * ListView.cs: give header_control a minimum size based on the ListView size. 2006-05-05 Peter Dennis Bartok * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock window seems to do that with metacity, so set that type. (#78120) 2006-05-05 Mike Kestner * ListViewItem.cs: fix Details mode checkbox layout bug. * ThemeWin32Classic.cs: draw a ListView column header for unused space at the end of the header, if it exists. [Fixes for #78200] 2006-05-04 Jackson Harper * MdiClient.cs: Add a helper property to get the container form. * MdiWindowManager.cs: We have to make sure to use the menu origin when drawing the icons and buttons, this fixes maximized window icons/buttons on win32. * InternalWindowManager.cs: Reset the restore captions when a window goes from Maximized to Minimized and vice versa. Move the DrawMaximizedButtons into the MdiWindowManager source, tool windows can't be maximized. NOTE: This could use a little refactoring if time ever permits. 2006-05-03 Jonathan Chambers * TextBox.cs: Add MWFCategoryAttributes * TextBoxBase.cs: Add MWFCategoryAttributes * Form.cs: Add MWFCategoryAttributes 2006-05-03 Jonathan Chambers * Control.cs: Add MWFCategoryAttributes * ScrollableControl.cs: Add MWFCategoryAttributes 2006-05-03 Alexander Olk * ThemeWin32Classic.cs: Draw the ToolBar top border only if Divider is true. Fix a little glitch in PropertyToolBar drawing code 2006-05-02 Peter Dennis Bartok * Control.cs: - Dispose: Call base.Dispose, this causes the disposed event to be fired (and probably other, more important stuff) - SetVisibleCore: Set is_visible to true after creating the window so that the window still gets created invisible (if WM_VISIBLE isn't set). That will cause the ShowWindow afterwards to generate a WM_ACTIVE message * Form.cs: Call Dispose when we want to destroy the window, instead of just destroying the handle (Dispose will do that for us) * XplatUIX11.cs: - RootWindow also needs a queue, so we can properly process the property change events from RootWindow (like Activate) - Generatic synthetic WM_ACTIVE message when the active window is being destroyed 2006-05-01 Peter Dennis Bartok * LinkLabel.cs: Trigger a recalc of our label dimensions when bounds are changed 2006-05-01 Peter Dennis Bartok * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image for determining width and height (image might not be assigned if we're drawing an imagelist) 2006-05-01 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving height from system * Theme.cs: No longer returns hardcoded menu height, instead calls new driver method * Form.cs (OnLoad): Scaling happens before triggering Load events on MS (# 78257) 2006-05-01 Mike Kestner * MenuItem.cs: fix NRE for text == null. Fixes #78250. 2006-04-30 Peter Dennis Bartok * TextBoxBase.cs: Removed Fixme * RichTextBox.cs (set_RTF): Invalidate document after update (#78247) 2006-04-30 Peter Dennis Bartok * XplatUIX11.cs: - ScrollWindow: We were passing hwnd.ClientRectangle which returns the rectangle relative to the parent, considering borders. We don't really want that. - ScrollWindow: Fixed warning to be more understandable * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our scrollbars and scroll only the visible area * RichTextBox.cs: Removed debug output 2006-04-29 Peter Dennis Bartok * NumericUpDown.cs (Text): Just use base * UpDownBase.cs: Ensure txtView is created before using it 2006-04-29 Peter Dennis Bartok * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before casting to IntPtr to avoid 64bit overflow errors 2006-04-29 Peter Dennis Bartok * Control.cs: - AllowDrop: Don't force handle creation. - CreateHandle: Added call to tell driver if we're allowed to drop 2006-04-27 Alexander Olk * FileDialog.cs: Remember the last directory not only for the current instance but also for new FileDialog instances. 2006-04-29 Peter Dennis Bartok * XplatUIX11.cs: Forgot to set the queue on the foster parent. That broke sending async messages 2006-04-29 Peter Dennis Bartok * XplatUIX11.cs: - ScrollWindow: Fixed method. We finally generate expose events again for scrolled areas. This was causing 'garbage' when scrolling textbox and other controls that used ScrollWindow - Switched from using the regular queue for paint events to the MS model of 'generating' paint events when the queue is empty. We use the new XQueueEvent.Paint subclass to store which windows need painting. - AddExpose now takes the x/y/width/height of the exposed area and inserts the window into the paint queue if not already there - InvalidateWholeWindow: Switched to use new AddExpose method - UpdateMessageQueue: Added which queue to monitor for paint events - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in the unlikely case nothing above handles it. We reset the expose pending states to get them off the queue. - GetMessage: Now pulls a paint event if no other events are in the queue - Invalidate: Switched to new AddExpose method - PeekMessage: Updated to understand pending paint events - UpdateWindow: Fixed logic bug. We were only updating if the window didn't need updating. Also switched to sending WM_PAINT directly, like MS does. * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue and random access Remove(). The random access is needed to handle UpdateWindow() where a WM_PAINT is sent directly without accessing the queue. * ScrollBar.cs: Added Update() calls to cause immediate updates to allow for better feedback when scrolling. Scrollbars are small and the immediate update should make it 'feel' more responsive without slowing things down. ScrollBar still needs it's invaliate logic updated to not always invalidate the whole bar on certain changes. 2006-04-28 Gonzalo Paniagua Javier * Control.cs: (BackColor): if the control does not support a transparent background, return the default backcolor when the parent backcolor is transparent. 2006-04-28 Peter Dennis Bartok * Application.cs: Updated to new StartLoop/GetMessage API * RichTextBox.cs: Provide some output on RTF parsing errors * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added new queue_id argument to GetMessage and PeekMessage to allow faster handling of per-thread queues in drivers. * Hwnd.cs: Added Queue tracking and property * MenuAPI.cs: Updated to new StartLoop/GetMessage API * XEventQueue.cs: Added thread trackingA * PropertyGridView.cs: Updated to new StartLoop/GetMessage API * XplatUIX11.cs: - Implemented new per-thread queue - GetMessage: Fixed return/break behaviour on several cases. We were returning stale messages in some cases, instead of just processing the next message 2006-04-27 Jonathan Chambers * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter. 2006-04-27 Peter Dennis Bartok * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic, fixed off-by-one comparisons between Width/Height and Right/Bottom. 2006-04-27 Jonathan Chambers * PropertyGridView.cs: Fix drop down width. 2006-04-27 Alexander Olk * ThemeWin32Classic.cs: Peter thinks that three additional lines are a mess in DrawToolBar, so I removed one of them. 2006-04-27 Alexander Olk * ThemeWin32Classic.cs: Draw the ToolBar border lines only if needed (clip). Otherwise we get artifacts. 2006-04-26 Peter Dennis Bartok * FixedSizeTextBox.cs: Added constructor to allow specifying which dimension is fixed * UpDownBase.cs: Set the spinner control to be fixed height vertical, and switched FixedSizeTextBox to only be fixed vertical (#78116) * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension if it matches the scale base font (avoids unneeded scaling) 2006-04-26 Alexander Olk * X11DesktopColors.cs: One gtk_init_check should be enough 2006-04-26 Peter Dennis Bartok * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to match MS behaviour 2006-04-26 Peter Dennis Bartok * TextBoxBase.cs: - Generate OnTextChanged for Backspace even if we're only deleting the current selection - When setting the Text property, only select all text if the control does not have focus when it is being set. Otherwise just place the cursor at the beginning of the control 2006-04-26 Alexander Olk * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top. Added a little helper to draw PropertyGrid ToolBar with a different border and a different BackColor. * PropertyGrid.cs: Some background parts didn't get painted with the correct background color. Added a class that helps us to draw the correct border for PropertyGridView and a class that helps us to draw ToolBars with a different backcolor * PropertyGridView.cs: Draw PlusMinus with the correct colors. 2006-04-25 Jonathan Chambers * PropertyGrid.cs: Bug 78196, font size, and splitter location. * PropertyGridView.cs: Bug 78196, font size, and splitter location. 2006-04-25 Peter Dennis Bartok * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha into the palette entries. Also, since we're working on a copy we needed to copy the palette back onto the bitmap. * Cursor.cs: Same fix as XplatUIWin32.cs. 2006-04-25 Peter Dennis Bartok * ImageListStreamer.cs: Need to read the var (or we're off) 2006-04-25 Peter Dennis Bartok * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs, TextBoxBase.cs: Unused var fixes * AxHost.cs: Small 2.0 fix * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms as it seems that is what at least Metacity expects. This will make icons show up on 64bit platforms. We still have some 64bit size issues, though, since the startup app window size still won't match. 2006-04-25 Mike Kestner * *.cs: cleanup newly reported exception var unused warnings. 2006-04-25 Alexander Olk * ThemeWin32Classic.cs: Button image alignment now matches exactly ms 2006-04-25 Alexander Olk * ThemeWin32Classic.cs: Fixed drawing code for buttons with an image. The image position is always the same, no matter if the button is pressed or not. 2006-04-25 Alexander Olk * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView selection and set the correct filename for SaveFileDialog. Patch by Emery Conrad. 2006-04-24 Mike Kestner * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left, check for item.X outside the ClientRect instead of item.Y. Fixes #78151. 2006-04-21 Gonzalo Paniagua Javier * ImageListStreamer.cs: some images store a wrong grow factor, so don't trust that value blindly and do some sanity check. Fixes bug #77814. 2006-04-21 Gonzalo Paniagua Javier * ImageListStreamer.cs: save the mask as a 1bpp image. 2006-04-21 Mike Kestner * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to pass Checked and Indeterminate to the Theme Engine. Improve encapsulation with ListBox. * ListBox.cs: Keep a StringFormat instead of calculating it every item draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem nested types. Move all CheckState functionality to CheckedListBox. Make IntegralHeight work like MS. Rewrite of Layout engine. Fix OwnerDrawVariable layout/rendering. Fix multicolumn rendering. Fix ScrollAlwaysVisible handling. Refactor "selected" collections to use a single base list. Fix scrollbar sizing and placement to mirror MS. * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really used. * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering for CheckedListBox by using new DrawItemState info. Center the checkboxes on the items. Use new StringFormat property. 2006-04-18 Jackson Harper * Form.cs: MdiChildren don't do default locations the same way as regular forms. This prevents a crash when trying to position the mdi windows. 2006-04-17 Jonathan Chambers * PropertyGridTextBox.cs: Formatting, copyright * PropertiesTab.cs: Formatting * PropertyGrid.cs: Formatting * PropertyGridView.cs: Formatting, fix drop down, enabled double click toggling of values 2006-04-17 Peter Dennis Bartok * KeyPressEventArgs: Added 2.0 only setter for KeyChar * Control.cs (.ctor): verify_thread_handle is static, don't reset every time a control is created * Application.cs: Removed obsolete EnableRTLMirroring method 2006-04-18 Gert Driesen * TabControl.cs: Avoid ArgumentOutOfRangeException when setting SelectedIndex to -1. Fixes bug #78121. 2006-04-17 Jackson Harper * Binding.cs: Handle null values for Current and BindingContext. This occurs when binding is a little delayed. * CurrencyManager.cs: return null for Current when there are no items in the list. - Hookup to the listchanged event on the DataView and update bindings when the list is changed. This fixes late binding of controls. 2006-04-17 Jackson Harper * X11Dnd.cs: * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim Ringenbach. 2006-04-15 Alexander Olk * ThemeWin32Classic.cs: Draw disabled combo button in the correct place * ComboBox.cs: If the combobox is disabled call CPDrawComboButton with the correct ButtonState 2006-04-14 Peter Dennis Bartok * XplatUIX11.cs: Improved distinguishing between window types to tell the WM a type closer to what the app wants (Fixes #78107) 2006-04-14 Alexander Olk * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and GrabHandle 2006-04-14 Alexander Olk * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar drawing code to reflect the size grip changes 2006-04-13 Gonzalo Paniagua Javier * ImageListStreamer.cs: fix handling of the mask that follows the main bitmap when deserializing and serialize it properly. The generated mask should better be a 1bpp image, but I'll do that later. 2006-04-13 Alexander Olk * FileDialog.cs: Show something in the DirComboBox on *nix if the path doesn't fit into some of our Current.Places 2006-04-13 Jackson Harper * ComboBox.cs: Use borders instead of drawing our own decorations, try to obey correct rules for heights. * Theme.cs: * ThemeNice.cs: * ThemeClearLooks.cs: * ThemeWin32Classic.cs: Remove combobox decoration drawing code, this is now handled by borders. - Remove unused DrawListBoxDecorationSize method. 2006-04-13 Mike Kestner * MenuAPI.cs: null guarding for the disbled click check fixes crash reported by Alex. 2006-04-13 Alexander Olk * ThemeWin32Classic.cs: - Fixed CPDrawStringDisabled - Corrected drawing of disabled menu items - Fixed drawing of disabled radio buttons (bug #78095) - Draw check in a disabled CheckBox with color ControlDark 2006-04-12 Peter Dennis Bartok * Form.cs: Use the provided width when calculating the menu size; when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED and ClientSize.Width won't be updated yet * Application.cs: Use Visible instead of Show() to make form visible, this way we create the handle later and menusize is considered 2006-04-12 Mike Kestner * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for reporting. 2006-04-12 Peter Dennis Bartok * TextBox.cs: Implemented context menu 2006-04-12 Mike Kestner * ListView.cs: implement box selection. fixes #77838. * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip. 2006-04-12 Peter Dennis Bartok * XplatUIX11.cs: Added setting of window type when transient window is created (metacity would move it otherwise) * X11Structs.cs: Added WINDOW_TYPE atoms * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the background (the control is Opaque but still wants transparent backgrounds) 2006-04-12 Peter Dennis Bartok * Control.cs: Added OnPaintBackgroundInternal to allow controls that set Opaque but don't mean it (like all ButtonBase-derived controls) to still draw their background * ButtonBase.cs: Override OnPaintBackgroundInternal and draw the background 2006-04-12 Peter Dennis Bartok * Control.cs (PaintControlBackground): Set the graphics object on our PaintEvent to null to prevent it from being disposed when the PaintEvent gets disposed 2006-04-12 Alexander Olk * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens * ThemeNice.cs, ThemeClearlooks.cs: fix typo 2006-04-12 Peter Dennis Bartok * Control.cs: - Added transparency check to BackColor property. Transparent backgrounds are only allowed if the control styles permit it - Added recursive painting of parent control background and foreground if a control with a transparent backcolor is drawn (Thanks to Tim Ringenback for providing his 'hack' as a base for this patch) Fixes #77985 and #78026. - Added Opaque style check before calling OnPaintBackground, no need to draw the background if the control is opaque - Removed ControlAccessibleObject owner variable (inherited from base, no need to define again) - Added some documentation links explaining the drawing events and styles 2006-04-11 Peter Dennis Bartok * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption that the affected control is the located at the left border of our parent (Fixes #77936) 2006-04-11 Peter Dennis Bartok * TextBoxBase.cs: When rendering disabled or readonly controls, draw the background with 'Control' instead of 'Window' color as long as the user hasn't specifically set a color 2006-04-11 Peter Dennis Bartok * TextBoxBase.cs: Don't try to shortcut by checking against base.Text since that won't be updated if the user types text (only if it's programatically set) 2006-04-11 Peter Dennis Bartok * ScrollableControl.cs: Calculate DisplayRect dynamically, so that layout changes do to app-triggered resizes will have the proper display rectangle for layout 2006-04-11 Alexander Olk * ThemeWin32Classic.cs: - Make use of the SystemBrushes and SystemPens wherever possible - Corrected some highlight colors - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup drawing * Theme.cs: Added Empty field to CPColor struct 2006-04-11 Peter Dennis Bartok * ScrollabeControl.cs: We need to consider whether or not a scrollbar is displayed when calculating the display rectangle. Thanks to Mike for teaching me the err of my ways. 2006-04-10 Peter Dennis Bartok * ScrollableControl.cs: - Rewrote DisplayRectangle code, now returning the proper x/y coords (instead of 0,0) and we now return the real width/height instead of just the clientrectangle, adjusted for padding. The rectangle is now cached and created by the new CalculateDisplayRectangle method. - Created new CalculateDisplayRectange method, which basically does what get_DisplayRectangle() did originally, but now using the right edge instead of DisplayRectangle to determine the size of our scrollbars - get_Canvas(): Fixed it to properly calculate canvas for right/bottom controls which seem to be placed to the right/bottom of any controls that have a fixed location - Removed TODO that's taken care of - Removed NotImplementeds and attempted to implement AdjustFormScrollBars and SetDisplayRectLocation according to new MSDN2 docs - Added call to PerformLayout in OnVisibleChanged, MS causes a layout event when that is called, this is added for compatibility - ScrollControlIntoView(): Implemented. - Switched scrollbars to be implicit, they shouldn't be selectable * ContainerControl: Now that ScrollControlIntoView is implemented, we call it when the active control is set/changed * ScrollBar.cs: Added support for generating Win32 scrollbar messages * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base implicit_control variable (used for native Win32 message generation) * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new HorizontalScrollBarHeight and VerticalScrollBarWidth properties * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes * XplatUIStructs.cs: Added ScrollBarCommands enum 2006-04-10 Jackson Harper * ButtonBase.cs: * CheckedListBox.cs: * ComboBox.cs: * DataGrid.cs: * DataGridView.cs: * Form.cs: * GroupBox.cs: * ListBox.cs: * PrintPreviewControl.cs: * ProgressBar.cs: * PropertyGrid.cs: * Splitter.cs: * StatusBar.cs: * TrackBar.cs: * UpDownBase.cs: Fixup base event overrides. 2006-04-06 Mike Kestner * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check all user-initiated value changes to min <= value <= max-thumbsz+1. (set_Value): check for vert/horiz when calculating new thumb position. (LargeIncrement): bounds check to stop pos at max - thumb_size + 1 like MS does. (OnMouseMoveSB): refactor the thumb dragging code and refine invalidation logic to reduce flicker. (SetEndPosition): bounds check to stop pos at max - thumb_size + 1 (SmallIncrement): bounds check to stop pos at max - thumb_size + 1 (UpdateThumbPosition): small code readability cleanup 2006-04-10 Alexander Olk * ThemeNice.cs: Small UI polishing. Draw borders a little bit different 2006-04-08 Alexander Olk * ThemeNice.cs: Use a better graphics effect when a button is pressed 2006-04-08 Alexander Olk * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool * ThemeWin32Classic.cs: Make use of the new SystemResPool methods. This dramatically reduces the number of Pen.Dispose calls. Where possible call ResPool methods only once instead of calling it over and over again (for example for the same color). 2006-04-06 Mike Kestner * TabControl.cs: fix for SelectedIndex updating on TabPage removals. Also remove an unused private field on the collection. Fixes #77972. 2006-04-06 Alexander Olk * ThemeNice.cs: Added ToolBar drawing code 2006-04-06 Mike Kestner * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form. I'm assuming that means we need to look up the toplevel for the provided control. Fixes the crash trace in #77911 but exposes another crash in some strange reflection usage in NDocGui. 2006-04-06 Alexander Olk * ThemeNice.cs: Gave it a little silver touch and added Images method * FontDialog.cs: FontDialog is not resizable * FileDialg.cs: Added SizeGripStyle.Show 2006-04-05 Jackson Harper * KeyboardLayouts.cs: Remove warning. 2006-04-05 Jackson Harper * Control.cs: Enable OnPaintInternal so we can use it for drawing all of our controls instead of Paint +=. * ListBox.cs: * ListView.cs: * MenuAPI.cs: * MessageBox.cs: * NotifyIcon.cs: * ProgressBar.cs: * ScrollBar.cs: * Splitter.cs: * StatusBar.cs: * TabControl.cs: * TextBoxBase.cs: * ToolBar.cs: * TrackBar.cs: * UpDownBase.cs: * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and use OnPaintInternal. Remove Width/Height and Visible checks in paint handler, this is done at a higher level now. * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore. * PaintEventArgs.cs: Add a handled flag so controls that don't want anymore painting after OnPaintInternal can make sure OnPaint isn't called. 2006-04-05 Mike Kestner * Form.cs: fix the menu WndProc hacks to respect the native enabled state of the form, so that we don't process events when Modal dialogs are up. Fixes #77922. 2006-04-05 Alexander Olk * Mime.cs: Default for range length is 1 not 0. If set to 0 no match checking is done. 2006-04-05 Mike Kestner * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch. 2006-04-05 Mike Kestner * ListView.cs (HeaderMouseMove): null guarding for the over column when setting up the drag_to_index. Fixes #78015. 2006-04-04 Peter Dennis Bartok * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up in the taskbar. Transient windows seem to accomplish that. 2006-04-04 Peter Dennis Bartok * Form.cs: - Re-enabled CreateParams.X/Y code for FormStartPosition - Added code for manual placement when creating the Control - Incomplete patch to treat MDI forms differently when setting the ClientSizeCore. (Still need to figure out handling x/y coords there) * XplatUIX11.cs: - When we're explicitly setting the X/Y position of a non-Child window, let the WM know. Metacity really wants this. 2006-04-04 Alexander Olk * ThemeNice.cs: Added CPDrawButton 2006-04-04 Alexander Olk * ThemeNice.cs: Changed the color for focused buttons and activated the arrows for small scroll buttons. 2006-04-04 Alexander Olk * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed anymore. Changed some method modifiers to protected (virtual) * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic changes * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes. Updated drawing of menus, buttons and progressbars; added CPDrawBorder3D 2006-04-03 Gonzalo Paniagua Javier * ImageListStreamer.cs: implemented serialization/deserialization of the images. 2006-04-03 Alexander Olk * ThemeWin32Classic.cs: - Removed all the DrawFrameControl stuff; CPDrawButton, CPDrawCheckBox and CPDrawRadioButton are now handled directly inside the methods - Updated and corrected the drawing code of CPDrawButton, CPDrawCheckBox and CPDrawRadioButton to better match ms - Updated theme checkbox and radiobutton code to use the CP* methods 2006-03-31 Peter Dennis Bartok * XplatUIX11.cs: Enable clipping again now that the libgdiplus bug is fixed 2006-03-31 Jackson Harper * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows sometimes. * UpDownBase.cs: Don't CreateGraphics manually, use a Refresh. Ideally we would invalidate the correct areas here. 2006-03-31 Peter Dennis Bartok * XplatUIX11.cs: - We now track the mapping state of windows. If a window (or one of it's parents) is not mapped we no longer permit WM_PAINT messages to be generated since we'd otherwise get lots of BadMatch X errors. Jackson did all the work figuring out the problem. - Destroying the caret if the window it's contained in is destroyed. Can't use regular DestroyCaret method since it might fall into a drawing function (trying to remove the caret) and with that generate new BadMatch errors. Again, Jackson tracked this down. - Changed DestroyChildWindows to SendWMDestroyMessages, we now make sure we send the messages to all windows. (The old code would send the WM_DESTROY to the window, and then all child windows would be 'gone' because the WM_DESTROY handle lookup would no longer find the destroyed window) * Hwnd.cs: Added Mapping property to track mapping state of hwnd * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow 2006-03-31 Jackson Harper * ScrollableControl.cs: Dont recalc if we are not visible. 2006-03-31 Mike Kestner * Control.cs (SetVisibleCore): move the CreateControl call up ahead of the visibility branch. 2006-03-31 Jackson Harper * ScrollBar.cs: Cap values when incrementing/decrementing. 2006-03-31 Mike Kestner * MenuAPI.cs: setup menu.tracker for popup/context menus. * ToolTip.cs: guard against timer expirations with no active control. Not sure why it happened. 2006-03-31 Mike Kestner * ThemeWin32Classic.cs: add some horizontal padding space for the tip text. * ToolTip.cs: Position the tooltip based on where the cursor is at popup time, not at MouseEnter time. Add a Down state so that we don't redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for positioning offset. Lookup DisplaySize at positioning time, since it can theoretically change during invocation. * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly. * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly. 2006-03-31 Alexander Olk * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox. Fixes behaviour when the Text property of the box is String.Empty 2006-03-31 Peter Dennis Bartok * XplatUIX11.cs: Only send mouseleave for our client windows, not for the whole window (otherwise we get WM_MOUSE_LEAVE twice for a window) 2006-03-31 Alexander Olk * FileDialog.cs: Visual enhancement for the popup buttons in PopupButtonPanel 2006-03-31 Alexander Olk * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border code 2006-03-30 Alexander Olk * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and highlighted menu items to match ms 2006-03-30 Peter Dennis Bartok * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty 2006-03-30 Mike Kestner * Menu.cs (SelectedItem): use new MenuItem.Selected prop. * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we go active to account for HotLight to Selected transition. * MenuItem.cs: add internal Selected prop. Fill out the Status property by calculating it from item info. Add HotLight, NoAccelerator, Checked, Grayed, and Disabled flags where appropriate. 2006-03-30 Mike Kestner * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw. 2006-03-29 Jackson Harper * Form.cs: Implement TODO. 2006-03-29 Peter Dennis Bartok * PrintPreviewDialog.cs: Implemented missing methods and events; still missing proper dialog setup in the constructor 2006-03-29 Peter Dennis Bartok * ProgressBar.cs: Added 2.0 Style property that apps seem to use * Control.cs: - Implemented CheckForIllegalCrossThreadCalls, removed TODO - Fixed ResetBindings and removed TODO - Added check for cross-thread calls to get_Handle() - Added Marshaller attribute for set_Font to satisfy class status * FontDialog.cs: Removed TODOs that seemed implemented * UpDownBase.cs: Removed unneeded TODO and Fixme * MessageBox.cs: Implemented support for Default button and removed TODO * FileDialog.cs: Removed obsolete TODO * DomainUpDown.cs: Removed obsolete TODO * ButtonBase.cs: Removed obsolete TODO * XplatUIWin32.cs: Removed obsolete TODO * Form.cs: - Removed obsolete TODO - Calling CheckAcceptButton when the acceptbutton is changed to allow internal status updates - Making sure the active control is selected when the control is created * CurrencyManager.cs: Removed obsolete TODO 2006-03-29 Mike Kestner * *.cs: fix remaining corcompare issues for 1.1 API with the exception of PrintPreviewDialog and RichTextBox. 2006-03-29 Alexander Olk * Theme.cs: Added a little helper to SystemResPool to get the Dark, DarkDark, Light and LightLight colors for a specific color * ThemeWin32Classic.cs: - Use Button drawing code to draw RadioButtons and CheckBoxes with Appearance = Button - Make use of the new ResPool helper CPColor - Draw ProgressBar and StatusBar with correct 3D borders 2006-03-29 Alexander Olk * ColorDialog.cs: Return selected color. Fixes bug #77940. 2006-03-28 Mike Kestner * ListView.cs: fix Icon layout to plan for scrollbar widths when calculating col/row counts. 2006-03-28 Mike Kestner * ColumnHeader.cs: * ListView.cs: * ListViewItem.cs: * Menu.cs: switch to explicit interface method implementation for some methods corcompare identifies as inconsistent with MS. 2006-03-28 Mike Kestner * MainMenu.cs: * Menu.cs: add a few missing methods from the class status output. 2006-03-28 Alexander Olk * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now correct. 2006-03-28 Mike Kestner * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917. 2006-03-27 Mike Kestner * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for the Hilight state to adapt to Alex's CPDrawBorder3D changes. 2006-03-27 Alexander Olk * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms. 2006-03-25 Alexander Olk * ThemeWin32Classic.cs: - GroupBox: Inserted a little gap between the text and the lines on the right side - Made the code in CPDrawBorder3D more readable - Corrected the drawing location of the up and down arrows in CPDrawScrollButton 2006-03-25 Alexander Olk * ControlPaint.cs: Corrected line widths in DrawBorder for ButtonBorderStyle Inset and Outset 2006-03-25 Alexander Olk * ThemeWin32Classic.cs: - Rewrote the totally broken CPDrawBorder3D method. That was one of the main problems for the terrific ThemeWin32Classic look - Updated and corrected Button drawing - Correct the dimensions of the SizeGrip to match ms ones - Removed a small drawing glitch in DrawComboBoxEditDecorations * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with Border3DStyle.Sunken to match ms. 2006-03-25 Alexander Olk * ThemeWin32Classic.cs: First small part of the "de-uglify ThemeWin32Classic" effort, SizeGrip 2006-03-24 Jackson Harper * XplatUIX11.cs: Give a max idle time of one second, this matches MS and forces an Idle event every second when there are no other events in the queue. 2006-03-24 Mike Kestner * ListView.cs: Handle (Large|Small)ImageList == null more robustly. * ListView.Item.cs: fix layout issues with null image lists and images smaller than checkbox size. * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon mode like MS does. It's weird, but consistent. ;-) Fixes #77890. 2006-03-24 Mike Kestner * ListView.cs: Scroll wheel support for the item control. Fixes #77839. 2006-03-23 Jackson Harper * ScrollableControl.cs: Special case negative sized areas, not zero. * MonthCalendar.cs: Save the rect of the clicked date so we can use it for invalidation. - Try to cut down on the number of invalidates - Invalidate the rect the mouse is over and was over when moving the mouse, so we get the focus box following the cursor. 2006-03-23 Mike Kestner * ThemeWin32Classic.cs: fix FullRowSelect selection background and focus rectangle drawing. Fixes #77835. 2006-03-23 Mike Kestner * XplatUIX11.cs: rework the fix for #77828 by changing the order of the if and else if and reverting back to the original == check on the None conditional. 2006-03-23 Alexander Olk * FontDialog.cs: Update the example panel if the selected index of the fontListBox changes. 2006-03-23 Alexander Olk * FileDialog.cs: Make FileDialog remember which directory it was in last in the same execution. 2006-03-22 Mike Kestner * FileDialog.cs: make the DropDownMenu on the toolbar display RadioChecks since they are mutually exclusive and that's what MS does. 2006-03-22 Mike Kestner * Theme.cs: add Color param to CPDrawMenuGlyph. * ThemeWin32Classic.cs: do color specific menu glyph rendering so that checks and radio marks and arrows are visible on highlighted items. * ControlPaint.cs: update to use new Theme signature. 2006-03-22 Mike Kestner * MenuAPI.cs: only process Enter and arrow keypresses if the tracker is active. Fixes #77870. 2006-03-22 Alexander Olk * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox to be focused/selected after startup 2006-03-22 Alexander Olk * ColorDialog.cs: - Corrected behaviour of Color, AllowFullOpen, FullOpen, CustomColors and ShowHelp properties - Some internal rewrites to get better results when using the ColorMatrix 2006-03-22 Mike Kestner * ListView.cs: hook into Peter's new ResetMouseHover capability to fix HoverSelection. Fixes #77836. 2006-03-22 Mike Kestner * FileDialog.cs: bugfixes for the toolbar. Use PushButtons instead of ToggleButtons. (De)Sensitize the Back button around a stack count of 1, not 0. Update ButtonSize based on a pixel count of the win32 control. Adjust the toolbar size/location for new button size. 2006-03-22 Jackson Harper * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is true. * ScrollBar.cs: When doing increments and decrements we need to set the Value property so that ValueChanged gets raised. A possible optimization here would be to make an internal SetValue that doesn't invalidate immediately. * ToolTip.cs: Tooltips get added to their container (when supplied) so they get disposed when the container is disposed. - Don't create tooltips for String.Empty. This prevents all these little 2-3 pixel windows from showing up when running nunit-gui and driving me mad. * Form.cs: Don't set topmost when setting the owner if the handles haven't been created yet. The topmost set will happen when the handles are created. 2006-03-22 Peter Dennis Bartok * XplatUIX11.cs: - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828) - SetVisible: Sending WINDOWPOSCHANGED for all controls when made visible (to allow them to recalculate their sizes) 2006-03-21 Mike Kestner * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering methods. Removed a ton of redundant code. Still not really happy with the border rendering, but I think that's mainly because of the ControlDarkDark being black instead of a dark grey. Depending on how close we want to be, we might want to revisit those color choices. Among the new features added during the refactor were DropDownArrow pressed rendering, Disabled image rendering. Proper flat appearance boundary rendering. Removed the Divider and Wrapping dividers since I can't figure out any combination of themes and conditions to make the MS control draw a horizontal line on a toolbar despite what the Divider property docs indicate. * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker conditions and incorrect layout. Updated to coding standard. * ToolBarButton.cs: refactored layout and positioning code from ToolBar to here. Invalidate wherever possible instead of forcing redraws of the whole toolbar. (Known remaining issues: explicit ButtonSize smaller than provided images.) 2006-03-21 Mike Kestner * ContextMenu.cs (Show): use the position parameter instead of just showing at the MousePosition. 2006-03-21 Jackson Harper * TabControl.cs: Remove the call to ProcessKeyEventArgs and let control handle this. * TreeNodeCollection.cs: If we are clearing the root node we need to reset top_node so calcs can still happen. * ThemeWin32Classic.cs: This is a Flags so we need to check properly. 2006-03-21 Jackson Harper * DataGrid.cs: Create columns when the binding context has been changed. * X11Structs.cs: Keysyms are uints. - Add size to fix build. 2006-03-21 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, XplatUIOSX.cs: - Added ResetMouseHover method to allow controls to retrigger hovering if they need it more than once - Implemented MouseHoverTime and MouseHoverSize properties * Timer.cs: Start() must reset the interval * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize properties 2006-03-21 Jackson Harper * X11Keyboard.cs: improved layout detection. Move the nonchar tables into this file. * KeyboardLayouts.cs: Move the tables into resource files. 2006-03-21 Mike Kestner * ListView.cs: use OnItemActivated to raise events. Fixes #77834. 2006-03-21 Alexander Olk * Mime.cs: Various speed optimizations. Looking up mime types is now 2 times faster than before 2006-03-17 Peter Dennis Bartok * CreateParams.cs: Added internal menu field * Control.cs: - Switched call order for UpdateBounds; now we always call the one that also takes ClientSize, and we're calculating the client size via driver method in the others. The previous method of tracking client size by difference wasn't working for forms where even the starting client size wouldn't match the overall form size (due to borders) (Part of fix for #77729) - CreateParams(): Do not use parent.Handle unless the handle is already created. Causes havoc with Nexxia and throws off our creation of controls * XplatUIX11.cs: - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message - Switched handling of ConfigureNotify over to new PerformNCCalc method (consolidates code) - Changed RequestNCRecalc to use new PerformNCCalc method - Added calls to RequestNCRecalc when menus and borders are changed to allow app to set NC size. (Part of fix for #77729) This matches when MS send a WM_NCRECALC on Win32 windows. - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible (Part of fix for #77729). This matches what MS does, they also send that message when the form is made visible. - XException.GetMessage: Improved usability of X errors by including a translation of the window into Hwnd and Control class - Improved debug info for window creation, reparenting and destruction - Created helper method WindowIsMapped() [Currently not used] * XplatUIWin32.cs: Added ToString() debug helper to RECT structure * Form.cs: - CreateParams: Now setting our menu on the new internal menu field - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to avoid calculating the same property twice * Hwnd.cs: - Improved usability of ToString() for debugging purposes - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to determine the height of the menu, instead of just the font. This required to also create a graphics context and to keep a bmp around (for performance reasons) 2006-03-17 Peter Dennis Bartok * MenuAPI.cs: Added OnMouseUp method * Form.cs: - Now remembering the requested client size, avoids size errors - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker instead of base if the menu is active. This is required due to control now capturing and releasing on down/up and it would prematurely release our menu capture 2006-03-17 Jackson Harper * KeyboardLayouts.cs: Add the czech layouts. 2006-03-16 Jackson Harper * Control.cs: Use the viewport space when sizing not the controls client size, so things like ScrollableControl that effect the viewport size (when scrollbars are added) are computed correctly. * BindingContext.cs: Cleanup to use the DataSourceEntrys instead of ManagerEntrys. - Handle creating BindingManagers for null data sources. * DataGrid.cs: Bind the cached_currencymgr_events to the real data source, otherwise when rows are added they are added to the 'fake' datasource and we will crash when trying to set the position in those rows. - Use Implicit scrollbars on the datagrid so they arent selectable. 2006-03-16 Jackson Harper * Binding.cs: * InternalWindowManager.cs: * MdiWindowManager.cs: * X11Keyboard.cs: I really want Mike to love me again (fix compiler warnings). 2006-03-16 Peter Dennis Bartok * DataGrid.cs: - OnMouseDown: Switch to editing mode when clicking on the cell even if we're clicking on the cell that's currently selected - ProcessGridKey: Left/Right now wrap like MS.Net does - ProcessGridKey: Tab now knows to add a new row when tab is pressed in the cell of the last column of the last row - ProcessGridKey: Enter now adds another row if pressed in the last row and selectes the new row, same column cell - ProcessGridKey: Home/End navigate columns, not rows, like originally implemented - Broke ProcessKeyPreview code out into an extra Internal method so it can be called from the edit code * DataGridTextBox.cs (ProcessKeyMessage): - Switched to accept Tab keypresses - Added F2 handling to allow jumping to the end of the edited cell - Added logic to allow moving caret left/right inside edited cell and making the edited cell jump when the caret hits cell borders - Tab and Enter are now passed to the datagrid after being handled * TextBoxBase.cs: - Removed capture code now that Control handles it - set_SelectionStart now ensures caret is visible 2006-03-16 Jackson Harper * TrackBar.cs: Debackwards the increment/decrement for handling mouse clicks on the bar with vertical trackbars. * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the bottom to match MS. 2006-03-16 Mike Kestner * ListView.cs: make shift/ctrl keyboard and mouse selection consistent with the MS control. Fix a bug in SelectedListViewItemCollection.Clear that was pissing me off for the better part of a day because the collection was being altered underneath us as we walked the list. 2006-03-16 Peter Dennis Bartok * Control.cs: Not sure how we could miss this so long, but it seems that MS.Net has Capture set all the way from before calling OnMouseDown through sending the mouse events until after OnMouseUp. This will fix DataGrid's selection being set to end at the location of the MouseUp. 2006-03-15 Jackson Harper * BindingContext.cs: Check the binding after its added so that it can initialize the binding managers and hookup to events. * Binding.cs: Data members seem to sometimes include rows/cols in the format Row.Column we now take this into account. - Hookup to the position changed event so we can update the control when the position has changed in the data set. * CurrencyManager.cs: Take into account the row/col naming convention when creating dataset tables. * BindingContext.cs: Using a newer better way of storing datasource/datamember pairs. Hopefully this better matches MS for looking up binding managers. 2006-03-15 Jackson Harper * BindingContext.cs: The currency manager needs the data member name, if the member is a data set we use the name to find the correct table. * CurrencyManager.cs: When creating the list prefer an IList over an IListSource. - Attempt to create a DataTable from a DataSet (TODO: might need some better error checking here, although MS doesn't seem to have much) - If we have a DataTable create a view and use it as our list. 2006-03-15 Mike Kestner * ListView.cs: keep a matrix of the icon mode layout to facilitate keyboard navigation. Support Up/Down/Left/Right selection correctly for all 4 View modes. * ListViewItem.cs: add internal row/col fields for icon layouts. 2006-03-15 Jackson Harper * TabControl.cs: Redraw the tabs when we resize so their newly calculated sizes are drawn on screen. * X11Keyboard.cs: Begginnings of XIM support. We also now support composite characters. * XplatUIX11.cs: Keyboard driver needs to know about focus changes - filter events so that composite characters can be created patches by peter * X11Structs.cs: Add XIMProperties enum. 2006-03-14 Peter Dennis Bartok * Control.cs (BringToFront, SendToBack): Don't use window or handle unless it's created 2006-03-14 Peter Dennis Bartok * Control.cs (PerformLayout): We don't need to consider visiblity for anchoring, only for docking. This fixes 'whacky' alignment in listbox and other controls that use implicit scrollbars after the previous PerformLayout patch * ListBox.cs: Switched to use implicit scrollbars 2006-03-14 Mike Kestner * ToolBar.cs: * VScrollBar.cs: - chain up the "new event" overrides to base and use OnEvent to raise them. Part of fix for bug #76509. 2006-03-14 Alexander Olk * FileDialog.cs: Do not select an item in the parent directory on backspace 2006-03-14 Peter Dennis Bartok * Control.cs (PerformLayout): It would seem that we considered invisible windows for our layout. Not quite the right thing to do. Now we don't any longer, thereby fixing bug #76889. 2006-03-14 Peter Dennis Bartok * Control.cs (CanFocus): I goofed. A control can have focus even though it's not selectable. Made it match MS docs. 2006-03-13 Peter Dennis Bartok * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the center by default (fixes #76895) * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced all uses of Border3DSides.All with the explicit ORd together Left|Right|Top|Bottom because I assume that nobody was aware that All also implies a center fill. Most places I checked had a fill right above. * ProgressBarStyle.cs: Added 2006-03-13 Mike Kestner * ListView.cs: fix breakage in drag shadow header positioning from Peter's csc compilation fix. 2006-03-13 Mike Kestner * ListView.cs: fix NRE produced by backspacing twice in a focused FileDialog. 2006-03-13 Mike Kestner * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView. 2006-03-13 Peter Dennis Bartok * Hwnd.cs: Added fixed_size field to track windows whose size cannot be changed * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting the allowed size before making programmatic size changes 2006-03-13 Peter Dennis Bartok * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are set, metacity is broken and will still use the emty sizes in the struct. (Fix for #77089) 2006-03-13 Peter Dennis Bartok * XplatUIStructs.cs: Split WindowStyles into WindowStyles and WindowExStyles and marked both enums as Flags * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs, NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated to match WindowStyles split * XplatUIX11.cs: - SetWMStyles: Added cehck to not apply WM attributes to Child windows - Updated to match WindowStyles split * XplatUIWin32.cs: - Fixed FosterParent creation, was using ExStyle on the Style field (This should help with Popup focus issues) - Updated to match WindowStyles split 2006-03-13 Jackson Harper * MdiWindowManager.cs: Use the system menu height. Fixes some strange sizing issues. 2006-03-12 Peter Dennis Bartok * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672) * TextBoxBase.cs: - Scroll to caret after inserting text (#77672) - Make scroll range one pixel higher, fixes off-by-one error (and makes underlines visible on the last line) 2006-03-12 Peter Dennis Bartok * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent the keyboard state from being stuck with keys in 'pressed' state when focus is switched away via keyboard * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to reset the keyboard if no X11 KeyUp events are expected to come * X11Structs.cs: Switched type of Visible to bool to match driver 2006-03-12 Peter Dennis Bartok * TextControl.cs: - Switched caret to be just 1 pixel wide, matches MS and looks less clunky - Moved caret display 1 pixel down from the top of the control to improve view - InsertCharAtCharet: Update the selection start if moving the caret (fixes bug #77696; based on patch suggested by kazuki@panicode.com) - No longer always creating the caret when the caret methods are called. Only the actual ShowCaret/HideCaret will do that now - Only setting caret visible if the owner control has focus - UpdateView: Added invalidation-shortcut logic for center and right aligned text. Previously we'd update all according to the left logic which caused drawing errors. Also fixed height of invalidated areas, now properly invalidating the whole area (was off-by-one) - owner_HandleCreated: Always generate the document when the handle is created; this ensures that * TextBoxBase.cs: - Fixed situation where caret would disappear under the right window border, also improved scrolling behaviour on left- aligned textboxes - Fixed right-aligned textboxes to have a border to the right instead of the caret being under the right border * XplatUIX11.cs: - Switched from 'nested' to simple visible/not visible tracking for caret (part of fix for #77671) - No longer passing through translated FocusIn/FocusOut messages since we were notifying too often and the wrong windows. Instead we just notify our focussed window of receiving or loosing focus * XplatUIWin32.cs: Switched from 'nested' show/hide counting for caret to simple visible yes/no behaviour (part of fix for #77671) 2006-03-11 Alexander Olk * Mime.cs: Remove debug code... 2006-03-11 Alexander Olk * MimeGenerated.cs: Removed * Mime.cs: Mime now reads the mime data (magic, globs, aliases and subclasses) from /usr/(local/)share/mime and $HOME/.local/share/mime. 2006-03-10 Jackson Harper * MdiWindowManager.cs: Recalc the NC area when a window is maximized/restored so that the menu area is drawn on forms that don't have a menu. 2006-03-10 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Added RequestNCRecalc method to driver to allow us to force a WM_NCCALCRESIZE message being sent. This is needed for MDI maximizing. 2006-03-10 Jackson Harper * Form.cs: We need to use the ActiveMenu when calculating menu height. - Fix nullref when the window manager hasn't been created yet. * Control.cs: Fix nullref when we try to bring a control to the front that has no parent. * MdiWindowManager.cs: Use the MaximizedMenu for calculating height. - Add a dummy item to the maximized menu so it always has the correct height. Otherwise when there are no menus we don't get our icon and buttons. 2006-03-10 Jackson Harper * MenuAPI.cs: Make this available elsewhere. I need it in some MDI stuff. * Form.cs: Make the window_state internal so the window managers can track it. - When an MDI child is maximized let its window manager create the main menu (so it can add its icon). - Notify the window managers of state changes - Let the window manager paint its buttons and handle button clicks on the menu when it is maximized. * InternalWindowManager.cs: Move the prev_bounds into the mdi window manager, since tool windows don't use it, only mdi windows. - Tell the main form that we don't want it to handle NCPAINT itself to avoid extra painting. - Handle clicks on a maximized windows menu. - Handle window state changes - Handle minimize/maximize clicks correctly by setting the window state. * MdiWindowManager.cs: Add an icon menu that (the menu you get when clicking on the forms icon). - New method to create a forms maximized menu. This is its normal menu + an icon. - Handle window state changes. - Handle sizing of maximized windows. Maximized windows are just drawn bigger then the parent visible area. All controls are still there, they are just outside the visible area (this matches windows). * MdiClient.cs: No scrollbars when a child window is maximized. - Let the children windows figure out how big they should be when sizing maximized windows. - Implement a version of ArrangeIconicWindows somewhat similar to Windows version. There are some little differences, but I don't think any app will rely on the layout of minimized mdi windows. 2006-03-10 Peter Dennis Bartok * Padding.cs: Several fixes to allow compiling with csc 2.0 2006-03-09 Jackson Harper * Menu.cs: * MenuItem.cs: Cheap hack so we can add items to the list without the events being raised. This allows adding mdi items during drawing. TODO: Should probably find a better time to add the items. 2006-03-10 Peter Dennis Bartok * ThemeWin32Classic.cs: - CheckBox_DrawText: Added logic to not wrap if not enough space is available (Fix for bug #77727) - RadioButton_DrawText: Added logic not to wrap if not enough space is available (Fix for bug #77727). Also removed some duplicate code, DrawString always drawing the regular text before hitting the if statement. 2006-03-10 Peter Dennis Bartok * XplatUIX11.cs: Handle an unmapped window state in SetWindowState 2006-03-10 Peter Dennis Bartok * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726) * ContainerControl.cs: Partial implementation of some 2.0 scaling methods. Moved the new 2.0 properties into alphabetical order with other properties and added MonoTODO tags 2006-03-09 Peter Dennis Bartok * AutoScaleMode.cs: Added. Fix build. 2006-03-09 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used and was requiring premature handle creation for calls from above * Form.cs, Control.cs: Removed handle arguments from calls to CalculateClientRect() 2006-03-09 Peter Dennis Bartok * ListView.cs (HeaderMouseMove): Fix csc compilation. drag_column.column_rect is MarshalByRef and can't be used that way 2006-03-09 Peter Dennis Bartok * AxHost.cs: Added deserialization constructor for AxHost+State (fixes 77743) 2006-03-09 Mike Kestner * ListView.cs: - Added column drag reordering for details view. - fixed behavior when mouse is dragged off column and AllowColumnReorder is false. * ColumnHeader.cs: clone the format too in Clone. * Theme.cs: add DrawListViewHeaderDragDetails method. * ThemeWin32Classic.cs: - impl new method for drawing drag column shadows and targets. - support column offset for details mode in DrawListViewItem. 2006-03-09 Peter Dennis Bartok * TextControl.cs: Reset the char_count when the document is cleared (Fixes bug reported on mono-winforms mailing list) 2006-03-09 Peter Dennis Bartok * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead of calling base we simply process the key ourselves, since both DefWindowProc and the handled method would set m.Result. (Fixes #77732) 2006-03-09 Peter Dennis Bartok * Form.cs(ScaleCore): No longer calling base.ScaleCore since that method also moves the window; instead implemented a copy of Control.ScaleCore (Part of fix for #77456) * TextBoxBase.cs: - Created new CreateGraphicsInternal method to allow providing a graphics context when no handle is created without triggering handle creation. (Part of fix for #77456) - Replaced use of Control.CreateGraphics with CreateGraphicsInternal * TextControl.cs: - Switched Constructor to require TextBoxBase instead of Control (to allow uncast access to CreateGraphicsInternal) - Safeguarded use of owner.Handle property. No longer accessing it unless the handle is already created. - Replaced use of Control.CreateGraphics with CreateGraphicsInternal - Now triggering a recalc when owning control becomes visible * TextBox.cs, RichTextBox.cs: Switched to use new internal TextBoxBase.CreateGraphicsInternal() method to avoid triggering premature handle creation (Part of fix for #77456) * Control.cs: - We now only destroy our double-buffering buffers when the control is resized or disposed, but not when visibility changes. (The code even re-created them twice every time) - Now requiring a redraw of the buffer on visibility changes (fixes bug 77654 part 2) - Not passing OnParentVisibleChanged up unless the control is visible - CanFocus: Fixed to match MS documentation - Focus: Fixed to return actual focus state and to check if setting focus is legal before setting it 2006-03-08 Peter Dennis Bartok * ThemeWin32Classic.cs: TabPages cannot have focus. Determine when to draw focus rectangle by looking at parent focus and selected state instead. This fixes TabPages on Linux sometimes having none or multiple focus rectangles. * XplatUIX11.cs (SetFocus): - Don't set the focus if the same window already has focus - Use SendMessage instead of PostMessage (like it's Win32 equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS to match MS behaviour * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages are not selectable. 2006-03-07 Jackson Harper * PictureBox.cs: Revert line I accidently committed last week. 2006-03-07 Peter Dennis Bartok * Control.cs: - Added new IsRecreating and ParentIsRecreating properties to allow testing if RecreateHandle has been called on ourselves or one of our parents - WndProc(WM_DESTROY): If our control handle is being recreated we immediately need to create the handle when receiving the destroy, that way our child windows find a valid parent handle when they themselves are being recreated upon WM_DESTROY receipt (fix for bug #77654 part 1) * XplatUIX11.cs: - DestroyWindow: WM_DESTROY must be sent to our own window before notifying any child windows. MS documents that child windows are still valid when WM_DESTROY is received. (Control now relies on this behaviour) - Added some fine-grain debug options 2006-03-06 Jackson Harper * MdiClient.cs: Redid scrolling logic a bit to create a virtual box and base calculations off this. * MdiChildContext.cs: * MdiWindowManager.cs: Don't need to ensure scrollbars here anymore. 2006-03-06 Peter Dennis Bartok * Splitter.cs: In situations where the affected control is added to the parent's control list after the splitter, we would not populate affected. Now we try populating it on mousedown, if it's not already set, and force it to be re-set whenever our parent changes. 2006-03-03 Matt Hargett * Control.cs: implement Control.Padding * Padding.cs: -Padding.All returns -1 when constructing with the implicit default ctor -Padding.ToString() matches MS.NET * ContainerControl.cs: implement ContainerControl.AutoScaleDimensions * ListControl.cs: implement ListControl.FormattingEnabled * TextBox.cs: Implemented TextBox.UseSystemPasswordChar. * ButtonBase.cs: * TabPage.cs: Implement UseVisualStyleBackColor. * PictureBox.cs: Implement PictureBox.InitialImage. 2006-03-03 Mike Kestner * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new event declarations to proxy to base event. * ListViewItem.cs: update to use ItemControl. * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems. * ThemeWin32Classic.cs: update to new ListView theme API and fix column header label rendering for 0 width columns. 2006-03-03 Peter Dennis Bartok * Control.cs (ControlCollection.SetChildIndex): Avoid using a call that causes the control to be created. Fixes #77476. 2006-03-02 Jackson Harper * Hwnd.cs: Clear the nc pending when clearing the NC area, not the expose_pending. 2006-03-02 Peter Dennis Bartok * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs passed in for the EventArgs (fixes #77690) 2006-03-01 Jackson Harper * ScrollBar.cs: Refresh afterbeing resized. 2006-02-28 Mike Kestner * MenuAPI.cs: Call PerformPopup internal method to emit Popup. Clean up a tracker compile warning. * MenuItem.cs: add internal PerformPopup method. [Fixes #77457] 2006-02-28 Peter Dennis Bartok * TextBoxBase.cs (set_Text): Recalculate the document (causing an implicit expose) when the text is set to null 2006-02-28 Peter Dennis Bartok * RichTextBox.cs (FlushText): When newline is true, we always need to split the line, even if no text is on it and we may never eat newlines. (Fixes #77669) 2006-02-28 Mike Kestner * ListView.cs: Add UpdateSelection internal method. Remove SelectItem and set Selected instead. * ListViewItem.cs: Call owner.UpdateSelection to manipulate the collections. 2006-02-28 Peter Dennis Bartok * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665 2006-02-28 Alexander Olk * FontDialog.cs: - Got rid of the panel. All controls are now directly added to the dialog form - It is now possible to set a font with the Font property - MinSize and MaxSize property do now what they should - ShowApply, ShowHelp, ShowColor, ShowEffects likewise - Searching and selecting a font with the font textbox works now, the same applies to the style and size textbox - Draw the correct 3D border in the example panel - Fixed a little mem leak (unused fonts didn't get disposed) - Many other internal updates/rewrites... - Fix typo 2006-02-27 Peter Dennis Bartok * TextControl.cs: - InsertRTFFromStream: Added 'number of characters inserted' argument - set_SelectedRTF: Now using the number of characters to calculate the new location for the selection and cursor (x/y cannot be used due to potentially already wrapped text) 2006-02-27 Peter Dennis Bartok * TextControl.cs: Added property and implemented means to allow disabling recalculation of a document (can be used to speed up multiple inserts and is needed to make RTF inserts predictable, see bug #77659) * RichTextBox.cs: Using the new NoRecalc property of Document to keep x/y insert locations predictable. Also makes it faster inserting large chunks of RTF 2006-02-27 Peter Dennis Bartok * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way it's easier for a child control to handle the other messages without having to duplicate the special functionality * TextBoxBase.cs - WndProc: Removed calling base handler for WM_KEYDOWN and added code to handle processing the key ourselves, in order to get access to the result of KeyEventArgs.Handled. We now only call ProcessKey if they key hasn't been handled already. Fixes #77526. - set_Text: If null or empty string is given, just clear the document. Fixes part of #77526 2006-02-27 Jackson Harper * SizeGrip.cs: Paint the background color before painting the grip so things look right. * MdiClient.cs: Add the sizegrip when both scrollbars are used. 2006-02-27 Mike Kestner * ListView.cs: - Restructure layout and invalidation model to remove a ton of flicker from the control and speed up performance in general. - Add manual column resize, flickers like crazy, but I already have some ideas on how I'll fix that. (#76822) - Merge the three Icon-based views into a single layout method. - Move item selection interaction logic from the item since interaction with the collections is more appropriate to the view. - Deselection on non-item clicks. * ListViewItem.cs: - Encapsulate most of the layout. Add some internal props to trigger layout. Move to a model where Items invalidate themselves instead of just invalidating the whole control every time something changes. - Invalidate on Text/Caption changes. - switch to an offset based layout model to avoid having to absolute position every element on item moves. - correct checkbox layout to conform to MS layout. * ThemeWin32Classic.cs: - refactor some column header drawing code. - fix string justification for column headers (#76821) - make SmallIcon labels top justified for compat with MS impl. * ThemeClearlooks.cs: - adjust to new ListViewItem internal checkbox bounds api. 2006-02-27 Jackson Harper * Control.cs: Change where implicit controls fall in the zorder. They are now on top of all children. - Synced AddImplicit code with Add - Removed unused enumerator. * SizeGrip.cs: Remove the TODO as its been TODONE. 2006-02-26 Peter Dennis Bartok * TextControl.cs(Insert): Combine the last lines unless the insertion string ends with \n\n, otherwise we leave one line too many (Fixes something I noticed with the testapp for #77526; the bug itself was already fixed in the previous checkin) 2006-02-26 Peter Dennis Bartok * RichTextBox.cs: - SelectionColor and SelectionFont methods no longer set absolute styles. Instead, the keep font or color respectively (This resolves a long-standing FIXME in the code) - When flushing RTF text, the insert code now considers text trailing behind the insertion point (Fixes the bug where when replacing the selected text via SelectedRTF the remainder of the line behind the selection would stay on the first insertion line) * TextBoxBase.cs: - AppendText now updates the selection points after inserting text - AppendText now ensures that the last tag (sometimes 0-length) of the document is used for the style information (Fixes part of bug #77220) * TextControl.cs: - Created new FontDefiniton class to allow describing partial style changes - StreamLine() now takes a lines argument, to allow it to decide whether an encountered zero-length tag is the last in the document (which must be kept to not loose the font/color contained in it, for later appends) - Created Combine() and Split() methods for Marker structs, to support marker updates due to reformatted documents (soft line wraps) - Implemented Document.CaretTag setter - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character of the last line (Not the cause, but also exposed by bug #77220) - Added LineTag argument to InsertString method, to allow callers to force a certain tag to be used (required to force use of the trailing zero-length tag of a document) - Now updating markers in Combine(), to avoid stale tag markers - Added some method descriptions to aid maintenance - Implemented new FormatText concept, allowing additive/subtractive formatting by only specifying the components that are to be changed. This was needed for resolving the RTB.SelectedColor/ RTB.SelectedFont fixmes - Added Break() support method to allow breaking up linetags (used for partial formatting) - Added GenerateTextFormat() method. It is used for partial formatting and allows to generate a full font/color from given attributes and an existing tag. 2006-02-26 Jackson Harper * XplatUIX11.cs: Use the correct caption height. - Translate hittest coordinates to screen coords to match MS. * XplatUIWin32.cs: When we create MDI windows we need to reset some of the style flags, so we get a nice blank window, and can draw all the decorations ourselves. - Set a clipping rectangle on the non client paint event, the window manager drawing code needs one. * Form.cs: The window manager needs to know when the window state has been updated. * Hwnd.cs: The window manager stuff now does a proper NCCALC so we don't need to factor in border and title sizes in these methods. TODO: Remove the args and fix the call points. * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA properly. - Let the driver set the cursors. - Improve active window handling - Correct sizes for title bars and buttons. - Match MS drawing better * MdiWindowManager.cs: We don't need to handle border style updates specially anymore. - Check for scrollbars when windows are done moving - Handle Active properly. * MimeIcon.cs: Don't crash when we can't load the GNOME stuff correctly. I am spewing the exception though, so we don't hide the bugs. 2006-02-26 Pedro Martinez Julia * DataGridViewRowPostPaintEventArgs.cs, DataGridViewCellPaintingEventArgs.cs, DataGridViewRowCollection.cs, DataGridViewRowPrePaintEventArgs.cs, DataGridViewCell.cs: Clear a few warnings and implement a few exceptions that should be thrown. 2006-02-22 Peter Dennis Bartok * ScrollBar.cs (ctor): Explicitly set a cursor to avoid 'inheriting' our parent's (non-default) cursor. (Part of the fix for #77479) 2006-02-22 Peter Dennis Bartok * XplatUIX11.cs: Fixed cast to make csc happy 2006-02-22 Peter Dennis Bartok * Control.cs (WndProc): Only handle WM_SETCURSOR messages if it's for the client area (part of fix for #77479 and needed for MDI window cursor handling) * XplatUIX11.cs - DefWindowProc: Now handles the WM_SETCURSOR messages, setting the appropriate default cursors and also passing the message up the parent chain - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even for non-client areas 2006-02-15 Jackson Harper * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this is a real MDI window 2006-02-14 Alexander Olk * X11DesktopColors.cs: Instead of checking the desktop session string for "KDE" check if it starts with "KDE" 2006-02-10 Jackson Harper * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit systems). 2006-02-10 Alexander Olk * FileDialog.cs: Added Refresh to RunDialog to fix some drawing errors * ColorDialog.cs: - Got rid of the panel. All controls are now directly added to the dialog form - Changed to mono coding style 2006-02-10 Jackson Harper * InternalWindowManager.cs: We don't need the set visibility to false hack anymore now that peter has written beautiful shutdown code. 2006-02-10 Peter Dennis Bartok * XplatUIX11.cs: Ignore DestroyNotify messages for windows that where already explicitly destroyed 2006-02-10 Jackson Harper * MdiClient.cs: Handle the case where windows are too high or to the left and we need scrollbars. 2006-02-10 Alexander Olk * MimeIcon.cs: Added some icons * FileDialog.cs: - Fixed bug #77477 - Got rid of the panel. All controls are now directly added to the dialog form - Changed to mono coding style - On Linux "My Computer" and "My Network" will now show some more usefull information. A new class, MasterMount, gathers this information from /proc/mount. Updated MWFFileView to make use of this information - Fixed a bug that caused FileDialog to crash when ".recently_used" file had a zero size - FilterIndex does now what it should - Some Refactoring * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest FileDialog changes 2006-02-09 Jackson Harper * ComboBox.cs: Don't touch if null. 2006-02-09 Peter Dennis Bartok * Cursor.cs: 64bit safeness fix * XplatUIX11.cs: Removed several unneeded and one moronic cast. 2006-02-09 Jackson Harper * Form.cs: If a form is made into an MDI form update the styles so all the props can get set correctly. - Kill the mdi_container when we dont need it anymore. * InternalWindowManager.cs: Add missing NOT 2006-02-08 Jackson Harper * InternalWindowManager.cs: Respek clipping when drawing MDi decorations. 2006-02-08 Jackson Harper * Hwnd.cs: Add bits to track non client expose events. * XplatUIX11.cs: Track non client expose events on the hwnd. This gives us a proper invalid rect and will allow for some nice optimizations with NC client drawing - MDI windows are children windows, so move their style handling into the child window block. * InternalWindowManager.cs: Remove a state reset that was getting invoked at the wrong time. Fixes managed windows getting into a 'stuck' captured state. 2006-02-07 Peter Dennis Bartok * TextControl.cs (Document.ctor): Now initializing selection_anchor. Fixes #77493 2006-02-07 Jackson Harper * TrackBar.cs: The increment/decrements were backwards. 2006-02-07 Mike Kestner * Theme*.cs : remove ThemeEngine.Current usage as it just points back to the instance itself. 2006-02-07 Peter Dennis Bartok * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based on ulongs and pointers, the size differs between 32bit and 64bit systems. 2006-02-07 Mike Kestner * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty for 64 bit platforms to work around a metacity bug. 2006-02-07 Jackson Harper * TrackBar.cs: Process the input keys we need, and hookup to KeyDown instead of using WndProc, so we get key messages. 2006-02-06 Peter Dennis Bartok * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what machine we're on. * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire we need to translate the XdndVersion atoms array before sending it 2006-02-06 Peter Dennis Bartok * XplatUIX11.cs: - The preceeding 64bit fixes had a bug: ChangeProperty expects the number of bits for the property, not the number of bytes. The change to provide IntPtr.Size broke 32bit. (64bit was also wrong but would not crash since it specified 8 bits instead of 4 bits) - More 64bit fixes: Switched all atoms from int to IntPtr (they are defined as XID -> long in the C headers) - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms references since those are now IntPtr to begin with - Switched all Atom.XXX 'int' casts to IntPtr casts - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg) - Fixed XInternAtom signature for 64bit, now returns an IntPtr - Added XChangeActivePointerGrab DllImport (for X11DnD) * X11Structs.cs: - Changed 'int' type for Atoms in XEvent structures to IntPtr - Changed atom in HoverStruct to be IntPtr * X11DnD.cs: - Removed local DllImports, switched code to use those from XplatUIX11 - Removed/fixed casts related to the switch of Atom to be a IntPtr 2006-02-06 Mike Kestner * XplatUIX11.cs : many more 64 bit pinvoke changes. I've audited all the method signatures in the import region. There may still be some lingering struct marshaling issues, as I didn't drill down into those. Yet. 2006-02-06 Jackson Harper * ComboBox.cs: Dont manually set the top_item, this is computed when the scrollbar position is set. 2006-02-06 Mike Kestner * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes startup crashes on amd64. There's other fixes needed. All pinvoke usage of Atom needs to be mapped to IntPtr for example. And there are likely other int/long issues to be addressed. 2006-02-04 Alexander Olk * FileDialog.cs: One more... 2006-02-03 Alexander Olk * FileDialog.cs: Next try 2006-02-03 Alexander Olk * FileDialog.cs: First part of fix for #77464 2006-02-03 Alexander Olk * ButtonBase.cs, ContainerControl.cs, Forms.cs, ThemeWin32Classic.cs: Fix for #77458. Correct handling of AcceptButton border drawing. 2006-02-03 Peter Dennis Bartok * Form.cs: Moved positioning of form after auto scaling is applied, otherwise it would possibly use wrong form size. 2006-02-03 Peter Dennis Bartok * Control.cs (RecreateHandle): No need to re-create any child controls, the child windows will get destroyed automatically by the windowing system or driver, and re-created when the handle is being accessed the first time. Fixes #77456 * Form.cs: No longer setting the form to closing if the handle is being recreated. This seems like the right thing to do, don't have a bug or testcase for this, though. 2006-02-02 Peter Dennis Bartok * FileDialog.cs: Suspend/Resume layouting when changing sizes of controls to avoid unwanted side effects 2006-02-02 Peter Dennis Bartok * Control.cs: - ScaleCore needs to scale the bounds, not the ClientSize of the control. Fixes #77416. - DefaultSize is 0,0 for control * TextBoxBase.cs: - DefaultSize is 100, 20 - SetBoundsCore: Now enforcing the height, no matter if the provided height is more or less than the preferred one, as long as AutoSize is on * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416 2006-02-02 Peter Dennis Bartok * Control.cs: - ResumeLayout: Fixed logic when to call PerformLayout, we may not call unless both performLayout is true *and* we have a pending layout change - ResumeLayout: MS does not completely nest Suspend and Resume, they bottom out at 0, fixed our code to match that. - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to SetBoundsCore, we were updating even when we shouldn't. This fixes swf-anchors mis-anchoring when resizing the app fast and lots. - UpdateDistances: Now only setting the left and top distance if we have a parent and are not suspended, this is based on a suggestion by Don Edvaldson in bug #77355. - OnVisibleChanged: Fixed logic when to create the control. We may not create the control if we have no parent or if it's not visible; switched to using Visible property instead of is_visible field since the property also considers parent states. This fixes a bug when starting Paint.Net 2006-02-02 Jackson Harper * Form.cs: If the forms handle hasn't been created yet don't call into xplatui to make it top most, just set the topmost flag on the form in CreateParams * XplatUIX11.cs: Handle WS_EX_TOPMOST. 2006-02-01 Jackson Harper * ScrollableControl.cs: Refactored the Recalculate method a little, this wasn't handling all the variants of bottom and right bars needed to be added and added/removed based on their counterparts being added/removed (which changes the drawable size). Also we special case client widths and heights of 0 and don't add the scrollbar for those. 2006-02-01 Peter Dennis Bartok * XplatUIX11.cs: - Added method to get AbsoluteGeometry(); currently unused, but might be used in the future, if we try again to figure out toplevel coordinates with some more crappy window managers - Added FrameExtents() method to retrieve the WM set decoration size - Tried to fix up AddConfigureNotify and handling of ReparentNotify to deal with at least KDE, FVWM and metacity (Fixes #77092) * Hwnd.cs: - Added whacky_wm tracking var for metacity - Added logic to have default menu height if the actual menu height has not yet been calculated (part of fix for #77426) * Form.cs: Keep track whether client size has been set and re-set it if a menu is added/removed afterwards (Fixes #77426) 2006-01-31 Jackson Harper * Control.cs: When a new Site is set on the component attempt to pull the AmbientProperties from it. 2006-01-31 Peter Dennis Bartok * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not in the background of the owning form. Fixes #77332 2006-01-31 Alexander Olk * MimeIcon.cs: Fix for #77409 2006-01-31 Alexander Olk * XplatUIX11GTK.cs: Initial import 2006-01-31 Jordi Mas i Hernandez * FixedSizeTextBox: fixes class signature 2006-01-30 Jackson Harper * FixedSizeTextBox.cs: New internal class that represents a textBox that will not be scaled. * TreeView.cs: * ComboBox.cs: * UpDownBase.cs: Use the new FixedSizeTextBox instead of a standard TextBox. 2006-01-30 Peter Dennis Bartok * XplatUIX11.cs: Retrieve default screen number instead of assuming 0. Attempted fix for #77318 2006-01-30 Peter Dennis Bartok * XplatUIWin32.cs: - GetWindowPos: When a window is parented by FosterParent, use the desktop instead of FosterParent as the base to get coordinates - CreateWindow: Don't make FosterParent the parent window for Popups if we don't want a taskbar entry, Popups automatically don't get one * Hwnd.cs: Need to call remove to actually remove the key from the hash table 2006-01-30 Mike Kestner * MenuAPI.cs: adjust MainMenu item popup location to y=0. 2006-01-30 Jackson Harper * TreeView.cs: * TreeNode.cs: Raise events no matter how the treenode is checked. Patch by Don Edvalson. 2006-01-30 Jackson Harper * TreeNode.cs: Signature fix. 2006-01-29 Alexander Olk * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing. 2006-01-20 Mike Kestner * Form.cs: Add ActiveTracker property to do Captures and perform mouse event forwarding when menus are active. * MenuAPI.cs: kill the GrabControl hack. Use Form.ActiveTracker. Most of the patch is pdb's with a little rework. 2006-01-26 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: Removed GetMenuDC and ReleaseMenuDC methods; replaced by PaintEventStart(handle, false) and PaintEventEnd(handle, false) * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End * InternalWindowManager.cs: Added use of PaintEventStart/End to handling of WM_NCPAINT message, now passing the PaintEventArgs to the PaintWindowDecorations method * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart * MenuAPI.cs: Made tracker window invisible * XplatUIWin32.cs: - Removed GetMenuDC and ReleaseMenuDC methods - Implemented the client=false path for PaintEventStart and PaintEventEnd 2006-01-26 Peter Dennis Bartok * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form styles * Form.cs: - MaximizeBox, MinimizeBox: Recreate the handle when setting the style - CreateParams: Reworked the styles to match MS look'n'feel, removed automatic setting of MinimizeBox, MaximizeBox, etc. via the WS_OVERLAPPEDWINDOW style. This fixes #76823. 2006-01-26 Peter Dennis Bartok * XplatUIX11.cs(GetWindowState): Now throwing an exception when the window is not mapped, since otherwise every form that's being created is considered minimized, which is wrong. * Form.cs: Catching the exception and returning our internal value instead 2006-01-26 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method SetWindowMinMax() to have means to tell the driver about the minimum, maximum and maximized state window sizes. (Part of the fix for #76485) * Form.cs: - Implemented tracking of minimum and maximum window size, now calling new SetWindowMinMax() driver method to tell the driver (Part of the fix for #76485) - Finished handling of WM_GETMINMAXINFO method, now setting all values (Completes fix for #76485) - Calling new SetWindowMinMax driver method when the handle for a form is created, to make sure the driver knows about it even if the values have been set before the window was created - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized to avoid messing up our anchoring calculations (partial fix for #77355) * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver) * XplatUIX11.cs: - Added _NET_WM_STATE_HIDDEN property for detecting minimized state - Improved GetWindowState() to detect 'Minimized' state on Metacity (and presumably other freedesktop.org compliant WMs). Left the assumption unmapped=minimized, needed for SetVisible to work. - Now setting the window state when creating windows - Fixed SetVisible to consider/set the window state when mapping a Form. We cannot set the state before it's mapped, and we cannot use Form.WindowState once it's mapped (since it would ask the driver and get 'normal'. Therefore, we grab the state before mapping, map, and then set state. - Implmemented SetWindowMinMax method; Metacity does not seem to honor the ZoomHints, though. * XplatUIWin32.cs: - Removed MINMAXINFO (moved to XplatUIStructs) - Added SetWindowMinMax stub (on Win32 the only way to set that information is in response to the WM_GETMINMAXINFO message, which is handled in Form.cs) - Added logic to SetVisible to set the proper window state when a form is made visible (fixes #75720) 2006-01-26 Jackson Harper * Control.cs (BeginInvoke): Automagically handle EventHandlers the same way we handle them with Invoke. 2006-01-25 Peter Dennis Bartok * Form.cs: - Added tracking of window state so CreateParams can return the appropriate style - Moved setting of WS_CAPTION style in CreateParams to allow styles without caption * DataGridTextBoxColumn.cs: We are now also creating the TextBox control if the TextBox property is accessed. Fixes #77345 * Control.cs: - get_Created: now uses is_disposed and is_created to determine return value (suggested by Jackson) - CreateHandle: No longer exits if the handle is being recreated - RecreateHandle: If the handle is not yet created call the appropriate method to create either control or handle. If the control is already created CreateHandle will simply exit instead of just creating the handle * Hwnd.cs: Removed expose_pending tracking, no longer needed since we now SendMessage WM_DESTROY directly to the control when DestroyWindow is called. * XplatUIX11.cs: - When DestroyWindow is called, instead of waiting for the DestroyNotification from X11, we directly post it to the WndProc and immediately dispose the hwnd object. Same applies to DestroyChildWindows, and this obsoletes the expose_pending tracking. Contrary to Win32 behaviour we destroy our child windows before our own, to avoid X11 errors. - Removed the direct sending of WM_PAINT on UpdateWindow * XplatUIWin32.cs: - Reworked DoEvents and GetMessage to allow access to internal queue even when trying non-blocking access to the queue. Fixes #77335. Based on a patch suggestion by Don Edvalson. The new private GetMessage can now also be used as a backend for a PeekMessage frontend version. * XplatUI.cs: Improved debug output for CreateWindow 2006-01-25 Jackson Harper * Help.cs: Allow param to be null. Patch by Don Edvalson. 2006-01-24 Jackson Harper * ComboBox.cs: Clamp the max value set for the vertical scrollbar when we have a MaxDropItems lower then the selected index. 2006-01-24 Jackson Harper * Control.cs: Don't allow selection of non visible controls, allow selection of controls without parents. 2006-01-24 Jordi Mas i Hernandez * ThemeWin32Classic.cs: Fixes Datagrid drawing issues * DataGridDrawingLogic.cs: Add editing row only when is necessary 2006-01-23 Jackson Harper * UpDownBase.cs: Make the textbox handle all the selection and tabbing. This fixes tabing to updown controls. 2006-01-24 Jordi Mas i Hernandez * TextBoxBase.cs: fixes exception thown the object was null 2006-01-23 Jackson Harper * ButtonBase.cs: Just use the base CreateParams. They set visibility and enabled correctly. * ComboBox.cs: * TrackBar.cs: * MonthCalendar.cs: Lets let the base set as much of the createparams as possible so we don't have duplicate code all over the place. 2006-01-22 Alexander Olk * ThemeGtk.cs: Added TrackBar and some experimental code to get double buffering back 2006-01-21 Jordi Mas i Hernandez * DataGrid.cs: Allows row number set internally higher than the last when creating a new row. Restores the editing functionality. 2006-01-20 Mike Kestner * MimeIcon.cs: delay Image creation until the icons are accessed instead of creating 190 scaled images on GnomeHandler startup. 2006-01-19 Peter Dennis Bartok * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to first call base before processing the event. Fixes #77279 2006-01-19 Peter Dennis Bartok * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed that the stride for the GDI bitmap would match the stride of a DIB or a Cursor. 2006-01-19 Alexander Olk * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox 2006-01-19 Jackson Harper * ComboBox.cs: Hookup the text controls keydown event so we get those when the text control has the focus. 2006-01-18 Peter Dennis Bartok * Label.cs: Now using the base events instead of defining new ones; this allows us to just call the base properties without having to duplicate all base property logic 2006-01-18 Peter Dennis Bartok * Label.cs: A label by default is not a tabstop (Fixes one of our failing nunit tests) 2006-01-18 Peter Dennis Bartok * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282 * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282 2006-01-18 Peter Dennis Bartok * Cursor.cs: Reimplemented creating cursor bitmaps without using the Bitmap(Stream) constructor which is semi-broken on MS GDI+. This fixes #77218 * XplatUIWin32.cs: - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) constructor creates images that can't be saved. Part of the fix for #76103 - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103) - SetWindowState: Switched ShowWindow flags (part of an upcoming bug fix for handling window state in forms properly) 2006-01-18 Alexander Olk * ThemeGtk.cs: Simplify ScrollBar drawing 2006-01-18 Jackson Harper * Splitter.cs: Set the default dock style for the splitter control in the constructor. 2006-01-18 Alexander Olk * ThemeGtk.cs: Corrected StateType and ShadowType for gtk_paint_box 2006-01-18 Alexander Olk * Control.cs: Make use of Theme.DoubleBufferingSupported * ThemeGtk.cs: - Added drawing for flat style buttons - Added ScrollBar drawing 2006-01-18 Alexander Olk * ThemeClearlooks.cs: Removed some unneeded code. * ThemeGtk.cs: First part of ThemeGtk enhancements. 2006-01-17 Peter Dennis Bartok * LinkLabel.cs: We need to update the hover drawing when leaving the control as well. 2006-01-18 Jordi Mas i Hernandez * DataGrid.cs: Clicking on non empty areas in the columns area was giving an exception 2006-01-17 Jackson Harper * ThemeWin32Classic.cs: * ListView.cs: Do not draw/clip the headers when the header style is None. 2006-01-17 Jordi Mas i Hernandez * DataGrid.cs: Fixes 77260 2006-01-17 Jordi Mas i Hernandez * DataGrid.cs: Clicking on a column on a empty grid was giving an exception 2006-01-17 Peter Dennis Bartok * DataGrid.cs (OnKeyDown): Don't use the array if it's empty or any keypress will crash the grid. 2006-01-17 Mike Kestner * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout. * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for invisible/previously-visible items. [Fixes #76909] 2006-01-17 Alexander Olk * ThemeClearlooks.cs: - Added CL_Draw_Button method; now other theme controls that are not derived from button or do not have a button can draw buttons too - Updated ComboBox drawing - Beautified RadioButton drawing - Corrected drawing of bottom and left tabs - Beautified DateTimePicker and MonthCalendar - Added CPDrawButton and CPDrawRadioButton 2006-01-16 Jackson Harper * ComboBox.cs: Set the initial value of the scrollbar to the current index. Reduce the numbers of refreshs and IndexOfs called. 2006-01-14 Alexander Olk * FileDialog.cs: When the file listview is focused hitting the backspace key moves the fileview to the parent directory 2006-01-13 Peter Dennis Bartok * Form.cs: - Added RecreateHandle call when changing taskbar visibility to trigger reparenting in Win32 driver (Fixes #75719) - If a window has minimize or maximize buttons, it cannot have a help button * XplatUIWin32.cs: - CreateWindow: When no WS_EX_APPWINDOW style is found we parent the toplevel form with FosterParent (A toolwindow not on the taskbar) (Fixes #75719) - Made FosterParent a toolwindow 2006-01-13 Alexander Olk * FileDialog.cs: Don't crash if InitialDirectory doesn't exist 2006-01-13 Alexander Olk * ToolTip.cs: If SetToolTip is called from a control and the mouse is currently over that control, make sure that tooltip_window.Text gets updated 2006-01-13 Mike Kestner * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern. 2006-01-13 Jackson Harper * TreeView.cs: On MS GetNodeAt never actually factors in the X value passed. Also redraw the selected node when we recieve focus, so tabbing between trees works correctly. 2006-01-13 Alexander Olk * MimeIcon.cs: GnomeHandler: older gnome versions don't have ~/.gconf/%gconf-tree.xml, so use .gconf/desktop/gnome/interface/%gconf.xml 2006-01-13 Peter Dennis Bartok * TextControl.cs: Draw text in gray if control is disabled 2006-01-13 Peter Dennis Bartok * TreeView.cs: Draw the focus rectangle outside the highlight, to make sure it's always visible. Fixes #76680. 2006-01-13 Peter Dennis Bartok * TreeView.cs: Implemented Wheel scrolling. Fixes #76531 2006-01-13 Jonathan Chambers * PageSetupDialog.cs: Added. * PrintDialog.cs: Attributes. * PrintPreviewControl.cs: Updates. * PrintPreviewDialog.cs: Updates. 2006-01-12 Peter Dennis Bartok * Control.cs: Undid my selection check fix, since it's not needed * TextBoxBase.cs: - Now considering the presence of hscroll/vscroll when sizing vscroll/hscroll respectively. Fixed bug #77077 - Added Left/Up/Down/Right to IsInputKey list to prevent ContainerControl from stealing them. This fixes what I broke with my last checkin. 2006-01-12 Peter Dennis Bartok * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And I finally understand how the property can be set without a setter :-) 2006-01-12 Peter Dennis Bartok * Application.cs: - Switched RunLoop to use static Message.Create to create a Message object - Added PreProcessMessage call in runloop for keyboard events; this is part of the fix for #77219, I overlooked this originally in the MSDN doc for PreProcessMessage * Control.cs: - Removed call to PreProcessMessage from handling of keyboard messages; it's supposed to be done in the message pump - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as per MSDN documentation. - IsInputChar: All chars are input chars by default; removed the parent calling chain, MS does not document that - PreProcessMessage: If IsInputChar is true, we want to return false to allow dispatching of the message - When selecting the next control, now also check that we're not selecting ourselves again and therefore return a false positive. * TextBoxBase.cs: - Tried to match return values for IsInputKey and ProcessDialogKey to what MS returns; moved processing of our special keys outside ProcessDialogKey since MS does not seem to return true on those. - Moved code that previously was in ProcessDialogKey into new private ProcessKey method, which gets called upon receipt of WM_KEYDOWN - Reworked handling of WM_CHAR to not have to duplicate code from Control.cs anymore, instead we simply call down to base. 2006-01-12 Jackson Harper * ComboBox.cs: We always need to refresh the text area when EndUpdate is called. Fixes the combobox in the file dialog. * Control.cs: Don't create the creator_thread until the controls handle is created. Also in InvokeRequired we check if the creator_thread is null. This gives the effect of InvokeRequired returning true if the controls handle is not created yet, and matches MS. 2006-01-12 Peter Dennis Bartok * XplatUI.cs: - Added StartLoop() driver method. This is used to allow drivers to prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage loop for a particular thread - Added EndLoop() driver method. This is called once the message pump for the thread is shut down - Added SupportsTransparency method to allow the driver to indicate opacity support for windows * Form.cs: - Removed TODO attribute, completed AllowTransparency property - Added documented logic to Opacity * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs, ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's versions of CompatibleTextRendering * X11Structs.cs: Added opacity atom to our atom enumeration * Hwnd.cs: Added opacity tracking (we need to track since the opacity of a form might be set before it's reparented by the WM, and we need the opacity value without calling up to Form) * XplatUIDriver.cs: Added StartLoop(), EndLoop() and SupportsTransparency() driver methods * Application.cs: Now calling StartLoop and EndLoop driver methods * XplatUIX11.cs: - Added opacity atom registration - Added StartLoop()/EndLoop() methods. They're empty right now but will need to get implemented when we switch to a per-thread queue - Implemented SupportsTransparency() method - Implemented SetWindowTransparency() method - Added support for setting the opacity value when a window is reparented (since the opacity needs to be set on the WM frame) * XplatUIOSX.cs, XplatUIWin32.cs: - Added SupportsTransparency(), StartLoop() and EndLoop() methods 2006-01-12 Alexander Olk * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null. 2006-01-12 Alexander Olk * FileDialog.cs: Added ToolTip for MWFFileView * MimeIcon.cs: Rewrote GnomeHandler. - Get currently used gnome icon theme from ($HOME)/.gconf/%gconf-tree.xml - Make use of inherited icon themes - Support SVG icon themes like Tango via librsvg 2006-01-12 Miguel de Icaza Revert's Jackson's revert which broke 2.0 builds. Fix both builds. * Application.cs: Move the use_compatible_text_rendering outside the NET_2_0 define. If we ever need to use the use_compatible_text_rendering on the individual controls they will access the variable from the common shared code paths. 2006-01-12 Peter Dennis Bartok * XplatUI.cs: - Added more granular debug options - Added method to print both window text and id - Switched debug output to use new Window() debug method - Added IsEnabled() driver method - Added EnableWindow() driver method * Form.cs: - Removed end_modal; no longer needed, new loop handles termination via 'closing' variable - If form is modal, setting DialogResult will now initiate loop termination via 'closing' variable - Added support for is_enabled/WS_DISABLED to CreateParams - Close() now just send the WM_CLOSE message; the WM_CLOSE handler does all the work - Removed code that's now in RunLoop from ShowDialog() - Added various documented sanity checks to ShowDialog() - Added handling of WM_DESTROY message; we set 'closing' on getting the message to indicate the message pump to terminate - Added handling of new internal WM_CLOSE_INTERNAL message - it's send by the Application.ExitThread method. (We send the message to destroy the window after all other events have been processed through the queue, instead of destroying the handle directly) - Moved code from Close() method to WM_CLOSE handler; added logic to only send close-related events if the form is not displayed modal * Splitter.cs (..ctor): Fixed typo in resource name * Control.cs: - DrawBackgroundImage: Explicitly selecting the wrap mode for the brush now - set_Cursor: Now only setting calling into XplatUI if the handle for the control is already created; this avoids implict handle creation or crashes if it's not created - set_Enabled: Now setting the enabled state via the new driver method instead of just tracking it - CreateParams: Added logic to set WS_DISABLED based on enabled state - CreateControl: Reordered event firing and method calls to more closely fire events in the order MS does. Now setting the enabled state in the driver when creating the control. - SetVisibleCore: Moved when the OnVisibleChanged event is fired to match MS order * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs, MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id * Hwnd.cs: - Added tracking of window enabled state (get_Enabled/set_Enabled) - Added EnabledHwnd property to easily allow a driver to find the handle of the first enabled window in the parent chain (this is used by drivers to pass up input events of disabled windows) * XplatUIDriver.cs: Added IsEnabled() method * Application.cs: - Removed crude and obsolete exiting tracking variable - Removed internal ModalRun(); replaced by RunLoop() - Implemented private CloseForms() method to allow closing all windows owned by a particular (or all) threads - Exit() now properly closes all windows without forcing the message pump to quit - Removed obsolete InternalExit() method - Changed Run() methods to use new RunLoop() message pump - Implemented new RunLoop() method for both modal and non-modal forms * CommonDialog.cs: - get_CreateParams: Added setting of WS_DISABLED - Simplified ShowDialog(); now all the work is done in RunLoop(), invoked via Form.ShowDialog() * NativeWindow.cs: We don't remove the window from the collection when the handle is destroyed; there might still be messages for it in the queue (mainly the resulting WM_DESTROY); instead it will be removed when Control calls InvalidateHandle in the WM_DESTROY handler * XplatUIX11.cs: - CreateWindow: Added logic to handle the WS_DISABLED window style - EnableWindow: Implemented based on Hwnd.Enabled - GetMessage: Reset PostQuitState so the method can be called again - Implemented support for disabled windows (passing messages to the first enabled parent) in handling all input messages - Added optimizations for handling Expose events - Implemeted new driver method IsEnabled() - Now always resetting paint pending tracking vars when we start paint - Re-implemented UpdateWindow via just sending a WM_PAINT message * XplatUIOSX.cs: Added IsEnabled method stub * XplatUIWin32.cs: Implemented new IsEnabled() method 2006-01-11 Jackson Harper * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the variables a little. * ColorDialog.cs: Clear out the old form before adding the new panel. 2006-01-11 Jackson Harper * X11Dnd.cs: Make sure to add all the text formats when adding strings to the data object. * TreeNodeCollection.cs: When adding to a sorted tree we need to do some redrawing too. Also change the UpdateNode to an UpdateBelow so the newly added node gets painted. 2006-01-11 Miguel de Icaza * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs: Implement the UseCompatibleTextRendering property for 2.x * Application.cs (SetCompatibleTextRenderingDefault): Add. 2006-01-11 Jackson Harper * TreeView.cs: Use the property for setting the selected node so the correct events get raised. * TreeNode.cs: Update the tree when the fore/back colours of a node are set. 2006-01-10 Jackson Harper * TreeView.cs: Allow setting SelectedNode to null. 2006-01-9 Jonathan Chambers * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows. 2006-01-9 Jonathan Chambers * PrintControllerWithStatusDialog.cs: Update page number in dialog. 2006-01-9 Jonathan Chambers * PrintDialog.cs: Added attributes and set default property values. 2006-01-9 Jonathan Chambers * PrintControllerWithStatusDialog.cs: Added PrintControllerWithStatusDialog. 2006-01-9 Jonathan Chambers * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows. 2006-01-9 Jonathan Chambers * ComboBox.cs: Fix crash when there is no selected item (due to last commit) 2006-01-09 Jonathan Chambers * ComboBox.cs: Added KeyDown event handler for processing arrow keys and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788. 2006-01-08 Alexander Olk * MimeIcon.cs: Added internal class SVGUtil. 2006-01-08 Alexander Olk * FileDialog.cs: Don't crash if there are two files with the same name but different locations. 2006-01-08 John BouAntoun * MonthCalendar.cs: Fixed annoying rendering bug when selecting dates across multiple month grids. Used to not highlight entire month, but does now. 2006-01-06 Jackson Harper * MonthCalendar.cs: Removed DoEvents call to prevent a running message loop. Change timer intervals to numbers that seem more natural. 2006-01-06 John BouAntoun * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen object for location info since screen object is now implemented. 2006-01-05 Jackson Harper * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne * AsyncMethodResult.cs: We no longer use a WeakReference for the AsyncMethodResult, this is because we ALWAYS want the ManualResetEvent to get set. * Control.cs: When disposing use an async invoke to call shutdown code, so that thigns don't block on the finalizer thread. Also check if we even have a message loop before trying to send messages, if we don't then don't bother sending messages. - No more weak references for async methods * XplatUIDriver.cs: No more weak references for async methods. 2006-01-04 Alexander Olk * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families returns two FontFamily with the same name 2006-01-04 Peter Dennis Bartok * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of drawing disabled text. Instead using the ColorGrayText color 2006-01-04 Jackson Harper * TreeNode.cs: redraw the node when its image index is changed. 2006-01-04 Peter Dennis Bartok * RichTextBox.cs: Same fix as last, just for SelectionColor. This time I checked there are no others like it. 2006-01-04 Jackson Harper * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex, this gives the behavoir I was looking for. * Control.cs: Special case Invoking EventHandlers, this matches MS and fixes part of bug #76326. 2006-01-04 Alexander Olk * ThemeClearlooks.cs, FileDialog.cs: - Reflect the latest Theme class changes - Remove Mono.Unix.Syscall.time in FileDialg and replace it with DateTime 2006-01-04 Alexander Olk * Theme.cs: Cache UI resource images and resize them if needed 2006-01-03 Peter Dennis Bartok * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont is called. This fixes the crash in Nexxia when setting the font attributes in the chat. [However, RTF needs a look-over to make sure that all SelectionXXX methods handle the special case that selection is empty and therefore the change must be applied to all text starting at the cursor/selection start] 2006-01-03 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, XplatUIOSX.cs: Added SendMessage and PostMessage methods * X11Keyboard.cs: Switched to new way of calling PostMessage 2006-01-03 Peter Dennis Bartok * Theme.cs: Added theme interface for images to allow the theme to control what images are used for things like FileDialog, MessageBox icons, etc. * MessageBox.cs: Now uses the new Theme icon/image interfaces 2006-01-03 Alexander Olk * FileDialog.cs: - Removed some dead code - Opening a recently used file does work now - Small UI enhancements - Refactoring 2006-01-02 Alexander Olk * FileDialog.cs: Forgot too add __MonoCS__ 2006-01-02 Alexander Olk * FileDialog.cs: We are able to read recently used files now let's go on and write them. 2006-01-01 Alexander Olk * FileDialog.cs: Breathe some life into "last open"/"recently used" button * MimeIcon.cs: Do a check for the top level media type also 2005-12-31 Alexander Olk * ThemeClearlooks.cs: - Added CPDrawStringDisabled - ButtonBase_DrawText: Workaround for a DrawString bug; cut off some chars if the text doesn't fit into text_rect - DrawListViewItem: If View = View.LargeIcon center the image; rewrote the drawing of ListViewItem.Text if View = View.LargeIcon 2005-12-31 Alexander Olk * MimeIcon.cs: Use default KDE icon theme if there is no "48x48" directory for the current icon theme, fixes #77114 * Mime.cs: Disable not working and actually not used code. * ThemeWin32Classic.cs: - Replace "new SolidBrush" in GetControlBackBrush and GetControlForeBrush with ResPool.GetSolidBrush - Changed DrawListViewItem from private to protected virtual * FileDialog.cs: - Added form.MaximizeBox = true - Don't throw an exception if there is a broken symbolic link 2005-12-23 Jackson Harper * TabControl.cs: Give the panels focus, keyboard navigation is fixed so this works correctly now. - We need these key events also. * ToolBar.cs: Remove some of the poor mans double buffering. 2005-12-24 Alexander Olk * ComboBox.cs: The internal TextBox now returns the focus. 2005-12-23 Jackson Harper * ThemeWin32Classic.cs: Draw the text for all tab appearances. 2005-12-23 Peter Dennis Bartok * Control.cs: Removed debug code * XplatUIX11.cs: Changed DestroyChildWindows to also consider implicit children 2005-12-23 Peter Dennis Bartok * Control.cs: When creating the control, update the Z-order after all it's children are created, too. (Fixes nexxia not showing picturebox bug) 2005-12-23 Peter Dennis Bartok * Control.cs: Do not update the anchoring distances if layout is suspended, instead do it once layout is resumed 2005-12-22 Peter Dennis Bartok * Control.cs: - After many hours of debugging, for both Jackson and myself, it turns out that it helps to set the parent of a control if you want to actually see it onscreen. In the spirit of that discovery, we're now setting the parent of the control and it's children when the control's handle is created. This fix will make Lutz Roeder's Reflector run happily. - now just creating the handle instead of the whole control when getting a graphics context for the control. 2005-12-22 Peter Dennis Bartok * ScrollableControl.cs: When calculating the canvas, don't consider the scrollbar widths. Instead, predict if horizontal scrollbar will affect canvas when deciding on vertical display and vice versa. 2005-12-22 Peter Dennis Bartok * RichTextBox.cs: Set default RTF font for documents that don't have a font table (Fixes #77076) 2005-12-22 Jackson Harper * TextBoxBase.cs: It's difficult to do, but you can have an empty clipboard. This prevents a NullRef in that case. * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our clipboard. PRIMARY is for the currently selected text only. (We should implement PRIMARY at some point. 2005-12-21 Peter Dennis Bartok * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling a Unicode function with a structure that was defined in Ansi way. This fixes #76942. 2005-12-21 Jackson Harper * StatusBar.cs: Statusbar handles its fore/back colours on it's on. Because thats how it rolls. (and this avoids it using ambient colours). * ThemeWin32Classic.cs: Use the proper back color for filling. * Menu.cs: Use the system menu bar color for drawing menu bars. Using the window back color will bring ambient colours into the picture. 2005-12-21 Alexander Olk * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of Bitmaps were created and not disposed. 2005-12-21 Peter Dennis Bartok * Control.cs (CreateControl): Don't do anything if the control is already created, otherwise we'd fire the OnCreated event more than once 2005-12-21 Peter Dennis Bartok * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings, will always match. Instead return -1. Fixes #76464. 2005-12-21 Peter Dennis Bartok * TextControl.cs (RecalculateLine): Only wrap if the wrap point is neither the beginning nor the end of the line (Fixes bug #76479) 2005-12-21 Peter Dennis Bartok * Control.cs: - ControlNativeWindow.ControlFromHandle(): Now handling situation where handle is invalid - FromHandle(): Now using hashtable-based ControlFromHandle() lookup instead of slower linear search * NativeWindow.cs: Don't remove the window from the hashtable until after the driver has destroyed it (since the driver might use Control.FromHandle to lookup the control object * Hwnd.cs: Added DestroyPending property to track if a window is already destroyed as far as the driver is concerned and only hasn't yet notified the control * XplatUIX11.cs: - Activate(): Check if the window is still valid before using the handle - Implemented DestroyChildWindow() method to mark child windows as destroyed when a window is destroyed. This prevents situations where we might call an X method based on queued events for a window that already has been destroyed but we haven't yet pulled the destroy method from the queue. - Added a call to the new DestroyChildWindow() method to the drivers DestroyWindow code. Also now marking the destroyed window itself as pending 2005-12-20 Jackson Harper * StatusBar.cs: * StatusBarPanel.cs: Don't calculate panel sizes on draw anymore. Just do them when needed, also track the rects of panels so that we can optimize refreshing more in the future. 2005-12-20 Alexander Olk * ColorDialog.cs: Fixed focus drawing in small color controls 2005-12-19 Jackson Harper * InternalWindowManager.cs: * MdiWindowManager.cs: Cleanup some coordinate system changes so moving windows works properly. 2005-12-19 Peter Dennis Bartok * Control.cs: - Removed call to InitLayout() from SetBoundsCore(); doc says it's only called when a control is added to a container - Split InitLayout logic, moved to separate UpdateDistances() method since we need to perform those calculations more often than just when adding the control to a container. (Needed to fix #77022) - Now calling UpdateDistances() from UpdateBounds() (fixes #77022) - Reduced the OnBindingContextChanged events count, don't send them unless the control is created, we still aren't totally matching MS, but I can't quite figure out some of their rules 2005-12-18 Alexander Olk * ThemeClearlooks.cs: Corrected distance between ProgressBar stripes 2005-12-18 Alexander Olk * ThemeClearlooks.cs: - Updated ProgressBar drawing - Corrected drawing of ScrollBars and scroll buttons - Some temporary fixes for minor pixel artefacts 2005-12-18 Peter Dennis Bartok * Control.cs: - Reworked Controls.Add(), Controls.Remove() and set_Parent() to cause events to be sent in the same order as MS does. - Added ChangeParent() method to trigger various OnXXXChanged events that need to be fired when a parent changes (This is a reworking of the patch from r54254, with the X11 errors fixed) - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear() since on MS we get OnLayoutChanged events when calling Clear() - Changed Enabled property to consider parent state as well, if a parent is not enabled, the control will not be either - Changed Parent property to simply call Controls.Add() since that now does all the work required, this way we avoid code duplication - Threw in a few OnBindingsContextChanged calls to try and match when MS sends them. We seem to send a few too many, though. - Added call to CreateControl when adding the control to a parent. We were never calling CreateControl. Still needs some work, in some places we treat HandleCreated and ControlCreated as equal, which is wrong - Removed obsolete commented out code from UpdateZOrder() 2005-12-18 Alexander Olk * ThemeClearlooks.cs: Updated TrackBar drawing. 2005-12-17 Alexander Olk * FileDialog.cs: Patch for #76901 by Atsushi Enomoto 2005-12-17 Alexander Olk * FileDialog.cs: Add the Help button and the open readonly checkbox only if needed 2005-12-16 Jackson Harper * Control.cs: Make sure we have an active menu before trying to process commands on it. Prevents menu-less forms from crashing when Alt is pressed. * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by Dieter Bremes. * RichTextBox.cs: Expand statement to help out gmcs and fix the 2.0 build. 2005-12-16 Jackson Harper * InternalWindowManager.cs: Don't translate tool windows screen coordinates. This fixes windows 'bouncing' around when being moved. 2005-12-15 Peter Dennis Bartok * TextBoxBase.cs: - MaxLength now treats 2^31-1 equal to unlimited length (this is not quite MS compatible, MS uses that number only for single line and 2^32-1 for multi-line, but I figure it won't hurt keeping the limit at 2GB) - Now enforcing the MaxLength limit when entering characters - Added argument to internal Paste() method to track if it's called from programatically or via keyboard, since keyboard driven pastes need to enforce max-length - Added logic to Paste to only paste as many chars as MaxLength allows * RichTextBox.cs: Updated to use new obey argument for internal Paste() * TextControl.cs: - Added Length property to return number of characters in document - Added private CharCount property which only tracks actual chars in the document (no linefeeds) and fires event when CharCount changes - Added tracking of character count to all methods that alter it - Added LengthChanged event to allow applications to subscribe to any changes to the document 2005-12-15 Peter Dennis Bartok * TextBox.cs: - Removed local password_char field (moved to TextBoxBase) - Now setting the document's password var when password is set * TextBoxBase.cs: - Added password_char field (needed here so MultiLine can access it) - Added logic to MultiLine property setter to set the document's variable when password display is allowed - Removed debug code and made some debug code conditional * TextControl.cs: - Added RecalculatePasswordLine() method to handle special password char only lines - Added PasswordChar property, also added related tracking vars - Draw() method now uses local text var for grabbing text to draw, this var is set to line.text unless we're doing password display, then it is set to the pre-generated all-password-chars line - Added calling RecalculatePasswordLine() method for password lines 2005-12-14 Peter Dennis Bartok * Hwnd.cs: - Added Reparented property to allow tracking of Window Manager reparenting actions (which affect X/Y calculations of toplevel windows) - Made ToString() print window handles in hex * XplatUIX11.cs: - AddConfigureNotify(): Now uses reparented state off Hwnd to determine if X/Y needs offsetting - AddConfigureNotify(): Fixed offset calculations - Now adds ReparentNotify messages into the queue - Now processes ReparentNotify messages and causes a WM_WINDOWPOSCHANGED message to be sent upstream if a window is reparented (as most likely it's X/Y coordinates are changed due to that) 2005-12-14 Jackson Harper * XplatUIX11.cs: Tool windows still need to respek focus. 2005-12-14 Peter Dennis Bartok * Control.cs: Undid 54254 (causing XConfigure errors) so we can have a working release 2005-12-13 Jackson Harper * Form.cs: Update styles after setting the border style regardless of whether or not the window is using a window manager. 2005-12-13 Jackson Harper * Form.cs: We now hook into an internal window manager instead of just an MDI subsystem, this is so we can have properly behaving tool windows. * MdiClient.cs: Naming change, MdiChildContext is now WindowManager * InternalWindowManager.cs: New internal class that acts as a window manager for tool windows and as a base for mdi windows. * MdiWindowManager.cs: New class that acts as a window manager for mdi windows. 2005-12-12 Jackson Harper * Control.cs: Updates so we match behavoir for for implicit controls. Fixes explosions in MDI. 2005-12-12 Jackson Harper * Control.cs: Implement Invalidate (Region). 2005-12-12 Peter Dennis Bartok * Control.cs: - Changed handling of Controls.Add/Controls.Remove to fire (almost) the same events as MS does. MS fires events for each property except, for unknown reasons, Cursor, when the control is reparented. I can't seem to totally match add/remove since MS also fires some VisibleChanged events, which makes no sense. Consolidated the parenting code into a separate method so it can be called from both Add and Remove. set_Parent no longer needs any special logic as it calls the parent's add method which implicitly fires all events - Removed some obsolete code and debug output - Enabled state is inherited from parents, if this is enabled 2005-12-08 Peter Dennis Bartok * Form.cs: Removed commented out code 2005-12-08 Peter Dennis Bartok * Control.cs: - Added internal version of Invoke, with additional argument indicating if we're calling it from a Dispose() handler. That way we can avoid BeginInvoke throwing an exception if we're calling for an already destroyed window. - Added a dispose argument to BeginInvokeInternal, and made the check if a valid window handle chain exists conditional on it not being a dispose call - Removed code in DestroyHandle to destroy our children. Since we now handle the WM_DESTROY message we will catch all our children being destroyed. - Now calling OnHandleDestroyed from our new WM_DESTROY handler * Form.cs: - Added a field to track the application context of the form. - No need to set closing variable as response to WM_CLOSE, instead we destroy the window. We also call PostQuitMessage if the form has an application context (which makes it the main app form, which, when closed terminates the app) * XplatUI.cs: - Dropped Exit() method, it's naming was confusing - Added PostQuitMessage() which causes GetMessage to return false once the message queue is empty * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added PostQuitMessage() * XplatUIOSX.cs: Switched signature for Exit method since Exit() is no longer a valid XplatUI method, but left it in since it's used internally. Added empty PostQuitMessage() method. * MenuAPI.cs: Replaced call to Exit() with call to PostQuitMessage, even though this is probably no longer needed. * Hwnd.cs: Added 'pretty' ToString() to support debugging. * X11Structs.cs: Added pretty XEvent.ToString() to support debugging. * Application.cs: - Replaced call to XplatUI.Exit() with PostQuitMessage() - Removed old debug code that would call XplatUI for exception display, enabled standard exception handling (Still not enabled though, until NativeWindow's ExternalExceptionHandler define is removed * NativeWindow.cs: - Added internal method to allow control to update NativeWindow after a window has been destroyed - Added handling of already destroyed windows when calling i DestroyWindow - Added removal of handle from list on ReleaseHandle * XplatUIX11.cs: - Dropped GetMessageResult var and related code - Added PostQuitState to field to track if PostQuitMessage has been called - Dropped Exit() method - Added PostQuitMessage() method - GetMessage now will return false if PostQuitState is set and no more messages are in the queue. - Expose handler will no longer generate WM_PAINT messages if we are in PostQuitState since it's very likely any windows have already been destroyed, and since Hwnd won't get updated until we have processed the DestroyNotify we'd be causing X errors. 2005-12-07 Peter Dennis Bartok * Control.cs(WndProc): Apparently I'm suffering from brain cloud. Thanks to Mike for pointing out the err of my ways. 2005-12-07 Peter Dennis Bartok * Control.cs(PreProcessMessage): Moved menu handling back, but after all other key handling, to match MS (who handles Menu in DefWndProc) * Menu.cs (WndProc): Removed my brainfart 2005-12-07 Peter Dennis Bartok * Control.cs(PreProcessMessage): Removed special menu handling * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes. 2005-12-07 Mike Kestner * Control.cs : special case SYSKEYUP so that we can adjust keynav state according in tracker. * Menu.cs : promote tracker field to base class and provide a tracker lookup capability. Add/Remove shortcuts dynamically if the top menu has a tracker. Unparent items that are removed from the collection. * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav. * Theme*.cs: add always_show_hotkeys field to support configurability of mnemonic display. win32 doesn't show mnemonics until Alt is pressed. 2005-12-07 Jackson Harper * MdiChildContext.cs: Use Control.ResetCursor. * Control.cs: ResetCursor needs to set the property so that the correct XplatUI call gets made. 2005-12-07 Peter Dennis Bartok * Control.cs: More fixes to make our key events match MS. We were not setting the modifier state on KeyData, and we were not generating any events when Alt was pressed with a key since handling of WM_SYSxxx was missing for the OnKey methods. 2005-12-07 Jackson Harper * MdiChildContext.cs: reenable the sizing code. - When the mouse leaves a window reset its cursor. 2005-12-07 Alexander Olk * ThemeClearlooks.cs: Reflect latest Hwnd changes 2005-12-07 Peter Dennis Bartok * Hwnd.cs: Now using the theme 3d bordersize to calculate widths of Fixed3D borders 2005-12-07 Jackson Harper * MdiClient.cs: Fix warnings. Earn Mike's love. 2005-12-07 Alexander Olk * ThemeClearlooks.cs: - Adjusted mouse over button color - Added first parts of CheckBox drawing - Added correct color for selected text background - Fixed ComboBox drawing - Added CPDrawBorder3D and CPDrawBorder 2005-12-06 Peter Dennis Bartok * XplatUIX11.cs: Added call to XBell for AudibleAlert 2005-12-06 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, XplatUIOSX.cs: Added AudibleAlert() method to have a means to alert users via sound. We could add an enum arg with different types of alerts in the future 2005-12-06 Peter Dennis Bartok * Control.cs: Fix behaviour problems pointed out by Mike 2005-12-05 Mike Kestner * StatusBarPanel.cs: add Invalidate method and hook it into all the prop setters. Calls parent.Refresh for now, but could be maybe be optimized with an internal method on StatusBar at some point. [Fixes #76513] 2005-12-05 Peter Dennis Bartok * RichTextBox.cs: Implemented get_SelectionColor 2005-12-05 Alexander Olk * ThemeClearlooks.cs: - Removed dead code - Draw black button border only if button is Form.AcceptButton - Draw correct button color for pressed RadioButton if the mouse has entered the button - Updated ProgressBar drawing! - Updated CPDrawSizeGrip drawing - Updated StatusBarPanel drawing 2005-12-05 Mike Kestner * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value. * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod. 2005-12-04 Alexander Olk * ThemeClearlooks.cs: Initial check-in, activate with export MONO_THEME=clearlooks * ThemeEngine.cs: Added ThemeClearlooks 2005-12-03 Mike Kestner * MenuAPI.cs: deactivate menus prior to calling item.PerformClick. [Fixes #76897] 2005-12-02 Jackson Harper * Form.cs: If the child form has no menu the default main menu is used as the active menu. 2005-12-02 Peter Dennis Bartok * ListBox.cs: Check if any items exist before trying to resolve coordinates into items 2005-12-02 Peter Dennis Bartok * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white as the second color for the background hatch 2005-12-02 Peter Dennis Bartok * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar * RichTextBox.cs: FormatText position arguments are 1-based, now making sure that what we pass to FormatText is always 1-based. Fixes #76885 2005-11-29 Miguel de Icaza * NumericUpDown.cs (EndInit): When we are done initializing, reflect any updates on the UI. 2005-12-02 Jackson Harper * ImplicitHScrollBar.cs: * ImplicitVScrollBar.cs: New scrollbars that don't take focus from their container controls. * TreeView.cs: Use the new implicit scrollbars. 2005-12-02 Jackson Harper * TreeView.cs: Make top_node internal so the TreeNodeCollections can play with it. * TreeNodeCollection.cs: If we remove the topnode we need to update topnode to the next node in line. - When clearing nodes go through the same process as removing them, so they get depareneted and checked if they are top node. 2005-12-01 Jackson Harper * TreeView.cs: When imagelists are used the image area is selectable as well as the text. - If there are no selected nodes select the first one. * TreeNodeCollection.cs: Getting the TreeView is mildly expensive, so don't do it more then we need to. 2005-12-01 Jackson Harper * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so that arrows can be scaled. 2005-12-01 Jackson Harper * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to fail. Patch by Dieter Bremes 2005-11-30 Jackson Harper * Form.cs: Property is 2.0 only * PrintDialog.cs: Signature fix. 2005-11-30 Peter Dennis Bartok * TextControl.cs: - No longer artificially moves text 2 pixels down (now that we have borders this is no longer needed) - Added calcs for left, hanging and right indent 2005-11-23 Mike Kestner * Menu.cs: mark MenuChanged internal, since it's not exposed by MS. 2005-11-30 Jackson Harper * MdiChildContext.cs: Set the cloned menus forms, as these don't get cloned as part of CloneMenu (). * Menu.cs: Make sure the parent of the items get set correctly when they are added. And the owners are notified of the changes. * Form.cs: Create an ActiveMenu property, so that when MDI is used we can change the menu being displayed/handled by the form without changing the menu assosciated with the form. - Don't let Mdi children draw/handle menus. 2005-11-30 Jackson Harper * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add a MenuChanged event. Just to make the API a little more consistent. * MainMenu.cs: * MenuItem.cs: Use the new OnMenuChanged * MdiChildContext.cs: Handle menu merging. * Form.cs: Implement MergedMenu. 2005-11-30 Jackson Harper * Menu.cs: We were misusing Add. Add goes behind the specified index according to the docs, and does not replace the specified index. So I added an Insert method. 2005-11-30 Peter Dennis Bartok * TextBoxBase.cs: Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This is for Jackson * RichTextBox.cs: Added calls to base for DnD events 2005-11-28 Peter Dennis Bartok * TextControl.cs: - Fixed drag-selection related crash; style fixes - Implemented undo class o Implemented method to capture document state for specified range in document tree o Implemented method to restore captured document state o Implemented cursor tracking o Implemented basic undo stack - Added undo cursor tracking to methods altering cursor location - Added undo tracking to selection deletion (still missing other text-altering hookups) * RichTextBox.cs: - Added SelectionLength property - Implemented CanPaste() - Implemented Paste() - Added missing protected methods - Fixed RTF->Document conversion; now uses font index 0 and color index 0 as the default font for the parsed text - Fixed RTF<->Document font size translation - Fixed RTF generation, now properly handles cross-tag boundaries for single line selection - No longer always appends blank line to generated RTF - Removed TODOs - Added missing attributes - Hooked up undo-related methods * TextBoxBase.cs: - Implemented Copy() - Implemented Paste() - Implemented Cut() - Fixed caret mis-behaviour on backspace across line-boundaries 2005-11-29 Jackson Harper * MdiClient.cs: Add a method for activating mdi children. Very basic right now. I imagine someday it might need more girth. * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi children windows names are added to the menu item. * ThemeWin32Classic.cs: Draw the arrow if the item is an mdilist. This happens regardless of whether or not there are any mdi windows to see in the list, and according to my tests happens before the items are even added. Also happens if there isn't even an mdi client to get windows from. 2005-11-29 Alexander Olk * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected * ThemeNice.cs: Fix drawing of flatstyle radiobuttons 2005-11-29 Jordi Mas i Hernandez * DataGridTableStyle.cs: - Create always the styles for the missing columns even if they are provided by the user (not default table style) * DataGrid.cs: - Fixes bug 76770 - Fixes SetDataBinding (always re-attach source) - Fixes SetNewDataSource (only clear styles if they are not for this source) - Expands OnTableStylesCollectionChanged to handle style refresh and remove properly 2005-11-29 Jackson Harper * FileDialog.cs: Implement missing bits, remove some dead code. * FontDialog.cs: Implement missing Apply stuff, and ToString. Move creation of the panel so that the options set on the dialog are seen when the panel is created. * TreeView.cs: raise a click when items are clicked. 2005-11-29 Jackson Harper * MdiClient.cs: Pass some signature methods through to base. 2005-11-28 Jackson Harper * ListView.cs: Raise the click event when items are clicked. 2005-11-28 Jackson Harper * MdiClient.cs: Make this algorithm even more beautiful. And fix a nullref. 2005-11-27 Alexander Olk * ThemeNice.cs: - Removed 1 pixel bitmaps - Use SmoothingMode.AntiAlias where it makes sense (ScrollButton arrow for example) - Enhanced Button focus drawing - Fixed ComboBox drawing (no artefacts anymore, focus rectangle is back again, reduced size of ComboButton, etc.) - Fixed RadioButton focus drawing for Appearence.Button - Slight ScrollButton redesign - Some LinearGradientBrush size fixes - GroupBoxes have now rounded edges - Fixed StatusBar drawing 2005-11-25 Alexander Olk * ThemeNice.cs: - Remove dead code - use correct background colors for menus, etc. - Fake pixel drawing with 1 pixel bitmaps 2005-11-24 Jackson Harper * MdiClient.cs: Size the scrollbars when resizing the window. - Resize the maximized windows when the client is resized * Form.cs: Make the child context available 2005-11-23 Jackson Harper * MdiChildContext.cs: Don't size windows if they are maximized. 2005-11-23 Mike Kestner * ContextMenu.cs: use MenuTracker. * Control.cs: remove menu handle usage. * Form.cs: remove menu handle usage. * Hwnd.cs: remove menu handle usage. * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy motion and clicks to the new Tracker handlers. * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems and handle usage. * MenuAPI.cs: refactored to combine popup and menubar event handling. Killed the MENU and MENUITEM data types and associated collections since we now keep the info on Menu and MenuItem. Expanded TRACKER into MenuTracker class that exposes the leftovers from the old MenuAPI static methods. Restructured Capture handling so that only one grab is done for the entire menu hierarchy instead of handing off grabs to submenus. Tracker now has an invisible control to Capture when active. * MenuItem.cs: add sizing accessors, kill Create and handle usage. * Theme.cs: remove menu handle and MENU(ITEM) usage. * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of MENU(ITEM). remove menu handle usage, use Menu directly. * XplatUIDriver.cs: remove menu handle usage. * XplatUIOSX.cs: remove menu handle usage. * XplatUIWin32.cs: remove menu handle usage. * XplatUIX11.cs: remove menu handle usage. 2005-11-22 Jackson Harper * Hwnd.cs: Don't compute the menu size for DefaultClientRectangle. - Reenable menu sizes being computed for GetClienRectangle. * Form.cs: Remove comment of trechery 2005-11-22 Jackson Harper * Hwnd.cs: The adjustments for the menu bar are made when it is attached to the form. 2005-11-19 Jackson Harper * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT (just like on windows). 2005-11-19 Jackson Harper * MdiChildContext.cs: Handle all the buttons ourselves. We can't use real buttons anymore because they are in non client area. The one TODO here is that I need to somehow invalidate a section of the non client area. 2005-11-18 Jackson Harper * Control.cs: Put the enum check back in now that MDI doesnt have to use this to set border styles. * Form.cs: Only set mdi child windows borders if the handle has been created. * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass this directly on to the driver. - Get the move start position before adjusting for the titlebar height, this fixes the windows "skipping" when they are first moved. 2005-11-18 Jackson Harper * XplatUIX11.cs: Just compute the mdi borders separately as they don't totally match up with normal form borders. 2005-11-18 Jackson Harper * Control.cs: Set WS_ styles for borders, so that the driver does not have to retrieve the control instance to figure out what kind of borders it should have. * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the driver can know its an mdi child easily. * XplatUIX11.cs: Get the border styles and whether the window is MDI from the Styles and ExStyles params instead of having to get a control. This prevents a chicken and egg problem. 2005-11-18 Jackson Harper * MdiClient.cs: Fix typo so scrollbars show up correctly. 2005-11-18 Jackson Harper * MdiClient.cs: Calculate when to add and remove scrollbars correctly. * MdiChildContext.cs: Adjust the y position to take the titlebar into account. - No height for FormBorderStyle.None 2005-11-18 Jackson Harper * Control.cs: Allow non enum values to be used for InternalBorderStyle. MDI does this to set a special border style. - New utility methods for converting points to/from client coords - Add the newly created control to the Controls collection before updating its style. This way UpdateStyle can walk the control heirarchy to find the control if needed. so I don't need to create a new Point object all the time. * Form.cs: Let MDI windows handle their border styles. - Set styles on MDI windows so the correct title style is derived. * MdiChildContext.cs: Move all the painting and window handling into the non client area. - Use correct sizing and put correct buttons on frames based on the FormBorderStyle. - Notify the mdi client about scrolling - Need to handle the buttons ourselves now, because they are all in non client areas and we can't add controls there. * MdiClient.cs: Halfway to scrolling, this implementation is somewhat broken though, we need to check to make sure other windows aren't causing scrolling before removing the bars. Also the bars need to be drawn on top, maybe I can switch implicit controls to be on top. * Hwnd.cs: caption_height and tool_caption_height are now properties of an hwnd, this way they can be set by the driver based on the type of window they are. In X11 the window manager handles the decorations so caption_height is zero unless its an MDI window. - Add 3 pixel borders for MDI windows (0xFFFF). - Get rid of some code duplication, have DefaultClientRectanle just call GetClientRectangle. * XplatUIX11.cs: Pass caption_height and tool_caption_height to Hwnd now. - Set border styles differently for mdi windows. * XplatUIOSX.cs: Pass caption_height and tool_caption_height to Hwnd now. 2005-11-15 Mike Kestner * Menu.cs: when adding an item to the collection, if item is already parented, remove it from the parent. 2005-11-13 Alexander Olk * X11DesktopColors.cs: Added KDE support 2005-11-11 Peter Dennis Bartok * XplatUIWin32.cs: - Clipboard methods now can translate Rtf format - No longer removes clipboard contents whenever a new format is added to allow placing multiple formats on the clipboard * Clipboard.cs: Clipboard now supports getting a IDataObject and will place all formats contained in it onto the clipboard. Also now cleans the clipboard before placing a new object onto it * RichTextBox.cs: - Implemented set_Rtf - Implemented set_SelectedRtf - Created InsertRTFFromStream() method to allow single code base for all properties and methods that insert RTF into document - Removed debug output * TextControl.cs: - Fixed Delete(int) to fix up line numbers - Fixed ReplaceSelection to combine start and end line - Fixed serious DeleteChars bug that would leave the document tree broken - Improved DumpTree with several logic checks to detect broken document trees - Removed debug lines - Fixed Caret.WordForward/WordBack moving code, now always also updates caret.tag (fixes crash when word-selecting across tag boundaries via keyboard) - Added Insert() method for inserting multiline text into documents - Fixed DeleteChars() calculation errors that would cause a broken tag chain with multiple tag lines - DeleteChars() no longer crashes on multi-tag lines if not all tags - Split() no longer moves caret if split is at caret location - ReplaceSelection() now updates the cursor and re-displays it - ReplaceSelection() now uses new Insert() method to avoid code duplication - FormatText() can now handle formatting partial lines * TextBoxBase.cs: - Append now uses new TextControl.Insert() method (this avoids duplicate code) - Implemented Ctrl-X (Cut) ( - Implemented Ctrl-C (Copy) - Implemented Ctrl-V (Paste) (Still some bugs related to screen regeneration when pasting text; roundtripping Copy&Paste within edit control still fails due to some calculation bugs in GenerateRTF) - The Delete key will now remove the current selection if it is visible * TextBox.cs: Removed debug lines * XplatUI.cs: Trigger initialization of DataFormats (which requires the driver to be initialized and can't therefore be done via a static ctor) 2005-11-10 Peter Dennis Bartok * TextControl.cs: Added backend code for finding char arrays and strings * TextBoxBase.cs: - Added mouse wheel scroll support - Added support for VScroll and HScroll events * RichTextBox.cs: - Implemented all seven Find() variants - Implemented GetCharFromPosition() - Implemented GetCharIndexFromPosition() - Implemented GetLineFromIndex() - Implemented GetPositionFromCharIndex(); - Implemented SaveFile for PlainText and UnicodeText - Fixed set_Font, now setting a new font applies that font to the whole document - Implemented generic Document to RTF converter - Implemented SaveFile for RichText format (still missing unicode conversion for non-ansi chars) - Implemented get_Rtf - Implemented get_SelectedRtf 2005-11-09 Peter Dennis Bartok * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp to allow any captures to be released before triggering OnClick. This way a click handler may capture the mouse without interference. * XplatUIX11.cs: Always send mouse messages to grab window if one exists. This way we send them even though X may not allow a grab (if the window isn't visible, for example) 2005-11-08 Pedro Martinez Julia * DataGridViewRowEventArgs.cs: DataGridView implementation * DataGridViewElement.cs: DataGridView implementation * DataGridViewComboBoxCell.cs: DataGridView implementation * DataGridViewDataErrorContexts.cs: DataGridView implementation * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation * ImageLayout.cs: DataGridView implementation * DataGridViewComboBoxColumn.cs: DataGridView implementation * DataGridViewCellMouseEventHandler.cs: DataGridView implementation * DataGridViewSelectionMode.cs: DataGridView implementation * IDataGridViewEditingControl.cs: DataGridView implementation * DataGridViewSortCompareEventHandler.cs: DataGridView implementation * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation * DataGridViewColumnSortMode.cs: DataGridView implementation * DataGridView.cs: DataGridView implementation * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation * DataGridViewDataErrorEventArgs.cs: DataGridView implementation * Padding.cs: DataGridView implementation * DataGridViewCellParsingEventArgs.cs: DataGridView implementation * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation * DataGridViewRowEventHandler.cs: DataGridView implementation * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation * DataGridViewButtonCell.cs: DataGridView implementation * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation * DataGridViewEditMode.cs: DataGridView implementation * DataGridViewCellValueEventArgs.cs: DataGridView implementation * DataGridViewRowCancelEventArgs.cs: DataGridView implementation * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation * DataGridViewCheckBoxColumn.cs: DataGridView implementation * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation * DataGridViewCellEventHandler.cs: DataGridView implementation * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation * DataGridViewCellStyleConverter.cs: DataGridView implementation * DataGridViewSelectedRowCollection.cs: DataGridView implementation * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation * DataGridViewColumnEventArgs.cs: DataGridView implementation * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation * QuestionEventArgs.cs: DataGridView implementation * IDataGridViewEditingCell.cs: DataGridView implementation * DataGridViewTriState.cs: DataGridView implementation * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation * DataGridViewColumnCollection.cs: DataGridView implementation * DataGridViewCellValueEventHandler.cs: DataGridView implementation * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation * DataGridViewColumn.cs: DataGridView implementation * DataGridViewCellBorderStyle.cs: DataGridView implementation * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation * DataGridViewRow.cs: DataGridView implementation * DataGridViewImageCellLayout.cs: DataGridView implementation * DataGridViewImageCell.cs: DataGridView implementation * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation * DataGridViewCheckBoxCell.cs: DataGridView implementation * DataGridViewHeaderCell.cs: DataGridView implementation * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation * DataGridViewTextBoxColumn.cs: DataGridView implementation * QuestionEventHandler.cs: DataGridView implementation * DataGridViewCellStyleScopes.cs: DataGridView implementation * DataGridViewSortCompareEventArgs.cs: DataGridView implementation * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation * DataGridViewCell.cs: DataGridView implementation * DataGridViewCellEventArgs.cs: DataGridView implementation * DataGridViewClipboardCopyMode.cs: DataGridView implementation * DataGridViewCellStyle.cs: DataGridView implementation * DataGridViewColumnHeaderCell.cs: DataGridView implementation * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation * DataGridViewRowCancelEventHandler.cs: DataGridView implementation * TextFormatFlags.cs: DataGridView implementation * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation * DataGridViewDataErrorEventHandler.cs: DataGridView implementation * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation * DataGridViewButtonColumn.cs: DataGridView implementation * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation * HandledMouseEventArgs.cs: DataGridView implementation * DataGridViewCellParsingEventHandler.cs: DataGridView implementation * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation * DataGridViewCellMouseEventArgs.cs: DataGridView implementation * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation * DataGridViewRowCollection.cs: DataGridView implementation * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation * DataGridViewCellCancelEventHandler.cs: DataGridView implementation * DataGridViewHitTestType.cs: DataGridView implementation * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation * DataGridViewColumnEventHandler.cs: DataGridView implementation * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation * DataGridViewAutoSizeRowMode.cs: DataGridView implementation * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation * DataGridViewTextBoxEditingControl.cs: DataGridView implementation * DataGridViewContentAlignment.cs: DataGridView implementation * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation * DataGridViewComboBoxEditingControl.cs: DataGridView implementation * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation * DataGridViewSelectedColumnCollection.cs: DataGridView implementation * DataGridViewPaintParts.cs: DataGridView implementation * DataGridViewCellCollection.cs: DataGridView implementation * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation * DataGridViewImageColumn.cs: DataGridView implementation * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation * DataGridViewElementStates.cs: DataGridView implementation * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation * DataGridViewCellCancelEventArgs.cs: DataGridView implementation * DataGridViewRowHeaderCell.cs: DataGridView implementation * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation * DataGridViewTextBoxCell.cs: DataGridView implementation * DataGridViewBand.cs: DataGridView implementation * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation * DataGridViewHeaderBorderStyle.cs: DataGridView implementation * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation * DataGridViewSelectedCellCollection.cs: DataGridView implementation * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation 2005-11-08 Peter Dennis Bartok * ThemeWin32Classic.cs: - Draw the outside focus rectangle around buttons - Use CPDrawFocusRectangle to draw focus rectangles until Cairo doesn't use end caps for every dash of a line anymore. This workaround ignores the forecolor. 2005-11-08 Kornél Pál * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't endian safe. 2005-11-07 Jackson Harper * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly. 2005-11-07 Jackson Harper * ScrollableControl.cs: Calculate the maximum and change vars (more) correctly so that scrollbars appear as a sensible size. 2005-11-04 Jackson Harper * TreeNodeCollection.cs: Refresh when nodes are cleared from the collection. * TreeView.cs: When the tree is sorted null out the top_node so that it is recalculated. - Use dotted lines instead of dashed lines to match MS better. 2005-11-04 Jordi Mas i Hernandez * ListView.cs: - Implements key search for items. Useful when browsing files with FileDialog - When changing view mode or when clear the items reset scrollbar positions 2005-11-04 Jackson Harper * CurrencyManager.cs: Implement the MetaDataChanged event, the Reset method, and the CheckEmpty. CheckEmpty is just a total guess as to what the method may do as there is no real way of creating a derived CurrencyManager and calling the method. 2005-11-03 Jackson Harper * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection method which seems to just be used internally to refresh the tabs. 2005-11-03 Jackson Harper * TabControl.cs: Implement the remove method. Fix some broken comments. 2005-11-03 Peter Dennis Bartok * DateTimePicker.cs: - Added missing DateTimePickerAccessibleObject class - Added missing events - Added OnFontChanged method * Form.cs: Added missing attributes * TreeView.cs: Added missing attributes 2005-11-03 Peter Dennis Bartok * GridItemCollection.cs: Fix signatures 2005-11-03 Peter Dennis Bartok * XplatUI.cs: Updated build rev/date * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes * Application.cs: Trigger context-specific ExitThread events 2005-11-03 Jackson Harper * Menu.cs: * MainMenu.cs: * GridTableStylesCollection.cs: * Timer.cs: * TabPage.cs: * HelpProvider.cs: * StatusBar.cs: * MonthCalendar.cs: Signature fixes 2005-11-03 Jackson Harper * TreeNodeCollection.cs: Remove should not be virtual. * TreeView.cs: Implement the last of the missing methods. 2005-11-03 Jackson Harper * TreeNodeConverter.cs: Implement to get off my class-status back. 2005-11-03 Jackson Harper * TreeView.cs: Hookup the bits for drag and drop. * TreeNode.cs: Don't cache the tree_view or index anymore, now that nodes can be moved from tree to tree easily this just causes all sorts of problems. * TreeNodeCollection: Don't need to give treenodes an index and treeview anymore when they are added, these are computed on the fly. Also make sure to remove a node before its added. 2005-11-03 Peter Dennis Bartok * TextControl.cs: - Added CaretSelection enum - Added comparison methods to Marker struct, makes selection code more readable - Added SelectionStart and SelectionEnd as 'moveable' location for the CaretDirection enum and handler - Added selection_prev variable to track optimized invalidation for word and line selection - Added SelectionVisible property (returns true if there is a valid selection) - Switched CaretHasFocus to only display the caret if there is no visible selection - Avoiding StringBuilder.ToString to retrieve a single char, instead using the direct character index; should be much faster - Added various conditional debug statements - Fixed invalidation calculation for selection ranges - Added ExpandSelection() method to support word and line selection - Switched SetSelectionToCaret to use new Marker compare overloads - Added central IsWordSeparator() method to determine word separators/whitespace and FindWordSeparator() to streamline common usage of IsWordSeparator() * TextBoxBase.cs: - Removed unneeded grabbed variable, it was just mirroring Control.Capture - No longer firing OnTextChanged event when Text setter is called, since the base will fire the event for us - Added handling of Ctrl-Up/Down selection - Added handling of Shift-Cursorkey selection - Added handling for Ctrl-Delete and Ctrl-Backspace to remove words - Added handling of Shift and Ctrl-Shift-Home/End selection - Removed some debug output - Added handling for single/double/tripple-click to place caret/ select word/select line respectively (Fixes bug #76031) - Added support for drag expansion of word/line selection * RichTextBox.cs: Handle GotFocus event to trigger redrawing of current selection 2005-11-02 Jackson Harper * X11Dnd.cs: If the drag is going to and from a MWF window just copy the data instead of sending it out through the X Selection mechanism. 2005-11-02 Jackson Harper * X11Dnd.cs: * XplatUIX11.cs: When in a drag we don't want motion notify messages to get passed on to the other controls. This prevents mouse move messages from showing up in the drag source. 2005-11-02 Jackson Harper * X11Dnd.cs: Remove unneeded call to XAllowEvents. Make sure that the correct button is release to end a drag. * XplatUIX11.cs: Make the button state internal so the drag system can access it. Dragging needs to know about all button releases, not just left button. 2005-11-02 Miguel de Icaza * Form.cs (Icon): If the icon is null, reset the icon to the default value. * Cursor.cs: When writing the AND-mask bitmap do not include the number of colors, but hardcode those to two (black and white), fixes the loading of color cursors (Paint Dot Net). * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to turn off autoscaling. * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic). 2005-11-02 Jackson Harper * X11Dnd.cs: Make sure to send a status message if the pointer enters a control that can not accept a drop, otherwise the cursor isn't updated correctly. Also tried to compress the lines of code a bit. 2005-11-02 Jackson Harper * X11Dnd.cs: Change cursors based on drag action. Also attempt to set actions correctly. This isn't perfect as XDND and win32 have some differences on how you allow actions. I'll clear this up by adding a path for drag from MWF to MWF windows. * XplatUIX11.cs: Hook into the dnd system. 2005-11-02 Jordi Mas i Hernandez * ListView.cs: Fixes scroll bar visibility. Hide them if they were previously shown but they are no longer need it. Very obvious when browsing files with FileDialog. 2005-11-01 Peter Dennis Bartok * Control.cs: We always need to call OnPaintBackground. We pretty much ignore AllPaintingInWmPaint and always do the painting there, whether it's set or not, since we always ignore the WM_ERASEBKGND message (which we don't generate on X11). This fixes #76616. * Panel.cs: Removed unneeded background painting. This happens properly in Control.cs already 2005-10-31 Mike Kestner * Menu.cs: Add items to collection before setting their index. * MenuItem.cs : add range checking with ArgumentException like MS. [Fixes #76510] 2005-10-31 Jackson Harper * ListBox.cs: Invalidate if the area is visible at all not just contained in the visible rect. Fixes unselection of semi visible items. 2005-10-31 Jackson Harper * Control.cs: Consistently name the dnd methods. Make them internal so we can override them to match some MS behavoir internally. * Win32DnD.cs: Use the new consistent names. 2005-10-31 Jackson Harper * TreeView.cs: Don't draw the selected node when we lose focus. 2005-10-31 Jackson Harper * X11Dnd.cs: We still need to reset the state even though a full reset isn't being done, otherwise status's still get sent all over the place. 2005-10-31 Jackson Harper * Control.cs: Make the dnd_aware flag internal so the dnd subsystem can check it. Catch exceptions thrown in dnd handlers to match MS behavoir. * Hwnd.cs: Add a flag for whether or not a window is dnd aware. * X11Dnd.cs: Handle null data in the converters. Set the XDND version when sending a XdndEnter. Use the control/hwnd dnd_aware flags to reduce the number of dnd enters/status's sent. 2005-10-31 Jackson Harper * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas. 2005-10-31 Jordi Mas i Hernandez * PictureBox.cs: Fixes 76512 2005-10-28 Jackson Harper * X11Dnd.cs: Early implementation to support winforms being a drag source for data on X11. Also restructured the converters so they can go both ways now. * XplatUIX11.cs: Tie ins to the the Dnd stuff. 2005-10-27 Peter Dennis Bartok * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING clipboard requests 2005-10-27 Jackson Harper * TreeNode.cs: Implement serialization so my DnD examples will work. 2005-10-24 Kornél Pál * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs, TreeView.cs: Don't dispose objects that are not owned. 2005-10-24 Peter Dennis Bartok * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We should retrieve the current cursor and report that, but XplatUI doesn't (yet) have an interface for that (and I'm not sure I even can, on X11) * XplatUIWin32.cs: Fixed override behaviour. The override is temporary, until any message loop processing is done (and the WM_SETCURSOR replaces the cursor to the proper one) * XplatUIX11.cs: - Fixed override behaviour, we can't set the cursor globally on X11, just for our windows. - Invalidating the System.Drawing X11 display handle when we are shutting down * Control.cs: Fix to make csc happy 2005-10-23 Peter Dennis Bartok * TextBoxBase.cs: - get_Text: Add last line (without trailing newline) to returned value (Fixes 76212) - get_TextLength: Count last line in returned length - ToString: Call Text property instead of duplicating code 2005-10-23 Kornél Pál * ImageList.cs: Dispose ImageAttributes objects. 2005-10-22 Kornél Pál * ImageList.cs: Use attribute constructors with less arguments where possible. 2005-10-22 Kornél Pál * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey. Use typeof instead of strings when assembly is referenced. Added some more comments. 2005-10-21 Jackson Harper * ListView.cs: Raise a double click event. Also tried to somewhat fix when the selectedindexchanged event is raised. Its still broken though. 2005-10-21 Jackson Harper * TreeView.cs: New method to invalidate the plus minus area of a node without invalidating the whole node (maybe this can be used in some more places). * TreeNodeCollection.cs: When adding to an empty node we need to invalidate its plus minus area so the little block shows up. 2005-10-21 Jackson Harper * TreeView.cs: Make sure that when we invalidate a node the bounds are big enough to cover the selected box and the focus rectangle. Use a different colour for the lines connecting nodes so they show up with all themes. 2005-10-21 Peter Dennis Bartok * NativeWindow.cs: Don't call anything that could call into the driver, we might be on a different thread. 2005-10-21 Peter Dennis Bartok * Control.cs(Dispose): Since Dispose might run on a different thread, make sure that we call methods that could call into the driver via invoke, to avoid thread issues 2005-10-21 Peter Dennis Bartok * XplatUI.cs: Removed finalizer * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11 not allowing to be called on the finalizer thread. 2005-10-21 Kornél Pál * ImageList.cs: - Reverted r51889 and r51891. - Added ImageListItem class that stores unmodified image items and image properties required to create list images until handle is created. - Added AddItem and moved image creation logic to AddItemInternal. - Added CreateHandle method that creates images based on unmodified items. - Added DestroyHandle that changes state to store unmodified items. - Add and AddStrip methods no more create handle. - ReduceColorDepth has no return value. - Dispose destroys handle. - Modified other methods to reflect the above changes. - Implemented key support. - Added profile 2.0 members and attributes. - Added private Reset and ShouldSerialize methods that provide the same behavior as MS.NET but the Visual Studio .NET designer seems to ignore them as they are private. - Added some more comments about implementation details. 2005-10-21 Jordi Mas i Hernandez * DataGrid.cs: Adds support for vertical scrolling using the mousewheel 2005-10-21 Jordi Mas i Hernandez * Binding.cs: No PushData/PullData if there is no binding (fixes crash) 2005-10-21 Jordi Mas i Hernandez * DataGridDrawingLogic.cs: Fixes column hit calcultation * DataGridColumnStyle.cs: Remove debug message 2005-10-20 Jackson Harper * TreeView.cs: We can always get input keys regardless of whether or not editing is enabled. They are used for navigation. 2005-10-20 Jackson Harper * TreeNode.cs: Use the viewport rect for determining if a node needs to be moved for visibility. Don't use Begin/End edit. This calls a full refresh when its done. * TreeView.cs: New SetBottom works correctly. Make the viewport rect property internal so the treenodes can see it. When clicking on a node we need to ensure that its visible because it might just be partly visible when clicked. 2005-10-20 Jackson Harper * TreeNodeCollection.cs: Remove debug code. 2005-10-20 Jordi Mas i Hernandez * Datagrid.cs: Implements column sorting in Datagrid * DataGridColumnStyle.cs: Implements column sorting in Datagrid 2005-10-20 Jackson Harper * TreeNodeCollection.cs: Remove items properly. Update the correct area after removing them. 2005-10-20 Jordi Mas i Hernandez * Datagrid.cs: Should not call base.OnPaintBackground 2005-10-20 Peter Dennis Bartok * XplatUIX11.cs (GetMessage): - Now properly calculates NC_xBUTTONDOWN coordinates off the whole window instead of client window - Now properly calculates NC_xBUTTONUP message coordinates - ScreenToMenu now properly calculates it's coordinates of whole window, since menus are in the whole window, not in the client window - Added WholeToScreen coordinate translation method 2005-10-20 Peter Dennis Bartok * XplatUIX11.cs (GetMessage): Don't return in situations where we don't want to return a message, loop back to the beginning of the function and grab the next real message to process instead. 2005-10-20 Peter Dennis Bartok * Splitter.cs: Properly set limits if no filler control is used 2005-10-19 Jackson Harper * ColorDialog.cs: Don't show the help button if it is not enabled instead of disabling it (this is what MS does). Don't create the panel until the dialog is run, otherwise the vars (such as ShowHelp) are not set yet. 2005-10-19 Jackson Harper * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes are reduced when adding nodes. * TreeNode.cs: * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the tree. 2005-10-19 Jackson Harper * FolderBrowserDialog.cs: End editing our treeview so the window actually gets refreshed. 2005-10-18 Peter Dennis Bartok * Control.cs: Fixed logic flip on when to call OnPaintBackground. Obsoleted handling of WM_ERASEBKGND, now always draws our background inside of WM_PAINT 2005-10-18 Jordi Mas i Hernandez * MenuAPI.cs: Returns after Hidding window * XplatUIX11.cs: Added TODO found while debugging menu issues 2005-10-18 Peter Dennis Bartok * XplatUIX11.cs: Do not re-map the whole window when it's size becomes non-zero unless it's supposed to be actually visible 2005-10-18 Jackson Harper * TreeView.cs: We don't need to keep a count anymore. * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can use the Grow method. 2005-10-18 Jackson Harper * TreeNodeCollection.cs: Insert is not supported on arrays, so implement it manually here. 2005-10-18 Jackson Harper * ImageList.cs: Dont kill the list when the colour depth is changed, just change the colour depth of all the images. - Same goes for setting the image size. Just resize them all instead of killing the list softly. 2005-10-18 Jackson Harper * Control.cs: Don't invalidate empty rectangles. 2005-10-18 Jordi Mas i Hernandez * ListViewItem.cs: - Adds checked item to the Checked/Item lists (where empty before) - Do not add items to the Selected lists if they are already present * ListView.cs: - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections - When deleting items make sure that we delete them for the Selected and Checked list also. 2005-10-18 Jordi Mas i Hernandez * Label.cs: Dispose objects no longer used * ThemeWin32Classic.cs: Dispose objects no longer used 2005-10-18 Jackson Harper * TabControl.cs: Don't refresh the whole control when the tabs are scrolled, we just need to refresh the tab area. 2005-10-17 Jackson Harper * XplatUIX11.cs: Compress code a little bit. Only calculate the after handle when we need it. 2005-10-17 Peter Dennis Bartok * Control.cs: When the parent size changes, recalculate anchor positions. Partial fix for #76462 2005-10-17 Peter Dennis Bartok * ThemeWin32Classic.cs: Make sure the picturebox has it's background drawn. Fixes #76462 2005-10-17 Jackson Harper * MonthCalendar.cs: Don't create the numeric up down until our handle is created. Otherwise our handle is created in the constructor and we don't know if we are a WS_CHILD or WS_POPUP yet. 2005-10-17 Jackson Harper * TreeView.cs: Merge in patch by Rafael Teixeira to align strings correctly. 2005-10-17 Rafael Teixeira * TreeNode.cs : small logical fix (was using local var instead of field) 2005-10-17 Jordi Mas i Hernandez * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours 2005-10-17 Jordi Mas i Hernandez * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons 2005-10-16 Peter Dennis Bartok * Control.cs: - Re-implemented anchoring code. My first version was really broken. This fixes bug #76033. Unlike the previous implementation we will no longer have round errors since all numbers are calculated from scratch every time. Removed various anchor-related obsolete vars. - InitLayout no longer causes layout event firing and layout to be performed 2005-10-16 Jackson Harper * Hwnd.cs: Compute invalid area correctly (fixes my last commit which was broken). 2005-10-16 Jackson Harper * TabControl.cs: Remove debug code. 2005-10-16 Jackson Harper * XEventQueue.cs: Increase the default queue size (very simple apps needed to grow the queue). * Hwnd.cs: No finalizer so we don't need to suppress finalization. Compute the invalid area manually so a new rectangle does not newto be created. * ScrollableControl.cs: Don't set any params (otherwise visibility isn't set correctly). * MdiChildContext.cs: New constructor takes the mdi parent so it doesn't have to be computed and avoids a crash on windows. Draw the window icon properly, and allow the text to be seen. * Form.cs: Use new MdiChildContext constructor. Make sure the child context isn't null in wndproc. * TabControl.cs: Don't set focus, this is muddling keyboard behavoir. Expand the tab rows when a window size increase will allow extra tabs to be seen. Don't allow tabs smaller than the width of a window to be scrolled out of view. * TreeNode.cs: * TreeView.cs: Use measure string to calculate a nodes width, the width is cached and only updated when the text or the font is changed. Don't check for expand/collapse clicks on the first level nodes if root lines are disabled. 2005-10-16 Ritvik Mayank * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox) 2005-10-16 Jordi Mas i Hernandez * DataGridBoolColumn.cs: fixes warning 2005-10-16 Jordi Mas i Hernandez * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight to match more to match more precisely the MS Net behavior 2005-10-13 Peter Dennis Bartok * Hwnd.cs: Added field to track if window is mapped * XplatUIX11.cs: - Unmap windows if they become 0-size, re-map when they are >0 again; fixes #76035 - Re-set our error handler after initializing X11Desktop to override any error handlers Gtk or whatever was called may have set. 2005-10-13 Peter Dennis Bartok * CheckedListBox.cs: Removed unused vars * ListView.cs: Fixed signatures * RichTextBox.cs: Removed unused vars * TextBoxBase.cs: Removed unused vars * XplatUIWin32.cs: Removed unused vars * XplatUIX11.cs: Removed unused vars * XplatUI.cs: Updated version and date to latest published 2005-10-13 Peter Dennis Bartok * Cursor.cs: Added private .ctor to work around a bug in resourceset (Thanks to Geoff Norton for the help on this) * SplitterEventArgs.cs: Made fields accessible so we don't waste boatloads of objects and can reuse the same one in Splitter * XplatUIWin32.cs(DrawReversibleLine): Now also considers any captions and borders when generating screen coordinates * Splitter.cs: Reimplemented control, now fully complete, uses rubberband drawing, supports and obeys all properties, has proper cursors 2005-10-13 Miguel de Icaza * Form.cs (Form): Setup default values for autoscale and autoscale_base_size; Make these instance variables, not static variables. (OnLoad): on the first load, adjust the size of the form. 2005-10-13 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added width argument to DrawReversibleRectangle() * XplatUIWin32.cs, XplatUIX11.cs: - Implemented width for DrawReversibleRectangle() - Added logic to DrawReversibleRectangle that recognizes a zero width or height and only draws a line in that situation 2005-10-12 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize() * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize() method (it uses our FosterParent window to get a graphics context) 2005-10-12 Peter Dennis Bartok * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground and SetWindowBackground methods * Control.cs: - Setting proper ControlStyles - We no longer call XplatUI.SetWindowBackground and XplatUI. EraseWindowBackground, instead we draw the window background ourselves in PaintControlBackground. This behaviour is required to match MS, where, when OnPaintBackground is not called, the background is not drawn. - Removed unneeded Refresh() in set_Text * Hwnd.cs: Dropped the ErasePending support. No longer needed * XplatUIX11.cs: - Created DeriveStyles method to translate from CreateParams to FormBorderStyle and TitleStyle, also handles BorderStyle (which matches FormBorderStyle enum values) - Consolidated SetHwndStyles and CalculateWindowRect border/title style calculations into single DeriveStyles method - Fixed CreateWindow to (finally) use Gravity. This prevents X11 from redrawing the whole window on any resize or expose. - Fixed CreateWindow usage of SetWindowValuemask. Before not all styles were applied to our whole/client window appropriately - Removed EraseWindowBackground() and SetWindowBackground() methods - Removed handling of WM_ERASEBKGND message from DefWndProc, we no longer clear/redraw the background through X - Removed handling of erase_pending bit, we have no use for it (or so it seems) * XplatUIOSX.cs: - Removed generation and handling of WM_ERASEBKGND message - Removed EraseWindowBackground() and SetWindowBackground() methods - Removed handling of hwnd.ErasePending flag * XplatUIWin32.cs: - Removed EraseWindowBackground() and SetWindowBackground() methods - We no longer call EraseWindowBackground on PaintEventStart, we ignore the fErase flag, erasing is handled in Control in the background handler * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs, LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs, TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs, DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles 2005-10-12 Jonathan Chambers * PropertyGrids.cs: Get sub properties * PropertyGridView.cs: Fix drawing code 2005-10-11 Jordi Mas i Hernandez * ListBox.cs: Fixes 76383 2005-10-11 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: Sets location and size before attachment * ThemeWin32Classic.cs: Fixes border drawing and calculations * DataGridDrawingLogic.cs: Fixes border drawing and calculations 2005-10-11 Jordi Mas i Hernandez * ComboBox.cs: Fixes border drawing 2005-10-10 Miguel de Icaza * MimeIcon.cs: Ignore errors if the file can not be read. 2005-10-11 Jordi Mas i Hernandez * Theme.cs, ThemeWin32Classic.cs, ListBox.cs: - Fixed border calculations - Fixed horizontal scrolling in single column listboxes - Fixed drawing issues 2005-10-10 Peter Dennis Bartok * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to FormBorderStyle enum * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added code to determine FormBorderStyles from CreateParams * Form.cs: - Fixed bug where we'd set the wrong window styles if we were not creating an MDI window - Added call to XplatUI.SetBorderStyle when form borders are set * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs * Hwnd.cs: - Removed obsolete edge style - Switched from BorderStyle to FormBorderStyle 2005-10-10 Jackson Harper * Form.cs: Use the property to get the window handle instead of accessing it directly. Prevents a null reference exception. 2005-10-10 Jackson Harper * TreeView.cs: Don't adjust the rect given to DrawString now that our libgdiplus draws correctly. 2005-10-08 Jackson Harper * TreeView.cs: Don't try to find the clicked on node if there are no nodes in the tree. 2005-10-08 Alexander Olk * RichTextBox.cs: restore 2005-10-08 Alexander Olk * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs, ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs, ErrorProvider.cs: Use ResPool for brushes and dispose System.Drawing objects that are not used anymore. 2005-10-07 Jackson Harper * MdiChildContext.cs: Use the new borders instead of drawing them ourselves. 2005-10-06 Jordi Mas i Hernandez * Calling UpdateBounds after changing the window's BorderStyle since the style can change the ClientSize 2005-10-06 Peter Dennis Bartok * Control.cs: Made PaintControlBackground virtual * Panel.cs: Overriding PaintControlBackground instead of using paint event; paint event method was interfering with 'real' users of the event. 2005-10-06 Jordi Mas i Hernandez * ThemeWin32Classic.cs: remove border drawing since it is handled by the base control class now and was causing double border drawing. 2005-10-06 Peter Dennis Bartok * Panel.cs: Redraw our background on paint. Not a pretty solution, but it does seem to match MS behaviour. This fixes bug #75324 2005-10-06 Peter Dennis Bartok * XplatUIX11.cs: A better DrawReversibleRectangle version, however somewhat hackish looking 2005-10-06 Peter Dennis Bartok * TextBoxBase.cs: - We now accept Enter even if AcceptEnter is false, if the containing form does not have an AcceptButton configured (fixes bug #76355) - Calculations are now fixed to no longer use Width/Height, but ClientSize.Width/Height, since we now support borders (this was a result of fixing borders and therefore bug #76166) - We no longer show the horizontal scrollbar if TextBox.WordWrap is true (fixes bug #76354) 2005-10-06 Peter Dennis Bartok * Control.cs: - Defaulting BorderStyle and setting it in XplatUI when our window is created - Added enum check to InternalBorderStyle setter * XplatUIX11.cs: - Added drawing of window borders - Now properly calculates WM decorations offset for toplevel windows (fixes bug #74763) * XplatUIWin32.cs: - Implemented BorderStyles for windows (we're letting win32 draw the border for us) - Fixed the signature for SetWindowLong * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs, ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for setting borders * UpDownBase.cs: Remove drawing of borders, this is handled by the driver, outside the client area * ListView.cs: Removed bogus border calculations. The control should be oblivious to borders, since those are not part of the client area. * X11DesktopColors.cs: Commented out (currently) unneeded variables * ThemeWin32Classic.cs: Removed border calculations from ListView drawing code 2005-10-06 Jackson Harper * MdiChildContext.cs: Clear out the old virtual position remove all the unneeded calls to CreateGraphics. 2005-10-06 Peter Dennis Bartok * TextControl.cs: Use proper color for highlighted text; fixes #76350 2005-10-06 Peter Dennis Bartok * Form.cs: - Added loading and setting of our new default icon - Only set icon if window is already created 2005-10-06 Peter Dennis Bartok * Label.cs: - Do not explicitly set the foreground and background colors, to allow inheriting from parents (fixes #76302) - Use Control's InternalBorderStyle property to deal with borders 2005-10-06 Jackson Harper * MdiChildContext.cs: Use the new xplatui function to draw a reversible rect. 2005-10-06 Jackson Harper * Form.cs: Add the parent before creating the child context cause we need the parent when setting up the child. 2005-10-06 Jackson Harper * FolderBrowserDialog.cs: redo the tree population code so a second thread isn't used. Should be a lot faster and more stable now. 2005-10-05 Jackson Harper * TreeView.cs: There are no expand/collapse boxes if the node has no children. 2005-10-05 Jackson Harper * X11DesktopColors.cs: Get menu colours for the gtk theme. 2005-10-05 Alexander Olk * FileDialog.cs: Fix InitialDirectory 2005-10-05 Jordi Mas i Hernandez * ComboBox.cs: - Fixes changing between styles - Fixes simple mode - Fixes last item crashing when navigating with keyboard 2005-10-05 Jordi Mas i Hernandez * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label 2005-10-05 Jackson Harper * TreeView.cs: If updating the root node do a full refresh. * TreeNode.cs: The root node should be expanded by default. Also added a utility prop to tell if we are the root node. * TreeNodeCollection.cs: Only refresh if the node we are being added to is expanded. Also added a comment on a potential optimization. 2005-10-04 Peter Dennis Bartok * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() in dispose method. Fixes #76330 2005-10-04 Jordi Mas i Hernandez * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs: - Implements vertical and horizontal scrolling using XplatUI - Fixes keyboard navagation - Fixes EnsureVisible - Drawing fixes - Handles and draws focus properly 2005-10-04 Kornél Pál * ImageList.cs: Use upper case initials for internal fields. ImageStream: Create handle. NET_2_0: Destroy handle when value is null. 2005-10-03 Jackson Harper * ScrollBar.cs: My last scrollbar patch was broken. This is a revert and a new patch to prevent the thumb from refreshing so much. 2005-10-02 Jackson Harper * ScrollBar.cs: Don't update position if it hasn't actually changed. This occurs when you hold down the increment/decrement buttons and the thumb gets to the max/min. 2005-10-01 Jackson Harper * Form.cs: * MdiChildContext.cs: * MdiClient.cs: Implement ActiveMdiChild in Form. 2005-10-01 Jordi Mas i Hernandez * ComboBox.cs: Include ComboBoxEdit flag for the edit item 2005-10-01 Peter Dennis Bartok * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot be found 2005-09-30 Jackson Harper * ListBox.cs: Don't do a full refresh unless some data has actually changed. 2005-09-30 Jackson Harper * TreeView.cs: Make sure that the checkboxes size is factored in even when not visible. 2005-09-30 Peter Dennis Bartok * FileDialog.cs: Fix Jordi's build break 2005-09-30 Jordi Mas i Hernandez * FileDialog.cs: - Use standard the Windows colours for the combobox as espected - Dispose objects that use resouces when no longer need them 2005-09-30 Peter Dennis Bartok * X11DesktopColors.cs: Initial incomplete implementation * XplatUIX11.cs: Added call to initialize X11DesktopColors 2005-09-30 Peter Dennis Bartok * Theme.cs: - Switched Theme color names to match the names defined in System.Drawing.KnownColors. Life's hard enough, no need to make it harder. - Added setters to all theme color properties so themes can set their color schemes. The setters also propagate the color changes to System.Drawing.KnownColors via reflection * ControlPaint.cs, Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs, ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to use the new, more logical theme color names * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new post-NT colors * ThemeWin32Classic.cs: - Removed code to set the old classic Windows colors. Instead it now relies on the colors returned by System.Drawing.KnownColors which will be either modern static colors (Unix) or colors read from the user's configuration (Win32) - Updated to use the new, more logical theme color names - Switched DataGrid drawing code to use only Theme colors instead of a mix of System.Drawing.KnownColors and Theme colors - DrawFrameControl(): Removed code that fills the button area, the fill would overwrite any previous fill done by a control. This fixes bug #75338 - Added DrawReversibleRectangle() stub * ScrollableControl.cs: Set visible state to false when scrollbars are removed (pdn fix) * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added DrawReversibleRectangle() method to allow drawing primitive 'rubber bands' * XplatUIX11.cs: Implemented DrawReversibleRectangle() 2005-09-30 Kornél Pál * ImageList.cs: Add(Icon): Create handle. 2005-09-30 Jordi Mas i Hernandez * ListView.cs: * ThemeWin32Classic.cs: - Fixes detail mode - Sets clippings - Issues with drawing 2005-09-30 Kornél Pál * ImageList.cs: Moved RecreateHandle back to ImageList as event source has to be the ImageList. 2005-09-30 Kornél Pál * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap. 2005-09-30 Kornél Pál * ImageList.cs: ReduceColorDepth: Clean up pointer operations. 2005-09-30 Kornél Pál * ImageList.cs: ImageCollection: Removed owner field as it is no more used. 2005-09-29 Jonathan Chambers * GridItem.cs: Fixed TODOs * GridItemCollection.cs: Added ICollection interface 2005-09-30 Kornél Pál * ImageList.cs: Resize icons when needed. 2005-09-29 Jordi Mas i Hernandez * ListViewItem.cs - Fixes GetBounds and returns on screen rects * ListView.cs: - Fixes vertical and horzintal scrolling of items * ThemeWin32Classic.cs: - Fixes drawing 2005-09-29 Raja R Harinath * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring. 2005-09-29 Kornél Pál * ImageList.cs: Added comments about handle creation. Moved Handle, HandleCreated and OnRecreateHandle implementations to ImageCollection. Handle is created in Add methods. 2005-09-28 Jordi Mas i Hernandez * DataGridDrawingLogic.cs: - Takes rows into account on Colum calculations - Returns the column when clickig * DataGrid.cs: - Fixes default HitTestInfo values - Fixes HitTestInfo.ToString - Fixes ResetBackColor 2005-09-28 Jackson Harper * MdiChildContext.cs: Obey rules for fixed sized windows (no sizing or cursor changes). Also added some temp code to draw the titlebars text (Makes dev a little easier). 2005-09-28 Kornél Pál * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap. 2005-09-28 Jordi Mas i Hernandez * ListBox.cs: Fixes bug 76253 2005-09-28 Kornél Pál * ImageList.cs: Added comments about the current implementation. Added ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use Format32bppArgb to preserve transparency and can use Graphics.FromImage while using the specified ColorDepth. ReduceColorDepth uses unsafe code with Bitmap.LockBits for better performance. Revised the whole file to match MS.NET behaviour and provide better performance. Non-public interface members are calling public members even when they throw NotSupportedException for better maintainability. Moved ColorDepth, ImageSize, ImageStream and TransparentColor implementations to ImageCollection for better performance as these properties are not used by ImageList. * ImageListStreamer.cs: Added a new internal constructor that takes an ImageList.ImageCollection and serializes Images based on ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to match ImageList property name. 2005-09-28 Kazuki Oikawa * ListBox.cs: Fixes IndexFromPoint for last item 2005-09-27 Jackson Harper * Form.cs: Set the position of new mdi children correctly. 2005-09-27 Jackson Harper * MdiClient.cs: New mdi children need to be added to the back of the controls collection so the zorder is set correctly. Also add a count of all the child windows that have been created. 2005-09-27 Jackson Harper * Form.cs (CreateParams): Setup MDI forms correctly. 2005-09-27 Jackson Harper * MdiChildContext.cs: * MonthCalendar.cs: * UpDownBase.cs: * ListBox.cs: * ListView.cs: * TextBoxBase.cs: * TreeView.cs: * ScrollableControl.cs: * ComboBox.cs: Add implicit controls using the new implict control functionality in ControlCollection. Also try to block multiple control add in a suspend/resume layout to save some cycles. 2005-09-27 Jackson Harper * Control.cs: Add functionality to the controls collection to add 'implicit controls' these are controls that are created by the containing control but should not be exposed to the user. Such as scrollbars in the treeview. * Form.cs: The list var of the ControlsCollection is no longer available because of the potential of implicit controls getting ignored by someone accessing the list directly. 2005-09-26 Peter Dennis Bartok * Control.cs: Fixed SetChildIndex; it no longer causes a child to loose it's parent. (Fixed bug introduced in r49103 when we added setting the child parent to null on Remove) 2005-09-26 Gert Driesen * DataGridBoolColumn.cs: Marked CheckState private to fix public API. * Splitter.cs: Added missing attributes for BorderStyle property. * TextBoxBase.cs: Marked Calculate* methods internal. * TextBox.cs: Fixed DefaultValue for PasswordChar property to match MS.NET. 2005-09-26 Jordi Mas i Hernandez * ListBox.cs: Fixes navigation to the last item in multicolumn lists 2005-09-25 Jackson Harper * TreeView.cs: Update the node bounds correctly regardless of whether the node is visible. 2005-09-25 Jackson Harper * ImageList.cs: Don't dispose the image after it is added to the image list. Only reformat images that need to be resized. 2005-09-25 Jackson Harper * ImageList.cs: Don't set the format when changing the image. 2005-09-25 Jackson Harper * TreeView.cs: We can't just assume the node has a font. Use the treeviews font if no node font is available. 2005-09-25 Jackson Harper * TreeView.cs: Allow the scrollbars to be reset with negative values. - Don't add scrollbars to negative sized windows. 2005-09-23 Jackson Harper * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain old Mono.Posix. Also remove some stray code that shouldn't have been committed. 2005-09-23 Jackson Harper * TreeView.cs: Attempt at proper sizing of the horizontal scrollbar. Also don't resize the scrollbars unless they are visible. 2005-09-23 Jackson Harper * TreeView.cs: We don't need to expand the invalid area when the selection changes, as this is all drawn in the node's bounding box. The area needs to be expanded (previous typo was contracting it) when the focus rect moves. 2005-09-23 Jackson Harper * TreeView.cs: Display the selection box under the correct circumstances. We were rendering white text with no selection box before. 2005-09-23 Peter Dennis Bartok * TextControl.cs(Split): Now updates selection start/end if it points into a line that's being split. Fixes a FIXME and bug #75258 2005-09-23 Jackson Harper * Binding.cs: * ListControl.cs: Don't use the path when retrieving binding managers from the binding context. My bat sense tells me that the path is only used on insertion. 2005-09-22 Jackson Harper * Splitter.cs: Set the cursor an easier way. (Thanks peter). 2005-09-22 Jackson Harper * Splitter.cs: There are special cursors used for splitting. * XplatUIX11.cs: The VSplit and HSplit cursors were backwards. 2005-09-22 Jackson Harper * Splitter.cs: Change the cursor appropriately when the splitter is moused over, so the user actually knows there is a splitter there. 2005-09-22 Hisham Mardam Bey * Label.cs : Fix ToString method to give same output as MS.NET 2005-09-22 Jackson Harper * TreeView.cs: Create the scrollbars when the handle is created and add them right away, just make them invisble. Also account for the window being shrunk vertically to the point that the vert scrollbar needs to be added. - Remove some 0.5 adjustments to get around anti aliasing issues. 2005-09-22 Jordi Mas i Hernandez * MainMenu.cs: Fixes default value * MenuItem.cs: Fixes default value 2005-09-22 Kazuki Oikawa * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely. 2005-09-21 Jackson Harper * Control.cs: Don't try to set the border style on the window if it hasn't been created. When the window is created the border style will be used. 2005-09-21 Peter Dennis Bartok * Control.cs (Update): Don't call XplatUI if we don't have a window handle yet 2005-09-21 Peter Dennis Bartok * ContainerControl.cs: Instead of throwing an exception, print a one-time warning about Validate not being implemented * XplatUIWin32.cs: Removed debug output 2005-09-21 Peter Dennis Bartok * Control.cs: Only set XplatUI background if we expect the windowing system to handle the background. This stops controls that draw their own background from flickering * XplatUIX11.cs: Support custom visuals and colormaps for window creation. This allows, amongst other things, using MWF X11 windows with OpenGL. 2005-09-21 Peter Dennis Bartok * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs, CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs, GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs, SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs, TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs, IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs, KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs, RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs, ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs, ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs, GridColumnStylesCollection.cs, IDataGridColumnStyleEditingNotificationService.cs, PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs, MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs, GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, TreeNodeCollection.cs, AmbientProperties.cs, RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs, DataObject.cs, ErrorProvider.cs, Splitter.cs, DataGridLineStyle.cs, Shortcut.cs, Control.cs, FontDialog.cs, SecurityIDType.cs, GridItemType.cs, BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs, IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs, FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs, IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs, NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs, PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs, SelectionMode.cs, TextBox.cs, ListBindingConverter.cs, FileDialog.cs, KeysConverter.cs, DomainUpDown.cs, DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs, ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs, RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs, MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs, ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs, CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs, MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs, NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs, ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs, SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs, Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs, RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs, DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs, ErrorBlinkStyle.cs, TreeViewEventHandler.cs, PropertyValueChangedEventHandler.cs, IFileReaderService.cs, DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs, ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs, AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs, RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs, CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs, SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs, Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs, SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs, ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs, TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute 2005-09-21 Jackson Harper * TreeNode.cs: Call Before/After Expand not Collapse when expanding. 2005-09-20 Jackson Harper * XplatUIX11.cs: Use the more hand looking hand (in most themes). 2005-09-16 Jordi Mas i Hernandez * ListViewItem.cs: - Fixes bug 76120 - Fixes proper storing of subitems - Fixes not updated items 2005-09-20 Peter Dennis Bartok * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain things if our window handle isn't created yet. Also disabled debug for TextBoxBase 2005-09-20 Peter Dennis Bartok * MenuAPI.cs: Remove filtering of events to allow menu usage 2005-09-20 Miguel de Icaza * Cursor.cs: Allow null to be passed to Cursor.Current. 2005-09-20 Alexander Olk * ThemeWin32Classic.cs: - Change some private methods/fields to protected virtual so that they can be accessed and overriden in derived classes - First refactoring of some methods. Derived themes now don't need to duplicate the complete code from ThemeWin32Classic * ThemeNice.cs: - Added nice StatusBar - Derive from ThemeWin32Classic and not Theme - Removed duplicate ThemeWin32Classic code 2005-09-20 Miguel de Icaza * Control.cs (ControlCollection.Add): If the value null is passed the control is ignored. Optimize this loop. 2005-09-19 Peter Dennis Bartok * MenuAPI.cs: Replaced Application.Run() with a loop that tracks PostQuitMessage state. * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg 2005-09-19 Peter Dennis Bartok * Application.cs: Our constructor will never get called, move initialization to fields; fixes bug #75933 2005-09-19 Hisham Mardam Bey * FileDialog.cs : - Allow files to be selected properly using file name combo box. - Add ability to change diretory (absolute / relative) using file name combo box. 2005-09-16 Jordi Mas i Hernandez * ListBox.cs: - Fixes Multicolumn listboxes item wrong calculations - Allows to click when only one item is in the listbox - Fixes crash when no items using keyboard navigation 2005-09-16 Alexander Olk * ComboBox.cs: Reverted almost everything from the latest patch which broke ComboBox 2005-09-16 Kazuki Oikawa * ToolTip.cs: - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest. * ComboBox.cs: - When DropDownStyle is Simple, it does not show scrollbar to the last item of the list. - When DropDownStyle is Simple, it crashed when the list was scrolled down with the down cursor key. - Fixed a bug that when DropDownStyle is DropDownList, the selected item was not shown. - The position of the selected item was not preserved when the next dropdown happened. * ThemeWin32Classic.cs: - Items were wrapped at the right end. * CheckedListBox.cs: - Fixed Add method * ListBox.cs: - Items should be fully shown. - When resizing and vertical scrollbar disappeared, the item of index 0 should be on the top of the list. - GetItemRectangle should consider the size of ver. scrollbar * StatusBar.cs: - SizingGrip area should not be allocated when it is not displayed. - Now it reflects MinWidth of the containing panel and fixed a crash that happens when its width becomes so small. 2005-09-13 Jordi Mas i Hernandez * CheckedListBox.cs: Fixes bug 76028 * ListBox.cs: Fixes bug 76028 2005-09-13 Jordi Mas i Hernandez * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing 2005-09-12 Jordi Mas i Hernandez * XplatUIX11.cs: fixes System.NullReferenceException in some situations 2005-09-09 Jonathan Chambers * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 2005-09-09 Jonathan Chambers * IRootGridEntry.cs: Added * PropertyGridCommands.cs: Added * PropertiesTab.cs: Added missing methods and property * PropertyGridView.cs: Made class internal * PropertyGridTextBox.cs: Made class internal 2005-09-09 Alexander Olk * MimeIcon.cs: Try to check some other environment variables if "DESKTOP_SESSION" returns "default" 2005-09-09 Alexander Olk * ThemeNice.cs: Corrected background colors (e.g. menus) * ColorDialog.cs: Use correct background colors for controls 2005-09-09 Alexander Olk * ThemeNice.cs: Merged r49535 from ThemeWin32Classic 2005-09-08 Peter Dennis Bartok * RichTextBox.cs: Added initial implementation * lang.cs: Removed. Was accidentally checked in long time ago * TODO: Removed. Contents were obsolete 2005-09-06 Jonathan Chambers * PropertiesTab.cs : Added 2005-09-06 Jonathan Chambers * PropertyGrid.cs : Update * PropertyGridView.cs : Update * System.Windows.Forms.resx : Added images and strings 2005-09-06 Peter Dennis Bartok * ThemeNice.cs: Do not dispose Pens retrieved from ResPool 2005-09-06 Peter Dennis Bartok * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters a busy loop right after the Ungrab the X11 display is otherwise blocked 2005-09-06 Jordi Mas i Hernandez * ThemeWin32Classic.cs: Optimise the use of clipping 2005-09-05 Jordi Mas i Hernandez * DataGrid.cs: fixes recursion bug 2005-09-03 Alexander Olk * ThemeNice.cs: - Draw RadioButton and CheckBox Buttons with DrawButtonBase - Cleanup 2005-09-02 Alexander Olk * ThemeNice.cs: Draw nice ProgressBars 2005-09-01 Miguel de Icaza * VScrollBar.cs: Another buglet found by Aaron's tool. * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's bug finder. 2005-08-30 Alexander Olk * ThemeNice.cs: - Added nicer menu drawing - Updated DrawTab - some refactoring 2005-08-30 Peter Dennis Bartok * CreateParams.cs (ToString): Made output match MS * Control.cs (Text): Don't set Text or Focus via XplatUI unless handle is already created (to avoid forcing window creation) * XplatUIX11.cs: Set window text to caption after creating window, in case Text was set before window was created * Form.cs: Use this.Text instead of a static string as caption 2005-08-30 Peter Dennis Bartok * NotifyIcon.cs: Don't set the window to visible; this screws up Win32 (causes WM_NCPAINT to be sent on Win32, which calls OnPaint without a bitmap) * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't happen very often anyway; we could add the check to the WM_PAINT event generation code 2005-08-30 Peter Dennis Bartok * NotifyIcon.cs: Fill the icon area with a background color, to avoid 'residue' when transparent icons are drawn * XplatUIX11.cs: - Handle whole_window == client_window when destroying windows - SystrayAdd(): Set client_window to whole_window value to get mouse and other events passed to NotifyIcon 2005-08-30 Peter Dennis Bartok * Form.cs: Set proper default for Opacity property * NotifyIcon.cs: - ShowSystray(): Don't bother creating telling the OS about the systray item if no icon is provided - Now handles WM_NCPAINT message to deal with whole/client window split - Create window as visible to not get caught by Expose optimization * Hwnd.cs: Removed debug message * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs, StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched PaintEventStart/End to use new client argument * TextBoxBase.cs: - Commented out debug messages - Switched PaintEventStart/End to use new client argument * XplatUI.cs: Added client window bool to PaintEventStart()/ PaintEventEnd() calls, to support drawing in non-client areas * XplatUIDriver.cs: - Added client window bool to PaintEventStart()/PaintEventEnd() calls, to support drawing in non-client areas - Added conditional compile to allow using MWF BeginInvoke on MS runtime * XplatUIX11.cs: - Added some conditional debug output - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway) whole/client window split - Implemented handling of client argument to PaintEventStart()/End() * Control.cs: - Throw exception if BeginInvoke() is called and the window handle or one of the window's parent handles is not created - Added conditional compile to allow using MWF BeginInvoke on MS runtime - get_Parent(): Only sets parent if handle is created. This avoids forcing window handle creation when parent is set. - Now fires Layout and Parent changed events in proper order - Switched to use Handle instead of window.Handle for Z-Order setting, the get_Parent() patch above causes us to possibly get null for 'window' - Implemented handling of client argument to PaintEventStart()/End() - Now reports back to windows that WM_SETCURSOR was handled (to avoid default handling) - Now sends a Refresh() to all child windows when Refresh() is called 2005-08-29 Peter Dennis Bartok * Form.cs: Added (non-functional) Opacity property * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code 2005-08-29 Alexander Olk * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic use export MONO_THEME=nice to activate it. Currently supported controls: - Button - ComboBox - ScrollBar - TabControl (TabAlignment.Top only, other will follow) * ThemeEngine.cs: Add theme nice * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime, if enabled 2005-08-25 Jonathan Chambers * Splitter.cs: Resize docked control and its neighbor. 2005-08-24 Rafael Teixeira -- Making Windows with Menus layout correctly -- * Form.cs : The first leg of the fix Menu setter - adjust Client Size as needed to make space for the menu SetClientSizeCore - doesn't call base version to be able to pass the menu handle to XplatUI.CalculateWindowRect * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU * XplatUIX11.cs: The critical second leg of the fix GetWindowPos needs to use a recalculated client_rect so that resizing the window doesn't break layout of child controls. Also a more complete rule to avoid X Server roundtrips in SetWindowPos Lots of \t\n killed 2005-08-23 Peter Dennis Bartok * Label.cs: Now properly recalculates width and height on Font and Text changes if AutoSize is set 2005-08-19 Rafael Teixeira * TreeView.cs : Revamped drawing logic, and support for FullRowSelect 2005-08-19 Jordi Mas i Hernandez * ImageList.cs: Makes ToString method compatible with MS 2005-08-18 Jordi Mas i Hernandez * MenuAPI.cs: fixes bug 75716 2005-08-11 Umadevi S * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null. 2005-08-11 Umadevi S * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly 2005-08-10 Umadevi S * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox 2005-08-07 Jordi Mas i Hernandez * Menu.cs: fixes bug 75700 * MenuAPI.cs: fixes navigation issues 2005-08-09 Umadevi S * CheckedListBox.cs - simple fix for GetItemChecked. 2005-08-08 Jordi Mas i Hernandez * ComboBox.cs: Serveral fixes * ListBox.cs: Serveral fixes 2005-08-05 Jordi Mas i Hernandez * ComboBox.cs: Fixes FindString methods and GetItemHeight * ListBox.cs: Fixes FindString methods 2005-08-05 Jordi Mas i Hernandez * DataGrid.cs: fixes bugs exposed by new tests 2005-08-04 Peter Dennis Bartok * Mime.cs: Compile Mono assembly references only if compiling with Mono (Allows to build with VS.Net again) 2005-07-28 Marek Safar * Control.cs (PaintControlBackground): Draw background image corrrectly. (CheckForIllegalCrossThreadCalls): Stubbed. * Form.cs (OnCreateControl): Center when should be centered. * ThemeWin32Classic.cs (DrawPictureBox): Pass size. 2005-07-19 Jordi Mas i Hernandez * Binding.cs: Binding to properties should be case unsensitive 2005-07-18 vlindos@nucleusys.com * DataGrid.cs: fixes setmember order 2005-07-07 Alexander Olk * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine) * FileDialog.cs: FileDialog is now resizable and uses the new MimeIconEngine 2005-07-06 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: default value * GridColumnStylesCollection.cs: fixes event firing, checking MappingName * GridTableStylesCollection.cs: fixes checking MappingName * DataGridDrawingLogic.cs: fixes drawing logic issues * DataSourceHelper.cs: rewritten to make compatible with more data sources * DataGrid.cs: fixes 2005-07-06 Alexander Olk * MimeGenerated.cs: Use case sensitive comparer for NameValueCollections 2005-07-01 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: bug fixes, code refactoring * ThemeWin32Classic.cs: bug fixes, code refactoring * DataGridDrawingLogic.cs: bug fixes, code refactoring * DataGrid.cs: bug fixes, code refactoring * DataGridTextBox.cs: bug fixes, code refactoring * DataGridColumnStyle.cs: bug fixes, code refactoring * Theme.cs: bug fixes, code refactoring 2005-07-01 Peter Bartok * TextControl.cs: Quick fix for the reported crash on ColorDialog and other text box usage 2005-07-01 Jackson Harper * TabControl.cs: Make sure the bottom of the tab covers the pages border. 2005-06-30 Peter Bartok * Form.cs (ShowDialog): Assign owner of the dialog * TextBoxBase.cs: Always refresh caret size when deleting, caret might have been moved to a tag with different height 2005-06-30 Jackson Harper * Form.cs: Don't create an infinite loop when setting focus * MenuItem.cs: Don't dirty the parents if we don't have any 2005-06-29 Ben Maurer * LibSupport.cs: Rename 2005-06-29 Peter Bartok * TextBoxBase.cs: Re-align caret after deleting a character * TextControl.cs: - DeleteChars(): Ensure that tag covers the provided position - StreamLine(): Drop reference for dropped tag 2005-06-29 Peter Bartok * TextControl.cs: - Selections now work properly, anchoring at the initial location and properly extending in either direction (SetSelectionToCaret(), SetSelectionStart() and SetSelectionEnd()) - No longer redraws the whole control on selection change, now calculates delta between previous and new selection and only invalidates/redraws that area - Fixed FindPos() math off-by-one errors - Changed DeleteChars() to verify the provided tag covers the provided position, selections may have a tag that doesn't cover the position if the selection is at a tag border - Fixed off-by-one errors in DeleteChars() - Added missing streamlining check in DeleteChars() to remove zero-length tags - Implemented Invalidate() method, now properly calculates exposures between two given lines/positions - Implemented SetSelection() - Obsoleted and removed FixupSelection() - Improved RecalculateDocument() logic, removing code duplication 2005-06-29 Gonzalo Paniagua Javier * LibSupport.cs: changes to match different input/output arguments. 2005-06-29 Gonzalo Paniagua Javier * LibSupport.cs: added libsupport.so init routine. 2005-06-29 Jordi Mas i Hernandez * ControlBindingsCollection.cs - Throws an exception on null datasource when adding - Checks for duplicated bindings when adding 2005-06-28 Jackson Harper * TreeView.cs (OnKeyDown): Support left and right properly (navigates as well as expanding and collapsing. - Add support for Multiply, this expands all the selected nodes children. - Fix some tabbing. 2005-06-28 Jackson Harper * TreeView.cs: Implement keyboard navigation, currently supports, LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add support for toggling checkboxes with the space bar. 2005-06-28 Jackson Harper * OpenTreeNodeEnumerator.cs: Don't move past the begining of the tree. 2005-06-28 Jackson Harper * TreeView.cs: Add missing event. 2005-06-27 Peter Bartok * TextControl.cs: - Made line ending size configurable (now allows for counting lineendings as \n or \r\n) - Added margin to viewport to keep caret visible on right side - Fixed translation routines for line/pos to documentpos to consider cr/lf when counting (Fixes RichTextBox.SelectionFont issues) - Fixed some line-endings to be unix style - Fixed Document.FormatText to perform it's calculations 1-based - Added descriptions for a few methods that might otherwise get used wrong - Added NOTE section with some basic conventions to remember at the top of the file - Major fixup for RichTextBox selection drawing: * Fixed crashes when multiple tags on a single line were selected * fixed selection box drawing not overlaying text * fixed bogus offset calculation for tags not starting at index 1 * Switched behaviour from using multiple Substrings of a StringBuilder.ToString() to using multiple StringBuilder.ToString(start, length) statements, hoping this is faster (kept original version commented out in the code, in case original version was faster) * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if alignment != Left * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can call it as well 2005-06-27 Jackson Harper * TabControl.cs: Move to the left and right with the arrow keys. These keys don't cycle beyond first and last like tab. Refresh all the tabs when scrolling them to the left or right. 2005-06-27 Jackson Harper * TabControl.cs: - ToString: Added method - CreateParams: Remove TODO and comment - OnKeyDown: Cycle through bounds properly. - SelectedIndex: Scroll to the right or left if we need to display the newly selected tab. 2005-06-23 Jackson Harper * TabControl.cs: Stay in bounds when cycling. Make sure Handled is set. 2005-06-23 Jackson Harper * TabControl.cs: Keyboard handling. We now support CTRL-TAB, CTRL-SHIFT-TAB, and HOME, END are there any others? 2005-06-23 Jackson Harper * XplatUIX11.cs: Get the modifier keys from the keyboard driver. 2005-06-22 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: fixes and enhancements * ThemeWin32Classic.cs: fixes and enhancements * DataGridBoolColumn.cs: fixes and enhancements * DataGridDrawingLogic.cs: fixes and enhancements * CurrencyManager.cs: fixes and enhancements * DataGrid.cs: fixes and enhancements * DataGridColumnStyle.cs: fixes and enhancements 2005-06-22 Jackson Harper * TabControl.cs: Add some missing methods that just call into the base. Make the TabPageCollection's IList interface behave in the same manner as the MS implementation. 2005-06-22 Peter Bartok * TextControl.cs: Added sanity check * TextBoxBase.cs: - Fixed wrapping behaviour, don't set wrap on single line controls (this fixes the breakage of colordialog introduced in an earlier checkin) - Added rudimentary support for autoscrolling right-aligned controls (still needs fixing, also, center alignment scroll is missing) 2005-06-22 Jordi Mas i Hernandez * ScrollBar.cs: Fixes thumbpos on Maximum values 2005-06-21 Jonathan Chambers * PropertyGridView.cs: Pass context information to UITypeEditors 2005-06-21 Peter Bartok * TextBoxBase.cs: - Now calling PositionCaret with absolute space coordinates - Enabled vertical scrolling - Better tracking of scrollbar changes, tied into WidthChange event - Improved cursor tracking - Removed debug output * TextControl.cs: - PositionCaret coordinates are now works in absolute space, not the canvas - Improved tracking of document size - Added events for width and height changes 2005-06-21 Peter Bartok * Form.cs: Set focus to active control when form is activated * TextControl.cs: - Added word-wrap functionality to RecalculateLine() - Added some short function descriptions for VS.Net to aid in writing dependent controls - Added Caret property, returning the current coords of the caret - Added ViewPortWidth and ViewPortHeight properties - Added Wrap property - Added CaretMoved event - Removed some old debug code - Split() can now create soft splits - Added PreviousTag()/NextTag() to allow walking "tag-lists" - Added method to format existing text - Fixed size/alignment calculations to use viewport - RecalculateDocument now can handle changing line-numbers while calculating lines * TextBox.cs: - Added some wrap logic, we don't wrap if alignment is not left - Added casts for scrollbar var, base class switched types to also support RichTextBoxA - Implemented handling of scrollbar visibility flags * TextBoxBase.cs: - Switched scrollbars type to RichTextBoxScrollBars to support RichTextBox - Added tracking of canvas width/height - Switched scrollbars to be not selectable (to keep focus on text) - Added central CalculateDocument() method to handle all redraw requirements - Added ReadOnly support - Added WordWrap support - Fixed handling of Enter key (we now treat it as a DialogKey) - Fixed caret positioning when h or v scroll is not zero - Fixed placing/generation of vertical scrollbar - Added CalculateScrollBars() method to allow updating scrollbar limits and visibility - Fixed handling of horizontal scroll - Added handling of vertical scroll - Implemented auto-'jump' when caret moves to close to a left or right border and there is text to be scrolled into view (currently there's the potential for a stack overflow, until a bug in scrollbar is fixed) 2005-06-21 Geoff Norton * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND 2005-06-19 Alexander Olk * Mime.cs: - added inodes. - return application/x-zerosize for files with size zero (if no extension pattern matches). - check matches collection for strings too. - return only the first mime type if the name value collection has more than one mime type. 2005-06-18 Jonathan Chambers * PropertyGrid.cs: Cleaned up some TODOs * PropertyGridView.cs: Added support for UITypeEditors 2005-06-17 Jordi Mas i Hernandez * DataGrid.cs: clears cached value 2005-06-17 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop. * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop. * DataGrid.cs: new rows, speed improvements, fixes, readonly prop. * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop. 2005-06-16 Jordi Mas i Hernandez * ThemeWin32Classic.cs: fixes colour 2005-06-15 Peter Bartok * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support) * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support) * ButtonBase.cs: Added MWFCategory and MWFDescription attributes * Control.cs: Added some MWFCategory and MWFDescription attributes * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes 2005-06-15 Alexander Olk * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for usage 2005-06-14 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes * DataGrid.cs: default datagrid settings for Default Styles, fixes * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes 2005-06-13 Jackson Harper * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message isn't printed when the user enables dropping. (X11 does accept drops). 2005-06-13 Jackson Harper * TreeView.cs: Remove some TODOS. 2005-06-13 Jackson Harper * Form.cs: Hook into the mdi framework. * MdiClient.cs: Use the base control collections add method so parents get setup correctly. Set the default back colour and dock style. * MdiChildContext.cs: New class, this bad actor handles an instance of an MDI window. Right now there is only basic support. You can drag, close, and resize windows. Minimize and Maximize are partially implemented. 2005-06-13 Jackson Harper * XplatUIX11.cs: Mash numbers together properly, otherwise we get freaky when both vals are negative. NOTE: There are probably other places in XplatUIX11 that this needs to be done. 2005-06-13 Jordi Mas i Hernandez * DataGrid.cs: implement missing methods, move KeyboardNavigation * DataGridColumnStyle.cs: fixes signature 2005-06-12 Jackson Harper * XplatUIX11.cs: Use sizing cursors similar to the ones on windows. 2005-06-11 Jackson Harper * StatusBarPanel.cs: Signature cleanups. Implement BeginInit/EndInit. 2005-06-10 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: Honors aligment * GridColumnStylesCollection.cs: Contains is case unsensitive * GridTableStylesCollection.cs: several fixes * DataGridTableStyle.cs: default column creation * DataGridDrawingLogic.cs: fixes * CurrencyManager.cs: ListName property * DataGrid.cs: multiple styles support * DataGridColumnStyle.cs: fixes 2005-06-10 Peter Bartok * Control.cs(Select): Moved SetFocus call to avoid potential loops if controls change the active control when getting focus * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking the up/down buttons 2005-06-10 Matthias Felgner * ImageListConverter.cs: Implemented 2005-06-10 John BouAntoun * MonthCalendar.cs: Wired in NumericUpDown control for year 2005-06-10 John BouAntoun * MonthCalendar.cs: Removed MonoTodo attributes on Click and DoubleClick events, since they are not meant to be fired. 2005-06-09 Peter Bartok * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated Jonathan's standalone controls into MWF, implemented missing events, attributes and methods; added xxxAccessible classes * AccessibleObject.cs: Made fields internal so other classes can change them if needed 2005-06-09 Jonathan Gilbert <2a5gjx302@sneakemail.com> * UpDownBase.cs: Complete implementation * NumericUpDown.cs: Complete implementation * DomainUpDown.cs: Complete implementation 2005-06-09 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: drawing fixes * DataGridCell.cs: fixes ToString method to match MSNet * DataGridTableStyle.cs: fixes * DataGridBoolColumn.cs: fixes, drawing * DataGridDrawingLogic.cs: fixes, new methods * DataGridTextBox.cs: Keyboard and fixes * DataGrid.cs: - Keyboard navigation - Scrolling fixes - Row selection (single, multiple, deletion, etc) - Lots of fixes 2005-06-07 Jackson Harper * ThemeWin32Classic.cs: Clear the background area when drawing buttons. 2005-06-06 Peter Bartok * ImageListStreamer.cs: Fixed signature for GetData * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject * ComboBox.cs: - Added missing ChildAccessibleObject class - Added missing OnXXXFocus overrides, switched to using those instead of the event handler * Control.cs: - Added Parent property for ControlAccessibleObject - Fixed signatures - Fixed attributes - Added ResetBindings() * ListBindingConverter.cs: Implemented some methods * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class * ImageList.cs: Implemented basic handle scheme, removed TODOs * ContainerControl.cs: Fixed signature, now subscribing to the ControlRemoved event instead of overriding the handler, LAMESPEC * CurrencyManager.cs: Added missing attribute * MonthCalendar.cs: Added missing properties 2005-06-06 Jordi Mas i Hernandez * DataGridColumnStyle.cs: fixes for DataGridColumnStyle 2005-06-06 Gaurav Vaish and Ankit Jain * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding 2005-06-06 Jordi Mas i Hernandez * Control.cs: fixes CreateParams Width / Height. 2005-06-05 Peter Bartok * Win32DnD.cs: Removed compilation warnings 2005-06-05 Peter Bartok * Control.cs (CreateParams): Since we don't know if one of the properties we use is overridden, lets make sure if we fail accessing we continue with a backup plan 2005-06-05 Peter Bartok * Win32DnD.cs: - Removed debug output - Added MarshalAs attribute to ensure proper marshalling of FORMATETC struct - Plugged resource leak * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match MS size 2005-06-05 Peter Bartok * XplatUIWin32.cs: Removed DnD code * Win32DnD.cs: Implemented drop source and drop target functionality 2005-06-05 Gonzalo Paniagua Javier * UpDownBase.cs: remove duplicate addition of event, enable some code that was commented out. * NumericUpDown.cs: added missing attributes and Hexadecimal property. Validate input when a key is pressed. It works fine now for every combination of Hexadecimal. Only missing some drawing love when sharing space with other controls. 2005-06-04 Peter Bartok * Control.cs: - We need to pass a window for DragDrop, so enable callback events - Added DnD callback events when being a DragSource * XplatUI.cs (StartDrag): Added window handle argument * XplatUIDriver.cs (StartDrag): Added window handle argument * QueryContinueDragEventArgs: Made fields internally accessible so drivers can set them * GiveFeedbackEventArgs: Made fields internally accessible so drivers can set them 2005-06-03 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: column text editing * DataGridTableStyle.cs: Respect columns styles created by the user * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments * DataGridBoolColumn.cs: bool column editing * DataGrid.cs: fixes to scrolling, properties, etc * DataGridTextBox.cs: handle keyboard * DataGridColumnStyle.cs: fixes 2005-06-02 Jackson Harper * ImageListStreamer.cs: Somewhat broken implementation of GetObjectData. The RLE needs some work to match MS properly. 2005-06-02 Jackson Harper * X11Dnd.cs: Attempting to keep at least one file in MWF monostyled. 2005-06-02 Peter Bartok * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required that way 2005-06-02 Peter Bartok * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat * XplatUI.cs: Added DoDragDrop() method * XplatUIDriver.cs: Added DoDragDrop() method 2005-06-02 Jackson Harper * Splitter.cs: Implement BorderStyle. 2005-06-02 Jackson Harper * XplatUIX11.cs: Tie into the X11Dnd subsystem. * X11Dnd.cs: New file. A subsystem that handles drag and drop on X11 using XDND. 2005-06-02 Peter Bartok * DataObject.cs: - Added Data setter - Fixed broken insertion code for SetData, now also overwrites any existing entry of the same format name * Hwnd.cs: Added list of pointers that automatically gets freed when the window is disposed * XplatUI.cs: Call driver initialization method when loading a driver * Control.cs: - OnDragLeave takes EventArgs, not DragEventArgs - Added setting of WS_EX_ACCEPTFILES style when dropping is supported - Forces style update when drop state changes * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible, not perfect since we cannot (yet) call the IDataObject.GetData() method, we keep getting 0x80004005 error, dunno why) 2005-06-02 Peter Bartok * DragEventArgs.cs: Make fields internal so we can cache the object and re-set the fields from XplatUI 2005-06-02 Jackson Harper * Control.cs: Add some internal methods so the DnD subsystem can raise DnD events. Also call into the driver when AllowDrop is set. * XplatUI.cs: * XplatUIDriver.cs: New method for setting whether or not a window is allowed to accept drag and drop messages. 2005-06-01 Jordi Mas i Hernandez * ScrollBar.cs: Make sure that values sent in Scroll events are always between Maximum and Minimum. 2005-06-01 Marek Safar * Menu.cs: Call MenuChanged when menuitem visibility has been changed. * MenuItem.cs: Rebuild menu when item is (not) visible. * MainMenu.cs: MainMenu has special MenuChanged. * Theme.cs: Caption and FrameBorderSize are not fixed. * XplatUI.cs: Added CaptionHeight,FrameBorderSize. * XplatUIDriver.cs: Introduced Caption and FrameBorderSize. * XplatUIX11.cs, * XplatUIOSX: Caption and FrameBorderSize not implemented yet. * XplatUIWin32.cs: Get Caption and FrameBorderSize from system. 2005-05-30 Jackson Harper * DataFormat.cs: We can't statically initialize this stuff because it calls into the xplatui and could create a loop. So we lazy init it. 2005-05-28 Jackson Harper * Control.cs: Proper implementation of Product(Name/Version). 2005-05-27 Jackson Harper * DataObject.cs: Dont crash if no data is found. 2005-05-26 Rafael Teixeira * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property as per status page, guessing it should be set to true 2005-05-26 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: Draws text and basic text formatting * DataGridTableStyle.cs: set proper formatting text, def header text * ThemeWin32Classic.cs: new themable paramaters * DataGridBoolColumn.cs: paint check box, get data, fixes * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling * DataGridColumnStyle.cs: fixes * Theme.cs: new themable paramaters 2005-05-26 Peter Bartok * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base 2005-05-24 Jonathan S. Chambers * Control.cs: Fixed LowOrder and HighOrder to preserve sign. 2005-05-24 Peter Bartok * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs, Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs, FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs, NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs, ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs, DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs, AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs, DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added missing attributes, etc * DataGridPreferredColumnWidthTypeConverter.cs: Added 2005-05-24 Peter Bartok * Help.cs: Added, implemented trivial functions, throws up MessageBox when user tries to get help * DataObject.cs, DataFormats.cs, LinkArea.cs, SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables to suppress warnings * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to avoid unreachable code warning 2005-05-20 Peter Bartok * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData 2005-05-20 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: Basic painting methods * DataGridTableStyle.cs: Set table style in the column * ThemeWin32Classic.cs: Use Theme for colors * DataGridDrawingLogic.cs: Implement more drawing * DataGrid.cs: drawing, theming, enhacements, fixes * DataGridColumnStyle.cs: fixes, drawing * Theme.cs: theming for Datagrid 2005-05-20 Peter Bartok * Cursor.cs: Implemented GetObjectData() method 2005-05-20 Peter Bartok * Cursors.cs: Added setting of cursor name * Cursor.cs: - Implemented constructors - Implemented Draw and DrawStretched - Implemented Current property - Implemented == and != operators - Implemented Dispose() - Implemented ToString - Added missing attributes * XplatUIX11.cs: - Added missing reset for OverrideCursor when DoEvents is called - Fixed creation of cursor, logic was wrong * XplatUIWin32.cs: - Added missing reset for OverrideCursor when DoEvents is called - Fixed creation of cursor, bit arrays were swapped * Clipboard.cs: Removed obsolete MonoTODO attribute 2005-05-20 Jordi Mas i Hernandez * ComboBox.cs: fixes OnSelectedItemChanged * ControlBindingsCollection.cs: fixes item range check 2005-05-20 Jordi Mas i Hernandez * UpDownBase.cs: - Calc preferred height properly - Implement missing properties * NumericUpDown.cs: Implement missing events 2005-05-19 Jackson Harper * TabControl.cs: New method that resizes the tab pages before redrawing them. This as needed as the control is double buffered and sizing will not be recalculated unless ResizeTabPages is called. * TabPage.cs: Set base.Text instead of Text in the constructor so that UpdateOwner does not get called. Use the new Redraw method of TabControl instead of Refresh so the sizing is recalculated. * ThemeWin32Classic.cs: Draw the text for button tabs. 2005-05-19 Jackson Harper * Control.cs: Paint control background images. Fix typo where PaintControlBackground was not getting called correctly. 2005-05-19 Peter Bartok * ScrollableControl.cs (DisplayRectangle): Undid my last change until I can investigate, apparently I broke FileDialog 2005-05-19 Marek Safar * AxHost.cs: Some simple properties. * Control.cs: window must be accessible after ctor. * Form.cs: Added TransparencyKey property. * TextBoxBase.cs: Implemented Clear. Text property can be null. * XplatUIWin32.cs: SetBorderStyle implemented. 2005-05-18 Peter Bartok * DataObject.cs: Entries are not global but particular to the DataObject, now it behaves that way * XplatUIWin32.cs: Implemented Clipboard methods * Clipboard.cs: Implemented * ScrollableControl.cs (DisplayRectangle): Fixed calculation * XplatUIOSX.cs: Updated to final clipboard prototypes * XplatUIX11.cs: Implemented Clipboard methods * XplatUIDriver.cs: Updated to final clipboard prototypes * XplatUIStructs.cs: - Added BITMAPINFOHEADER struct - Added ClipboardFormats enum * X11Structs.cs: - Added ClipboardStruct - Added Atom enum items for clipboard types - Fixed atom types for Selection event structures * DataFormats.cs: - Added internal properties and methods for drivers to enumerate all known formats - Switched initialization method to allow drivers to assign their own IDs even for the MS predefined clipboard IDs * XplatUI.cs: Updated to final clipboard interface 2005-05-18 Jonathan S. Chambers * PropertyGridView.cs: Fixed compiler warnings. 2005-05-18 Jonathan S. Chambers * PropertyGrid.cs: Added some event calls * PropertyGridView.cs: Change drawing code to use double buffering * PropertyGridTextBox.cs: Changed Text property name * GridItem.cs: Added Bounds property. * GridEntry.cs: Added Bounds property. 2005-05-17 Lluis Sanchez Gual * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom since GetType() may not return the correct type if the object is a remoting proxy. 2005-05-17 Jordi Mas i Hernandez * TreeNodeCollection.cs: fixes get/set item ranges 2005-05-15 Jordi Mas i Hernandez * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes 2005-05-15 Jordi Mas i Hernandez * ComboBox.cs: Fix item range comparation * ListView.cs: Fix item range comparation 2005-05-03 Alexander Olk * FontDialog.cs: - Clear example panel when OnPaint is called - Better solution for displaying the example panel text - Select default indexes in the ListBoxes 2005-05-11 Geoff Norton * XplatUIOSX.cs: Avoid painting into invisible views. Fixes #74926 2005-05-11 Peter Bartok * LinkArea.cs: Added and implemented LinkAreaTypeConverter class * SelectionRangeConverter.cs: Implemented * PropertyGrid.cs: Fixed attribute value * Control.cs: - Invoke(): Don't call Begin/EndInvoke if it is not neccessary - Added Sebastien Pouliot's CAS Stack Propagation fixes * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code that's common to all drivers. First methods to go there are Sebastien Pouliot's CAS Stack Propagation helper methods * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by Sebastien Pouliot for CAS Stack Propagation 2005-05-11 Geoff Norton * OSXStructs.cs: XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee) 2005-05-12 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: fixed some members * GridColumnStylesCollection.cs: indexed column is case insensitive * DataGridTableStyle.cs: fixes * ThemeWin32Classic.cs: add new theme parameter * Theme.cs: add new theme parameter * DataGridDrawingLogic.cs: Datagrid's drawing logic * DataGrid.cs: fixes, new internal properties, etc. * DataGridColumnStyle.cs: allows to set grid value * 2005-05-10 Peter Bartok * AccessibleObject.cs: - Removed MonoTODO attribute on help, method is correct - Fixed Bounds property * AxHost.cs: Moved MonoTODO * ButtonBase.cs: Now setting AccessibleObject properties * RadioButton.cs: Setting proper AccessibleObject role * CheckBox.cs: Setting proper AccessibleObject role * ControlBindingsCollection.cs: Added properties, methods and attributes * DataFormats.cs: Fixed awkward internal API, and changed to enable userdefined DataFormats.Format items as well * ListControl.cs: Removed data_member from the public eye * OpenFileDialog.cs: - Made class sealed - Added missing attributes * SaveFileDialog.cs: Added missing attributes * ImageListStreamer.cs: Fixed code that caused warnings * LinkLabel.cs: Removed unreachable code * TreeView.cs: Fixed code that caused warnings * PropertyGridView.cs: Fixed code that caused warnings * GridColumnStylesCollection.cs: Added missing attributes * GridTableStylesCollection: Added missing attribute * PropertyManager: Added .ctor * SecurityIDType: Added * DataObject.cs: Implemented class * LinkArea.cs: Added missing attribute 2005-05-11 Jordi Mas i Hernandez * RadioButton.cs: call base method to allow to fire OnClick event * UpDownBase.cs: OnMouseUp call base method * CheckedListBox.cs: call base method before returning * TrackBar.cs: call base method before returning 2005-05-10 Peter Bartok * XplatUIX11.cs: Fix for #74902, check pending timers when peeking for messages 2005-05-10 Peter Bartok * DataFormats.cs: Implemented * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIX11.cs: Added Clipboard APIs * XplatUIWin32.cs: Implemented Clipboard APIs * FolderBrowserDialog.cs: Added missing event, attributes 2005-05-10 Jordi Mas i Hernandez * CheckBox.cs: call base method to allow to fire OnClick event 2005-05-09 Sebastien Pouliot * XplatUI.cs: Use PlatformID.Unix under NET_2_0. 2005-05-06 Peter Bartok * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop * Screen.cs: Implemented * HelpNavigator.cs: Added * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea property * HelpProvider.cs: Implemented all we can do until we have a CHM help library (which means that "What's This" does work now) 2005-05-06 Jackson Harper * XplatUIX11.cs: Fix waking up the main loop. 2005-05-05 Peter Bartok * XplatUI.cs: Updated revision * Form.cs: Removed enless loop * GroupBox.cs (OnPaint): Added call to base.OnPaint() * Label.cs (OnPaint): Added call to base.OnPaint() * ToolTip.cs: Made ToolTipWindow reusable for other controls * LinkLabel.cs (OnPaint): Added call to base.OnPaint() * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method * AxHost.cs: Added * ButtonBase.cs: Moved base.OnPaint() call to end of method * ThemeWin32Classic.cs: Replaced references to ToolTip with references to ToolTip.ToolTipWindow for drawing and size methods; this allows reuse of ToolTipWindow by other controls * SizeGrip.cs: Moved base.OnPaint() call to end of method * XplatUIX11.cs: Now clipping drawing area (experimental) * PictureBox.cs: Moved base.OnPaint() call to end of method * Theme.cs: Fixed ToolTip abstracts to match new format * ErrorProvider.cs: Implemented 2005-05-05 Jordi Mas i Hernandez * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged * LinkLabel.cs: - Adds cursors - Handles focus - Implements LinkBehavior - Fixes many issues 2005-05-03 Jackson Harper * ListView.cs: Calculate the scrollbar positioning on resize and paint, so they get put in the correct place. 2005-05-03 Alexander Olk * ColorDialogs.cs: The small color panels are now handled by SmallColorControl. This fixes drawing of the focus rectangle and adds a 3D border. 2005-05-03 Peter Bartok * Control.cs: Modified version of Jonathan Chamber's fix for double-buffering 2005-05-03 Jackson Harper * ListView.cs: Remove redraw variable. Control now handles whether or not a redraw needs to be done, and will only raise the paint event if redrawing is needed. 2005-05-03 Jackson Harper * Splitter.cs: No decorations for the splitter form. Cache the hatch brush. 2005-05-03 Jackson Harper * TreeView.cs: Use dashed lines to connect nodes. Use the ControlPaint method for drawing the focus rect instead of doing that in treeview. 2005-05-02 Peter Bartok * LinkLabel.cs: Fixed the fixes from r43566 and 43521 2005-04-29 Jackson Harper * ThemeWin32Classic.cs: Don't clear the GC that will clear the entire image buffer. Just clear the clipping rectangle. 2005-04-29 Jackson Harper * ThemeWin32Classic.cs: Don't draw list view items that are outside the clipping rectangle. 2005-04-29 Jordi Mas i Hernandez * ListBox.cs: added horizontal item scroll 2005-04-29 Jackson Harper * ThemeWin32Classic.cs: Remove some old debug code that was causing flicker with the new double buffering code. 2005-04-29 John BouAntoun * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon behave like combobox and comboboxlist (still not sure if this is correct though). 2005-04-28 Jackson Harper * ThemeWin32Classic.cs: Don't fill the middle of progress bars. This fills areas outside of the clip bounds that don't need to be filled. 2005-04-28 Jackson Harper * Control.cs: Don't expose functionality to touch the image buffers. * ProgressBar.cs: * ListView.cs: We do not need to (and no longer can) manipulate the image buffers directly. All of this is handled by Control. 2005-04-28 Peter Bartok * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs, RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs, RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added 2005-04-28 Jordi Mas i Hernandez * Combobox: - Adjust control's height for non-simple comboboxes (bug fix) - Remove dead code * MenuAPI.cs: remove unused var * ScrollBar.cs: remove unsed var * ListBox.cs: unselect items when clearing 2005-04-28 Jordi Mas i Hernandez * ListControl.cs: honors OnPositionChanged and default Selected Item * ListBox.cs: unselect items when clearing 2005-04-27 Jackson Harper * X11Keyboard.cs: Initialize a default keyboard and give a warning if a "correct" keyboard is not found. This will make us not crash, but might give some users bad keyboard layouts...seems to be the same thing rewind does. 2005-04-27 Jackson Harper * BindingManagerBase.cs: Attach the current/position changed handlers to their respective events. 2005-04-27 Jackson Harper * Control.cs: Make sure that the first WM_PAINT does a full draw, not just a blit. * ThemeWin32Classic.cs: Don't fill the background for picture boxes. This could overright user drawing. * ComboBox.cs: Just fill the clipping rect not the entire client rect when drawing the background. This prevents pieces of the image buffer from getting overwritten and is theoretically faster. 2005-04-26 Jordi Mas i Hernandez * ComboBox.cs: Databinding support fixes, fire missing events * ListControl.cs: implement missing methods and properties, fixes * ThemeWin32Classic.cs: Databiding support on Drawing * CheckedListBox.cs: Databinding support fixes, fire missing events * ListBox.cs: Databinding support fixes, fire missing events 2005-04-25 Peter Bartok * LinkLabel.cs: Length of LinkArea is not allowed to be negative 2005-04-25 Jackson Harper * TreeView.cs: Use the horizontal scrollbars height not width when determining how much of the client area is available. 2005-04-25 Jackson Harper * Control.cs: Double buffering is handled differently now. As per the spec, the extra buffer is created in the WM_PAINT message and passed down to the control's drawing code. * GroupBox.cs: * Label.cs: * CheckBox.cs: * ProgressBar.cs: * RadioButton.cs: * ColorDialog.cs: * ComboBox.cs: * PropertyGridView.cs: * UpDownBase.cs: * MessageBox.cs: * MenuAPI.cs: * ListView.cs: * ButtonBase.cs: * SizeGrip.cs: * ScrollBar.cs: * ListBox.cs: * TrackBar.cs: * ToolBar.cs: * PictureBox.cs: * DateTimePicker.cs: * StatusBar.cs: * TreeView.cs: Update to new double buffering system. * MonthCalendar.cs: Uncomment block, as Capture is now working. Update to new double buffering * LinkLabel.cs: Lazy init the link collection. Update to new double buffering * PaintEventArgs.cs: New internal method allows us to set the graphics object. This is used for double buffering. * ThemeWin32Classic.cs: Give the picture box drawing code a clip rectangle. The internal paint_area var has been removed from StatusBar. The clipping rect should be used instead. * Theme.cs: Give the PictureBox drawing method a clipping rect. * TabPage.cs: The RefreshTabs method was removed, so just call the tab controls Refresh method now. * TabControl.cs: Update to new double buffering. Make sure the handle is created before sizing the tab pages, otherwise we will get stuck in a loop. 2005-04-24 Borja Sanchez Zamorano * LinkLabel.cs: Fix typo, bug #74719; patch from Borja Sanchez Zamorano 2005-04-22 Jackson Harper * TreeNode.cs: Implement Handle stuff. * TreeView.cs: Utility methods so nodes can get/lookup by handle. 2005-04-22 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: call base constructors, fixes * GridColumnStylesCollection.cs: missing events, methods, and functionality * GridTableStylesCollection.cs: fixes, check duplicate mapping names * DataGridTableStyle.cs: implements create default column styles * DataGridBoolColumn.cs: which types can handle * DataGrid.cs: missing methods, fixes, new functionality * DataGridColumnStyle.cs: fixes 2005-04-20 Alexander Olk * FolderBrowserDialog.cs: - Use a thread to fill the TreeView - Adjusted some sizes 2005-04-19 Peter Bartok * LinkLabel.cs: (Re-)create the pieces when setting the Text property. Fixes #74360. 2005-04-19 Jackson Harper * XEventQueue.cs: Lock when getting the lockqueue size. * PictureBox.cs: Call base OnPaint 2005-04-19 Peter Bartok * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async messages were no longer being processed (this broke BeginInvoke) 2005-04-18 Jackson Harper * TreeView.cs: buglet that caused node images to get drawn regardless of whether or not they were in the clipping rectangle. 2005-04-18 Jackson Harper * CurrencyManager.cs: There are four rules for GetItemProperties: - If the type is an array use the element type of the array - If the type is a typed list, use the type - If the list contains an Item property that is not an object, use that property - use the first element of the list if there are any elements in the list. 2005-04-17 Jackson Harper * TreeView.cs: Calculate plus minus and checkbox bounds when there is a click. This handles offsets for scrolling properly and reduces memory. Also fixed GetNode to not offset now that TopNode works properly. * TreeNode.cs: No longer need to track the plus minus or checkbox bounds. 2005-04-17 Jackson Harper * CursorConverter.cs: Initial implementation. 2005-04-15 Jordi Mas i Hernandez * ListControl.cs: work towards complex data binding support on ListControl * CurrencyManager.cs: work towards complex data binding support on ListControl * ListBox.cs: work towards complex data binding support on ListControl 2005-04-15 Jordi Mas i Hernandez * GridTableStylesCollection.cs: fixes name and constructor * DataGridTableStyle.cs: fixes * DataGridBoolColumn.cs: fixes names and constructors * DataGrid.cs: define methods and properties. Some init implementations * DataGridCell.cs: define methods and properties. Some init implementations * GridTablesFactory.cs: Define methods and properties 2005-04-15 Geoff Norton * XplatUIOSX.cs: Handle proper mouse tracking even if the current graphics port changes. We still want the coordinates in global screen coordinates. 2005-04-14 Jackson Harper * TreeView.cs: Handle clicks when plus minus is disabled. Don't check plus minus or checkbox clicks unless those features are enabled. 2005-04-14 Jackson Harper * TreeView.cs: Add methods for setting the top and bottom visible nodes. TreeNode::EnsureVisible uses these methods. * TreeNode.cs: Implement EnsureVisible 2005-04-13 Jordi Mas i Hernandez * Form.cs: Pospone menu assignation if the window has not been created yet * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window size and position 2005-04-12 Jackson Harper * TreeView.cs: Set the TopNode properly when scrolling occurs. This has the added benifit of reducing the amount of walking that needs to be done when drawing. Also removed an old misleading TODO. * OpenTreeNodeEnumerator.cs: Fix moving backwards. 2005-04-11 Jordi Mas i Hernandez * Timer.cs: fixes interval setting when the timer is already enabled 2005-04-10 Alexander Olk * FolderBrowserDialog.cs: First approach 2005-04-09 Peter Bartok * FolderBrowserDialog: Added 2005-04-07 Jordi Mas i Hernandez * LinkLabel.cs: move drawing code into the theme * ThemeWin32Classic.cs: drawing code and painting background bugfix * Theme.cs: define DrawLinkLabel method 2005-04-05 Jackson Harper * BindingContext.cs: Use weak references so these bad actors don't stay alive longer then they need to. 2005-04-05 Jackson Harper * ListControl.cs: Basic implementation of complex databinding. * ComboBox.cs: * ListBox.cs: Add calls to ListControl databinding methods. 2005-04-05 Alexander Olk * FileDialog.cs: - Don't change PopupButtonState to Normal when the PopupButton gets pressed several times. - Renamed ButtonPanel to PopupButtonPanel 2005-04-05 Jordi Mas i Hernandez * ColorDialog.cs: Use cached objects instead of creating them * LinkLabel.cs: Use cached objects instead of creating them * Splitter.cs: Use cached objects instead of creating them * FontDialog.cs: Use cached objects instead of creating them * PropertyGridView.cs: Use cached objects instead of creating them * MessageBox.cs: Use cached objects instead of creating them * FileDialog.cs: Use cached objects instead of creating them * ThemeWin32Classic.cs: Use cached objects instead of creating them * TreeView.cs: Use cached objects instead of creating them 2005-04-04 Jordi Mas i Hernandez * Control.cs: use Equals to compare the font since no == op * ScrollBar.cs: use Equals to compare the font since no == op 2005-04-04 Alexander Olk * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create 2005-04-01 Jackson Harper * Binding.cs: Implement IsBinding. * BindingManagerBase.cs: * PropertyManager.cs: * CurrencyManager.cs: Add IsSuspended property. 2005-04-01 Jackson Harper * Binding.cs: Had some IsAssignableFrom calls backwards. 2005-04-01 Jackson Harper * Binding.cs: Handle null data members when pulling data. * PropertyManager.cs: Handle the data member being a property that does not exist. 2005-04-01 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: fixes signature * DataGrid.cs: calls right constructor 2005-04-01 Jordi Mas i Hernandez * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class * GridColumnStylesCollection.cs: implements GridColumnStylesCollection * GridTableStylesCollection.cs: implements GridTableStylesCollection * DataGridTableStyle.cs: implements DataGridTableStyle * DataGridBoolColumn.cs: implements DataGridBoolColumn * DataGridTextBox.cs: implements DataGridTextBox * DataGridColumnStyle.cs: implements DataGridColumnStyle 2005-03-31 Alexander Olk * FileDialog.cs: Added simple PopupButton class for ButtonPanel 2005-03-29 Peter Bartok * Application.cs: - Properly implemented CompanyName property - Fixed LocalUserAppDataPath and UserAppDataPath, now properly returns a path that includes CompanyName, ProductName and Version (fixes bug #70330) 2005-03-29 Stefan Buehler * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid, fixes bug #72588. 2005-03-28 Alexander Olk * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs: - Added ReadOnly CheckBox - Further refactoring: moved some code from Open-/SaveFileDialog to FileDialog 2005-03-28 Alexander Olk * OpenFileDialog.cs: Fixed CheckFileExists * FileDialog.cs: Moved FileView and DirComboBox outside FileDialog class. They can now be used outside FileDialog 2005-03-27 Alexander Olk * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method 2005-03-27 Alexander Olk * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs: - Added missing CreatePrompt property in SaveDialog - Overall SaveDialog handling should be better now - Added non standard ShowHiddenFiles property - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog - Added InitialDirectory and RestoreDirectory support 2005-03-26 Alexander Olk * FileDialog.cs: Made dirComboBox usable 2005-03-24 Alexander Olk * FileDialog.cs: Added Filter support (case sensitiv) 2005-03-24 Jackson Harper * TabControl.cs: Need a couple more pixels for the lines. 2005-03-23 Jackson Harper * TabControl.cs: Give the tab page focus when it is selected. 2005-03-23 Jackson Harper * TabControl.cs: Account for the drawing of tabs borders when invalidating. If the slider was clicked dont do click detection on the tabs. 2005-03-23 Jackson Harper * TabControl.cs: Fix typo, emilinates an unneeded expose event. 2005-03-22 Jonathan Chambers * CategoryGridEntry.cs: Added * GridItem.cs: Added helper properties * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid. * GridEntry.cs: Updated code for collection * PropertyGrid.cs: Cleaned up some formatting * PropertyGridView.cs: Added drop down functionality for enums. * GridItemCollection.cs: Added enumerator logic * PropertyGridEntry.cs: Added 2005-03-19 Alexander Olk * FileDialog.cs: - Removed unnecessary commented code - Fixed handling for entering the filename manually in the combobox 2005-03-19 Alexander Olk * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works 2005-03-18 Peter Bartok * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid them being touching the border 2005-03-18 Peter Bartok * TextControl.cs: Quick hack to center text better 2005-03-18 Peter Bartok * ControlPaint.cs: - Don't throw NotImplemented exceptions, just print a notice once instead (requested by Miguel). This makes running existing SWF apps a bit easier * Control.cs: - Commented out Drag'N'Drop XplatUI call (no driver support yet) - Added context menu trigger on right click * Panel.cs: Trigger invalidate on resize * StatusBar.cs: - Removed old double-buffer drawing - Added ResizeRedraw style to force proper update of statusbar * ListView.cs: - Removed debug output * ThemeWin32Classic.cs: - Fixed drawing of status bar, now draws Text property if there are no defined panels 2005-03-18 Jackson Harper * ImageList.cs: When the image stream is set pull all the images from it. * ImageListStreamer.cs: Implement reading image list streams. 2005-03-18 Peter Bartok * ThemeWin32Classic.cs (DrawPictureBox): - Fixed calculations for centered drawing - Fixed drawing for normal mode, not scaling the image on normal 2005-03-18 Peter Bartok * ComboBox.cs: Now also firing the OnKeyPress events for the embedded textbox * FileDialog.cs: - Made Open/Save button the accept button for FileDialog - Tied the cancel button to the IButtonControl cancel button - Save/Open now properly builds the pathname - Now handles user-entered text - Preventing crash on right-click if no item is selected - Fixed Text property, now uses contents of textbox - Fixed SelectedText property, now just returns the text part that is selected in the text box 2005-03-18 Jackson Harper * ThemeWin32Classic.cs: Use the proper func for drawing the focus rect, make sure to de-adjust the interior rect after drawing the tab text. 2005-03-18 Peter Bartok * MenuAPI.cs: Remove menu *before* executing selected action to prevent the menu from 'hanging around' 2005-03-17 Geoff Norton * XplatUIOSX.cs: Implemented WorkingArea property 2005-03-17 Peter Bartok * XplatUIX11.cs: Fixed menu coord calculations * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods for calculating offsets 2005-03-17 Peter Bartok * Hwnd.cs: Do not consider menu presence for default client rectangle location/size * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord translation functions * FileDialog.cs: Fixed (what I presume is a) typo 2005-03-17 Jonathan Gilbert * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded X access (avoids X-Async errors) 2005-03-16 Jackson Harper * TabControl.cs: Raise the SelectedIndexChanged event. 2005-03-16 Alexander Olk * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs: - Removed vertical ToolBar and replaced it with a custom panel (desktop and home button already work) - Added Help button (some controls get resized or relocated then) - Draw correct text depending on Open or Save. - Fixed some typos... 2005-03-16 Jordi Mas i Hernandez * ScrollBar.cs: - Only change Maximum and Minimum when need it (bug fix) 2005-03-15 Peter Bartok * Form.cs: Use Handle for icon, to trigger creation if the window does not yet exist * Control.cs: - CanSelect: Slight performance improvement - Focus(): Preventing possible recursion - Invalidate(): Removed ControlStyle based clear flag setting - WM_PAINT: fixed logic for calling OnPaintBackground - WM_ERASEBKGND: Fixed logic, added call to new driver method EraseWindowBackground if the control doesn't paint background * XplatUIWin32.cs: - Moved EraseWindowBackground() method to internal methods - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes; is sent via SendMessage on BeginPaint call on Win32 * XplatUIX11.cs: - Added EraseWindowBackground() method - No longer sends WM_ERASEBKGND on .Expose, but on call to PaintEventStart, which more closely matches Win32 behaviour - Fixed Invalidate() call, now updates new ErasePending Hwnd property - Fixed SetFocus() to properly deal with client and whole windows * Hwnd.cs: Added ErasePending property * XplatUIOSX.cs: Stubbed EraseWindowBackground() method * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method 2005-03-12 Geoff Norton * XplatUIOSX.cs: - Fix hard loop when timers exist. - Fix bugs with middle and right click for 3 button mice. 2005-03-11 Peter Bartok * XplatUIX11.cs: - get_WorkingArea: Need to call X directly, GetWindowPos only returns cached data now - Added sanity check to GetWindowPos hwnd usage 2005-03-11 Jackson Harper * BindingManagerBase.cs: This method isn't used anymore as PullData now updates the data in the control. 2005-03-11 Jordi Mas i Hernandez * Form.cs: fixes menu drawing on X11 * MenuAPI.cs: fixes menu drawing on X11 2005-03-11 Peter Bartok * Control.cs: Changed OnCreateControl behaviour based on a suggestion from Jonathan Gilbert; should fix bug #73606 * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be in Screen coordinates. Thanks, Jordi. * Form.cs: Added missing attribute 2005-03-11 Peter Bartok * Form.cs: - Rudimentary Mdi support - Removed outdated FormParent code - Implemented lots of missing properties and methods, still missing transparency support - Added missing attributes - Implemented support for MaximumBounds - Added firing of various events * XplatUI.cs: Added SetIcon() method * XplatUIDriver.cs: Added SetIcon() abstract * XplatUIOSX.cs: Stubbed out SetIcon() method * XplatUIX11.cs: - Implemented SetIcon() support - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos - Switched to unix line endings * XplatUIWin32.cs: - Made POINT internal so for can access it as part of MINMAX - Implemented SetIcon() support - Implemented support for CLIENTCREATESTRUCT (but might have to drop native Mdi support again, might have to go managed) * Control.cs: Now fires the StyleChanged event * MdiClient.cs: Added; still mostly empty 2005-03-10 Peter Bartok * SaveFileDialog.cs: Added emtpy file 2005-03-08 Peter Bartok * Control.cs: Fixed bug #73190; now invokes CreateControl (which in turn triggers OnCreateContro) when creating a handle for the first time. * TextControl.cs: Fixed endless loop in certain cases when replacing the current selection 2005-03-08 Jordi Mas i Hernandez * ScrollBar.cs: - Honors NewValue changes in Scroll events allowing apps to change it - Adds First and Last Scroll events - Fixes Thumb events 2005-03-07 Peter Bartok * Hwnd.cs: Added DefaultClientRectangle property * XplatUI.cs: Now using the X11 driver Where() method, which provides more detailed debug information * XplatUIX11.cs: - Fixed size-change feedback loop, where we would pull an old size off the queue and mistakenly change our window's size to an earlier value - Now compressing ConfigureNotify events, to reduce looping and redraw issues * TextBoxBase.cs: Preventing crash when no text is set and ToString() is called 2005-03-07 Jackson Harper * Binding.cs: Push data pushes from data -> property. Check if the property is readonly when attempting to set it. 2005-03-07 Jackson Harper * Binding.cs: Format and parse data correctly. Use ASsignableFrom instead of IsSubclassOf. Pulling data now sets the value on the control. * PropertyManager.cs: * CurrencyManager.cs: Just need to pull data when updating now, because PullData will set the value on the control. 2005-03-04 Jackson Harper * Binding.cs: Implement data type parsing and converting on pulled data. TODO: Are there more ways the data can be converted? 2005-03-04 Jackson Harper * Binding.cs: Support IsNull checks. Also bind to the controls Validating method so we can repull the data when the control loses focus. 2005-03-03 Jordi Mas i Hernandez * ColumnHeader.cs: - Fixes null string format * ListView.cs: - Adds enum type checks - Fixes redrawing and recalc need after changing some properties - Fixes on focus_item set after the event - Fixes adding columns after the control has been created * ThemeWin32Classic.cs: - Fixes CheckBox focus rectangle - Fixes ColumnHeader drawing 2005-03-03 Jackson Harper * Binding.cs: Bind to Changed events so we can detect when properties are changed and update the data. 2005-03-02 Jordi Mas i Hernandez * ImageList.cs: - Changes 32-bit pixel format to Format32bppArgb to allow transparency - Fixes ImageList constructor with ImageList container - Fixes image scaling (wrong parameters at DrawImage) 2005-02-02 Jackson Harper * Binding.cs: Make property searches case-insensitive. Eliminate some duplicated code. 2005-03-01 Jordi Mas i Hernandez * ComboBox.cs: - Handle focus event - Fix scrollbar events - Discard highlighted item if remove it - Fixes SelectedItem with strings 2005-03-01 Peter Bartok * Control.cs: - Fixed Visible property, now follows (once again) parent chain to return false if any control in the chain is visible=false - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event - Fixed several places where is_visible instead of Visible was used - Implemented FIXME related to focus selection when setting focused control to be invisible * XplatUIWin32.cs: Now using proper method to find out if window is visible. Thanks to Jordi for pointing it out 2005-02-28 Jordi Mas i Hernandez * ComboBox.cs: show/hide scrollbar instead of creating it 2005-02-27 Jackson Harper * CurrencyManager.cs: Add PositionChanged stuff. 2005-02-27 Peter Bartok * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method * XplatUIOSX.cs: Added GetMenuOrigin() stub * XplatUIWin32.cs: Implemented GetMenuOrigin() * XplatUIX11.cs: - Implemented GetMenuDC() - Implemented GetMenuOrigin() - Implemented ReleaseMenuDC() - Implemented generation of WM_NCPAINT message - Implemented generation and handling of WM_NCCALCSIZE message * Form.cs: Added debug helper message for Jordi's menu work * Hwnd.cs: - Modified ClientRect property; added setter, fixed getter to handle setting of ClientRect - Added MenuOrigin property 2005-02-26 Peter Bartok * XplatUIX11.cs: - Destroys the caret if a window that's being destroyed contains it - Ignores expose events coming from the X11 queue for windows that already are destroyed - Now uses the proper variable for handling DestroyNotify, before we marked the wrong window as destroyed - Improved/added some debug output 2005-02-26 Peter Bartok * X11Keyboard.cs: Fixes to work on 64bit systems 2005-02-26 Peter Bartok * Control.cs: - Now calling OnHandleDestroyed from DestroyHandle() instead of Dispose() - Removed bogus call to controls.Remove() from DestroyHandle() 2005-02-26 Peter Bartok * Control.cs: Properly destroy child windows when our handle is destroyed 2005-02-25 Peter Bartok * XplatUI.cs: - Added 'DriverDebug' define to allow tracing XplatUI API calls - Alphabetized Static Methods and Subclasses * XplatUIX11.cs: - Added XException class to allow custom handling of X11 exceptions - Created custom X11 error handler, tied into XException class - Added support for MONO_XEXCEPTIONS env var to allow the user to either throw an exception on X errors or continue running after displaying the error - Added handling of DestroyNotify message - Added handler for CreateNotify message (still disabled) - Improved (tried to at least) Where method to provide file and lineno * X11Structs.cs: - Added XErrorHandler delegate - Added XRequest enumeration (to suppor translation of errors) 2005-02-25 Jackson Harper * PropertyManager.cs: Implement editing features * CurrencyManager.cs: * Binding.cs: First attempt at UpdateIsBinding * BindingManagerBase.cs: Call UpdateIsBinding before pushing/pulling data. 2005-02-25 Jordi Mas i Hernandez * MenuAPI.cs: Respect disabled items * ThemeWin32Classic.cs - Caches ImageAttributes creation for DrawImageDisabled - Fixes vertical menu line drawing - Draws disabled arrows in disable menu items 2005-02-24 Peter Bartok * Hwnd.cs: - Added UserData property to allow associating arbitrary objects with the handle - Fixed leak; now removing Hwnd references from static windows array * XplatUIWin32.cs: - Fixed Graphics leak in PaintEventEnd - Removed usage of HandleData, switched over to Hwnd class * HandleData.cs: Removed, obsoleted by Hwnd.cs 2005-02-24 Jordi Mas i Hernandez * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing * ScrollBar.cs: Fixes bug * TrackBar.cs: removes death code, clipping, mimize refreshes, keyboard navigation enhancements 2005-02-24 Jordi Mas i Hernandez * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined * GroupBox.cs: Add control styles * Label.cs: Add control styles * UpDownBase.cs: Add control styles * ListBox.cs: Add control styles * XplatUIWin32.cs: Fixes wrong parameter order 2005-02-23 Chris Bacon * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon 2005-02-23 Jackson Harper * PropertyManager.cs: Implement property binding. This doesn't seem to work yet though as (I think) there are some bugs in System.ComponentModel.PropertyDescriptor. * BindingContext.cs: Use new PropertyManager constructor. 2005-02-23 Jordi Mas i Hernandez * ProgressBar.cs: use clip region in ProgressBar * ThemeWin32Classic.cs: use clip region in ProgressBar 2004-02-22 Jackson Harper * BindingsCollection.cs: Remove some debug code. 2005-02-22 Jackson Harper * BindingContext.cs: * ControlBindingsCollection.cs: * CurrencyManager.cs: * Binding.cs: * BindingManagerBase.cs: Initial implementation * BindingsCollection.cs: Add an internal contains method that the BindingManagerBase uses to ensure bindings aren't added twice to the collection. * PropertyManager.cs: Stubbed out. * Control.cs: * ContainerControl.cs: Hook up databinding 2005-02-22 Geoff Norton * XplatUIOSX.cs: OSXStructs.cs: Refactored to handle the new Hwnd NC logic area. Fixed Invalidate/Update chain. Fixed tons of other minor bugs (this is almost a complete rewrite). 2005-02-22 Jordi Mas i Hernandez * ComboBox.cs: do subcontrol creation when the control is created 2005-02-19 Jordi Mas i Hernandez * Label.cs: fixes image drawing (image and imagelist) * ThemeWin32Classic.cs: cache brushes 2005-02-19 Jordi Mas i Hernandez * Form.cs: Move menu drawing code to Theme class * ComboBox.cs: Move ComboBox drawing code to Theme class * MenuItem.cs: Move menu drawing code to Theme class * MenuAPI.cs: Move menu drawing code to Theme class * ThemeWin32Classic.cs: New methods * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class * ListBox.cs: Move Listbox drawing code to Theme class * Theme.cs: New methods 2005-02-20 Peter Bartok * Control.cs: - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and only process mnemonics on those) - Fixed event sequence for key handling; first calling ProcessKeyEventArgs now * TextBoxBase.cs: - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey() for processing non-character keys - Fixed WM_CHAR to generate proper event sequence before processing * XplatUIWin32.cs: Added ALT key state to ModifierKeys property generation 2005-02-19 Peter Bartok * UserControl.cs: Added TextChanged event; added attributes * SizeGrip.cs: Implemented resizing and optional display of grip * Form.cs: Fixed attribute * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Changed meaning of ScrollWindow bool argument; instead of the clear attribute (which will be true usually anyway), it gives the option of moving child controls as well. * XplatUIX11.cs: - Changed to match new ScrollWindow argument - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls, now handles the implicit parent window a WM puts around us * ScrollableControl.cs: Implemented (not the prettiest, but it seems to work) * TextBoxBase.cs: Adjusted to new ScrollWindow arguments * TreeView.cs: Adjusted to new ScrollWindow arguments 2005-02-19 Jordi Mas i Hernandez * Form.cs: Menu integration with non-client area * MenuItem.cs: Menu integration with non-client area * MenuAPI.cs: Menu integration with non-client area 2005-02-18 Peter Bartok * MethodInvoker.cs: Added * MdiLayout.cs: Added * SendKeys.cs: Started implementation * ErrorIconAlignment.cs: Added 2005-02-18 Peter Bartok * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC() * Form.cs: Added handling for Menu-related Non-client messages 2005-02-17 Peter Bartok * UpDownBase.cs: Fixed typo, compilation errors * DomainUpDown.cs: Fixed attribute value 2005-02-16 Miguel de Icaza * UpDownBase.cs: Attach entry events. Propagate events. Add ForeColor property, Focused, InterceptArrowKeys (interception does not work yet). 2005-02-17 Jordi Mas i Hernandez * Form.cs: - Redraw non client are on Setmenu - Calc proper menu starting point 2005-02-17 Peter Bartok * Application.cs: Fixed message_filter check 2005-02-17 Peter Bartok * Application.cs: Now calls registered message filters * DockStyle.cs: Fixed attribute * Form.cs: Fixed attribute * Menu.cs: Fixed attribute * ToolTip.cs: Fixed attribute * TreeNode.cs: Added missing attributes and arranged in regions * PropertyGrid.cs: Fixed signatures * TreeNodeCollection.cs: Added attributes * Splitter.cs: Added missing attributes; arranged into regions * TabPage.cs: Added missing attributes; arranged into regions * TextBoxBase.cs: Added missing attributes * TextBox.cs: Added missing attributes * ArrangeDirection.cs: Added missing attributes * TreeNodeConverter.cs: Added stub (needed for TreeNode) * ToolBarButton.cs: Fixed attributes * AnchorStyles.cs: Fixed attribute * TrackBar.cs: Fixed attributes * TabControl.cs: Added missing attributes and arranged into regions * ToolBar.cs: Fixed attribute * StatusBar.cs: Fixed signature, organized into regions and added attributes * StatusBarPanel.cs: Fixed attributes * ContentsResizedEventArgs.cs: Implemented * ContentsResizedEventHandler.cs: Implemented * DateBoldEventArgs.cs: Implemented * DateBoldEventHandler.cs: Implemented * UpDownEventArgs.cs: Implemented * UpDownEventHandler.cs: Implemented 2005-02-16 Jordi Mas i Hernandez * Form.cs: first Menu NC refactoring * MenuAPI.cs: first Menu NC refactoring 2005-02-16 Peter Bartok * ImeMode.cs: Added missing attributes * Menu.cs: Fixed attribute * GroupBox.cs: Fixed attribute * Label.cs: Fixed attribute * ColorDialog.cs (RunDialog): Removed TODO attribute * ComboBox.cs: Fixed attributes * ListControl.cs: Added missing attributes * PropertyGrid.cs: Fixed attributes * Control.cs: Fixed attributes * ListViewItem.cs: Added TypeConverter attribute * NotifyIcon.cs: Fixed attributes * ListView.cs: Fixed attributes * ButtonBase.cs: Fixed attribute * ImageList.cs: Added missing attributes * ContainerControl.cs: Fixed signature * CheckedListBox.cs: Fixed attribute; added missing attributes * Panel.cs: Fixed attributes * PropertyTabChangedEventArgs.cs: Added missing attribute * PropertyValueChangedEventArgs.cs: Added missing attribute * Binding.cs: Fixed attribute * ListViewItemConverter: Implemented ListViewSubItemConverter class * ListBox.cs: Fixed attribute; added missing attributes; * ScrollableControl.cs: Added missing attributes * PictureBox.cs: Added missing attributes; implemented missing property * DateTimePicker.cs: Added missing attributes * Theme.cs (ToolWindowCaptionHeight): Fixed type * MonthCalendar.cs: Fixed attributes * StatusBarPanel.cs: Added missing attributes * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type 2005-02-16 Peter Bartok * TextBoxBase.cs: The previous method to enforce height yet remember the requested high was less than ideal, this is an attempt to do it better. * Control.cs: Added comment about possible problem * Copyright: Updated format * GridItemType.cs: Fixed swapped values 2005-02-15 Jackson Harper * BaseCollection.cs: Use property so we never access an uninitialized list. Also initialize the list in the property. 2005-02-15 Peter Bartok * GroupBox.cs (ProcessMnemonic): Implemented * Label.cs (ProcessMnemonic): Implemented * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show hotkeys 2005-02-15 Peter Bartok * RadioButton.cs (ProcessMnemonic): Implemented * CheckBox.cs (ProcessMnemonic): Implemented * Control.cs: - Added handling of WM_SYSxxx keyboard messages to support mnemonic handling - Added internal method to allow calling ProcessMnemonic from other controls * ContainerControl.cs: - Started support for handling validation chain handling - Implemented ProcessMnemonic support - Added Select() call to Active, to make sure the active control receives focus * Form.cs: Setting toplevel flag for Forms (this was lost in the FormParent rewrite) * ThemeWin32Classic.cs: - DrawCheckBox(): Fixed stringformat to show hotkeys - DrawRadioButton(): Fixed stringformat to show hotkeys * CommonDialog.cs: Removed WndProc override, not needed 2005-02-14 Peter Bartok * XplatUIX11.cs: Fixed NotImplemented exceptions for properties, missed those in the rewrite 2005-02-14 Miguel de Icaza * NumericUpDown.cs (Increment, ToString): Add. (DecimalPlaces): implement. Add attributes. * UpDownBase.cs: Add the designer attributes. 2005-02-13 Peter Bartok * Panel.cs: Removed border_style, now in Control * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow 2005-02-13 Peter Bartok * MouseButtons.cs: Added missing attributes * XplatUIStructs.cs: Added enumeration for title styles * LeftRightAlignment.cs: Added missing attributes * Hwnd.cs: Switched to use client_window as handle (slower, but makes it compatible with Graphics.FromHwnd() * SelectedGridItemChangedEventArgs.cs: Fixed property type * Keys.cs: Added missing attributes * SelectionRange.cs: Added missing attributes * SelectionRangeConverter.cs: Added * XplatUI.cs: - Introduced SetBorderStyle, SetMenu, GetMenuDC and ReleaseMenuDC methods - Renamed ReleaseWindow to UngrabWindow - Added proper startup notice to allow version identification * Form.cs: - Added missing attributes - Removed FormParent concept * Label.cs: Removed border_style field, now in Control * RadioButton.cs: Now properly selects RadioButton when focus is received * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour * Control.cs: - Added missing attributes - Added borderstyle handling - Removed FormParent concept support - Fixed calls to XplatUI to match changed APIs - Fixed bug that would case us to use disposed Graphics objects - Removed unneeded internal methods - PerformLayout(): Fixed to handle DockStyle.Fill properly - SelectNextControl(): Fixed to properly check common parents * TextBoxBase.cs: Removed border_style field (now in Control) * MessageBox.cs: - Patch by Robert Thompson (rmt@corporatism.org): Added icon support, fixed calculations for form size - Added support for localized strings and icons - Improved form size calculations, added border * ListView.cs: Removed border_style field (now in Control) * X11Structs.cs: Moved several structs from X11 driver here * X11Keyboard.cs: Changed debug message * Application.cs: Removed FormParent concept support * CommonDialog.cs: - Resetting end_modal flag - Removed FormParent concept support * NativeWindow.cs: Removed FormParent concept support * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing Client area and Non-Client whole window to allow support for WM_NC messages * XplatUIOSX.cs: Updated to match latest driver spec; added exception prevent using it until it supports Hwnd as per Geoff Norton's request * ToolBar.cs: Fixed drawing, was not doing proper drawing * PictureBox.cs: Removed border_style field, now in Control * XplatUIWin32.cs: Added new driver methods 2005-02-12 Peter Bartok * OpacityConverter.cs: Implemented * Hwnd.cs: Internal class to support drivers that need to emulate client area/non-client area window behaviour 2005-02-11 Peter Bartok * KeysConverter.cs: Implemented 2005-02-11 Jordi Mas i Hernandez * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString * LinkLabel: Added missing attributes * MainMenu.cs: fixes ToString * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu * ListBox.cs: fixes event position * TrackBar.cs: adds missing attributes and events 2005-02-10 Jordi Mas i Hernandez * MenuItem.cs: Use SystemInformation and bug fixes * MenuAPI.cs: Use SystemInformation and bug fixes 2005-02-09 Jackson Harper * X11Keyboard.cs: We ignore some keys, but still need to set/reset their keystate otherwise things like VK_MENU get stuck "on". 2005-02-09 Kazuki Oikawa * ListBox.cs: Fixes AddRange bug 2005-02-09 Jordi Mas i Hernandez * ProgressBar.cs - Add missing attributes - Add missing method * CheckedListBox.cs: Added missing attributes - Add missing attributes - Remove extra method * ComboBox.cs: Added missing attributes * VScrollBar.cs: Added missing attributes * ScrollBar.cs: Added missing attributes * ListBox.cs: Fixes signature, add missing consts * LinkArea.cs: Added missing attributes 2005-02-08 Peter Bartok * Menu.cs: Added missing attributes * MainMenu.cs: Added missing attributes * GroupBox.cs: Added missing attributes * Label.cs: Added missing attributes * CheckBox.cs: Implemented CheckBoxAccessibleObject class * ColorDialog.cs: - Added Instance and Options properties - Added missing attributes * Cursor.cs: Made Serializable * NotifyIcon: Added missing attributes * MenuItem.cs: Added missing attributes * TextBoxBase.cs: Implemented AppendText() and Select() methods * Panel.cs: Added Missing attributes * MonthCalendar.cs: Fixed CreateParams 2005-02-08 Jordi Mas i Hernandez * LinkLabel.cs: - Fixes signature - Fixes issues with links - Adds the class attributes 2005-02-08 Jordi Mas i Hernandez * ComboBox.cs: - Fixes button when no items available in dropdown - Fixes repainting problems - Adds the class attributes 2005-02-07 Geoff Norton * XplatUIOSX.cs: Detect the menu bar and title bar height from the current theme. Cache these on startup. 2005-02-07 Jackson Harper * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty the scrollbar buttons when they are depressed. 2005-02-07 Geoff Norton * XplatUIOSX.cs: Really fix working at resolutions not 1024x768. Get the display size from the main displayid. We currently dont support multiple display configurations. 2005-02-07 Geoff Norton * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar. 2005-02-07 Miguel de Icaza * UpDownBase.cs: Add ReadOnly and UpDownAlign properties. 2005-02-05 Jonathan Chambers * PropertyGrid.cs: Updated. Patch by Jonathan Chambers 2005-02-04 Jackson Harper * ThemeWin32Classic.cs: Respect the clipping rect when drawing. Only fill the intersection of clips and rects so there isn't a lot of large fills. * ScrollBar.cs: Pass the correct clipping rect to the theme engine. Remove some debug code. 2005-02-05 John BouAntoun * DateTimePicker.cs: - Fixed crash on DateTime.Parse, use Constructor instead 2005-02-04 Jordi Mas i Hernandez * MenuItem.cs: * MenuAPI.cs: - Owner draw support (MeasureItem and DrawItem) 2005-02-04 Jordi Mas i Hernandez * Menu.cs: - Implements FindMergePosition and MergeMenu functions (very poor documented) - Fixes MenuItems.Add range * MenuItem.cs: - MergeMenu and Clone and CloneMenu functions 2005-02-03 Jackson Harper * ScrollBar.cs: Make abstract * ScrollableControl.cs: Create H/V scrollbars now that scrollbar is abstract. 2005-02-03 Jackson Harper * ScrollBar.cs: First part of my scrollbar fixups. This removes all the unneeded refreshes and uses invalidates with properly computed rects. 2005-02-03 Peter Bartok * ComponentModel.cs: Added * IDataGridEditingService.cs: Added * Timer.cs: Added missing attributes * ToolTip.cs: Added missing attributes 2005-02-03 Jonathan Chambers * PropertyGridView.cs: Added. Patch by Jonathan Chambers 2005-02-03 Peter Bartok * ListBox.cs: Added missing attributes 2005-02-03 Jordi Mas i Hernandez * ListBox.cs: - Fixes font height after font change - Avoid generating unnecesary OnSelectedIndexChanged on clearing 2005-02-02 Peter Bartok * HandleData.cs: Introduced static methods to allow class to be more self-contained and track it's own HandleData objects * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of HandleData to use new static methods 2005-02-02 Jordi Mas i Hernandez * Combobox.cs: - Fixes default size and PreferredHeight - Missing events - ObjectCollection.Insert implementation * ListControl.cs - Fixes signature * ListBox.cs: - Several fixes - ObjectCollection.Insert implementation - No selection after clean - Small fixes 2005-01-31 John BouAntoun * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting 2005-02-01 Jordi Mas i Hernandez * Combobox.cs: - Caches ItemHeight calculation for OwnerDrawVariable - Handles dropdown properly - Fixes several minor bugs 2005-01-31 Jordi Mas i Hernandez * ListBox.cs: - Fixes 71946 and 71950 - Fixes changing Multicolumn on the fly - Fixes keyboard navigation on Multicolumn listboxes 2005-01-31 Geoff Norton * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a crash reporter log. 2005-01-31 Geoff Norton * XplatUIOSX.cs: Allow applications to actually exit. 2005-01-31 Geoff Norton * XplatUIOSX.cs: SetWindowStyle implemented. Reposition views in their parent at creation time rather than lazily later. Fixes a major regression we were experiencing. 2005-01-31 John BouAntoun * ThemeWin32Classic.cs: more date time picker painting fixes * DateTimePicker.cs: more monthcalendar drop down fixes * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down 2005-01-31 Jordi Mas i Hernandez * ScrollBar.cs: - When moving the thumb going outside the control should stop the moving - Adds the firing of missing events - Fixes no button show if Size is not specified - End / Home keys for keyboard navigation 2005-01-30 Peter Bartok * NotifyIcon.cs (CalculateIconRect): Removed debug output and added sanity check to prevent theoretical loop * XplatUIWin32.cs (SetVisible): Removed debug output * XplatUIX11.cs (SystrayChange): Added sanity check * ScrollableControl.cs (OnVisibleChanged): Now calls base method * Control.cs (OnVisibleChanged): Added workaround for ParentForm behaviour, valid until the X11 client window rewrite is done * TextBox.cs (ctor): Setting proper default foreground and background colors 2005-01-30 John BouAntoun * Theme: Added DrawDateTimePicker to interface * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete) * DateTimePicker.cs: Created (still needs keys and painting code) * DateTimePickerFormat.cs: added * MonthCalendar.cs: fixed CreateParams for popup window mode 2005-01-29 Peter Bartok * ControlPaint.cs: Fixed luminace value returned on achromatic colors, this should also the calculations for ligher/darker * Theme.cs: Fixed defaults for ScrollBar widths/heights 2005-01-29 Peter Bartok * ArrangeDirection.cs: Added * ArrangeStartingPositon.cs: Added * SystemInformation.cs: Implemented * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, Theme.cs: Added/implemented new static properties used by SystemInformation class * X11Strucs.cs: Added XSizeHints structure * MenuAPI.cs: - Fixed CreateParams to make sure the menu window is always visible - TrackPopupMenu: Added check to make sure we don't draw the menu offscreen 2005-01-29 Peter Bartok * HandleData.cs: Added method for altering invalid area * TextBoxBase.cs: Implemented TextLength 2005-01-28 Peter Bartok * XplatUIX11.cs: Improvement over last patch, not sending the WM_PAINT directly anymore, instead we scroll any pending exposed areas and let the system pick out the WM_PAINT later 2005-01-28 Peter Bartok * SWF.csproj: Deleted, no longer used. Instead, Managed.Windows.Forms/SWF.csproj should be used * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it directly, to avoid a potential race condition with the next scroll 2005-01-28 Peter Bartok * XplatUI.cs: Made class internal 2005-01-28 Jordi Mas i Hernandez * CheckedListBox.cs: - Draw focus - Fixed Drawing - Missing methods and events 2005-01-27 Peter Bartok * Application.cs (Run): Don't use form if we don't have one 2005-01-27 Peter Bartok * TextBoxBase.cs (get_Lines): Fixed index off by one error 2005-01-27 Peter Bartok * GridEntry.cs: Added; Patch by Jonathan S. Chambers * GridItem.cs: Added; Patch by Jonathan S. Chambers * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers * GridItemType.cs: Added; Patch by Jonathan S. Chambers * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers * PropertySort.cs: Added; Patch by Jonathan S. Chambers * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers 2005-01-27 Jordi Mas i Hernandez * Combobox.cs: - Draw focus on Simple Combobox - Fixes drawing issues - fixes 71834 2005-01-27 Peter Bartok * Form.cs: - Place window in default location, instead of hardcoded 0/0 - Send initial LocationChanged event * Control.cs: - UpdateBounds after creation to find out where the WM placed us - Make sure that if the ParentForm changes location the Form is notified * XplatUIX11.cs: XGetGeometry will not return the coords relative to the root, but to whatever the WM placed around us. Translate to root coordinates before returning toplevel coordinates * XplatUIWin32.cs: Removed debug output * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel flag to GetWindowPos, to allow translation of coordinates on X11 2005-01-27 Jordi Mas i Hernandez * ListBox.cs: connect LostFocus Event 2005-01-27 Peter Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Extended the Systray API * Form.cs: Removed debug output * Application.cs: Fixed focus assignment, always need to call XplatUI.Activate() since Form.Activate() has rules that may prevent activation * NotifyIcon.cs: Should be complete now * ToolTip.cs: Worked around possible timer bug 2005-01-27 Jackson Harper * TabControl.cs: - Only invalidate the effected tabs when the selected index changes. This reduces drawing and gets rid of some flicker. - Only refresh if the tabs need to be shifted, otherwise only invalidate the slider button. - On windows the tabs are not filled to right if the slider is visible. 2005-01-27 Jackson Harper * TabControl.cs: Only refresh on mouseup if we are showing the slider. Also only invalidate the button whose state has changed. 2005-01-26 Peter Bartok * XplatUI.cs, XplatUIDriver.cs: Added Systray methods * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange() and SystrayRemove() methods * XplatUIOSX.cs: Stubbed Systray methods * XplatUIX11.cs: - Implemented SystrayAdd(), SystrayChange() and SystrayRemove() methods - Fixed broken XChangeProperty calls (marshalling messed up things) * X11Structs.cs: Added enums and structs required for Size hinting * NotifyIcon.cs: Added & implemented 2005-01-26 Jackson Harper * TabControl.cs: Space vertically layed out tabs properly. 2005-01-26 Peter Bartok * Form.cs (CreateClientParams): Always set the location to 0,0 since we're a child window. * Control.cs (SetVisibleCore): Always explicitly setting the location of a toplevel window, apparently X11 doesn't like to move windows while they're not mapped. 2005-01-26 Jackson Harper * TabControl.cs: Implement FillToRight size mode with vertically rendered tabs. 2005-01-26 Jordi Mas i Hernandez * ControlPaint.cs, ThemeWin32Classic.cs - Fixes DrawFocusRectangle 2005-01-26 Jordi Mas i Hernandez * MenuAPI.cs: - MenuBar tracking only starts when item is first clicked - Fixes menu hidding for multiple subitems - Unselect item in MenuBar when item Executed - Fixes bug 71495 2005-01-25 Jordi Mas i Hernandez * ListControl.cs: - IsInputKey for ListBox * ListBox.cs: - Focus item - Shift and Control item selection - Implement SelectionMode.MultiExtended - Fixes RightToLeft * ComboBox.cs: - IsInputKey implemented - Do not generate OnTextChangedEdit on internal txt changes 2005-01-23 Peter Bartok * AccessibleObject.cs: Partially implemented Select() * MonthCalendar.cs: Added missing attributes and events * Form.cs: Fixed CreateParams behaviour, now controls derived from form can properly override CreateParams. * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Dropped RefreshWindow method, not needed if Control performs Invalidate & Update * NativeWindow (CreateHandle): Added special handling for Form and Form.FormParent classes to allow overriding of From.CreateParams * Control.cs: - ControlNativeWindow: Renamed 'control' variable to more intuitive name 'owner' - ControlNativeWindow: Added Owner property - Removed usage of Refresh() on property changes, changed into Invalidate(), we need to wait until the queue is processed for updates, direct calls might cause problems if not all vars for Paint are initialized - Added call to UpdateStyles() when creating the window, to set any styles that CreateWindow might have ignored. - Added support for Form CreateParent overrides to UpdateStyles() * MessageBox.cs: Removed no longer needed FormParent override stuff, CreateParams are now properly overridable * CommonDialog.cs: Removed no longer needed FormParent override stuff, CreateParams are now properly overridable 2005-01-23 Miguel de Icaza * UpDownBase.cs (ctor): Connect TextChanged in the entry to the OnTextBoxChanged. Capture LostFocus and OnTextBoxChanged. The later introduces a recursive invocation that I have not figured out yet. Reset the timer when not using (it was accumulating). (OnTextBoxChanged): Set UserEdit to true here to track whether the user has made changes that require validation. Reset changing to avoid loops. 2005-01-22 Miguel de Icaza * NumericUpDown.cs: Display value at startup. * UpDownBase.cs (Text): Do not call UpdateEditText here, only call ValidateEditText. * NumericUpDown.cs: Minimum, Maximum, Text, Value properties filled in. Added some basic parsing of text. Still missing the OnXXX method overrides, and figuring out the events that must be emitted. * UpDownBase.cs: Handle UserEdit on the Text property. 2005-01-22 Jordi Mas i Hernandez * ComboBox.cs: - Fixes IntegralHeight - ToString method 2005-01-21 Jackson Harper * TabControl.cs: Set the SelectedIndex property when SelectedTab is set so that the page visibility is updated and the tabs are sized correctly. 2005-01-21 Jackson Harper * TabControl.cs: Use cliping rectangle for blitting. Give the theme the clipping rect so we can do clipping while drawing. Remove some debug code. 2005-01-21 Jackson Harper * TabPage.cs: Add a new method so tab pages can force the tab control to recalculate the tab page sizes. * TabControl.cs: UpdateOwner needs to make the tab control recalc sizes. 2005-01-20 Jackson Harper * ThemeWin32Classic.cs: Clip text to the staus bar panels rects. 2005-01-20 Jackson Harper * TreeView.cs: Set the bounds for nodes properly. They were getting screwed up when checkboxes were not enabled, but images were. 2005-01-20 Jordi Mas i Hernandez * ListBox.cs: - Owner draw support - Fixes 2005-01-20 Jackson Harper * XplatUIStructs.cs: More misc keys * X11Keyboard.cs: Ignore some control keys. 2005-01-20 Jackson Harper * X11Structs.cs: Add the modmaps to the keymask struct and tabify. * X11Keyboard.cs: Set the AltGr mask when we get a key event. 2005-01-19 Peter Bartok * Control.cs: Un-selecting the control when it is loosing focus 2005-01-19 Jackson Harper * TreeView.cs: Hook up to the text controls leave event so we can end editing when the users clicks outside the text box. 2005-01-19 Jackson Harper * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to get set in the conversion array. 2005-01-19 Peter Bartok * Application.cs (ModalRun): Added a call to CreateControl to ensure focus is properly set * Button.cs: - Added missing attributes - removed styles, those are already set in the base class * ButtonBase.cs: - Added missing attributes - Added clip window styles * CheckBox.cs: Added missing attributes * CommonDialog.cs: - FormParentWindow.CreateParams: Added required clip styles * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now also filters modifier keys * MessageBox.cs: - Added assignment of Accept and Cancel button to enable Enter and Esc keys in MessageBox dialogs - FormParentWindow.CreateParams: Added required clip styles * RadioButton.cs: Added missing attributes * TextControl.cs: No longer draws selection if control does not have focus * TextBoxBase.cs: - Now draws simple rectangle around test area to make it obvious there's a control. This is a hack until we properly support borders - A few simple fixes to support selections better, now erases selected text when typing, and resets selection when using movement keys 2005-01-19 Miguel de Icaza * UpDownBase.cs: Added some new properties. * DomainUpDown.cs: Implement a lot to get my test working. 2005-01-19 Geoff Norton * XplatUIOSX.cs: Fix a minor bug to bring the close box back 2005-01-19 Geoff Norton * OSXStructs (WindowAttributes): Fixed csc complaints 2005-01-19 Geoff Norton * XplayUIOSX.cs: OSXStructs.cs: Initial refactor to move enums and consts into OSXStructs and use them in the driver for greater readability. 2005-01-19 Geoff Norton * XplatUIOSX.cs: Initial support for Standard Cursors. * OSXStructs.cs: Move our structs here; added ThemeCursor enum 2005-01-19 Jordi Mas i Hernandez * ComboBox.cs: ability to change style when the ctrl is already created, missing methods and events, bug fixes, signature fixes 2005-01-19 Peter Bartok * Cursors.cs (ctor): Added ctor to fix signature 2005-01-18 Peter Bartok * Button.cs: Implemented DoubleClick event * ButtonBase.cs: - Fixed keyboard handling to behave like MS, where the press of Spacebar is equivalent to a mousedown, and the key release is equivalent to mouseup. Now a spacebar push will give the same visual feedback like a mouse click. - Added missing attributes - Added ImeModeChanged event - Added support for generating DoubleClick event for derived classes * CheckBox.cs: - Implemented DoubleClick event - Added missing attributes * CommonDialog.cs: Added missing attribute * ContextMenu.cs: Added missing attributes * RadioButton.cs: - AutoChecked buttons do not allow to be unselected when clicked (otherwise we might end up with no selected buttons in a group) - Added missing attributes - Implemented DoubleClickEvent * ThreadExceptionDialog.cs: Enabled TextBox code 2005-01-18 Peter Bartok * Form.cs: Removed debug output * Button.cs: Added support for DoubleClick method 2005-01-18 Peter Bartok * Form.cs: - Added method to parent window that allows triggering size calculations when a menu is added/removed - set_Menu: Cleaned up mess from early days of Form and Control, now properly triggers a recalc when a menu is added/removed - Added case to select form itself as focused form if no child controls exist - Added PerformLayout call when showing dialog, to ensure properly placed controls * Control.cs: - Select(): Made internal so Form can access it - Focus(): Only call Xplat layer if required (avoids loop), and sets status * Application.cs (Run): Removed hack and calls PerformLayout instead to trigger calculation when Form becomes visible 2005-01-18 Jordi Mas i Hernandez * ComboBox.cs: fixes for ownerdraw 2005-01-18 Peter Bartok * TextControl.cs: - Sentinel is no longer static, each Document gets it's own, this avoids locking or alternatively overwrite problems when more than one text control is used simultaneously. - Switched to use Hilight and HilightText brushes for text selection * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks 2005-01-18 Peter Bartok * Control.cs: - Hooked up the following events: o ControlAdded o ControlRemoved o HandleDestroyed o ImeModeChanged o ParentChanged o TabStopChanged o Invalidated o SystemColorsChanged o ParentFontChanged o Move - Removed debug output - Added a call to the current theme's ResetDefaults when a color change is detected * Form.cs: Now setting the proper ImeMode * Theme.cs: Defined a method to force recreation of cached resources and rereading of system defaults (ResetDefaults()) * ThemeWin32Classic.cs: Added ResetDefaults() stub 2005-01-17 Peter Bartok * Control.cs: Added missing attributes 2005-01-17 Jackson Harper * TreeNode.cs: Implement editing. Add missing properties selected and visible. * TreeView.cs: Implement node editing. Also some fixes to use Invalidate (invalid area) instead of Refresh when selecting. 2005-01-17 Peter Bartok * Control.cs: - Implemented InvokeGotFocus() method - Implemented InvokeLostFocus() method - Implemented InvokePaint() method - Implemented InvokePaintBackground() method - Implemented InvokeClick() method - Implemented FindForm() method - Implemented RectangleToClient() method - Implemented ClientToRectangle() method - Implemented ResetBackColor() method - Implemented ResetCursor() method - Implemented ResetFont() method - Implemented ResteForeColor() method - Implemented ResetImeMode() method - Implemented ResetLeftToRight() method - Implemented ResetText() method - Implemented Scale() methods - Implemented ScaleCore() method - Implemented Update() method - Removed unused variables - Stubbed AccessibilityNotifyClients and ControlAccessibleObject.NotifyClients() methods (dunno what to do with those yet) - Now setting proper default for RightToLeft property - Fixed bug in SetClientSizeCore that would cause windows to get really big - Now sending Click/DoubleClick events - Now selecting controls when left mouse button is clicked on selectable control * AccessibleEvents.cs: Added * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method * XplatUIOSX.cs: Stubbed UpdateWindow() method * XplatUIWin32.cs: Implemented UpdateWindow() method * XplatUIX11.cs: Implemented UpdateWindow() method * Form.cs: Removed stray semicolon causing CS0162 warning * ThemeWin32Classic.cs: Fixed unused variable warnings * ScrollableControl.cs: Now calls base method for ScaleCore * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick style to avoid interference with internal click handler (which is different than standard Control click handling) * RadioButton.cs: - Now unchecks all sibling radio buttons when control is selected (Fixes #68756) - Removed internal tabstop variable, using the one inherited from Control 2005-01-17 Jackson Harper * NavigateEventArgs.cs: Fix base type. * LinkLabel.cs: Sig fix 2005-01-17 Jackson Harper * TreeView.cs: Only invalidate the effected nodes bounds when selecting nodes. 2005-01-13 Jordi Mas i Hernandez * XplatUIWin32.cs: fixes Win32 marshaling * XplatUIX11.cs: fixes method signature 2005-01-17 Peter Bartok * XplatUIX11.cs: Clean up resources when we no longer need them 2005-01-17 Peter Bartok * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(), OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo() and DestroyCursor() methods. * Cursor.cs: Partially implemented, now supports standard cursors; still contains some debug code * Cursors.cs: Implemented class * Control.cs: - WndProc(): Added handling of WM_SETCURSOR message, setting the appropriate cursor - Implemented Cursor property - Replaced break; with return; more straightforwar and possibly faster - Now properly setting the result for WM_HELP * X11Structs.cs: Added CursorFontShape enum * XplatUIStructs.cs: - Added StdCursor enum (to support DefineStdCursor() method) - Added HitTest enum (to support sending WM_SETCURSOR message) * XplatUIX11.cs: - Now sends the WM_SETCURSOR message - Implemented new cursor methods * XplatUIOSX.cs: Stubbed new cursor methods * XplatUIWin32.cs: - Implemented new cursor methods - Added GetSystemMetrics function and associated enumeration 2005-01-15 Peter Bartok * Control.cs: - WndProc(): Now handles EnableNotifyMessage - SelectNextControl(): Fixed bug where if no child or sibling controls exist we looped endlessly 2005-01-14 Jackson Harper * TreeView.cs: Recalculate the tab pages when a new one is added so that the proper bounding rects are created. 2005-01-14 Jackson Harper * TreeView.cs: Draw a gray box instead of a grip in the lower right hand corner when there are both horizontal and vertical scroll bars. 2005-01-14 Jackson Harper * Control.cs: When erasing backgrounds use FromHwnd instead of FromHdc when there is a NULL wparam. This occurs on the X driver. * XplatUIX11.cs: Set the wparam to NULL. 2005-01-13 Jackson Harper * PictureBox.cs: Implement missing methods (except ToString, need to test that on windows) and events. When visibility is changed we need to redraw the image because the buffers are killed. When size is changed refresh if the sizemode needs it. 2005-01-13 Peter Bartok * Control.cs (SelectNextControl): Was using wrong method to select a control 2005-01-13 Jordi Mas i Hernandez * ComboBox.cs: fixes dropstyle 2005-01-13 Peter Bartok * Form.cs: - Implemented Select() override - Now handles WM_SETFOCUS/WM_KILLFOCUS messages - Now sets keyboard focus on startup * Control.cs (SelectNextControl): Now properly handles directed=true * TextBoxBase.cs: - WndProc: Now passes tab key on to base if AcceptTabChar=false - Added (really bad) focus rectangle (mostly for testing) * TextBox.cs: Added code to handle getting/loosing focus and invalidating to enforce redraw on focus changes * ContainerControl.cs: - Fixed detection of Shift-Tab key presses - Fixed traversal with arrow keys * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're gonna keep this or if it's complete yet 2005-01-13 Jordi Mas i Hernandez * ComboBox.cs: missing properties, fixes 2005-01-13 Peter Bartok * Panel.cs (ctor): Setting Selectable window style to off * Splitter.cs (ctor): Setting Selectable window style to off * GroupBox.cs (ctor): Setting Selectable window style to off * Label.cs (ctor): Setting Selectable window style to off 2005-01-12 Miguel de Icaza * UpDownBase.cs (InitTimer): If the timer has been already created, enable it. Use a TextBox instead of a Label. 2005-01-12 Jackson Harper * TreeView.cs: Refresh the tree after sorting the nodes. Always draw the connecting node lines (when ShowLines is true). * TreeNode.cs: The nodes index can now be updated. This is used when a node collection is sorted. * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on insert or an existing unsorted node collection can be sorted. 2005-01-12 Peter Bartok * ContainerControl.cs: Implemented ProcessDialogKeys() 2005-01-12 Peter Bartok * Control.cs: - Implemented SelectNextControl() method - Several focus related bug fixes - Fixed Docking calculations to match MS documentation and behaviour 2005-01-12 Jordi Mas i Hernandez * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and bug fixes 2005-01-12 Peter Bartok * Control.cs: - Fixed broken Contains() method - Implemented GetNextControl() method. Finally. This is the pre- requisite for focus handling. 2005-01-12 Peter Bartok * OSXStrucs.cs: Added 2005-01-12 Peter Bartok * XplatUIWin32.cs: - Removed PeekMessageFlags - Implemented SetWindowStyle() method * XplatUIStructs.cs: Added PeekMessageFlags * X11Structs: Added missing border_width field to XWindowChanges struct * XplatUIX11.cs: - PeekMessage: Now throws exception if flags which are not yet supported are passed - Implemented SetWindowStyle() method - Fixed SetZOrder to handle AfterHwnd properly * XplatUI.cs: Added SetWindowStyle() method * XplatUIDriver.cs: Added SetWindowStyle() abstract * Control.cs: - Implemented UpdateStyles() method - Implemented UpdateZOrder() method * XplatUIOSX.cs: Added SetWindowStyle() stub 2005-01-12 Geoff Norton * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3 button mouse). 2005-01-11 Jackson Harper * TreeView.cs: Still need to draw lines to siblings even if out of the current node is out of the clip. 2005-01-11 Jackson Harper * TreeView.cs: When setting the hbar/vbar/grip position use SetBounds so that perform layout is only called once. Also suspend and resume layout so layout is only done once for all controls. - Removed some debug fluff * SizeGrip.cs: Call base implmentation in overriding methods. - When visibility is changed the drawing buffers are killed so we need to redraw. 2005-01-11 Jackson Harper * TreeView.cs: Calculate the open node count while drawing. This saves us an entire tree traversal for every paint operation. Use a member var for the open node count so less vars are passed around. 2005-01-11 John BouAntoun * MonthCalendar.cs: - fixed selection to use mousemove, not mouse polling on timer * ThemeWin32Classic.cs - removed redundant unused variable "no_more_content" 2005-01-11 Peter Bartok * XplatUIX11.cs (DoEvents): Needs to return when no more events are pending, so it now calls PeekMessage instead of GetMessage; implemented a incomplete version of PeekMessage 2005-01-11 Peter Bartok * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid I18n issues * TextBoxBase.cs: Added sending of TextChanged event 2005-01-10 Jackson Harper * TreeView.cs: Try not to draw outside the clipping rectangle on each node element. 2005-01-10 Jordi Mas i Hernandez * ComboBox.cs: keyboard navigation, item navigation, bug fixes 2005-01-10 Jackson Harper * TreeView.cs: - Implement fast scrolling. Now only the newly exposed nodes are drawn and the old image is moved using the XplatUI::ScrollWindow method. - Factor in height of nodes when calculating whether or not the node is in the clipping rect. 2005-01-10 Jackson Harper * TreeNodeCollection.cs: Refresh the tree when a new node is added. 2005-01-10 Peter Bartok * Application.cs: Added temporary hack to resolve all our resize required issues on startup. This will get fixed properly at some point in the future 2005-01-10 Jackson Harper * SizeGrip.cs: New internal class that is used as a sizing grip control...hence the name. 2005-01-10 Peter Bartok * Control.cs: Implemented proper TabIndex handling, now assigning a tabindex when a control is added to a container * GroupBox.cs (ctor): Now sets the Container style bit, required for Control.GetNextControl() 2005-01-09 Jackson Harper * TextBoxBase.cs: Clear window when scrolling (fixes build). 2005-01-09 Peter Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Added ability to control ScrollWindow expose and an overload for ScrollWindow to allow only scrolling a rectangle 2005-01-09 Peter Bartok * Form.cs: - Implemented SetDesktopBounds method - Implemented SetDesktopLocation method 2005-01-08 Jackson Harper * TreeView.cs: Only set the vbar's Maximum and LargeChange when the node count has changed, this removes to VScroll::Refresh calls when drawing. 2005-01-08 Geoff Norton * XplatUIOSX.cs: Fix GetWindowState & SetWindowState 2005-01-07 Jackson Harper * TreeNode.cs: Just update the single node when it is checked. Don't refresh after toggling, the Expand/Collapse already handles this. * TreeView.cs: Respect clipping a little more when drawing. Try not to redraw things that don't need to be redrawn. Just hide the scrollbars when they are no longer needed instead of removing them, so they don't have to be created again and again. 2005-01-07 Geoff Norton * XplatUIOSX.cs (SetCaretPos): We need to translate the view coordinates to window space to place the caret properly, FIXED. Implement GetWindowState & SetWindowState 2005-01-06 Peter Bartok * Form.cs: - Implemented ClientSize property - Implemented DesktopBounds property - Implemented DesktopLocation property - Implemented IsRestrictedWindow property - Implemented Size property - Implemented TopLevel property - Implemented FormWindowState property * Control.cs: - Implemented GetTopLevel() method - Implemented SetTopLevel() method * X11Structs.cs (Atom): - Added AnyPropertyType definition - Added MapState definiton and updated XWindowAttribute struct * XplatUI.cs: Added GetWindowState() and SetWindowState() methods * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods * XplatUIWin32.cs: - Implemented GetWindowState() and SetWindowState() methods - Fixed Win32GetWindowLong return type * XplatUIX11.cs: - Introduced central function for sending NET_WM messages - Implemented GetWindowState() and SetWindowState() methods * TextBoxBase.cs (set_Lines): - Now uses Foreground color for text added via Text property (Duh!) - Added code to remember programmatically requested size (fixes behaviour when Multiline is set after Size) - Added AutoSize logic 2005-01-06 Jackson Harper * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled. 2005-01-06 Jackson Harper * ListBox.cs: Don't allow the horizontal scrollbars maximum to be set to less then 0. 2005-01-06 Jackson Harper * ScrollableControl.cs: Lazy init the scrollbars. 2005-01-06 Jackson Harper * Theme.cs: Speed up getting pens and solid brushes, by using their ARGB as a hash instead of tostring and not calling Contains. 2005-01-06 Peter Bartok * Form.cs: - Implemented OnActivated and OnDeactivate event trigger - Implemented Activate() method - Fixed ShowDialog() to activate the form that was active before the dialog was shown * XplatUIX11.cs: - Added global active_window var that tracks the currently active X11 window - Now always grabs Property changes from the root window to always catch changes on the active window property - Added code to PropertyNotify handler to send Active/Inactive messages when state changes. This puts X11 and Win32 en par on WM_ACTIVATE notifications (except for double notifications when the user clicks away from our modal window to another one of our windows) 2005-01-05 Jackson Harper * ImageList.cs: Implment ctor 2005-01-05 Geoff Norton * XplatUIOSX.cs: Implement Activate/SetTopmost 2005-01-05 Geoff Norton * XplatUIOSX.cs: Implement SetZOrder, minor cleanup 2005-01-05 Geoff Norton * XplatUIOSX.cs: Implement GetActive/SetFocus. 2005-01-05 Peter Bartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs, XplatUIOSX.cs: Added GetActive method to return the currently active window for the application (or null, if none is active) * Form.cs: - Implemented ActiveForm - Commented out owner assignment for modal dialogs (causes problems on Win32, since the owner will be disabled) - Reworked some Active/Focus handling (still incomplete) * CommonDialog.cs: Commented out owner assignment for modal dialogs (causes problems on Win32, since the owner will be disabled) * IWin32Window: Added ComVisible attribute 2005-01-05 Peter Bartok * ToolTip.cs (WndProc): Enable setting focus now that we have the required XplatUI functions. 2005-01-05 Peter Bartok * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs, XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required to implement focus and activation handling; still incomplete and with debug output 2005-01-04 Peter Bartok * TextBoxBase.cs: Changed access level for Document property to match switch to internal for TextControl 2005-01-04 Peter Bartok * AccessibleObject: Added ComVisible attribute 2005-01-04 Jackson Harper * X11Keyboard.cs: Remove unneeded var. 2005-01-04 Jackson Harper * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events but PAINT. * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown ClientMessage. This makes apps exit cleanly (more often). 2005-01-04 Jackson Harper * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for handling focus, return correct colors and fonts, * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to handle selection, horizontal scrolling, and mouse interaction. 2005-01-04 Peter Bartok * ICommandExecutor.cs: Added * IDataGridColumnStyleEditingNotificationService.cs: Added * IFeatureSupport.cs: Added * IFileReaderService.cs: Added * IDataObject.cs: Added ComVisible attribute * AmbientProperties.cs: Added * BaseCollection.cs: Added missing attributes * ListBindingConverter.cs: Added (stubbed, required for certain attributes) * BaseCollection.cs: Added missing attributes * Binding.cs: Added TypeConverter attribute * BindingContext.cs: Added DefaultEvent attribute * BindingsCollection.cs: Added DefaultEvent attribute * Button.cs: Added DefaultValue attribute * DragEventArgs.cs: Added ComVisible attribute * GiveFeedbackEventArgs.cs: Added ComVisible attribute * KeyEventArgs.cs: Added ComVisible attribute * KeyPressEventArgs.cs: Added ComVisible attribute * MouseEventArgs.cs: Added ComVisible attribute * NavigateEventArgs.cs: Added * NavigateEventHandler.cs: Added * FeatureSupport.cs: Added * OSFeature.cs: Added * Theme.cs: Added abstract Version property to support OSFeature * ThemeWin32Classic.cs: Added Version property to support OSFeature.Themes * ProgressBar.cs: Removed OnPaintBackground override, not required since the proper styles to avoid background drawing are set, also doesn't match MS signature * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute * QueryContinueDragEventArgs.cs: Added ComVisible attribute * ScrollEventArgs.cs: Added ComVisible attribute * SplitterEventArgs.cs: Added ComVisible attribute * AccessibleSelection.cs: Added Flags attribute * Appearance.cs: Added ComVisible attribute * Border3DSide.cs: Added ComVisible attribute * Border3DStyle.cs: Added ComVisible attribute * BorderStyle.cs: Added ComVisible attribute * DragAction.cs: Added ComVisible attribute * ErrorBlinkStyle.cs: Added * ScrollEventType.cs: Added ComVisible attribute * AnchorStyles.cs: Added Editor attribute * DockStyle.cs: Added Editor attribute * HorizontalAlignment.cs: Added ComVisible attribute * HelpEventArgs.cs: Added ComVisible attribute * PaintEventArgs.cs: Added IDisposable 2005-01-04 Peter Bartok * TextControl.cs: Switched Line, LineTag and Document classes to internal 2005-01-04 Jordi Mas i Hernandez * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs: Simple mode, fixes, IntegralHeight, etc. 2005-01-04 Peter Bartok * TextBoxBase.cs: Using proper font variable now 2005-01-04 Peter Bartok * Form.cs (ShowDialog): Set parent to owner, if provided * GroupBox.cs: Removed unused vars * TextControl.cs: - Added GetHashCode() for Document and LineTag classes - Removed unused variables - Added CharIndexToLineTag() and LineTagToCharIndex() methods to allow translation between continuous char position and line/pos * CheckBox.cs: Removed vars that are provided by base class * RadioButton.cs: Removed vars that are provided by base class, added new keyword where required * LinkLabel.cs: Added new keyword where required * Control.cs (WndProc): Removed unused variable * TextBoxBase.cs: - Finished SelectionLength property - Implemented SelectionStart property - Implemented Text property - Removed unused vars * MessageBox.cs: Added new keyword where required * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed WndProc signature * MenuAPI.cs: Added new keyword where required * ButtonBase.cs: Removed vars that are provided by base class, added new keyword where required * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor argument to double, to allow compiling with csc 2.0 (Atsushi ran into this) * Application.cs (Run): Now triggers the ThreadExit event * CommonDialog.cs: Added new keyword where required; now properly sets parent (owner) for dialog * XplatUIX11.cs: Commented out unused vars * StatusBar.cs: Fixed signature for Text property * TabPage.cs: Undid Jordi's removal of unused var, now using the var 2005-01-04 Jordi Mas i Hernandez * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs, TrackBar.cs, MonthCalendar.cs: remove unused vars 2005-01-03 Jackson Harper * ThemeWin32Classic.cs: * X11Keyboard.cs: Remove unused vars. 2005-01-03 Peter Bartok * TextBox.cs: - set_Text: Tied into TextControl - set_TextAlignment: Tied into TextControl * TextControl.cs: - Added alignment properties and implemented alignment handling and drawing (still has a bug, not generating proper expose events) - Added new Line() constructor to allow passing the line alignment - Fixed selection setting, properly handling end * TreeView.cs: - Collapse and uncheck all nodes when CheckBoxes is disabled. - Checkboxes are always aligned to the bottom of the node, regardless of item height. - Use the node bounds to draw the text so we can center it when the item height is greater then the font height. - Node::Bounds are only the text part of the node. * TreeNode.cs: New method to combine collapsing and unchecking all nodes recursively. 2005-01-02 Jackson Harper * TreeView.cs: Draw checkmarks, handle detecting check mark clicks * TreeNode.cs: Add a bounding box for the checkbox, refresh the tree when a check is changed. TODO: Only refresh the checked node. 2004-12-30 Jackson Harper * TreeView.cs: Draw checkbox boxes when checkboxes are enabled. * TreeNode.cs: When collapsing make sure to never collapse the root node. 2004-12-29 Jackson Harper * TreeView.cs: Align lines to the bottom of plus minus boxes properly. 2004-12-28 Zoltan Varga * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues. 2004-12-28 Peter Bartok * MessageBox.cs (get_CreateParams): Don't use owner var if it's not yet assigned 2004-12-28 Peter Bartok * Control.cs (WndProc): Added WM_HELP handler, now generates HelpRequested event * Form.cs: Added HelpButton property and required support code * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling 2004-12-28 Peter Bartok * CommonDialog.cs: - Made DialogForm.owner variable internal - Added check to ensure owner form is set before setting owner properties in CreateParams 2004-12-28 Geoff Norton * XplatUIOSX.cs: Implement mouse hovering. Fix QDPoint struct to avoid swizzling. Implement ClientToScreen and ScreenToClient. Implement GetCursorPos. Fix major visibility issues. Rework the windowing system to support borderless/titleless windows (implements menus). Fix GetWindowPos. Implement initial background color support for views. 2004-12-28 Peter Bartok * Form.cs (get_CreateParams): Make sure we have an owner before using the owner variable. Implement proper default if no owner exists 2004-12-28 Peter Bartok * In preparation for making Managed.Windows.Forms the default build target for System.Windows.Forms, the following stubbed files were added. Dialogs are currently being implemented by contributors and are only short-term place holders. * ColorDialog.cs: Initial check-in (minmal stub) * DataGrid.cs: Initial check-in (minimal stub) * DataGridLineStyle.cs: Initial check-in (minimal stub) * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub) * DataGridTableStyle.cs: Initial check-in (minimal stub) * FontDialog.cs: Initial check-in (minimal stub) * FileDialog.cs: Initial check-in (minimal stub) * GridColumnStylesCollection.cs: Initial check-in (minimal stub) * GridTableStylesCollection.cs: Initial check-in (minimal stub) * OpenFileDialog: Initial check-in (minimal stub) * IComponentEditorPageSite.cs: Initial check-in * Splitter.cs: Initial check-in (for Jackson) * SplitterEventArgs.cs: Initial check-in (for Jackson) * SplitterEventHandler.cs: Initial check-in (for Jackson) * TextBox.cs: Initial check-in; still needs some wiring to TextControl backend * Form.cs: Implemented ControlBox property * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox * TextControl.cs: Added selection functionality; added todo header * TextBoxBase.cs: - Implemented Lines property - Implemented TextHeight property - Implemented SelectedText property - Implemented SelectionLength property - Implemented SelectAll method - Implemented ToString method - Removed and cleaned up some debug code - Implemented (still buggy) mouse text selection 2004-12-27 Jordi Mas i Hernandez * ComboBox.cs: Complete DropDownList implementation, fixes. 2004-12-26 Jordi Mas i Hernandez * ThemeWin32Classic, Theme.cs: ComboBox drawing methods * ComboBoxStyle.cs: ComboBoxStyle enum * ComboBox.cs: Initial work on ComboBox control 2004-12-21 Peter Bartok * Control.cs (ctor, CreateParams): Moved setting of is_visible forward so that anything that creates a window gets the default, also no longer uses Visible property in CreateParams to avoid walking up the parent chain and possibly get the wrong visible status. Fixed IsVisible to no longer walk up to the parent. 2004-12-21 Peter Bartok * Form.cs (ShowDialog): Unset modality for the proper window 2004-12-20 Peter Bartok * CommonDialog.cs: Initial check-in 2004-12-20 Peter Bartok * Control.cs (Visible): Now uses the parent window instead of the client area window for the property * Form.cs - ShowDialog(): Now uses the proper window for modality - The default visibility state for the form parent is now false. This will prevent the user from seeing all the changes to the form and its controls before the application hits Application.Run() - Removed some stale commented out code * NativeWindow.cs: - Added FindWindow() method to have a method to check for existence of a window handle - Added ability to override default exception handling (for example when debugging with VS.Net; to do this the ExternalExceptionHandler define must be set - Removed some useless debug output * XplatUIX11.cs: - Removed r37929 (SetModal patch from Ashwin Bharambe), was not working as expected - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW property to allow switching back to the modal window if focus is given to another one of our windows (Application Modal) - Now only sets override_redirect if we create a window without WS_CAPTION - Moved EventMask selection before mapping of newly created window so we can catch the map event as well - Implemented Activate() method via the _WM_ACTIVE_WINDOW property - Added various Atom related DllImports - Implemented Exit() method - .ctor() : No longer shows window if WS_VISIBLE is not defined in the CreateParams * MessageBox.cs: Now properly deals with the FormParent window by providing an override the FormParent CreateParams property to set as POPUP instead of OVERLAPPED window. 2004-12-19 Geoff Norton * XplatUIOSX.cs: Implement DestroyWindow. Implement ScrollWindow Minor code cleanup. 2004-12-19 Geoff Norton * XplatUIOSX.cs (SetModal): Implement this method on OSX. 2004-12-18 Peter Bartok * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe, implementing SetModal() method 2004-12-18 Peter Bartok * X11Structs.cs (XGCValues): Fixed type of function element * XplatUI.cs: Added ScrollWindow() method * XplatUIDriver.cs: Added ScrollWindow() abstract * XplatUIWin32.cs: Implemented ScrollWindow() method * XplatUIX11.cs: Implemented ScrollWindow() method * XplatUIOSX.cs: Stubbed out ScrollWindow() method 2004-12-17 Geoff Norton * XplatUIOSX.cs: Fix cursor to use an Invert instead of drawing it Some more keyboard support (INCOMPLETE) 2004-12-17 Peter Bartok * TextControl.cs: - Added color attribute to line tags. - Added color argument to all functions dealing with tags - Added color argument support to various functions - Fixed miss-calculation of baseline/shift in certain circumstances * TextBoxBase.cs: Added new color option to test code 2004-12-17 Jackson Harper * TreeNode.cs: * MonthCalendar.cs: Signature fixes 2004-12-17 Geoff Norton * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a keyboard event moved it. Create a new graphics context for each paint resolves this 2004-12-17 Geoff Norton * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers, Make caret exist and go blink blink. Initial keyboard support. Fix exception handler, Add Invalidate support. Change way RefreshWindow works. 2004-12-17 Jackson Harper * XplatUIStructs.cs: Updated set of virtual keycodes. * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL 2004-12-17 Jackson Harper * XplatUIX11.cs: Prune old keyboard code. 2004-12-17 Jackson Harper * XplatUIX11.cs: When generating mouse wparams get the modifier keys from the ModifierKeys property. 2004-12-17 Jackson Harper * X11Keyboard.cs: Send up/down input when generating messages. Remove some unused vars. 2004-12-17 Jackson Harper * TabControl.cs: * TreeView.cs: get rid of warnings. 2004-12-17 Jackson Harper * XplatUIStructs.cs: Fix a couple wrong virtual keycodes. 2004-12-17 Jordi Mas i Hernandez * ListBox.cs: bug fixes, changes for CheckedListBox.cs CheckedListBox.cs: Implementation 2004-12-17 Peter Bartok * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs 2004-12-16 Peter Bartok * TextControl.cs: - InsertCharAtCaret(): Fixed start pos fixup - CaretLine_get: No longer derives the line from the tag, the tag could be stale if lines in the document have been added or deleted - RebalanceAfterDelete(): Fixed bug in balancing code - RebalanceAfterAdd(): Fixed really stupid bug in balancing code - Line.Streamline(): Now can also elminate leading empty tags - DumpTree(): Added a few more tests and prevented exception on uninitialized data - Added Debug section for Combining lines - Delete(): Now copies all remaining properties of a line * TextBoxBase.cs: - Left mousebutton now sets the caret (and middle button still acts as formatting tester, which must go away soon) - Added Debug section for Deleting/Combining lines - Fixed calculations for UpdateView after Combining lines 2004-12-16 Peter Bartok * TextControl.cs: Now properly aligns text on a baseline, using the new XplatUI.GetFontMetrics() method. Simplified several calculations * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not defined 2004-12-16 Peter Bartok * XplatUI.cs: Added GetFontMetrics() method * XplatUIDriver.cs: Added GetFontMetrics() abstract * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls into libgdiplus, our private GetFontMetrics function * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11 * XplatUIWin32.cs: Implemented GetFontMetrics() method 2004-12-16 Jackson Harper * XplatUIStruct.cs: Add enum for dead keys * X11Keyboard.cs: Map and unmap dead keys. 2004-12-16 Jackson Harper * X11Keyboard.cs: Detect and use the num lock mask. 2004-12-16 Peter Bartok * Control.cs (CreateGraphics): Added check to make sure the handle of the window exists before calling Graphics.FromHwnd() 2004-12-16 Peter Bartok * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It contains a lot of code that's not supposed to be there for the real thing, but required for developing/testing the textbox backend. 2004-12-16 Peter Bartok * TextControl.cs: - Fixed Streamline method - Added FindTag method to Line - Added DumpTree method for debugging - Added DecrementLines() method for deleting lines - Fixed UpdateView to update the cursor to end-of-line on single-line updates - Added PositionCaret() method - Fixed MoveCaret(LineDown) to move into the last line, too - Added InsertChar overload - Fixed InsertChar tag offset calculations - Added DeleteChar() method - Added Combine() method for folding lines - Fixed Delete() method, no longer allocates wasted Line object and now copies all properties when swapping nodes - Delete() method now updates document line counter 2004-12-15 Jackson Harper * XplatUIX11.cs: Get the modifier keys from the keyboard driver * X11Keyboard.cs: Expose the currently selected modifier keys through a property. 2004-12-15 Peter Bartok * TextControl.cs: Initial check-in. Still incomplete 2004-12-15 Jackson Harper * TreeNode.cs: * TreeView.cs: Fix build on csc (second time today ;-)) 2004-12-15 Jackson Harper * TreeView.cs: Store the treenodes plus/minus box bounds when it is calculated and use this for click testing. * TreeNode.cs: Add functionality to store the nodes plus minus box bounds. 2004-12-15 Jackson Harper * TreeView.cs: Pass the nodes image index to the image list when drawing that image. 2004-12-15 Jackson Harper * X11Keyboard.cs: Set messages hwnd. * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on post_message calls. 2004-12-15 Jackson Harper * X11Keyboard.cs: Fix to compile with csc. 2004-12-15 Jackson Harper * X11Structs.cs: Add key mask values * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions * X11Keyboard.cs: New file - Extrapolates and interpolates key down/up foo into WM_CHAR foo * KeyboardLayouts.cs: Common keyboard layouts * XplatUIX11.cs: Add the keyboard driver. Add functionality to post messages into the main queue. 2004-12-13 Jordi Mas i Hernandez * Button.cs: implement ProcessMnemonic * ThemeWin32Classic.cs: use ResPool (caching) instead of creating brushes everytime * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc) * ButtonBase.cs: Show HotkeyPrefix (not the &) 2004-12-12 John BouAntoun * MonthCalendar.cs: Implemented click-hold for next/previous month and date selection 2004-12-11 Peter Bartok * X11Structs.cs: - Added XKeyboardState (moved from XplatUIX11.cs) - Added XCreateGC related enums and structures - Added GXFunction for XSetFunction * XplatUIStructs.cs: Added missing WS_EX_xxx definitions * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and CaretVisible() calls * ToolTip.cs: Added code to prevent stealing focus from app windows * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret, DestroyCaret, SetCaretPos and CaretVisible) * XplatUIX11.cs: - Added implementation for caret functions - Moved hover variables into a struct, to make it a bit easier on the eyes and to debug - Removed XKeyboardState (moved to XplatUIX11.cs) - Moved Keyboard properties into the properties region * Control.cs (get_Region): Control.CreateGraphics is the appropriate call to get a graphics context for our control * XplatUIOSX.cs: Added empty overrides for the new caret functions * TreeView.cs: Fixed bug. No matter what color was set it would always return SystemColors.Window * XplatUIWin32.cs: Implemented caret overrides 2004-12-10 Jordi Mas i Hernandez * ListBox.cs: fire events, implement missing methods and properties, sorting. 2004-12-10 John BouAntoun * MonthCalendar.cs: invalidation bug fixing * ThemeWin32Classic.cs: paint fixing 2004-12-09 Geoff Norton * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we prepare the CGContextRef there now. 2004-12-09 John BouAntoun * MonthCalendar.cs: - optimisationL only invalidate areas that have changed * ThemeWin32Classic.cs: - only paint parts that intersect with clip_area 2004-12-09 Peter Bartok * Application.cs: Undid changes from r37004 which cause problems on X11 2004-12-09 Ravindra * ToolBar.cs: Added support for displaying ContextMenu attached to a button on ToolBar. * ToolBarButton.cs: Uncomment/fixed the DropDownMenu property. 2004-12-09 Jordi Mas i Hernandez * Label.cs: autosize works in text change and removes unnecessary invalidate 2004-12-09 Jordi Mas i Hernandez * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs: remove warnings 2004-12-08 Geoff Norton * XplatUIOSX.cs: Added mouse move/click/grab support Remove some debugging WriteLines not needed anymore. Add window resizing/positioning. Fix visibility on reparenting. 2004-12-08 Peter Bartok * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net 2004-12-07 Geoff Norton * XplatUIOSX.cs: Initial checkin * XplatUI.cs: Use the Quartz driver if the environment is set to use it 2004-12-03 Ravindra * ListView.cs: Added some keybindings and fixed scrolling. ScrollBars listen to ValueChanged event instead of Scroll Event. This would let us take care of all changes being done in the scrollbars' values programmatically or manually. * ListView.cs (CanMultiselect): Added a check for shift key. * ListView.cs (EnsureVisible): Fixed. Do proper scrolling. * ListViewItem.cs (Clone): Fixed. We need to make a copy of ListViewSubItemCollection as well. 2004-12-06 Peter Bartok * Control.cs (Parent): Added check and exception to prevent circular parenting 2004-12-03 Jordi Mas i Hernandez * ListBox.cs: implemented clipping, selection single and multiple, bug fixing 2004-12-03 Ravindra * ListView.cs (ListView_KeyDown): * ListView.cs (ListView_KeyUp): Fixed multiple selection handling when CTRL key is pressed. * ListViewItem.cs (Selected): Fixed setting the property. 2004-12-03 Marek Safar * Application.cs (OnThreadException): Use ThreadExceptionDialog. * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox, MinimizeBox, ShowInTaskbar, TopMost properties. * ThreadExceptionDialog.cs: Implemented (disabled TextBox until will be implemented). 2004-12-03 Marek Safar * OwnerDrawPropertyBag.cs: New internal parameterless ctor. * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple tests. * TreeNodeCollection.cs: Add exception throwing for Add,AddRange. * TreeView.cs: BackColor is Colors.Window. 2004-12-01 Jackson Harper * TreeView.cs: When resizing the tree if the user is making it smaller we don't get expose events, so we need to handle adding the horizontal scrollbar in the size changed handler as well as the expose handler. 2004-12-02 Jordi Mas i Hernandez * DrawItemState.cs: fixes wrong enum values 2004-12-01 Jackson Harper * TreeView.cs: Resize the hbar as well as the vbar on resize. 2004-12-01 Jackson Harper * NodeLabelEditEventArgs.cs: * NodeLabelEditEventHandler.cs: * OpenTreeNodeEnumerator.cs: * TreeNode.cs: * TreeNodeCollection.cs: * TreeView.cs: * TreeViewAction.cs: * TreeViewCancelEventArgs.cs: * TreeViewCancelEventHandler.cs: * TreeViewEventArgs.cs: * TreeViewEventHandler.cs: Initial implementation. 2004-12-01 Ravindra * ListView.cs (CalculateListView): Fixed scrolling related calculations. Also, removed some debug statements from other places. * ListViewItem.cs: Changed access to 'selected' instance variable from private to internal. * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing. 2004-12-01 Jordi Mas i Hernandez * ThemeWin32Classic.cs: remove cache of brush and pens for specific controls and use the global system, fixes scrollbutton bugs (for small sizes, disabled, etc) * ScrollBar.cs: does not show the thumb for very small controls (as MS) and allow smaller buttons that the regular size 2004-12-01 Miguel de Icaza * UpDownBase.cs: Add abstract methods for the interface. Add new virtual methods (need to be hooked up to TextEntry when it exists). Add override methods for most features. Computes the size, forces the height of the text entry. * NumericUpDown.cs: Put here the current testing code. * Set eol-style property on all files that do not have mixed line endings, to minimize the future problems. There are still a few files with mixed endings, and someone should choose whether they want to move it or not. 2004-11-30 Jordi Mas i Hernandez * MonthCalendar.cs, ListView.cs: use Theme colours instead of System.Colors 2004-11-30 Ravindra * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item drawing and replaced use of SystemColors by theme colors. * ListView.cs (ListView_Paint): Fixed painting done during scrolling. * ListView.cs (ListViewItemCollection.Add): Throw exception when same ListViewItem is being added more than once. 2004-11-30 John BouAntoun * MonthCalendar.cs: - ControlStyles love to make the control not flicker 2004-11-30 Peter Bartok * CharacterCasing.cs: Added 2004-11-29 Peter Bartok * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs, TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files. I am removing these files as they conflict with already completed work. While it is fantastic to get contributions to MWF, I respectfully ask that everyone please coordinate their contributions through mono-winforms-list or #mono-winforms at this time. We're explicitly avoiding stubbing and don't want controls that don't have their basic functionality implemented in svn. Please also see http://www.mono-project.com/contributing/winforms.html 2004-11-29 Marek Safar * Application.cs (ModalRun): Don't hang after exit. * Theme.cs: New TreeViewDefaultSize property. * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor with less hardcoded SystemColors constant. Implemented TreeViewDefaultSize. * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs, TreeViewAction.cs, TreeViewEventArgs.cs: New files. 2004-11-29 John BouAntoun * MonthCalendar.cs: - Fix NextMonthDate and PrevMonthDate click moving calendar 2004-11-26 John BouAntoun * MonthCalendar.cs: - Fix usage of ScrollChange Property when scrolling months 2004-11-26 Jordi Mas i Hernandez * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs - Fixes menu destroying - Support adding and removing items on already created menus 2004-11-26 John BouAntoun * MonthCalendar.cs: - Re-worked all bolded dates handling to match win32 * ThemeWin32Classic.cs: - Fixed rendering with bolded dates 2004-11-25 Jordi Mas i Hernandez * ListBox.cs, Theme.cs, ThemeWin32Classic.cs: - Horizontal scroolbar - Multicolumn - Fixes 2004-11-25 John BouAntoun * MonthCalendar.cs: - Fix Usage of MaxSelectionCount from SelectionRange - Fixed Shift + Cursor Selection - Fixed Shift + (Pg up/Pg dn, Home/End) selection - Fixed normal cursor selection to be compat with win32 - Fixed Shift + Mouse Click selection 2004-11-24 Peter Bartok * XplatUI.cs (DispatchMessage): Switched to return IntPtr * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr * XplatUIX11.cs: - CreatedKeyBoardMsg now updates keystate with Alt key - Added workaround for timer crash to CheckTimers, Jackson will develop a proper fix and check in later - Implemented DispatchMessage - Removed calling the native window proc from GetMessage (call now moved to DispatchMessage) * KeyEventArgs.cs (Constructor): Now combines modifierkeys into the keydata (Fixes bug #69831) * XplatUIWin32.cs: - (DispatchMessage): Switched to return IntPtr - Added DllImport for SetFocus 2004-11-24 Ravindra * ThemeWin32Classic.cs: Fixed ListView border and checkbox background drawing. * ListViewItem.cs: Fixed various properties, calculations and Clone() method. Fixed ListViewSubItemCollection.Clear() method. * ListView.cs: Fixed calculations, BackColor, ForeColor properties and some internal properties. Fixed MouseDown handler and Paint method. 2004-11-24 John BouAntoun * MonthCalendar.cs: Add TitleMonth ContextMenu handling 2004-11-24 John BouAntoun * ContainerControl.cs: correct accidental check in of local changes 2004-11-24 John BouAntoun * ThemeWin32Classic.cs: - Fixed Drawing Last month in grid (sometimes not showing) * MonthCalendar.cs: - Fixed title width calculation bug (makeing title small) 2004-11-23 Peter Bartok * XplatUIX11.cs: - Added generation of WM_MOUSEHOVER event - Added missing assignment of async_method atom - Fixed WM_ERASEBKGND; now only redraws the exposed area 2004-11-23 John BouAntoun * ThemeWin32Classic.cs: - Fixed Drawing of today circle when showtodaycircle not set - fixed drawing of first and last month in the grid (gay dates) * MonthCalendar.cs: - Fixed Drawing of today circle - Fixed drawing of grady dates - Fixed HitTest for today link when ShowToday set to false - Fixed DefaultSize to obey ShowToday 2004-11-23 John BouAntoun * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods * System.Windows.Forms/Theme.cs * MonthCalendar.cs: added for MonthCalendar * SelectionRange.cs: added for MonthCalendar * Day.cs: added for MonthCalendar: added for MonthCalendar * DateRangeEventArgs.cs: added for MonthCalendar * DateRangeEventHandler.cs: added for MonthCalendar 2004-11-22 Ravindra * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems' property. 2004-11-22 Miguel de Icaza * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for event handler. * NumericUpDown.cs: Added new implementation. * UpDownBase.cs: Added new implementation. * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default implementations. * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default implementations. * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new methods. 2004-11-21 Miguel de Icaza * Timer.cs (Dispose): Should call the base dispose when overriding. 2004-11-19 Jordi Mas i Hernandez * ScrollBar.cs: updates thumb position when max, min or increment is changed 2004-11-21 Ravindra * ListView.cs: Implemented item selection, activation and column header style. Fixed properties to do a redraw, if required. Added support for MouseHover, DoubleClick, KeyDown and KeyUp event handling and some minor fixes. * ListViewItem.cs: Fixed constructor. * ThemeWin32Classic.cs: Improved drawing for ListView. 2004-11-19 Jordi Mas i Hernandez * ThemeWin32Classic.cs: initial listbox drawing code * DrawMode.cs: new enumerator * ListControl.cs: stubbed class * ListBox.cs: initial implementation * Theme.cs: new methods definitions * SelectionMode.cs: new enumerator 2004-11-17 Peter Bartok * XplatUIWin32.cs: Added double-click events to the class style * Control.cs (WndProc): - Added handling of click-count to MouseDown/ MouseUp events. - Added handling of middle and right mouse buttons - Removed old debug code 2004-11-17 Jackson Harper * XplatUIX11.cs: Use the new Mono.Unix namespace. 2004-11-17 Ravindra * ListView.cs: Added event handling for MouseMove/Up/Down. * ColumnHeader.cs: Added a read-only internal property 'Pressed'. * ThemeWin32Classic.cs: We need to clear the graphics context and draw column header in a proper state. 2004-11-17 Jordi Mas i Hernandez * Menu.cs: fixes signature 2004-11-16 Peter Bartok * XplatUIX11.cs (GetMessage): Implemented generation of double click mouse messages 2004-11-12 Jordi Mas i Hernandez * Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session not by menu 2004-11-11 Peter Bartok * HandleData.cs: Added Visible property * XplatUIX11.cs (IsVisible): Now uses Visible property from HandleData * XplatUIX11.cs: Removed old debug leftovers * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler * Control.cs (WndProc): Removed old debug leftovers, streamlined handling of WM_WINDOWPOSCHANGED, removed un- needed WM_SIZE handling 2004-11-11 Jackson Harper * OwnerDrawPropertyBag.cs: * TreeViewImageIndexConverter.cs: Initial implementation 2004-11-10 Jackson Harper * ThemeWin32Classic.cs: * TabControl.cs: instead of moving tabs by the slider pos just start drawing at the tab that is offset by the slider. This way scrolling always moves by exactly one tab. 2004-11-10 Jackson Harper * TabControl.cs: You can only scroll left when the slider has already ben moved right. 2004-11-10 Jackson Harper * ThemeWin32Classic.cs: Do not draw the selected tab if its not in the clip area. 2004-11-10 Jackson Harper * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the clip area. 2004-11-09 Jackson Harper * TabControl.cs (CalcXPos): New helper method so we can determine the proper place to start drawing vertical tabs. * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs. 2004-11-09 Jackson Harper * TabControl.cs: Calculate sizing and rects for left aligned tabs. * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top and Bottom, left and right are illegal values for this and multiline is enabled when the alignment is set to left or right. (DrawTab): Each alignment block should draw the text itself now because Left requires special love. Also add rendering for Left aligned tabs. 2004-11-09 Jordi Mas i Hernandez * Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups, does not destroy the windows, removes debugging messages 2004-11-09 jba * ThemeWin32Classic.cs (DrawButtonBase): Fix verticle text rect clipping in windows (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter rendering and incorrect text rect clipping (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter rendering and incorrect text rect clipping 2004-11-08 Jackson Harper * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to bottom when they are bottom aligned so the bottoms of the tabs get displayed. * TabControl.cs (DropRow): Move rows up instead of down when the tab control is bottom aligned. 2004-11-08 13:59 pbartok * XplatUIX11.cs: - Added handling for various window styles - Added handling for popup windows - Added SetTopmost handling 2004-11-08 13:55 pbartok * XplatUIWin32.cs: - Added argument to SetTopmost method - Fixed broken ClientToScreen function 2004-11-08 13:53 pbartok * XplatUIStructs.cs: - Added missing WS_EX styles 2004-11-08 13:53 pbartok * XplatUI.cs, XplatUIDriver.cs: - Added argument to SetTopmost 2004-11-08 13:52 pbartok * X11Structs.cs: - Added XSetWindowAttributes structure - Improved XWindowAttributes structure - Added SetWindowValuemask enum - Added window creation arguments enum - Added gravity enum - Added Motif hints structure - Added various Motif flags and enums - Added PropertyMode enum for property functions 2004-11-08 13:50 pbartok * Form.cs: - Fixed arguments for updated SetTopmost method 2004-11-08 13:49 pbartok * ToolTip.cs: - Fixed arguments for updated SetTopmost function - Fixed usage of PointToClient 2004-11-08 13:44 pbartok * MenuAPI.cs: - Added Clipping of children and siblings 2004-11-08 13:41 pbartok * MainMenu.cs: - Removed SetMenuBarWindow call. We do this in Form.cs 2004-11-08 13:40 jackson * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little scrolling jimmi in the correct location with bottom aligned tabs 2004-11-08 13:36 pbartok * ContainerControl.cs: - Implemented BindingContext - Implemented ParentForm 2004-11-08 12:46 jackson * TabControl.cs: Put bottom rendered tabs in the right location 2004-11-08 07:15 jordi * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and removes dead code 2004-11-05 17:30 jackson * TabControl.cs: When selected tabs are expanded make sure they don't go beyond the edges of the tab control 2004-11-05 14:57 jackson * TabControl.cs: Reset show_slider so if the control is resized to a size where it is no longer needed it's not displayed anymore 2004-11-05 13:16 jackson * TabControl.cs: Make tab pages non visible when added to the control 2004-11-05 12:42 jackson * TabControl.cs: Implement SizeMode.FillToRight 2004-11-05 12:16 jackson * Control.cs: Do not call CreateHandle if the handle is already created 2004-11-05 11:46 jackson * TabControl.cs: Remove superflous call to CalcTabRows 2004-11-05 09:07 jackson * XplatUIX11.cs: Update for Mono.Posix changes 2004-11-05 07:00 ravindra * ListView.cs, ListViewItem.cs: Implemented some methods and fixed scrolling. 2004-11-04 22:47 jba * ThemeWin32Classic.cs: - Fix Button rendering for FlatStyle = Flat or Popup - Fix RadioButton and CheckBox rendering when Appearance = Button (normal and flatstyle). - Correct outer rectangle color when drawing focus rectangle - Adjust button bounds to be 1 px smaller when focused - Make button not draw sunken 3d border when pushed (windows compat) - Fix CPDrawBorder3D to not make bottom right hand corner rounded - Offset the text in RadioButton and Checkbox when being rendered as a button. - Hover and Click behaviour for Colored FlatStyle.Flat and Popup radiobuttons - Fixed disabled rendering for colored flatstyle radiobuttons (both) - Fixed disabled text rendering for normally rendered radiobuttons 2004-11-04 10:26 jackson * TabControl.cs: Recalculate tab rows when resizing 2004-11-04 07:47 jordi * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: collection completion, drawing issues, missing features 2004-11-04 05:03 ravindra * ScrollBar.cs: - We need to recalculate the Thumb area when LargeChange/maximum/minimum values are changed. - We set the 'pos' in UpdatePos() method to minimum, if it's less than minimum. This is required to handle the case if large_change is more than max, and use LargeChange property instead of large_change variable. - We return max+1 when large_change is more than max, like MS does. 2004-11-04 04:29 ravindra * ColumnHeader.cs, ListView.cs, ListViewItem.cs: - Changed default value signatures (prefixed all with ListView). - Fixed/implemented layout LargeIcon, SmallIcon and List views for ListView. - Fixed calculations for ListViewItem and implemented Clone() method. 2004-11-04 04:26 ravindra * Theme.cs, ThemeWin32Classic.cs: - Changed default ListView values signatures (prefixed all with ListView). - Fixed default size values for VScrollBar and HScrollBar. - Fixed DrawListViewItem method. 2004-11-04 04:05 ravindra * ColumnHeaderStyle.cs: Typo. It should be Nonclickable. 2004-11-04 04:04 ravindra * ImageList.cs: Implemented the missing overload for Draw method. 2004-11-03 19:29 jackson * TabControl.cs: Handle dropping rows on selection properly 2004-11-03 11:59 jackson * TabControl.cs: remove debug code 2004-11-03 11:52 jackson * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of the scrolly widgerywoo 2004-11-02 13:52 jackson * TabControl.cs: Resize the tab pages and tabs when the tab control is resized 2004-11-02 13:40 jackson * TabControl.cs, ThemeWin32Classic.cs: Move the row with the selected tab to the bottom 2004-11-02 13:39 jackson * TabPage.cs: Store the tab pages row 2004-11-02 12:33 jordi * MenuItem.cs: fixes handle creation 2004-11-02 11:42 jackson * TabControl.cs: signature fix 2004-11-02 08:56 jackson * TabControl.cs: Calculate whether the tab is on an edge properly. Remove top secret debugging code 2004-11-01 19:57 jackson * TabControl.cs: Add click handling, and proper sizing 2004-11-01 19:47 jackson * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for tab controls 2004-11-01 19:39 jackson * TabPage.cs: add internal property to store the bounds of a tab page 2004-10-30 04:23 ravindra * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default values. 2004-10-30 04:21 ravindra * ListView.cs, ListViewItem.cs: Added support for scrolling and fixed calculations. 2004-10-30 03:06 pbartok * XplatUIX11.cs: - Removed extension of DllImported libs 2004-10-29 09:55 jordi * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key navigation, itemcollection completion, menu fixes 2004-10-27 22:58 pbartok * XplatUIX11.cs: - Now throws a nice error message when no X display could be opened 2004-10-26 13:51 jordi * ListView.cs: removes warning 2004-10-26 03:55 ravindra * ColumnHeader.cs, ListView.cs, ListViewItem.cs, ThemeWin32Classic.cs: Some formatting for my last checkins. 2004-10-26 03:36 ravindra * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView control and default values. 2004-10-26 03:35 ravindra * Theme.cs: Added some default values for ListView control. 2004-10-26 03:33 ravindra * ToolBar.cs: ToolBar should use the user specified button size, if there is any. Added a size_specified flag for the same. 2004-10-26 03:33 ravindra * ColumnHeader.cs: Added some internal members and calculations for ColumnHeader. 2004-10-26 03:32 ravindra * ListViewItem.cs: Calculations for ListViewItem. 2004-10-26 03:31 ravindra * ListView.cs: Added some internal members and calculations for ListView. 2004-10-22 13:31 jordi * MenuAPI.cs: speedup menus drawing 2004-10-22 13:16 jackson * XplatUIX11.cs: Make sure to update exposed regions when adding an expose event 2004-10-22 11:49 jackson * Control.cs: oops 2004-10-22 11:41 jackson * Control.cs: Check to see if the window should have its background repainted by X when drawing. 2004-10-22 11:31 jackson * XplatUIX11.cs: When invalidating areas only use XClearArea if clear is true, this way we do not get flicker from X repainting the background 2004-10-22 11:28 jackson * XEventQueue.cs: Queue properly 2004-10-21 09:38 jackson * XEventQueue.cs: Fix access modifier 2004-10-21 09:36 jackson * XEventQueue.cs: Don't loose messages 2004-10-21 09:22 jackson * XEventQueue.cs: Don't loose messages 2004-10-20 04:15 jordi * BootMode.cs: enum need it by SystemInfo 2004-10-19 21:58 pbartok * XplatUIWin32.cs: - Small sanity check 2004-10-19 21:56 pbartok * Form.cs: - Added private FormParentWindow class which acts as the container for our form and as the non-client area where menus are drawn - Added/Moved required tie-ins to Jordi's menus - Fixed/Implemented the FormStartPosition functionality 2004-10-19 21:52 pbartok * Control.cs: - Removed unneeded locals - Added code to all size and location properties to understand and deal with the parent container of Form 2004-10-19 21:33 pbartok * Application.cs: - Fixed to deal with new Form subclasses for menus 2004-10-19 17:48 jackson * XEventQueue.cs: commit correct version of file 2004-10-19 16:50 jackson * XEventQueue.cs, XplatUIX11.cs: New optimized event queue 2004-10-19 16:15 jordi * MenuAPI.cs: MenuBarCalcSize returns the height 2004-10-19 08:31 pbartok * Control.cs: - Added missing call to PreProcessMessage before calling OnXXXKey methods 2004-10-19 00:04 ravindra * ToolTip.cs: Fixed constructor. 2004-10-18 09:31 jordi * MenuAPI.cs: menuitems in menubars do not have shortcuts 2004-10-18 09:26 jordi * MenuItem.cs: fixes MenuItem class signature 2004-10-18 08:56 jordi * MenuAPI.cs: prevents windows from showing in the taskbar 2004-10-18 00:28 ravindra * ToolTip.cs: Suppressed a warning message. 2004-10-18 00:27 ravindra * Control.cs: Default value of visible property must be true. 2004-10-17 23:19 pbartok * ToolTip.cs: - Complete implementation 2004-10-17 23:19 pbartok * XplatUIX11.cs: - Added EnableWindow method - Added SetModal stub - Added generation of WM_ACTIVATE message (still needs testing) - Added SetTopMost stub - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs 2004-10-17 23:17 pbartok * XplatUIWin32.cs: - Removed VirtualKeys to XplatUIStructs - Implemented SetTopMost method - Implemented EnableWindow method - Bugfix in ScreenToClient() - Bugfixes in ClientToScreen() 2004-10-17 22:51 pbartok * XplatUIStructs.cs: - Added WS_EX styles to WindowStyles enumeration 2004-10-17 22:50 pbartok * XplatUI.cs, XplatUIDriver.cs: - Added method for enabling/disabling windows - Added method for setting window modality - Added method for setting topmost window 2004-10-17 22:49 pbartok * ThemeWin32Classic.cs: - Added ToolTip drawing code 2004-10-17 22:49 pbartok * Theme.cs: - Added ToolTip abstracts 2004-10-17 22:47 pbartok * Form.cs: - Fixed Form.ControlCollection to handle owner relations - Added Owner/OwnedForms handling - Implemented Z-Ordering for owned forms - Removed unneeded private overload of ShowDialog - Fixed ShowDialog, added the X11 incarnation of modal handling (or so I hope) - Fixed Close(), had wrong default - Added firing of OnLoad event - Added some commented out debug code for Ownership handling 2004-10-17 22:16 pbartok * Control.cs: - Fixed/implemented flat list of controls 2004-10-17 22:14 pbartok * Application.cs: - Added code to simulate modal dialogs on Win32 2004-10-17 16:11 jordi * ScrollBar.cs: disabled scrollbar should not honor any keyboard or mouse event 2004-10-17 13:39 jordi * MenuAPI.cs: menu drawing fixes 2004-10-15 09:10 ravindra * StructFormat.cs: General Enum. 2004-10-15 09:09 ravindra * SizeGripStyle.cs: Enum for Form. 2004-10-15 09:08 ravindra * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property in Theme for ListView. 2004-10-15 09:06 ravindra * ColumnHeader.cs: Flushing some formatting changes. 2004-10-15 09:05 ravindra * ListViewItem.cs: Implemented GetBounds method and fixed coding style. 2004-10-15 09:03 ravindra * ListView.cs: Implemented Paint method and fixed coding style. 2004-10-15 07:34 jordi * MenuAPI.cs: fix for X11 2004-10-15 07:32 ravindra * ButtonBase.cs, CheckBox.cs, RadioButton.cs: - Renamed Paint() method to Draw() for clarity. Also, moved DrawImage() to OnPaint(). 2004-10-15 07:25 ravindra * CheckBox.cs, RadioButton.cs: - Removed Redraw (), we get it from ButtonBase. - Implemented Paint (), to do class specific painting. 2004-10-15 07:16 ravindra * ButtonBase.cs: - Redraw () is not virtual now. - Added an internal virtual method Paint (), so that derived classes can do their painting on their own. - Modified OnPaint () to call Paint (). 2004-10-15 06:43 jordi * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs, MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc 2004-10-15 00:30 ravindra * MessageBox.cs: - MessageBox on windows does not have min/max buttons. This change in CreateParams fixes this on Windows. We still need to implement this windowstyle behavior in our X11 driver. 2004-10-14 05:14 ravindra * ToolBar.cs: - Changed Redraw () to do a Refresh () always. - Fixed the MouseMove event handling when mouse is pressed, ie drag event handling. - Replaced the usage of ToolBarButton.Pressed property to ToolBarButton.pressed internal variable. 2004-10-14 05:10 ravindra * ToolBarButton.cs: - Added an internal member 'inside' to handle mouse move with mouse pressed ie mouse drag event. - Changed 'Pressed' property to return true only when 'inside' and 'pressed' are both true. - Some coding style love. 2004-10-14 00:17 ravindra * Form.cs: Fixed class signature. ShowDialog (Control) is not a public method. 2004-10-14 00:15 ravindra * ButtonBase.cs: Redraw () related improvements. 2004-10-14 00:14 ravindra * MessageBox.cs: Moved InitFormSize () out of Paint method and removed unnecessary calls to Button.Show () method. 2004-10-13 17:50 pbartok * XplatUIX11.cs: - Formatting fix - Removed destroying of window until we solve the problem of X destroying the window before us on shutdown 2004-10-13 16:32 pbartok * ButtonBase.cs: - Now Redraws on MouseUp for FlatStyle Flat and Popup 2004-10-13 14:18 pbartok * XplatUIX11.cs: - Added code to destroy the X window 2004-10-13 14:18 pbartok * XplatUIWin32.cs: - Added code to destroy a window 2004-10-13 14:12 pbartok * ButtonBase.cs: - Added the Redraw on Resize that got dropped in the last rev 2004-10-13 09:06 pbartok * ThemeWin32Classic.cs: - Path from John BouAntoun: * Fix check rendering (centre correctly for normal style, offset correctly for FlatStyle). * Fix border color usage (use backcolor) for FlatStyle.Popup * Use checkbox.Capture instead of checkbox.is_pressed when rendering flatstyle states. 2004-10-12 21:48 pbartok * ThemeWin32Classic.cs: - Removed all occurences of SystemColors and replaced them with the matching theme color 2004-10-12 21:41 pbartok * ThemeWin32Classic.cs: - From John BouAntoun: Added an overload to CPDrawBorder3D to allow him using the function for flatstyle drawing - Changed functions to use the new version of CPDrawBorder3D 2004-10-12 21:15 pbartok * ControlPaint.cs: - Fixed Dark(), DarkDark(), Light() and LightLight() methods to match MS documentation. They need to return defined colors if the passed color matches the configured control color. Thanks to John BouAntoun for pointing this out. 2004-10-12 20:57 pbartok * Control.cs: - Fix from John BouAntoun: Raise ForeColorChanged event when text color is changed 2004-10-12 20:46 pbartok * CheckBox.cs: - Fix from John BouAntoun: Now properly sets the Appearance property 2004-10-12 20:45 pbartok * ThemeWin32Classic.cs: - Fixes from John BouAntoun: now handles forecolors and backcolors for flatstyle rendered controls much better; It also fixes normal checkbox rendering when pushed or disabled. 2004-10-08 02:50 jordi * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu work 2004-10-07 08:56 jordi * ThemeWin32Classic.cs: Removes deletion of cached brushes 2004-10-06 03:59 jordi * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs, XplatUIWin32.cs: removes warnings from compilation 2004-10-05 12:23 jackson * RadioButton.cs: Fix ctor 2004-10-05 11:10 pbartok * MessageBox.cs: - Partial implementation by Benjamin Dasnois 2004-10-05 10:15 jackson * ThemeWin32Classic.cs: Improve rendering of the radio button patch by John BouAntoun 2004-10-05 03:07 ravindra * ToolBar.cs: - Removed a private method, Draw (). - Fixed the ButtonDropDown event handling. - Fixed MouseMove event handling. 2004-10-05 03:04 ravindra * ThemeWin32Classic.cs: - Added DrawListView method and ListViewDefaultSize property. - Changed ControlPaint method calls to CPDrawXXX wherever possible. - Changed DOS style CRLF to Unix format (dos2unix). 2004-10-05 03:03 ravindra * Theme.cs: - Added DrawListView method and ListViewDefaultSize property. 2004-10-05 02:42 ravindra * ToolBarButton.cs: Added an internal member dd_pressed to handle clicks on DropDown arrow. 2004-10-04 22:56 jackson * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs, ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base Control handle the buffers, derived classes should not have to CreateBuffers themselves. 2004-10-04 21:20 jackson * StatusBar.cs: The control handles resizing the buffers now. 2004-10-04 21:18 jackson * Control.cs: When resizing the buffers should be invalidated. This should be handled in Control not in derived classes. 2004-10-04 14:45 jackson * TabPage.cs: oops 2004-10-04 02:14 pbartok * LeftRightAlignment.cs: - Initial check-in 2004-10-04 01:09 jordi * ThemeWin32Classic.cs: fixes right button position causing right button not showing on horizontal scrollbars 2004-10-02 13:12 pbartok * XplatUIX11.cs: - Simplified the Invalidate method by using an X call instead of generating the expose ourselves - Added an expose when the window background is changed - Implemented ClientToScreen method 2004-10-02 13:08 pbartok * XplatUIWin32.cs: - Added Win32EnableWindow method (test for implementing modal dialogs) - Added ClientToScreen method and imports 2004-10-02 13:07 pbartok * XplatUI.cs, XplatUIDriver.cs: - Added ClientToScreen coordinate translation method 2004-10-02 13:06 pbartok * KeyPressEventArgs.cs: - Fixed access level for constructor 2004-10-02 13:06 pbartok * NativeWindow.cs: - Changed access level for the window_collection hash table 2004-10-02 13:05 pbartok * Form.cs: - Added KeyPreview property - Added Menu property (still incomplete, pending Jordi's menu work) - Implemented ProcessCmdKey - Implemented ProcessDialogKey - Implemented ProcessKeyPreview 2004-10-02 13:02 pbartok * Control.cs: - Added private method to get the Control object from the window handle - Implemented ContextMenu property - Implemented PointToScreen - Implemented PreProcessMessage - Implemented IsInputChar - Implemented IsInputKey - Implemented ProcessCmdKey - Completed ProcessKeyEventArgs - Fixed message loop to call the proper chain of functions on key events - Implemented ProcessDialogChar - Implemented ProcessDialogKey - Implemented ProcessKeyMessage - Implemented ProcessKeyPreview - Added RaiseDragEvent stub (MS internal method) - Added RaiseKeyEvent stub (MS internal method) - Added RaiseMouseEvent stub (MS Internal method) - Added RaisePaintEvent stub (MS Internal method) - Added ResetMouseEventArgs stub (MS Internal method) - Implemented RtlTranslateAlignment - Implemented RtlTranslateContent - Implemented RtlTranslateHorizontal - Implemented RtlTranslateLeftRight - Added generation of KeyPress event 2004-10-02 05:57 ravindra * ListViewItem.cs: Added attributes. 2004-10-02 05:32 ravindra * ListView.cs: Added attributes. 2004-10-01 11:53 jackson * Form.cs: Implement the Close method so work on MessageBox can continue. 2004-09-30 14:06 pbartok * XplatUIX11.cs: - Bug fixes 2004-09-30 11:34 jackson * RadioButton.cs: Fix typo. Patch by John BouAntoun. 2004-09-30 07:26 ravindra * ListViewItemConverter.cs: Converter for ListViewItem. 2004-09-30 07:26 ravindra * SortOrder.cs: Enum for ListView control. 2004-09-30 07:25 ravindra * ColumnHeader.cs: Supporting class for ListView control. 2004-09-30 07:24 ravindra * ListView.cs, ListViewItem.cs: Initial implementation. 2004-09-30 07:20 ravindra * ItemActivation.cs: Enum for ListView Control. 2004-09-29 20:29 pbartok * XplatUIX11.cs: - Added lookup of pixel value for background color; tries to get a color 'close' to the requested color, it avoids having to create a colormap. Depending on the display this could mean the used color is slightly off the desired color. Might have to change it to a more resource intensive colormap approach, but it will work as a workaround to avoid red screens. 2004-09-29 14:27 jackson * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing 2004-09-28 12:44 pbartok * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs, HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs, ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs, TrackBar.cs, VScrollBar.cs: - Streamlined Theme interfaces: * Each DrawXXX method for a control now is passed the object for the control to be drawn in order to allow accessing any state the theme might require * ControlPaint methods for the theme now have a CP prefix to avoid name clashes with the Draw methods for controls * Every control now retrieves it's DefaultSize from the current theme 2004-09-28 12:17 jackson * Button.cs: Do not redraw OnClick MouseUp/Down will handle the drawing 2004-09-24 14:57 jackson * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages. Gives us a nice little performance boost. 2004-09-24 12:02 jackson * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs, TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab Control and supporting classes. Initial checkin 2004-09-23 13:08 jackson * Form.cs: Temp build fixage 2004-09-23 01:39 ravindra * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs, ItemCheckEventArgs.cs, ItemCheckEventHandler.cs, ItemDragEventArgs.cs, ItemDragEventHandler.cs, LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and EventHandlers needed by ListView Control. 2004-09-22 14:12 pbartok * ScrollableControl.cs: - Implemented DockPadding property - Implemented AutoScroll property - Implemented AutoScrollMargin property - Implemented AutoScrollMinSize property - Implemented AutoScrollPosition property - Implemented DisplayRectangle property (still incomplete) - Implemented CreateParams property - Implemented HScroll property - Implemented VScroll property - Implemented OnVisibleChanged property 2004-09-22 14:09 pbartok * Form.cs: - Added Form.ControllCollection class - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm, RemoveOwnedForm (still incomplete, missing on-top and common minimize/maximize behaviour) - Added StartPosition property (still incomplete, does not use when creating the form) - Added ShowDialog() methods (still incomplete, missing forcing the dialog modal) 2004-09-22 14:05 pbartok * Application.cs: - Added message loop for modal dialogs 2004-09-22 14:02 pbartok * GroupBox.cs: - Fixed wrong types for events 2004-09-22 14:00 pbartok * Shortcut.cs, FormWindowState.cs: - Fixed wrong values 2004-09-22 12:01 jackson * Control.cs: Text is never null 2004-09-20 22:14 pbartok * XplatUIWin32.cs: - Fixed accessibility level for Idle handler 2004-09-20 18:54 jackson * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: New message loop that uses poll so we don't get a busy loop 2004-09-17 10:43 pbartok * ScrollBar.cs: - Fixed behaviour of arrow buttons. Now properly behaves like Buttons (and like Microsoft's scrollbar arrow buttons) 2004-09-17 10:14 pbartok * ScrollBar.cs: - Added missing release of keyboard/mouse capture 2004-09-17 06:18 jordi * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs, Theme.cs: Very early menu support 2004-09-16 17:45 pbartok * XplatUIWin32.cs: - Fixed sending a window to the front - Added overload for SetWindowPos to avoid casting 2004-09-16 17:44 pbartok * Control.cs: - Added SendToBack and BringToFront methods 2004-09-16 07:00 ravindra * Copyright: Added Novell URL. 2004-09-16 07:00 ravindra * ToolBar.cs: Invalidate should be done before redrawing. 2004-09-15 21:19 ravindra * ColumnHeaderStyle.cs: Enum for ListView Control. 2004-09-15 21:18 ravindra * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for ListView Control. 2004-09-13 18:26 jackson * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated properly 2004-09-13 18:13 jackson * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in a second thread and post messages into the main threads message queue. This makes timing much more consistent. Both win2K and XP have a minimum timer value of 15 milliseconds, so we now do this too. 2004-09-13 15:18 pbartok * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - Added Z-Ordering methods 2004-09-13 10:56 pbartok * Form.cs: - Fixed #region names - Moved properties and methods into their proper #regions 2004-09-13 10:51 pbartok * Form.cs: - Added Accept and CancelButton properties - Added ProcessDialogKey() method 2004-09-13 08:18 pbartok * IWindowTarget.cs: - Initial check-in 2004-09-10 21:50 pbartok * Control.cs: - Added DoDragDrop() [incomplete] - Properly implemented 'Visible' handling - Added SetVisibleCore() - Implemented FindChildAtPoint() - Implemented GetContainerControl() - Implemented Hide() 2004-09-10 19:28 pbartok * Control.cs: - Moved methods into their appropriate #regions - Reordered methods within regions alphabetically 2004-09-10 18:57 pbartok * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: - Added method to retrieve text from window 2004-09-10 18:56 pbartok * Control.cs: - Moved some internal functions into the internal region - Implemented FontHeight - Implemented RenderRightToLeft - Implemented ResizeRedraw - Implemented ShowFocusCues - Implemented ShowKeyboardCues - Implemented FromChildHandle - Implemented FromHandle - Implemented IsMnemonic - Implemented ReflectMessage - All public and protected Static Methods are now complete 2004-09-10 16:54 pbartok * Control.cs: - Implemented remaining missing public instance properties - Alphabetized some out of order properties 2004-09-10 05:51 ravindra * PictureBox.cs: Added a check for null image. 2004-09-10 00:59 jordi * GroupBox.cs: remove cvs tag 2004-09-09 05:25 ravindra * ToolBar.cs: Make redraw accessible from ToolBarButton. 2004-09-09 05:23 ravindra * ToolBarButton.cs: Changes in ToolBarButton need to make it's parent redraw. 2004-09-09 02:28 pbartok * ThemeWin32Classic.cs: - Improve disabled string look 2004-09-09 01:15 jordi * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem args and handler 2004-09-08 23:56 ravindra * ItemBoundsPortion.cs: It's enum, not a class! 2004-09-08 23:47 ravindra * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs: Enums for Form. 2004-09-08 21:13 ravindra * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for ListView control. 2004-09-08 21:03 ravindra * ThemeWin32Classic.cs: PictureBox would not draw a null image to avoid crash. 2004-09-08 21:01 ravindra * ScrollableControl.cs: Removed unreachable code. 2004-09-08 06:45 jordi * MenuMerge.cs, Shortcut.cs: enumerations need it by menus 2004-09-08 01:00 jackson * XplatUIX11.cs: Only run the timers when updating the message queue. This effectively gives X messages a higher priority then timer messages. Timers still need love though 2004-09-07 14:01 jackson * XplatUIX11.cs: Do not call XDestroyWindow, X has already done this for us and the handle is no longer valid. 2004-09-07 13:59 jackson * HandleData.cs, XplatUIX11.cs: First steps towards a new X event loop that manages to not crash. TODO: Add poll and cleanup timers 2004-09-07 11:12 jordi * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control 2004-09-07 03:40 jordi * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel fixes, methods, multiple links 2004-09-06 06:55 jordi * Control.cs: Caches ClientRectangle rectangle value 2004-09-05 02:03 jordi * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on certain situations 2004-09-04 11:10 jordi * Label.cs: Refresh when font changed 2004-09-02 16:24 pbartok * Control.cs: - Added sanity check to creation of double buffer bitmap 2004-09-02 16:24 pbartok * ButtonBase.cs: - Fixed selection of text color - Fixed handling of resize event; now properly recreates double buffering bitmap - Added missing assignment of TextAlignment - Added proper default for TextAlignment 2004-09-02 14:26 pbartok * RadioButton.cs: - Added missing RadioButton.RadioButtonAccessibleObject class 2004-09-02 14:26 pbartok * Control.cs: - Added missing Control.ControlAccessibleObject class - Started to implement Select()ion mechanisms, still very incomplete 2004-09-02 14:25 pbartok * AccessibleObject.cs: - Added missing methods 2004-09-02 14:23 pbartok * AccessibleNavigation.cs, AccessibleSelection.cs: - Initial check-in 2004-09-02 10:32 jordi * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource pool for pens, brushes, and hatchbruses 2004-09-01 15:30 jackson * StatusBar.cs: Fix typo 2004-09-01 14:44 pbartok * RadioButton.cs: - Fixed state 2004-09-01 14:39 pbartok * Button.cs, RadioButton.cs: - Functional initial check-in 2004-09-01 14:01 pbartok * CheckBox.cs: - Added missing default - Added missing region mark 2004-09-01 09:10 jordi * Label.cs: fixes method signatures, new methods, events, fixes autosize 2004-09-01 07:19 jordi * Control.cs: Init string variables with an empty object 2004-09-01 04:20 jordi * Control.cs: fires OnFontChanged event 2004-08-31 20:07 pbartok * ButtonBase.cs: - Enabled display of strings 2004-08-31 20:05 pbartok * Form.cs: - Added (partial) implementation of DialogResult; rest needs to be implemented when the modal loop code is done 2004-08-31 19:55 pbartok * CheckBox.cs: - Fixed to match the removal of the needs_redraw concept 2004-08-31 19:55 pbartok * ButtonBase.cs: - Removed the rather odd split between 'needs redraw' and redrawing - Now handles the events that require regeneration (ambient properties and size) 2004-08-31 19:41 pbartok * Control.cs: - Added firing of BackColorChanged event - Added TopLevelControl property - Fixed handling of WM_ERASEBKGRND message 2004-08-31 12:49 pbartok * ButtonBase.cs: - Removed debug - Minor fixes 2004-08-31 12:48 pbartok * CheckBox.cs: - Finished (famous last words) 2004-08-31 04:35 jordi * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes scrolling bugs, adds new methods 2004-08-30 14:42 pbartok * CheckBox.cs: - Implemented CheckBox drawing code 2004-08-30 14:42 pbartok * ButtonBase.cs: - Made Redraw() and CheckRedraw() virtual - Improved mouse up/down/move logic to properly track buttons 2004-08-30 09:44 pbartok * CheckBox.cs: - Updated to fix broken build. Not complete yet. 2004-08-30 09:28 pbartok * CheckState.cs: - Initial checkin 2004-08-30 09:17 pbartok * Appearance.cs: - Initial check-in 2004-08-27 16:12 ravindra * ToolBarButton.cs: Added TypeConverter attribute. 2004-08-27 16:07 ravindra * ImageIndexConverter.cs: Implemented. 2004-08-27 14:17 pbartok * Control.cs: - Removed unneeded stack vars - First attempt to fix sizing issues when layout is suspended 2004-08-25 15:35 jordi * ScrollBar.cs: more fixes to scrollbar 2004-08-25 14:04 ravindra * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Added the missing divider code and grip for ToolBar Control. 2004-08-25 13:20 pbartok * Control.cs: - Control now properly passes the ambient background color to child controls 2004-08-25 13:20 jordi * ScrollBar.cs: small bug fix regarding bar position 2004-08-25 12:33 pbartok * Timer.cs: - Now only calls SetTimer or KillTimer if the enabled state has changed 2004-08-25 12:33 pbartok * XplatUIWin32.cs: - Fixed timer handling, now seems to work - Improved error message for window creation 2004-08-25 12:32 pbartok * Control.cs: - Fixed generation of MouseUp message 2004-08-25 12:29 jordi * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties, and fixes for progressbar 2004-08-24 18:43 ravindra * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues in ToolBar control. 2004-08-24 17:15 pbartok * Panel.cs: - Added #region - Added missing events - Alphabetized 2004-08-24 17:14 pbartok * StatusBar.cs, PictureBox.cs: - Now uses Control's CreateParams 2004-08-24 16:36 pbartok * XplatUIX11.cs: - Fixed background color handling - Fixed sending of enter/leave events on a grab 2004-08-24 16:35 pbartok * X11Structs.cs: - Refined definitions for CrossingEvent 2004-08-24 12:37 jordi * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes formmating, methods signature, and adds missing events 2004-08-24 12:24 jordi * Control.cs: fire OnEnabledChanged event 2004-08-24 11:17 pbartok * XplatUIWin32.cs: - Implemented SetTimer() and KillTimer() 2004-08-24 11:16 pbartok * XplatUIX11.cs: - Now uses Remove instead of Add to kill the timer 2004-08-24 10:16 jackson * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing picture boxes in the theme now. Draw picture box borders and obey sizing modes 2004-08-24 05:49 jackson * Timer.cs: Remove top secret debugging code 2004-08-24 05:34 jackson * PictureBox.cs: Temp hack to make picture boxes draw their full image 2004-08-24 05:29 jackson * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: Move timers to the driver level. On X they are queued by the driver and checked on idle. 2004-08-24 01:07 jackson * XplatUIX11.cs: Use a queue for async messages instead of passing them as ClientMessages since that was totally broken. Also simply check for events and return an idle message if none are found. This gives us an idle handler, and prevents deadlocking when no messages are in the queue. 2004-08-23 18:19 ravindra * XplatUIWin32.cs: Removed the unwanted destructor. 2004-08-23 17:27 pbartok * ButtonBase.cs: - Finishing touches. Works now, just needs some optimizations. 2004-08-23 16:53 jordi * ScrollBar.cs: small fix 2004-08-23 16:45 pbartok * Application.cs: - Removed debug output - Simplifications 2004-08-23 16:43 jordi * ScrollBar.cs: [no log message] 2004-08-23 16:10 pbartok * Form.cs: - Fixed handling of WM_CLOSE message - Removed debug output 2004-08-23 16:09 pbartok * Application.cs: - Added handling of Idle event - Added handling of form closing - Fixed reporting of MessageLoop property - Removed some unneeded code, should provide a bit of a speedup 2004-08-23 15:22 pbartok * Control.cs: - Added InitLayout() method - Added code to properly perform layout when Anchor or Dock property is changed - Changed 'interpretation' of ResumeLayout. MS seems to have a LAMESPEC, tried to do it in a way that makes sense 2004-08-23 14:10 jordi * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes properties and methods 2004-08-23 13:55 pbartok * Control.cs: - Properly fixed Jordi's last fix - Now uses Cursor's Position property instead of calling XplatUI directly 2004-08-23 13:44 jordi * PaintEventHandler.cs: Adding missing attribute 2004-08-23 13:39 pbartok * Cursor.cs: - Implemented Position property 2004-08-23 13:39 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: - Added method to move mouse cursor 2004-08-23 13:39 pbartok * XplatUIX11.cs: - Fixed setting of background color - Added method to move mouse cursor 2004-08-23 13:16 jordi * Control.cs: avoids null exception 2004-08-22 17:46 jackson * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of PictureBox 2004-08-22 17:40 jackson * XplatUIX11.cs: Add some missing locks 2004-08-22 15:10 pbartok * Control.cs, Form.cs: - Removed OverlappedWindow style from Control, instead it's default now is child - Made form windows OverlappedWindow by default 2004-08-22 13:34 jackson * ScrollBar.cs: Update the position through the Value property so the OnValueChanged event is raised. 2004-08-22 12:04 pbartok * SWF.csproj: - Added Cursor.cs and UserControl.cs 2004-08-22 12:03 pbartok * Cursor.cs: - Started implementation, not usable yet 2004-08-22 12:00 pbartok * UserControl.cs: - Implemented UserControl (complete) 2004-08-21 19:20 ravindra * ToolBar.cs: Correcting the formatting mess of VS.NET. 2004-08-21 18:49 ravindra * ToolBar.cs: Probably this completes the missing attributes in toolbar control. 2004-08-21 18:03 ravindra * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs: Fixed toolbar control signatures. 2004-08-21 16:32 pbartok * LinkLabel.cs: - Signature Fixes 2004-08-21 16:30 pbartok * Label.cs: - Signature fixes 2004-08-21 16:19 pbartok * Control.cs, Label.cs: - Signature fixes 2004-08-21 15:57 pbartok * ButtonBase.cs: - Added loads of debug output for development - Fixed typo in method name 2004-08-21 15:52 pbartok * ToolBarButtonClickEventArgs.cs: - Added missing base class 2004-08-21 14:53 pbartok * Control.cs: - Updated to match new GrabWindow signature 2004-08-21 14:51 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - Added method to get default display size 2004-08-21 14:23 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - Added method to query current grab state - Added argument to allow confining a grab to a window 2004-08-21 14:22 pbartok * Keys.cs: - Added [Flags] attribute so that modifiers can be used in bitwise ops 2004-08-21 14:21 pbartok * TrackBar.cs, ScrollBar.cs: - Replaced direct XplatUI calls with their Control counterpart 2004-08-21 13:32 pbartok * Control.cs: - Implemented Created property 2004-08-21 13:28 pbartok * Control.cs: - Implemented ContainsFocus 2004-08-21 13:26 pbartok * Control.cs: - Implemented CausesValidation 2004-08-21 13:21 pbartok * Control.cs: - Implemented CanFocus - Implemented CanSelect - Implemented Capture 2004-08-21 12:35 pbartok * XplatUIWin32.cs: - Fixed bug with Async message handling - Implemented getting the ModifierKeys 2004-08-21 12:32 jackson * AsyncMethodResult.cs: Make sure we have the mutex before we release it. Fixes BeginInvoke on windows 2004-08-21 11:31 pbartok * XplatUIWin32.cs, XplatUIX11.cs: - Drivers now return proper mouse state 2004-08-21 10:54 jackson * Control.cs: Implement EndInvoke 2004-08-21 10:48 jackson * Timer.cs: Remove unneeded finalizer 2004-08-20 19:52 ravindra * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments in mouse event handling in the ToolBar control. 2004-08-20 19:50 ravindra * ImageList.cs: Changed draw method to use the arguments passed in to draw the image. 2004-08-20 18:58 pbartok * XplatUIStructs.cs: - Added private message for async communication 2004-08-20 17:38 ravindra * Control.cs: Made RightToLeft property virtual and removed a Console.WriteLine. 2004-08-20 14:39 jordi * ThemeGtk.cs: use style_attach 2004-08-20 14:39 pbartok * XplatUIWin32.cs: - Added jackson's Async code from X11 to Win32 2004-08-20 14:09 pbartok * SWF.csproj: - Added all new files 2004-08-20 14:09 pbartok * Control.cs: - Added call to set window background color 2004-08-20 14:03 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs: - Added method for setting the window background 2004-08-20 14:02 pbartok * XplatUIWin32.cs: - Added method for setting the background color - Added handling for erasing the window background 2004-08-20 13:45 jordi * TrackBar.cs: fixes timer, new properties and methods 2004-08-20 13:34 jackson * ScrollBar.cs: Use the SWF timer so callbacks are run in the correct thread 2004-08-20 13:22 jackson * Timer.cs: Timer Tick events are now handed through Controls Async mechanism so the callbacks are executed in the same thread as X 2004-08-20 13:19 jackson * XplatUIDriver.cs: Expose functionality to send async messages through the driver 2004-08-20 13:18 jackson * Control.cs: Implement Begininvoke 2004-08-20 13:14 jackson * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async messages through the driver 2004-08-20 13:12 jackson * XplatUIX11.cs: Lock before all X operations. Also added Async method functionality through XSendEvent 2004-08-20 13:11 jackson * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO: This will screw up on 64 bit systems) 2004-08-20 13:10 jackson * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending Async messages through X/Win32 2004-08-19 19:39 pbartok * XplatUIX11.cs: - Updated code to match new HandleData.DeviceContext type 2004-08-19 19:38 pbartok * HandleData.cs: - Made DeviceContext a generic object to allow usage from various drivers - Added support for queueing Windows messages 2004-08-19 19:37 pbartok * XplatUIWin32.cs: - Added generation of MouseEnter, MouseLeave and MouseHover events - Added cleanup on EndPaint 2004-08-19 19:17 pbartok * Control.cs: - Added handling of WM_MOUSEHOVER - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver code 2004-08-19 18:55 jordi * ThemeGtk.cs: fixes button order 2004-08-19 18:12 jordi * Theme.cs, ThemeWin32Classic.cs: fixes methods signature 2004-08-19 17:09 pbartok * Control.cs: - Added Right property - Added RightToLeft property 2004-08-19 16:27 jordi * ThemeGtk.cs: experimental GTK theme support 2004-08-19 16:26 jordi * ITheme.cs, Theme.cs: move themes from an interface to a class 2004-08-19 16:25 jordi * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs: theme enhancaments 2004-08-19 16:04 pbartok * XplatUIX11.cs: - Added colormap basics - Added a way to re-initialize with a different display handle - Fixed setting of the window background color - Added various X11 imports related to colors and colormaps 2004-08-19 15:51 pbartok * X11Structs.cs: - Removed packing hints (Paolo suggested this a while back) - fixed colormap type - Added default Atom types - Added Screen and color structs and enums 2004-08-19 15:39 pbartok * ImageList.cs: - Added missing Draw() method - Added missing RecreateHandle event 2004-08-19 15:30 pbartok * Form.cs: - Added handling of WM_CLOSE 2004-08-18 13:16 jordi * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to a table 2004-08-18 09:56 jordi * ScrollBar.cs: fixes to scrollbar: steps and multiple timers 2004-08-17 15:31 ravindra * SWF.csproj: Updated project. 2004-08-17 15:25 pbartok * Control.cs: - Drawing improvement; don't call UpdateBounds if we are not visible (or have been minimized) 2004-08-17 15:24 pbartok * XplatUIWin32.cs: - Finished IsVisible - Added Win32GetWindowPlacement 2004-08-17 15:08 jackson * Panel.cs: Initial checkin of the Panel 2004-08-17 14:25 pbartok * Control.cs: - Fixed broken handling of default window sizes 2004-08-17 13:29 jackson * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It has a large startup time. 2004-08-17 10:25 jackson * HandleData.cs: union areas properly 2004-08-17 10:12 jackson * HandleData.cs: union areas properly 2004-08-16 20:00 ravindra * ToolBar.cs, ToolBarButton.cs: Added attributes. 2004-08-16 18:48 ravindra * ToolBar.cs: Added attributes. 2004-08-16 17:17 ravindra * SWF.csproj: Updated project. 2004-08-16 17:16 jackson * XplatUIX11.cs: Check for more expose events before sending a WM_PAINT so they can all be grouped together. This makes dragging a window across another window redraw in a sane way. 2004-08-16 15:47 pbartok * Control.cs: - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support OnMouseEnter/Leave() - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve exposure handling 2004-08-16 15:46 pbartok * XplatUIStructs.cs, XplatUIX11.cs: - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support OnMouseEnter/Leave() 2004-08-16 15:34 jackson * XplatUIX11.cs: Group multiple expose events in HandleData, make sure messages get the message field set to WM_NULL if they are not handled. 2004-08-16 15:24 jackson * HandleData.cs: HandleData is used for storing message information for window handles 2004-08-15 17:23 ravindra * ColorDepth.cs: Added attribute. 2004-08-15 17:23 ravindra * SWF.csproj: Updated project for ToolBar Control. 2004-08-15 17:20 ravindra * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar control and also dos2unix format. 2004-08-15 17:13 ravindra * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs, ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs, ToolBarTextAlign.cs: First Implementation of ToolBar control. 2004-08-15 15:31 pbartok * ButtonBase.cs: - First (mostly) working version 2004-08-13 16:15 pbartok * Control.cs: - Fixed Anchor default 2004-08-13 15:43 pbartok * Control.cs: - Changed GetCursorPos signature 2004-08-13 15:42 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: - Changed signature for GetCursorPos 2004-08-13 15:25 pbartok * XplatUIX11.cs: - Cleanup - Fixed resizing/exposure handling 2004-08-13 15:22 jordi * ThemeWin32Classic.cs: removes redundant code and fixes issues with tickposition 2004-08-13 14:55 jordi * TrackBar.cs: change from wndproc to events 2004-08-13 13:00 jordi * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: implements PointToClient (ScreenToClient) 2004-08-13 12:53 pbartok * XplatUIWin32.cs: - Changed GetWindowPos to also provide client area size - Fixed broken prototypes for several win32 functions 2004-08-13 12:53 pbartok * XplatUI.cs, XplatUIDriver.cs: - Changed GetWindowPos to also provide client area size 2004-08-13 12:52 pbartok * XplatUIX11.cs: - Added generation of WM_POSCHANGED - Changed GetWindowPos to also provide client area size 2004-08-13 12:52 pbartok * Control.cs: - Added Dispose() and destructor - Fixed resizing and bounds calculation - Fixed Layout - Added memory savings for invisible windows 2004-08-13 12:46 jordi * TrackBar.cs: adds timer and grap window 2004-08-13 10:25 jackson * Timer.cs: SWF Timer 2004-08-12 16:59 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - Implemented method to get current mouse position 2004-08-12 14:29 jordi * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar enhancement, fix mouse problems, highli thumb, etc 2004-08-12 13:31 pbartok * Control.cs: - Fixed Anchoring bugs 2004-08-12 13:01 jackson * StatusBar.cs: Don't forget things 2004-08-12 12:54 jackson * ThemeWin32Classic.cs: Handle owner draw status bars 2004-08-12 12:54 jackson * StatusBar.cs: Implement missing properties, events, and methods. Handle mouse clicking 2004-08-12 10:19 jackson * StatusBarPanelClickEventArgs.cs, StatusBarPanelClickEventHandler.cs: Classes for handling status bar panel click events 2004-08-12 10:10 jackson * Control.cs: Add missing properties 2004-08-12 09:46 pbartok * BindingsManagerBase.cs: - Name changed to BindingManagerBase.cs 2004-08-12 09:25 jordi * ScrollableControl.cs: calls ctrlbase instead of exeception 2004-08-11 16:28 pbartok * InputLanguageChangingEventArgs.cs: - Never check in before compiling. Fixes the last check-in 2004-08-11 16:26 pbartok * InputLanguageChangingEventArgs.cs: - More signature fixes 2004-08-11 16:20 pbartok * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs, Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs, ImageListStreamer.cs, InputLanguage.cs, InputLanguageChangedEventArgs.cs, InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs, LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs, ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - Signature fixes 2004-08-11 16:16 pbartok * Application.cs: - Fixed Signature - Added .Net 1.1 method 2004-08-11 15:25 pbartok * SWF.csproj: - Fixed BindingManagerBase.cs filename 2004-08-11 15:22 pbartok * BindingManagerBase.cs: - Was checked in with wrong filename 2004-08-11 14:50 pbartok * SWF.csproj: - Updated 2004-08-11 13:41 jordi * XplatUIWin32.cs: Fixes ClientRect 2004-08-11 13:19 pbartok * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - We had SetWindowPos and MoveWindow to set window positions and size, removed MoveWindow. We have GetWindowPos, so it made sense to keep SetWindowPos as matching counterpart - Added some X11 sanity checking 2004-08-11 12:59 pbartok * Control.cs: - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess (It seems that SetBounds is just a front for SetBoundsCore and SetBoundsCore updates the underlying window system and UpdateBounds is responsible for updating the variables associated with the Control and sending the events) - Major cleanup of Size handling; we now have two sizes, client_size and bounds. Bounds defines the window with decorations, client_size without them. 2004-08-11 12:55 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - Added method to calculate difference between decorated window and raw client area 2004-08-11 12:54 pbartok * Label.cs: - Forcing redraw on resize 2004-08-11 11:43 pbartok * ImageList.cs: - Removed disposing of the actual images when the list is disposed 2004-08-11 09:13 pbartok * Control.cs: - Now properly reparents windows 2004-08-11 08:37 pbartok * Control.cs: - Duh! 2004-08-11 07:47 pbartok * Control.cs: - Rewrote the collection stuff. Might not be as fast now, not keeping the number of children around and accessible directly, but it's more straightforward 2004-08-11 07:44 pbartok * AccessibleObject.cs: - Fixed to match ControlCollection rewrite 2004-08-11 07:43 pbartok * ImageList.cs: - Added missing creation of the collection list 2004-08-10 20:08 jackson * StatusBar.cs: Get the paint message from WndProc 2004-08-10 19:31 jackson * ThemeWin32Classic.cs: Create Brushes as little as possible 2004-08-10 19:20 jackson * UICues.cs: Add Flags attribute 2004-08-10 19:19 jackson * StatusBarPanel.cs: Signature cleanup 2004-08-10 19:10 jackson * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs: Initial implementation of status bar item drawing 2004-08-10 17:27 jordi * TrackBar.cs: add missing methods, properties, and restructure to hide extra ones 2004-08-10 16:24 jackson * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs, ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags attribute 2004-08-10 13:21 jordi * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar enhancements and standarize on win colors defaults 2004-08-10 12:52 jackson * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs, ThemeWin32Classic.cs: Implement DrawItem functionality 2004-08-10 12:47 jordi * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow 2004-08-10 12:32 jordi * Control.cs: throw ontextchange event 2004-08-10 11:43 pbartok * Control.cs: - Added more to the still unfinished Dock/Anchor layout code 2004-08-10 11:39 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs: - Added GetWindowPos method 2004-08-10 11:36 pbartok * XplatUIWin32.cs: - Implemented several methods 2004-08-10 09:47 jackson * TrackBar.cs: Allow control to handle buffering 2004-08-10 09:41 jackson * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering 2004-08-10 09:24 jackson * Label.cs, LinkLabel.cs: Let Control handle buffering. 2004-08-10 09:09 jackson * StatusBar.cs: Let Control handle all the buffering. 2004-08-10 09:08 jackson * Control.cs: Control will now handle the buffering code, so each control does not have to implement this. 2004-08-10 08:34 jackson * XplatUIDriver.cs: Use default colors from the theme 2004-08-09 17:12 pbartok * ImageList.cs: - Fixed several bugs Ravindra pointed out 2004-08-09 16:11 pbartok * Control.cs: - Added incomplete dock layout code - Added support for mouse wheel 2004-08-09 16:09 pbartok * XplatUIX11.cs: - Added handling for middle and right mousebutton - Added handling for mouse wheel - Added handling for key state and mouse state and position - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL messages 2004-08-09 15:40 jackson * StatusBarPanel.cs, StatusBarPanelAutoSize.cs, StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial checkin 2004-08-09 15:37 jackson * StatusBar.cs: Initial implementation of StatusBar 2004-08-09 15:36 jackson * ITheme.cs: Add support for drawing status bar and getting status bar item sizes 2004-08-09 15:35 pbartok * MouseButtons.cs: - Fixed values 2004-08-09 15:34 jackson * ThemeWin32Classic.cs: Add support for drawing status bar and get status bar item sizes 2004-08-09 15:21 jackson * ThemeWin32Classic.cs: Use known colors for default control colours 2004-08-09 15:12 jackson * ThemeWin32Classic.cs: Make the default font static, it is static in control so this doesn't change functionality and creating fonts is sloooooow. 2004-08-09 14:56 pbartok * X11Structs.cs: - Added GrabMode enum 2004-08-09 14:55 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - Removed Run method, was only required for initial development 2004-08-09 14:51 pbartok * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - Implemented GrabWindow/ReleaseWindow methods to allow pointer capture 2004-08-09 13:48 pbartok * XplatUIX11.cs: - Fixed default sizing for child windows 2004-08-09 12:56 pbartok * XplatUIX11.cs: - Added generation of WM_DESTROY message - Added handling of window manager induced shutdown 2004-08-09 11:31 jackson * ThemeWin32Classic.cs: New names for control properties 2004-08-09 11:25 jackson * Control.cs: Use new color names 2004-08-09 11:02 jackson * XplatUI.cs: Get default window properties from the theme 2004-08-09 11:01 jackson * ITheme.cs: The theme engine now controls default window properties 2004-08-09 11:00 jackson * ThemeWin32Classic.cs: Add default window color properties 2004-08-09 10:17 jackson * ThemeWin32Classic.cs: Use correct default back color 2004-08-09 10:05 jackson * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by the theme now. 2004-08-09 09:56 jackson * XplatUI.cs: Remove defaults, these are handled by the theme now. 2004-08-09 09:54 jackson * Control.cs: Get default properties from the theme. 2004-08-09 09:53 jackson * ITheme.cs: Themes now handle default control properties 2004-08-09 09:53 jackson * ThemeWin32Classic.cs: Themes now handle default control properties so coloring will be consistent 2004-08-08 16:54 jordi * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles 2004-08-08 15:08 jordi * XplatUIX11.cs: fixes keyboard crash 2004-08-08 13:47 jordi * Label.cs: add cvs header info 2004-08-08 12:09 jackson * ThemeWin32Classic.cs: Add pen_buttonface 2004-08-08 11:52 jordi * Label.cs, LinkLabel.cs: [no log message] 2004-08-08 11:34 jordi * ThemeWin32Classic.cs: Use Windows Standard Colours 2004-08-07 17:32 jordi * TrackBar.cs: throw exceptions of invalid enums values 2004-08-07 17:31 jordi * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and draw method name 2004-08-07 16:56 jackson * HorizontalAlignment.cs: Initial checkin 2004-08-07 13:16 jordi * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing methods 2004-08-07 13:05 jordi * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and GetSysColor defines 2004-08-06 18:01 pbartok * ThemeWin32Classic.cs: - Fixed some rounding issues with float/int 2004-08-06 18:00 jackson * DockStyle.cs, AnchorStyles.cs: Add flags and serializable attributes. 2004-08-06 17:46 pbartok * XplatUIX11.cs: - Implemented GetParent 2004-08-06 17:18 pbartok * TrackBar.cs: - Fixed some rounding issues with float/int 2004-08-06 17:17 pbartok * X11Structs.cs, XplatUIX11.cs: - Fixed Refresh and Invalidate 2004-08-06 15:30 pbartok * Control.cs, X11Structs.cs, XplatUIX11.cs: - Fixed recursive loop when resizing - Improved/fixed redrawing on expose messages 2004-08-06 09:53 jordi * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11 keyboard navigation 2004-08-06 08:02 pbartok * X11Structs.cs, XplatUIX11.cs: - Fixed reparenting - Fixed window border creation 2004-08-05 15:38 pbartok * XplatUIX11.cs: - Attempted fix for reparenting problems 2004-08-04 15:14 pbartok * Control.cs: - Fixed Invalidation bug (calculated wrong client area) - Added ClientSize setter 2004-08-04 15:13 pbartok * Form.cs: - Added AutoScale properties 2004-08-04 15:13 pbartok * SWF.csproj: - Added latest files 2004-08-04 14:11 pbartok * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs: - Added Invalidate handling 2004-08-03 17:09 jordi * XplatUIDriver.cs: fixes spelling mistake 2004-07-27 09:53 jordi * TrackBar.cs: fixes trackbar events, def classname, methods signature 2004-07-27 09:29 jordi * ScrollBar.cs: fixes scrollbar events 2004-07-27 04:38 jordi * Control.cs: changes to be able to run winforms samples 2004-07-26 11:42 jordi * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support 2004-07-26 05:41 jordi * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs, MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox implementation 2004-07-22 09:22 jordi * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label: check link overlapping, implement events, and fixes 2004-07-21 10:28 jordi * DialogResult.cs, IButtonControl.cs: fixes comments filenames 2004-07-21 10:19 jordi * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs, LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs, LinkLabelLinkClickedEventArgs.cs, LinkLabelLinkClickedEventHandler.cs, LinkState.cs, XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control implementation 2004-07-19 13:09 jordi * Control.cs, Label.cs: label control re-written: added missing functionlity, events, and properties 2004-07-19 10:49 jordi * Control.cs: fixes SetBounds logic 2004-07-19 01:29 jordi * Control.cs: Call RefreshWindow only if the window has created 2004-07-15 14:05 pbartok * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj: - Implemented ImageList and ImageList.ImageCollection classes - Added ColorDepth enumeration - Updated SWF VS.Net project 2004-07-15 11:06 jordi * XplatUIStructs.cs: added MsgButons enum 2004-07-15 11:03 jordi * Control.cs: added basic mouse handeling events 2004-07-15 03:38 jordi * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and Vertical TrackBar control implementation 2004-07-13 09:33 jordi * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit 2004-07-13 09:31 jordi * Control.cs, Form.cs: commit: new properties and fixes form size problems 2004-07-09 14:13 miguel * ProgressBar.cs: Spelling 2004-07-09 11:25 pbartok * ProgressBar.cs: - Removed usage of Rectangle for drawing. Miguel pointed out it's faster 2004-07-09 11:17 miguel * ProgressBar.cs: 2004-07-09 Miguel de Icaza * ProgressBar.cs: Fixed spelling for `block' drawProgressBar: renamed to `DrawProgressBar' to follow the coding style guidelines. Avoid using the += on rect.X, that exposed a bug in the compiler. 2004-07-08 23:21 pbartok * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, Application.cs, ApplicationContext.cs, BaseCollection.cs, Binding.cs, BindingContext.cs, BindingMemberInfo.cs, BindingsCollection.cs, BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs, BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs, ButtonState.cs, CaptionButton.cs, CheckBox.cs, ContainerControl.cs, Control.cs, ControlEventArgs.cs, ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs, ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright, CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs, DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs, FrameStyle.cs, GiveFeedbackEventArgs.cs, GiveFeedbackEventHandler.cs, HelpEventArgs.cs, HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs, IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs, InputLanguageChangedEventArgs.cs, InputLanguageChangedEventHandler.cs, InputLanguageChangingEventArgs.cs, InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs, InvalidateEventArgs.cs, InvalidateEventHandler.cs, KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs, KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs, LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs, MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs, PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs, QueryAccessibilityHelpEventArgs.cs, QueryAccessibilityHelpEventHandler.cs, QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs, RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs, ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs, ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs, TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs, UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs, XplatUIX11.cs, lang.cs: - Initial check-in