Browse Source
SearchAndReplace panel now uses translation database. Removed many unused resource strings. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@691 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
39 changed files with 354 additions and 138 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,145 @@
@@ -0,0 +1,145 @@
|
||||
<?xml version="1.0"?> |
||||
<Template originator = "Daniel Grunwald" |
||||
created = "01/11/2005" |
||||
lastModified = "01/11/2005"> |
||||
|
||||
<!-- Template Header --> |
||||
<TemplateConfiguration> |
||||
<Name>${res:Templates.Project.SharpDevelopMacro.Name}</Name> |
||||
<Category>SharpDevelop</Category> |
||||
<Icon>C#.Project.ControlLibrary</Icon> |
||||
<LanguageName>C#</LanguageName> |
||||
<Description>${res:Templates.Project.SharpDevelopMacro.Description}</Description> |
||||
</TemplateConfiguration> |
||||
|
||||
<!-- Actions --> |
||||
<Actions> |
||||
<Open filename = "${ProjectName}.addin"/> |
||||
</Actions> |
||||
|
||||
<Combine name = "${ProjectName}" directory = "."> |
||||
<Options> |
||||
<StartupProject>${ProjectName}</StartupProject> |
||||
</Options> |
||||
|
||||
<Project name = "${ProjectName}" directory = "."> |
||||
<Options OutputType = "Library" /> |
||||
|
||||
<ProjectItems> |
||||
<Reference Include="System" /> |
||||
<Reference Include="System.Data" /> |
||||
<Reference Include="System.Drawing" /> |
||||
<Reference Include="System.Windows.Forms" /> |
||||
<Reference Include="System.Xml" /> |
||||
</ProjectItems> |
||||
|
||||
<Files> |
||||
<File name="${ProjectName}.addin" copyToOutputDirectory="Always"><![CDATA[<AddIn name = "${ProjectName}" |
||||
author = "${USER}" |
||||
copyright = "GNU General Public License" |
||||
url = "" |
||||
description = "TODO: Put description here" |
||||
version = "1.0.0"> |
||||
|
||||
<Runtime> |
||||
<Import assembly = "${ProjectName}.dll"/> |
||||
</Runtime> |
||||
|
||||
<Path name = "/SharpDevelop/Workbench/MainMenu/Tools"> |
||||
<MenuItem id = "${ProjectName}Command1" |
||||
insertafter = "Separator1" |
||||
insertbefore = "Separator2" |
||||
label = "${ProjectName}" |
||||
class = "${ProjectName}.ToolCommand1"/> |
||||
</Path> |
||||
</AddIn> |
||||
]]></File> |
||||
<File name="Src/Command.cs"> |
||||
<![CDATA[// Copyright (C) yyyy name of author |
||||
// |
||||
// This program is free software; you can redistribute it and/or |
||||
// modify it under the terms of the GNU General Public License |
||||
// as published by the Free Software Foundation; either version 2 |
||||
// of the License, or (at your option) any later version. |
||||
// |
||||
// This program is distributed in the hope that it will be useful, |
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
// GNU General Public License for more details. |
||||
// |
||||
// You should have received a copy of the GNU General Public License |
||||
// along with this program; if not, write to the Free Software |
||||
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
||||
|
||||
using System; |
||||
using System.Text; |
||||
using ICSharpCode.Core; |
||||
using ICSharpCode.SharpDevelop; |
||||
using ICSharpCode.SharpDevelop.Gui; |
||||
using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor; |
||||
using ICSharpCode.TextEditor; |
||||
|
||||
namespace Macro1 |
||||
{ |
||||
public class ToolCommand1 : AbstractMenuCommand |
||||
{ |
||||
public override void Run() |
||||
{ |
||||
// Here an example that shows how to access the current text document: |
||||
|
||||
ITextEditorControlProvider tecp = WorkbenchSingleton.Workbench.ActiveContent as ITextEditorControlProvider; |
||||
if (tecp == null) { |
||||
// active content is not a text editor control |
||||
return; |
||||
} |
||||
// Get the active text area from the control: |
||||
TextArea textArea = tecp.TextEditorControl.ActiveTextAreaControl.TextArea; |
||||
// get the selected text: |
||||
string text = textArea.SelectionManager.SelectedText; |
||||
// reverse the text: |
||||
StringBuilder b = new StringBuilder(text.Length); |
||||
for (int i = text.Length - 1; i >= 0; i--) |
||||
b.Append(text[i]); |
||||
string newText = b.ToString(); |
||||
// replace the selected text with the new text: |
||||
// Replace() takes the arguments: start offset to replace, length of the text to remove, new text |
||||
textArea.Document.Replace(textArea.Caret.Offset, text.Length, newText); |
||||
// Redraw: |
||||
textArea.Refresh(); |
||||
} |
||||
} |
||||
} |
||||
]]></File> |
||||
<File name="Configuration/AssemblyInfo.cs"> |
||||
<![CDATA[using System.Reflection; |
||||
using System.Runtime.CompilerServices; |
||||
|
||||
// Information about this assembly is defined by the following |
||||
// attributes. |
||||
// |
||||
// change them to the information which is associated with the assembly |
||||
// you compile. |
||||
|
||||
[assembly: AssemblyTitle("${ProjectName}")] |
||||
[assembly: AssemblyDescription("Macro AddIn for SharpDevelop 2.0")] |
||||
[assembly: AssemblyConfiguration("")] |
||||
[assembly: AssemblyCompany("")] |
||||
[assembly: AssemblyProduct("SharpDevelop")] |
||||
[assembly: AssemblyCopyright("GNU General Public Licence")] |
||||
[assembly: AssemblyTrademark("")] |
||||
[assembly: AssemblyCulture("")] |
||||
|
||||
// The assembly version has following format : |
||||
// |
||||
// Major.Minor.Build.Revision |
||||
// |
||||
// You can specify all values by your own or you can build default build and revision |
||||
// numbers with the '*' character (the default): |
||||
|
||||
[assembly: AssemblyVersion("1.0.*")] |
||||
|
||||
]]></File> |
||||
</Files> |
||||
</Project> |
||||
</Combine> |
||||
</Template> |
@ -1,15 +1,16 @@
@@ -1,15 +1,16 @@
|
||||
<?xml version="1.0" ?> |
||||
<Filetypes> |
||||
<Filetype ext="cmbx" icon="cmbx.ico">SharpDevelop 1.x Combine</Filetype> |
||||
<Filetype ext="prjx" icon="prjx.ico">SharpDevelop 1.x Project</Filetype> |
||||
<Filetype ext="sln" icon="cmbx.ico">SharpDevelop Solution</Filetype> |
||||
<Filetype ext="csproj" icon="prjx.ico">SharpDevelop C# Project</Filetype> |
||||
<Filetype ext="vbproj" icon="prjx.ico">SharpDevelop VB Project</Filetype> |
||||
<Filetype ext="cs" icon="cs.ico">C# Source File</Filetype> |
||||
<Filetype ext="vb" icon="vb.ico">VB.NET Source File</Filetype> |
||||
<Filetype ext="java" icon="java.ico">Java Source File</Filetype> |
||||
<Filetype ext="xfrm" icon="xfrm.ico">SharpDevelop XML Form</Filetype> |
||||
<Filetype ext="resx" icon="resx.ico">.NET Resource File</Filetype> |
||||
<Filetype ext="resources" icon="resx.ico">.NET Resource File (Binary)</Filetype> |
||||
<Filetype ext="xml" icon="xml.ico">XML Document</Filetype> |
||||
<Filetype ext="prjx" icon="prjx.ico">SharpDevelop 1.x ${res:ICSharpCode.FiletypeRegisterer.Project}</Filetype> |
||||
<Filetype ext="sln" icon="cmbx.ico">${res:ICSharpCode.FiletypeRegisterer.SolutionFileAssozisation}</Filetype> |
||||
<Filetype ext="csproj" icon="prjx.ico">C# ${res:ICSharpCode.FiletypeRegisterer.Project}</Filetype> |
||||
<Filetype ext="vbproj" icon="prjx.ico">VB ${res:ICSharpCode.FiletypeRegisterer.Project}</Filetype> |
||||
<Filetype ext="booproj" icon="prjx.ico">Boo ${res:ICSharpCode.FiletypeRegisterer.Project}</Filetype> |
||||
<Filetype ext="cs" icon="cs.ico">${res:ICSharpCode.FiletypeRegisterer.CSharpSourceFileAssozisation}</Filetype> |
||||
<Filetype ext="vb" icon="vb.ico">${res:ICSharpCode.FiletypeRegisterer.VBNetSourceFileAssozisation}</Filetype> |
||||
<!--<Filetype ext="java" icon="java.ico">${res:ICSharpCode.FiletypeRegisterer.JavaSourceFileAssozisation}</Filetype>--> |
||||
<Filetype ext="xfrm" icon="xfrm.ico">${res:ICSharpCode.FiletypeRegisterer.XMLFormFileAssozisation}</Filetype> |
||||
<Filetype ext="resx" icon="resx.ico">${res:ICSharpCode.FiletypeRegisterer.ResXResourceFilesFileAssozisation}</Filetype> |
||||
<Filetype ext="resources" icon="resx.ico">${res:ICSharpCode.FiletypeRegisterer.BinaryResourceFilesFileAssozisation}</Filetype> |
||||
<Filetype ext="xml" icon="xml.ico">${res:ICSharpCode.FiletypeRegisterer.XmlFileAssozisation}</Filetype> |
||||
</Filetypes> |
||||
|
@ -1,131 +1,148 @@
@@ -1,131 +1,148 @@
|
||||
<Components version="1.0"> |
||||
<System.Windows.Forms.UserControl> |
||||
<Name value="XmlUserControl1" /> |
||||
<DockPadding value="" /> |
||||
<ClientSize value="{Width=432, Height=312}" /> |
||||
<Controls> |
||||
<System.Windows.Forms.Button> |
||||
<Name value="findAllButton" /> |
||||
<Location value="{X=120,Y=280}" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<Text value="Find &all" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.FindAll}" /> |
||||
<Anchor value="Top, Right" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<TabIndex value="14" /> |
||||
</System.Windows.Forms.Button> |
||||
<System.Windows.Forms.ComboBox> |
||||
<Name value="useComboBox" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="11" /> |
||||
<Location value="{X=8,Y=248}" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<TabIndex value="11" /> |
||||
<DropDownStyle value="DropDownList" /> |
||||
<Location value="{X=8,Y=248}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
</System.Windows.Forms.ComboBox> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="label4" /> |
||||
<Text value="Us&e:" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Location value="{X=8,Y=224}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.UseMethodLabel}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="10" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Size value="{Width=416, Height=23}" /> |
||||
<Location value="{X=8,Y=224}" /> |
||||
<TabIndex value="10" /> |
||||
</System.Windows.Forms.Label> |
||||
<System.Windows.Forms.Button> |
||||
<Name value="findNextButton" /> |
||||
<Location value="{X=224,Y=280}" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<Text value="&Find next" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.FindButton}" /> |
||||
<Anchor value="Top, Right" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<TabIndex value="12" /> |
||||
</System.Windows.Forms.Button> |
||||
<System.Windows.Forms.Button> |
||||
<Name value="bookmarkAllButton" /> |
||||
<Location value="{X=328,Y=280}" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<Text value="&Bookmark all" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.MarkAllButton}" /> |
||||
<Anchor value="Top, Right" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<TabIndex value="13" /> |
||||
</System.Windows.Forms.Button> |
||||
<System.Windows.Forms.CheckBox> |
||||
<Name value="matchWholeWordCheckBox" /> |
||||
<RightToLeft value="No" /> |
||||
<Location value="{X=8,Y=200}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.MatchWholeWord}" /> |
||||
<TabIndex value="9" /> |
||||
<Size value="{Width=416, Height=24}" /> |
||||
<Text value="Match &whole word" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<RightToLeft value="No" /> |
||||
<TabIndex value="9" /> |
||||
</System.Windows.Forms.CheckBox> |
||||
<System.Windows.Forms.CheckBox> |
||||
<Name value="matchCaseCheckBox" /> |
||||
<Location value="{X=8,Y=176}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.MatchCase}" /> |
||||
<TabIndex value="8" /> |
||||
<Size value="{Width=416, Height=24}" /> |
||||
<Text value="Match &case" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="8" /> |
||||
</System.Windows.Forms.CheckBox> |
||||
<System.Windows.Forms.ComboBox> |
||||
<Name value="fileTypesComboBox" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<TabIndex value="7" /> |
||||
<Location value="{X=8,Y=152}" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
</System.Windows.Forms.ComboBox> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="lookAtTypesLabel" /> |
||||
<Text value="Look at these file &types:" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Location value="{X=8,Y=128}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.LookAtFileTypes}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="6" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Size value="{Width=416, Height=23}" /> |
||||
<Location value="{X=8,Y=128}" /> |
||||
<TabIndex value="6" /> |
||||
</System.Windows.Forms.Label> |
||||
<System.Windows.Forms.CheckBox> |
||||
<Name value="includeSubFolderCheckBox" /> |
||||
<Location value="{X=24,Y=104}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.IncludeSubFolders}" /> |
||||
<TabIndex value="5" /> |
||||
<Size value="{Width=400, Height=24}" /> |
||||
<Text value="Include su&b-folders" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="5" /> |
||||
</System.Windows.Forms.CheckBox> |
||||
<System.Windows.Forms.Button> |
||||
<Name value="lookInBrowseButton" /> |
||||
<Location value="{X=400,Y=80}" /> |
||||
<Size value="{Width=24, Height=21}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="..." /> |
||||
<Anchor value="Top, Right" /> |
||||
<Size value="{Width=24, Height=21}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<TabIndex value="4" /> |
||||
</System.Windows.Forms.Button> |
||||
<System.Windows.Forms.ComboBox> |
||||
<Name value="lookInComboBox" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<Size value="{Width=384, Height=21}" /> |
||||
<TabIndex value="3" /> |
||||
<Location value="{X=8,Y=80}" /> |
||||
<Size value="{Width=384, Height=21}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
</System.Windows.Forms.ComboBox> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="label2" /> |
||||
<Text value="&Look in:" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Location value="{X=8,Y=56}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.SearchIn}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="2" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Size value="{Width=416, Height=23}" /> |
||||
<Location value="{X=8,Y=56}" /> |
||||
<TabIndex value="2" /> |
||||
</System.Windows.Forms.Label> |
||||
<System.Windows.Forms.ComboBox> |
||||
<Name value="findComboBox" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<TabIndex value="1" /> |
||||
<Location value="{X=8,Y=32}" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
</System.Windows.Forms.ComboBox> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="label1" /> |
||||
<Text value="Fi&nd what:" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Location value="{X=8,Y=8}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.FindWhat}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="0" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Size value="{Width=416, Height=23}" /> |
||||
<Location value="{X=8,Y=8}" /> |
||||
<TabIndex value="0" /> |
||||
</System.Windows.Forms.Label> |
||||
</Controls> |
||||
</System.Windows.Forms.UserControl> |
||||
</Components> |
||||
</Components> |
||||
|
@ -1,147 +1,165 @@
@@ -1,147 +1,165 @@
|
||||
<Components version="1.0"> |
||||
<System.Windows.Forms.UserControl> |
||||
<Name value="XmlUserControl1" /> |
||||
<DockPadding value="" /> |
||||
<ClientSize value="{Width=432, Height=360}" /> |
||||
<Controls> |
||||
<System.Windows.Forms.ComboBox> |
||||
<Name value="useComboBox" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="13" /> |
||||
<Location value="{X=8,Y=296}" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<TabIndex value="13" /> |
||||
<DropDownStyle value="DropDownList" /> |
||||
<Location value="{X=8,Y=296}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
</System.Windows.Forms.ComboBox> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="label5" /> |
||||
<Text value="Us&e:" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Location value="{X=8,Y=272}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.UseMethodLabel}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="12" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Size value="{Width=416, Height=23}" /> |
||||
<Location value="{X=8,Y=272}" /> |
||||
<TabIndex value="12" /> |
||||
</System.Windows.Forms.Label> |
||||
<System.Windows.Forms.Button> |
||||
<Name value="replaceAllButton" /> |
||||
<Location value="{X=328,Y=328}" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<Text value="&Replace all" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.ReplaceAllButton}" /> |
||||
<Anchor value="Top, Right" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<TabIndex value="16" /> |
||||
</System.Windows.Forms.Button> |
||||
<System.Windows.Forms.ComboBox> |
||||
<Name value="replaceComboBox" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<TabIndex value="3" /> |
||||
<Location value="{X=8,Y=80}" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
</System.Windows.Forms.ComboBox> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="label4" /> |
||||
<Text value="Re&place with:" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Location value="{X=8,Y=56}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.ReplaceWith}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="2" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Size value="{Width=416, Height=23}" /> |
||||
<Location value="{X=8,Y=56}" /> |
||||
<TabIndex value="2" /> |
||||
</System.Windows.Forms.Label> |
||||
<System.Windows.Forms.Button> |
||||
<Name value="findNextButton" /> |
||||
<Location value="{X=120,Y=328}" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<Text value="&Find next" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.FindNextButton}" /> |
||||
<Anchor value="Top, Right" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<TabIndex value="14" /> |
||||
</System.Windows.Forms.Button> |
||||
<System.Windows.Forms.Button> |
||||
<Name value="replaceButton" /> |
||||
<Location value="{X=224,Y=328}" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<Text value="&Replace" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.ReplaceButton}" /> |
||||
<Anchor value="Top, Right" /> |
||||
<Size value="{Width=96, Height=23}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<TabIndex value="15" /> |
||||
</System.Windows.Forms.Button> |
||||
<System.Windows.Forms.CheckBox> |
||||
<Name value="matchWholeWordCheckBox" /> |
||||
<RightToLeft value="No" /> |
||||
<Location value="{X=8,Y=248}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.MatchWholeWord}" /> |
||||
<TabIndex value="11" /> |
||||
<Size value="{Width=416, Height=24}" /> |
||||
<Text value="Match &whole word" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<RightToLeft value="No" /> |
||||
<TabIndex value="11" /> |
||||
</System.Windows.Forms.CheckBox> |
||||
<System.Windows.Forms.CheckBox> |
||||
<Name value="matchCaseCheckBox" /> |
||||
<Location value="{X=8,Y=224}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.MatchCase}" /> |
||||
<TabIndex value="10" /> |
||||
<Size value="{Width=416, Height=24}" /> |
||||
<Text value="Match &case" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="10" /> |
||||
</System.Windows.Forms.CheckBox> |
||||
<System.Windows.Forms.ComboBox> |
||||
<Name value="fileTypesComboBox" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<TabIndex value="9" /> |
||||
<Location value="{X=8,Y=200}" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
</System.Windows.Forms.ComboBox> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="lookAtTypesLabel" /> |
||||
<Text value="Look at these file &types:" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Location value="{X=8,Y=176}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.LookAtFileTypes}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="8" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Size value="{Width=416, Height=23}" /> |
||||
<Location value="{X=8,Y=176}" /> |
||||
<TabIndex value="8" /> |
||||
</System.Windows.Forms.Label> |
||||
<System.Windows.Forms.CheckBox> |
||||
<Name value="includeSubFolderCheckBox" /> |
||||
<Location value="{X=24,Y=152}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.IncludeSubFolders}" /> |
||||
<TabIndex value="7" /> |
||||
<Size value="{Width=400, Height=24}" /> |
||||
<Text value="Include su&b-folders" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="7" /> |
||||
</System.Windows.Forms.CheckBox> |
||||
<System.Windows.Forms.Button> |
||||
<Name value="lookInBrowseButton" /> |
||||
<Location value="{X=400,Y=128}" /> |
||||
<Size value="{Width=24, Height=21}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="..." /> |
||||
<Anchor value="Top, Right" /> |
||||
<Size value="{Width=24, Height=21}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<TabIndex value="6" /> |
||||
</System.Windows.Forms.Button> |
||||
<System.Windows.Forms.ComboBox> |
||||
<Name value="lookInComboBox" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<Size value="{Width=384, Height=21}" /> |
||||
<TabIndex value="5" /> |
||||
<Location value="{X=8,Y=128}" /> |
||||
<Size value="{Width=384, Height=21}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
</System.Windows.Forms.ComboBox> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="label2" /> |
||||
<Text value="&Look in:" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Location value="{X=8,Y=104}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.SearchIn}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="4" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Size value="{Width=416, Height=23}" /> |
||||
<Location value="{X=8,Y=104}" /> |
||||
<TabIndex value="4" /> |
||||
</System.Windows.Forms.Label> |
||||
<System.Windows.Forms.ComboBox> |
||||
<Name value="findComboBox" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<TabIndex value="1" /> |
||||
<Location value="{X=8,Y=32}" /> |
||||
<Size value="{Width=416, Height=21}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
</System.Windows.Forms.ComboBox> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="label1" /> |
||||
<Text value="Fi&nd what:" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Location value="{X=8,Y=8}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="${res:Dialog.NewProject.SearchReplace.FindWhat}" /> |
||||
<Anchor value="Top, Left, Right" /> |
||||
<TabIndex value="0" /> |
||||
<TextAlign value="BottomLeft" /> |
||||
<Size value="{Width=416, Height=23}" /> |
||||
<Location value="{X=8,Y=8}" /> |
||||
<TabIndex value="0" /> |
||||
</System.Windows.Forms.Label> |
||||
</Controls> |
||||
</System.Windows.Forms.UserControl> |
||||
</Components> |
||||
</Components> |
||||
|
Binary file not shown.
@ -1,6 +1,16 @@
@@ -1,6 +1,16 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 9.00 |
||||
# SharpDevelop 2.0.0.550 |
||||
# SharpDevelop 2.0.0.689 |
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StringResourceTool", "StringResourceTool.csproj", "{197537EA-78F4-4434-904C-C81B19459FE7}" |
||||
EndProject |
||||
Global |
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
||||
Debug|Any CPU = Debug|Any CPU |
||||
Release|Any CPU = Release|Any CPU |
||||
EndGlobalSection |
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
||||
{197537EA-78F4-4434-904C-C81B19459FE7}.Debug|Any CPU.Build.0 = Debug|Any CPU |
||||
{197537EA-78F4-4434-904C-C81B19459FE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
||||
{197537EA-78F4-4434-904C-C81B19459FE7}.Release|Any CPU.Build.0 = Release|Any CPU |
||||
{197537EA-78F4-4434-904C-C81B19459FE7}.Release|Any CPU.ActiveCfg = Release|Any CPU |
||||
EndGlobalSection |
||||
EndGlobal |
||||
|
Loading…
Reference in new issue