projectbrowsercommands.cs

来自「SharpDevelop2.0.0 c#开发免费工具」· CS 代码 · 共 136 行

CS
136
字号
// <file>
//     <copyright see="prj:///doc/copyright.txt"/>
//     <license see="prj:///doc/license.txt"/>
//     <owner name="none" email=""/>
//     <version>$Revision: 915 $</version>
// </file>

using System;
using System.Text;
using System.IO;
using System.Threading;
using System.Drawing;
using System.Drawing.Printing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Diagnostics;

using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;

using ICSharpCode.SharpDevelop.Project;
using NSvn.Common;
using NSvn.Core;

namespace ICSharpCode.Svn.Commands
{
	public abstract class SubversionCommand : AbstractMenuCommand
	{
		protected string fileName;
		
		public override void Run()
		{
			AbstractProjectBrowserTreeNode node = ProjectBrowserPad.Instance.SelectedNode;
			if (node != null) {
				fileName = null;
				if (node is DirectoryNode) {
					fileName = ((DirectoryNode)node).Directory;
				} else if (node is FileNode) {
					fileName = ((FileNode)node).FileName;
				}
				if (fileName == null) {
					return;
				}
				if (StartOperation()) {
					SvnClient.Instance.WaitForOperationEnd();
					OperationFinished();
					OverlayIconManager.EnqueueRecursive(node);
				}
			}
		}
		
		protected abstract bool StartOperation();
		
		protected virtual void OperationFinished()
		{
			//if (AddInOptions.AutomaticallyReloadProject) {
			//	projectService.ReloadCombine();
			//}
		}
	}
	
	public class UpdateCommand : SubversionCommand
	{
		void DoUpdateCommand()
		{
			SvnClient.Instance.Client.Update(Directory.Exists(fileName) ? fileName : Path.GetDirectoryName(fileName), Revision.Head, true);
		}
		
		protected override bool StartOperation()
		{
			SvnClient.Instance.OperationStart("Update", new ThreadStart(DoUpdateCommand));
			return true;
		}
	}
	
	public class RevertCommand : SubversionCommand
	{
		void DoRevertCommand()
		{
			SvnClient.Instance.Client.Revert(new string[] { fileName }, true);
		}
		
		protected override bool StartOperation()
		{
			if (MessageService.AskQuestion("Revert removes all your local modifications to this file. Are you sure?", "Subversion revert")) {
				SvnClient.Instance.OperationStart("Revert", new ThreadStart(DoRevertCommand));
				return true;
			}
			return false;
		}
	}
	
	/// <summary>
	/// Description of CreatePatchCommand
	/// </summary>
	public class CreatePatchCommand : SubversionCommand
	{
		string output;
		
		void DoCreatePatchCommand()
		{
			try {
				MemoryStream outStream = new MemoryStream();
				MemoryStream errStream = new MemoryStream();
				
				SvnClient.Instance.Client.Diff(new string [] {} ,
				                               fileName,
				                               Revision.Committed,
				                               fileName,
				                               Revision.Working,
				                               true,
				                               false,
				                               true,
				                               outStream,
				                               errStream);
				output = Encoding.Default.GetString(outStream.ToArray());
				ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.SafeThreadAsyncCall(this, "DisplayPatch");
			} catch (Exception e) {
				MessageService.ShowError(e);
			}
		}
		
		void DisplayPatch()
		{
			FileService.NewFile(Path.GetFileName(fileName) + ".patch", "patch", output);
		}
		
		protected override bool StartOperation()
		{
			SvnClient.Instance.OperationStart("CreatePatch", new ThreadStart(DoCreatePatchCommand));
			return true;
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?