~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Pads.ProjectPad/ShowAllFilesBuilderExtension.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
namespace MonoDevelop.Ide.Gui.Pads.ProjectPad
40
40
{
41
 
        public class ShowAllFilesBuilderExtension: NodeBuilderExtension
 
41
        class ShowAllFilesBuilderExtension: NodeBuilderExtension
42
42
        {
43
43
                ProjectFileEventHandler fileAddedHandler;
44
44
                ProjectFileEventHandler fileRemovedHandler;
335
335
                }
336
336
        }
337
337
        
338
 
        public class ShowAllFilesCommandHandler: NodeCommandHandler
 
338
        class ShowAllFilesCommandHandler: NodeCommandHandler
339
339
        {
340
340
                public override bool CanDropNode (object dataObject, DragOperation operation)
341
341
                {
355
355
                        if (targetPath == source)
356
356
                                targetPath = ProjectOperations.GetTargetCopyName (targetPath, false);
357
357
                        
358
 
                        using (IProgressMonitor monitor = IdeApp.Workbench.ProgressMonitors.GetStatusProgressMonitor (GettextCatalog.GetString("Copying files..."), Stock.CopyIcon, true))
 
358
                        using (IProgressMonitor monitor = IdeApp.Workbench.ProgressMonitors.GetStatusProgressMonitor (GettextCatalog.GetString("Copying files..."), Stock.StatusSolutionOperation, true))
359
359
                        {
360
360
                                bool move = operation == DragOperation.Move;
361
361
                                IdeApp.ProjectOperations.TransferFiles (monitor, null, source, targetProject, targetPath, move, false);