Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-08-29[Ide] When using toplevel windows for pads register with command serviceCody Russell
This ensures that the CommandManager is able to match up the commands with the window and update them properly. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=32470
2015-08-16[Ide] Remove Utility type hint from DockFloatingWindowCody Russell
This window hint doesn't seem to be doing anything for us, and on OSX it is causes the window to disappear when the app loses focus. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=26218
2015-03-16[Mac] Check that the dialog is visible before raising over native docksCody Russell
Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=27868
2015-03-13[Docking] Don't disable AcceptFocus on the window or it confuses focus.Cody Russell
When a pad is shown (for example Toolbox) it appears to have focus, but in reality it doesn't because it's been blocked from accepting. At this point we visually have input in the pad, but it's actually in the text editor, and the only way to correct it (and get auto-hiding to work again) is to click/focus the widget that already visually appears to have focus so that it actually *does* have focus. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=27917
2015-02-10[Mac] Force dialog windows above native docking padsCody Russell
Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=26908
2015-01-05[Icons] Simplifying icon namesVaclav Vancura
2015-01-05[Icons] Cleaning up icons all aroundVaclav Vancura
2014-11-02Fix for bug introduced in commitjohn
1fdcc70515cdb917fe620aeba216824dcd0c0643. IDE is throwing following exception... System.NullReferenceException: Object reference not set to an instance of an object at MonoDevelop.Components.Docking.DockBarItem.<Present>m__2 () [0x00027] in main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockBarItem.cs:278 at GLib.Timeout+TimeoutProxy.Handler () [0x00000] in <filename unknown>:0
2014-10-27[Ide] Fix pad hidding issueLluis Sanchez
When presenting a pad, make sure the window that contains it gets the top level focus, otherwise it will be closed shortly after being shown.
2014-10-02[Ide] Fix NullReferenceException when undocking via double-click.Cody Russell
2014-09-30Merge branch 'master' into sliding-win-padsLluis Sanchez
2014-09-29[Ide] Auto-hide pads when we start to resize.Cody Russell
2014-09-23Add commentLluis Sanchez
2014-09-23[Ide] Keep the widget focus when switching layoutsLluis Sanchez
Fixes bug 16972 - Focus widget resets when switching layout
2014-09-19[Ide] Improve behavior of sliding pad resizeLluis Sanchez
Use NSWindow.SetFrame to move and change the size of the sliding pad windows all at once. This reduces window bumping a bit. It is not perfect but good enough for now.
2014-09-18[Ide] Fix sliding pad resizingLluis Sanchez
2014-09-12Set TypeHint to Toolbar *before* calling AddChildWindow().Cody Russell
With the Toolbar type hint, GdkQuartzWindow returns NO from -(BOOL)canBecomeMainWindow and YES from -(BOOL)canBecomeKeyWindow
2014-09-11Revert "[Ide] Fix focus issues when showing pads as NSWindow children."Cody Russell
This reverts commit 8019759c829d5ed345f48c655622a6c838270d34.
2014-09-11[Ide] Fix focus issues when showing pads as NSWindow children.Cody Russell
Work around the focus issues by switching to WindowType.Popup and showing the window *after* we add child. However, realizing the window before it's shown causes it to appear at the display origin and then get moved into the desired location when we show it. This causes a highly visible flickering issue. There isn't any apparent want to prevent this, so we're masking the flickering using an opacity trick.
2014-08-29[Ide] Initial support for sliding pads on windowsLluis Sanchez
2014-08-12Hide the dockbars while we're displaying an overlay, because otherwiseCody Russell
there are issues with mouse clicks being eaten by the dockbars. For example, when the welcome page is up the dockbar on the right eats clicks when the user tries to grab the right scrollbar. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=19445
2014-04-24[Ide] Fix DockItemTitleTab's height request for high-res Win32 screens.Cody Russell
2014-03-07[Ide] Some minor tweaks in welcome page reusability.Mike Krüger
2014-02-11Remove unused classesLluis Sanchez
Use Xwt.Drawing.Color instead of HslColor
2014-01-24[Ide] Fix minor icon update issue in the shellLluis Sanchez
2013-12-04Merge branch 'master' into retinaLluis Sanchez
Conflicts: main/src/addins/CBinding/CBinding.csproj main/src/addins/CSharpBinding/CSharpBinding.csproj main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockBarItem.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Workbench.cs version-checks
2013-12-02[Ide] Fix DockBarItem size requestsCody Russell
Set the requisition to the primary surface size rather than adding it, otherwise we can get a widget that grows in size each time it receives a size request. This can occur when we change themes, or on Windows when any number of system settings (such as desktop background) are changed. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=15967
2013-11-29[Icons] Pad Management iconsVaclav Vancura
2013-11-01[Icons] Removing obsolete tab management iconsVaclav Vancura
2013-11-01[Icons] New pad management iconsVaclav Vancura
2013-08-21Merge remote-tracking branch 'origin/master' into retinaLluis Sanchez
Conflicts: main/src/addins/CSharpBinding/MonoDevelop.CSharp/PathedDocumentTextEditorExtension.cs main/src/addins/MonoDevelop.AssemblyBrowser/MonoDevelop.AssemblyBrowser/TreeNodes/AssemblyReferenceNodeBuilder.cs main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/SourceEditorView.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/ChangeSetView.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlNodeExtension.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlService.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/DocumentSwitcher.cs
2013-08-14[Ide] Fix bad assert triggered now we define DEBUGMichael Hutchinson
2013-08-13Fix bad asserts triggered now we define DEBUGMichael Hutchinson
2013-08-13Revert "Revert "Fix hundreds of warnings""Michael Hutchinson
Please use an up to date Mono. This reverts commit 54a64a751b7070237368b7967cc4a6adff6bc468.
2013-08-13Revert "Fix hundreds of warnings"Jeffrey Stedfast
This reverts commit 1db8e4676941210b5bf7c68e01f70e1b85cd2a41.
2013-08-12Fix hundreds of warningsMichael Hutchinson
2013-07-25Merge remote-tracking branch 'origin/master' into retina2Lluis Sanchez
Conflicts: main/src/addins/GnomePlatform/GnomePlatform.csproj main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/LogWidget.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlNodeExtension.cs main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/VersionControlService.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockBarItem.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.CodeCompletion/ListWindow.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
2013-07-25Pixbuf -> Xwt ImageLluis Sanchez
2013-07-17Use the new animation API from XWTLluis Sanchez
2013-07-11Don't allow closing the document areaLluis Sanchez
Fixes 13157 - No way to get Document pad back if you undock/close it
2013-07-04Use Xwt.Image instead of PixbufLluis Sanchez
2013-06-21Dispose ALL the LinearGradientsMichael Hutchinson
2013-05-02Fix warningsLluis Sanchez
2013-04-25Use more normal mouse cursorsMichael Hutchinson
2013-03-06Fix a ton of leaked Cairo patternsMichael Hutchinson
Around 420 native objects by solution load
2013-02-07[Ide] Fix enabling Mac menu when floating pad focusedMichael Hutchinson
2013-02-07[Docking] Don't make floating pads transient to main windowMichael Hutchinson
Workaround for BXC9883 - Xamarin Studio hides when there is a nonmodal floating window and it loses focus
2013-01-08Fix bug 9282 - [ui-refresh] Exception when clicking near the edge of the ↵Lluis Sanchez
welcome screen
2012-11-09Fix bug 8300 - Show unfocused docked pad controls on hoverLluis Sanchez
It required implementing a special class for getting the pointer leave event, since in this case doesn't have to be fired when the pointer is moved to a child.
2012-11-08Fix welcome page behaviorLluis Sanchez
Hide the autohide pads when showing the welcome page, and don't allow them to show while the page is open. If a pad or a document is focused while the welcome page is visible, hide it. Fixes bug 8273 - Invisible pads still show on hover in Default configuration