2009-04-19 18:07:22 +00:00
namespace CodeImp.DoomBuilder.Windows
{
partial class ScriptFindReplaceForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System . ComponentModel . IContainer components = null ;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose ( bool disposing )
{
if ( disposing & & ( components ! = null ) )
{
components . Dispose ( ) ;
}
base . Dispose ( disposing ) ;
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent ( )
{
2016-12-02 13:45:03 +00:00
this . components = new System . ComponentModel . Container ( ) ;
System . ComponentModel . ComponentResourceManager resources = new System . ComponentModel . ComponentResourceManager ( typeof ( ScriptFindReplaceForm ) ) ;
2009-04-19 18:07:22 +00:00
this . label1 = new System . Windows . Forms . Label ( ) ;
2016-12-02 13:45:03 +00:00
this . findmatchcase = new System . Windows . Forms . CheckBox ( ) ;
this . findwholeword = new System . Windows . Forms . CheckBox ( ) ;
2009-04-19 18:07:22 +00:00
this . findnextbutton = new System . Windows . Forms . Button ( ) ;
this . replaceallbutton = new System . Windows . Forms . Button ( ) ;
this . replacebutton = new System . Windows . Forms . Button ( ) ;
2014-12-10 13:15:23 +00:00
this . findpreviousbutton = new System . Windows . Forms . Button ( ) ;
2016-12-02 13:45:03 +00:00
this . tabs = new System . Windows . Forms . TabControl ( ) ;
this . tabfind = new System . Windows . Forms . TabPage ( ) ;
2016-12-08 12:10:43 +00:00
this . bookmarkallbutton = new System . Windows . Forms . Button ( ) ;
2016-12-02 13:45:03 +00:00
this . findinbox = new System . Windows . Forms . ComboBox ( ) ;
this . label2 = new System . Windows . Forms . Label ( ) ;
this . findbox = new System . Windows . Forms . ComboBox ( ) ;
this . tabreplace = new System . Windows . Forms . TabPage ( ) ;
this . replacebox = new System . Windows . Forms . ComboBox ( ) ;
this . label5 = new System . Windows . Forms . Label ( ) ;
this . replaceinbox = new System . Windows . Forms . ComboBox ( ) ;
this . label3 = new System . Windows . Forms . Label ( ) ;
this . replacefindbox = new System . Windows . Forms . ComboBox ( ) ;
this . label4 = new System . Windows . Forms . Label ( ) ;
this . replacematchcase = new System . Windows . Forms . CheckBox ( ) ;
this . replacewholeword = new System . Windows . Forms . CheckBox ( ) ;
this . imagelist = new System . Windows . Forms . ImageList ( this . components ) ;
this . tabs . SuspendLayout ( ) ;
this . tabfind . SuspendLayout ( ) ;
this . tabreplace . SuspendLayout ( ) ;
2009-04-19 18:07:22 +00:00
this . SuspendLayout ( ) ;
//
// label1
//
this . label1 . AutoSize = true ;
2016-12-02 13:45:03 +00:00
this . label1 . Location = new System . Drawing . Point ( 6 , 16 ) ;
2009-04-19 18:07:22 +00:00
this . label1 . Name = "label1" ;
2015-01-06 11:49:06 +00:00
this . label1 . Size = new System . Drawing . Size ( 56 , 13 ) ;
2009-04-19 18:07:22 +00:00
this . label1 . TabIndex = 0 ;
this . label1 . Text = "Find what:" ;
//
2016-12-02 13:45:03 +00:00
// findmatchcase
2009-04-19 18:07:22 +00:00
//
2016-12-02 13:45:03 +00:00
this . findmatchcase . AutoSize = true ;
this . findmatchcase . Location = new System . Drawing . Point ( 9 , 116 ) ;
this . findmatchcase . Name = "findmatchcase" ;
this . findmatchcase . Size = new System . Drawing . Size ( 82 , 17 ) ;
this . findmatchcase . TabIndex = 2 ;
this . findmatchcase . Text = "Match case" ;
this . findmatchcase . UseVisualStyleBackColor = true ;
2009-04-19 18:07:22 +00:00
//
2016-12-02 13:45:03 +00:00
// findwholeword
2009-04-19 18:07:22 +00:00
//
2016-12-02 13:45:03 +00:00
this . findwholeword . AutoSize = true ;
this . findwholeword . Location = new System . Drawing . Point ( 97 , 116 ) ;
this . findwholeword . Name = "findwholeword" ;
this . findwholeword . Size = new System . Drawing . Size ( 113 , 17 ) ;
this . findwholeword . TabIndex = 3 ;
this . findwholeword . Text = "Match whole word" ;
this . findwholeword . UseVisualStyleBackColor = true ;
2009-04-19 18:07:22 +00:00
//
// findnextbutton
//
2016-12-02 13:45:03 +00:00
this . findnextbutton . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
2016-12-08 12:10:43 +00:00
this . findnextbutton . Location = new System . Drawing . Point ( 103 , 185 ) ;
2009-04-19 18:07:22 +00:00
this . findnextbutton . Name = "findnextbutton" ;
2016-12-08 12:10:43 +00:00
this . findnextbutton . Size = new System . Drawing . Size ( 88 , 25 ) ;
this . findnextbutton . TabIndex = 5 ;
2009-04-19 18:07:22 +00:00
this . findnextbutton . Text = "Find Next" ;
this . findnextbutton . UseVisualStyleBackColor = true ;
this . findnextbutton . Click + = new System . EventHandler ( this . findnextbutton_Click ) ;
//
// replaceallbutton
//
2016-12-08 12:10:43 +00:00
this . replaceallbutton . Location = new System . Drawing . Point ( 197 , 185 ) ;
2009-04-19 18:07:22 +00:00
this . replaceallbutton . Name = "replaceallbutton" ;
2016-12-08 12:10:43 +00:00
this . replaceallbutton . Size = new System . Drawing . Size ( 88 , 25 ) ;
this . replaceallbutton . TabIndex = 6 ;
2009-04-19 18:07:22 +00:00
this . replaceallbutton . Text = "Replace All" ;
this . replaceallbutton . UseVisualStyleBackColor = true ;
this . replaceallbutton . Click + = new System . EventHandler ( this . replaceallbutton_Click ) ;
//
// replacebutton
//
2016-12-08 12:10:43 +00:00
this . replacebutton . Location = new System . Drawing . Point ( 103 , 185 ) ;
2009-04-19 18:07:22 +00:00
this . replacebutton . Name = "replacebutton" ;
2016-12-08 12:10:43 +00:00
this . replacebutton . Size = new System . Drawing . Size ( 88 , 25 ) ;
this . replacebutton . TabIndex = 5 ;
2009-04-19 18:07:22 +00:00
this . replacebutton . Text = "Replace" ;
this . replacebutton . UseVisualStyleBackColor = true ;
this . replacebutton . Click + = new System . EventHandler ( this . replacebutton_Click ) ;
//
2014-12-10 13:15:23 +00:00
// findpreviousbutton
//
2016-12-02 13:45:03 +00:00
this . findpreviousbutton . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
2016-12-08 12:10:43 +00:00
this . findpreviousbutton . Location = new System . Drawing . Point ( 197 , 185 ) ;
2014-12-10 13:15:23 +00:00
this . findpreviousbutton . Name = "findpreviousbutton" ;
2016-12-08 12:10:43 +00:00
this . findpreviousbutton . Size = new System . Drawing . Size ( 88 , 25 ) ;
this . findpreviousbutton . TabIndex = 6 ;
2014-12-10 13:15:23 +00:00
this . findpreviousbutton . Text = "Find Previous" ;
this . findpreviousbutton . UseVisualStyleBackColor = true ;
this . findpreviousbutton . Click + = new System . EventHandler ( this . findpreviousbutton_Click ) ;
//
2016-12-02 13:45:03 +00:00
// tabs
//
this . tabs . Controls . Add ( this . tabfind ) ;
this . tabs . Controls . Add ( this . tabreplace ) ;
this . tabs . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Bold , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
this . tabs . ImageList = this . imagelist ;
this . tabs . Location = new System . Drawing . Point ( 3 , 3 ) ;
this . tabs . Margin = new System . Windows . Forms . Padding ( 0 ) ;
this . tabs . Name = "tabs" ;
this . tabs . Padding = new System . Drawing . Point ( 10 , 3 ) ;
this . tabs . SelectedIndex = 0 ;
this . tabs . Size = new System . Drawing . Size ( 299 , 242 ) ;
this . tabs . TabIndex = 9 ;
this . tabs . SelectedIndexChanged + = new System . EventHandler ( this . tabs_SelectedIndexChanged ) ;
//
// tabfind
//
2016-12-08 12:10:43 +00:00
this . tabfind . Controls . Add ( this . bookmarkallbutton ) ;
2016-12-02 13:45:03 +00:00
this . tabfind . Controls . Add ( this . findinbox ) ;
this . tabfind . Controls . Add ( this . findpreviousbutton ) ;
this . tabfind . Controls . Add ( this . label2 ) ;
this . tabfind . Controls . Add ( this . findbox ) ;
this . tabfind . Controls . Add ( this . label1 ) ;
this . tabfind . Controls . Add ( this . findnextbutton ) ;
this . tabfind . Controls . Add ( this . findmatchcase ) ;
this . tabfind . Controls . Add ( this . findwholeword ) ;
this . tabfind . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
this . tabfind . ImageIndex = 0 ;
2016-12-08 12:10:43 +00:00
this . tabfind . Location = new System . Drawing . Point ( 4 , 23 ) ;
2016-12-02 13:45:03 +00:00
this . tabfind . Name = "tabfind" ;
this . tabfind . Padding = new System . Windows . Forms . Padding ( 3 , 16 , 3 , 3 ) ;
2016-12-08 12:10:43 +00:00
this . tabfind . Size = new System . Drawing . Size ( 291 , 215 ) ;
2016-12-02 13:45:03 +00:00
this . tabfind . TabIndex = 0 ;
this . tabfind . Text = "Find" ;
this . tabfind . UseVisualStyleBackColor = true ;
//
2016-12-08 12:10:43 +00:00
// bookmarkallbutton
//
this . bookmarkallbutton . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . bookmarkallbutton . Location = new System . Drawing . Point ( 9 , 185 ) ;
this . bookmarkallbutton . Name = "bookmarkallbutton" ;
this . bookmarkallbutton . Size = new System . Drawing . Size ( 88 , 25 ) ;
this . bookmarkallbutton . TabIndex = 4 ;
this . bookmarkallbutton . Text = "Find Usages" ;
this . bookmarkallbutton . UseVisualStyleBackColor = true ;
this . bookmarkallbutton . Click + = new System . EventHandler ( this . bookmarkallbutton_Click ) ;
//
2016-12-02 13:45:03 +00:00
// findinbox
//
this . findinbox . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Left )
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . findinbox . DropDownStyle = System . Windows . Forms . ComboBoxStyle . DropDownList ;
this . findinbox . FormattingEnabled = true ;
this . findinbox . Items . AddRange ( new object [ ] {
"Current tab" ,
"All opened tabs (current script type)" ,
"All opened tabs (any script type)" ,
"All resources (current script type)" ,
"All resources (any script type)" } ) ;
this . findinbox . Location = new System . Drawing . Point ( 9 , 80 ) ;
this . findinbox . Name = "findinbox" ;
this . findinbox . Size = new System . Drawing . Size ( 276 , 21 ) ;
2016-12-08 12:10:43 +00:00
this . findinbox . TabIndex = 1 ;
2016-12-02 13:45:03 +00:00
//
// label2
//
this . label2 . AutoSize = true ;
this . label2 . Location = new System . Drawing . Point ( 6 , 62 ) ;
this . label2 . Name = "label2" ;
this . label2 . Size = new System . Drawing . Size ( 45 , 13 ) ;
this . label2 . TabIndex = 2 ;
this . label2 . Text = "Look in:" ;
//
// findbox
//
this . findbox . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Left )
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . findbox . AutoCompleteMode = System . Windows . Forms . AutoCompleteMode . Suggest ;
this . findbox . AutoCompleteSource = System . Windows . Forms . AutoCompleteSource . ListItems ;
this . findbox . FormattingEnabled = true ;
this . findbox . Location = new System . Drawing . Point ( 9 , 34 ) ;
this . findbox . Name = "findbox" ;
this . findbox . Size = new System . Drawing . Size ( 276 , 21 ) ;
2016-12-08 12:10:43 +00:00
this . findbox . TabIndex = 0 ;
2016-12-02 13:45:03 +00:00
//
// tabreplace
//
this . tabreplace . Controls . Add ( this . replacebox ) ;
this . tabreplace . Controls . Add ( this . label5 ) ;
this . tabreplace . Controls . Add ( this . replaceinbox ) ;
this . tabreplace . Controls . Add ( this . replacebutton ) ;
this . tabreplace . Controls . Add ( this . label3 ) ;
this . tabreplace . Controls . Add ( this . replacefindbox ) ;
this . tabreplace . Controls . Add ( this . replaceallbutton ) ;
this . tabreplace . Controls . Add ( this . label4 ) ;
this . tabreplace . Controls . Add ( this . replacematchcase ) ;
this . tabreplace . Controls . Add ( this . replacewholeword ) ;
this . tabreplace . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
this . tabreplace . ImageIndex = 1 ;
2016-12-08 12:10:43 +00:00
this . tabreplace . Location = new System . Drawing . Point ( 4 , 23 ) ;
2016-12-02 13:45:03 +00:00
this . tabreplace . Name = "tabreplace" ;
this . tabreplace . Padding = new System . Windows . Forms . Padding ( 3 ) ;
2016-12-08 12:10:43 +00:00
this . tabreplace . Size = new System . Drawing . Size ( 291 , 215 ) ;
2016-12-02 13:45:03 +00:00
this . tabreplace . TabIndex = 1 ;
this . tabreplace . Text = "Replace" ;
this . tabreplace . UseVisualStyleBackColor = true ;
//
// replacebox
//
this . replacebox . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Left )
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . replacebox . AutoCompleteMode = System . Windows . Forms . AutoCompleteMode . Suggest ;
this . replacebox . AutoCompleteSource = System . Windows . Forms . AutoCompleteSource . ListItems ;
this . replacebox . FormattingEnabled = true ;
this . replacebox . Location = new System . Drawing . Point ( 9 , 79 ) ;
this . replacebox . Name = "replacebox" ;
this . replacebox . Size = new System . Drawing . Size ( 276 , 21 ) ;
2016-12-08 12:10:43 +00:00
this . replacebox . TabIndex = 1 ;
2016-12-02 13:45:03 +00:00
//
// label5
//
this . label5 . AutoSize = true ;
this . label5 . Location = new System . Drawing . Point ( 6 , 61 ) ;
this . label5 . Name = "label5" ;
this . label5 . Size = new System . Drawing . Size ( 72 , 13 ) ;
this . label5 . TabIndex = 10 ;
this . label5 . Text = "Replace with:" ;
//
// replaceinbox
//
this . replaceinbox . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Left )
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . replaceinbox . DropDownStyle = System . Windows . Forms . ComboBoxStyle . DropDownList ;
this . replaceinbox . FormattingEnabled = true ;
this . replaceinbox . Items . AddRange ( new object [ ] {
"Current tab" ,
"All opened tabs (current script type)" ,
"All opened tabs (any script type)" ,
"All resources (current script type)" ,
"All resources (any script type)" } ) ;
this . replaceinbox . Location = new System . Drawing . Point ( 9 , 124 ) ;
this . replaceinbox . Name = "replaceinbox" ;
this . replaceinbox . Size = new System . Drawing . Size ( 276 , 21 ) ;
2016-12-08 12:10:43 +00:00
this . replaceinbox . TabIndex = 2 ;
2016-12-02 13:45:03 +00:00
//
// label3
//
this . label3 . AutoSize = true ;
this . label3 . Location = new System . Drawing . Point ( 6 , 106 ) ;
this . label3 . Name = "label3" ;
this . label3 . Size = new System . Drawing . Size ( 45 , 13 ) ;
this . label3 . TabIndex = 7 ;
this . label3 . Text = "Look in:" ;
//
// replacefindbox
//
this . replacefindbox . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Left )
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . replacefindbox . AutoCompleteMode = System . Windows . Forms . AutoCompleteMode . Suggest ;
this . replacefindbox . AutoCompleteSource = System . Windows . Forms . AutoCompleteSource . ListItems ;
this . replacefindbox . FormattingEnabled = true ;
this . replacefindbox . Location = new System . Drawing . Point ( 9 , 34 ) ;
this . replacefindbox . Name = "replacefindbox" ;
this . replacefindbox . Size = new System . Drawing . Size ( 276 , 21 ) ;
2016-12-08 12:10:43 +00:00
this . replacefindbox . TabIndex = 0 ;
2016-12-02 13:45:03 +00:00
//
// label4
//
this . label4 . AutoSize = true ;
this . label4 . Location = new System . Drawing . Point ( 6 , 16 ) ;
this . label4 . Name = "label4" ;
this . label4 . Size = new System . Drawing . Size ( 56 , 13 ) ;
this . label4 . TabIndex = 4 ;
this . label4 . Text = "Find what:" ;
//
// replacematchcase
//
this . replacematchcase . AutoSize = true ;
this . replacematchcase . Location = new System . Drawing . Point ( 9 , 160 ) ;
this . replacematchcase . Name = "replacematchcase" ;
this . replacematchcase . Size = new System . Drawing . Size ( 82 , 17 ) ;
2016-12-08 12:10:43 +00:00
this . replacematchcase . TabIndex = 3 ;
2016-12-02 13:45:03 +00:00
this . replacematchcase . Text = "Match case" ;
this . replacematchcase . UseVisualStyleBackColor = true ;
//
// replacewholeword
//
this . replacewholeword . AutoSize = true ;
this . replacewholeword . Location = new System . Drawing . Point ( 97 , 160 ) ;
this . replacewholeword . Name = "replacewholeword" ;
this . replacewholeword . Size = new System . Drawing . Size ( 113 , 17 ) ;
2016-12-08 12:10:43 +00:00
this . replacewholeword . TabIndex = 4 ;
2016-12-02 13:45:03 +00:00
this . replacewholeword . Text = "Match whole word" ;
this . replacewholeword . UseVisualStyleBackColor = true ;
//
// imagelist
//
this . imagelist . ImageStream = ( ( System . Windows . Forms . ImageListStreamer ) ( resources . GetObject ( "imagelist.ImageStream" ) ) ) ;
this . imagelist . TransparentColor = System . Drawing . Color . Transparent ;
this . imagelist . Images . SetKeyName ( 0 , "Search.png" ) ;
this . imagelist . Images . SetKeyName ( 1 , "Replace.png" ) ;
//
2009-04-19 18:07:22 +00:00
// ScriptFindReplaceForm
//
this . AutoScaleDimensions = new System . Drawing . SizeF ( 96F , 96F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Dpi ;
2016-12-02 13:45:03 +00:00
this . ClientSize = new System . Drawing . Size ( 304 , 247 ) ;
this . Controls . Add ( this . tabs ) ;
2014-10-17 12:50:26 +00:00
this . FormBorderStyle = System . Windows . Forms . FormBorderStyle . FixedDialog ;
this . MaximizeBox = false ;
this . MinimizeBox = false ;
2009-04-19 18:07:22 +00:00
this . Name = "ScriptFindReplaceForm" ;
2016-09-10 11:24:03 +00:00
this . Opacity = 0 ;
2014-10-17 12:50:26 +00:00
this . ShowIcon = false ;
this . ShowInTaskbar = false ;
2009-04-19 18:07:22 +00:00
this . Text = "Find and Replace" ;
this . FormClosing + = new System . Windows . Forms . FormClosingEventHandler ( this . ScriptFindReplaceForm_FormClosing ) ;
2016-12-02 13:45:03 +00:00
this . tabs . ResumeLayout ( false ) ;
this . tabfind . ResumeLayout ( false ) ;
this . tabfind . PerformLayout ( ) ;
this . tabreplace . ResumeLayout ( false ) ;
this . tabreplace . PerformLayout ( ) ;
2009-04-19 18:07:22 +00:00
this . ResumeLayout ( false ) ;
}
#endregion
private System . Windows . Forms . Label label1 ;
2016-12-02 13:45:03 +00:00
private System . Windows . Forms . CheckBox findmatchcase ;
private System . Windows . Forms . CheckBox findwholeword ;
2009-04-19 18:07:22 +00:00
private System . Windows . Forms . Button findnextbutton ;
private System . Windows . Forms . Button replaceallbutton ;
private System . Windows . Forms . Button replacebutton ;
2014-12-10 13:15:23 +00:00
private System . Windows . Forms . Button findpreviousbutton ;
2016-12-02 13:45:03 +00:00
private System . Windows . Forms . TabControl tabs ;
private System . Windows . Forms . TabPage tabfind ;
private System . Windows . Forms . TabPage tabreplace ;
private System . Windows . Forms . ImageList imagelist ;
private System . Windows . Forms . ComboBox findinbox ;
private System . Windows . Forms . Label label2 ;
private System . Windows . Forms . ComboBox findbox ;
private System . Windows . Forms . ComboBox replacebox ;
private System . Windows . Forms . Label label5 ;
private System . Windows . Forms . ComboBox replaceinbox ;
private System . Windows . Forms . Label label3 ;
private System . Windows . Forms . ComboBox replacefindbox ;
private System . Windows . Forms . Label label4 ;
private System . Windows . Forms . CheckBox replacematchcase ;
private System . Windows . Forms . CheckBox replacewholeword ;
2016-12-08 12:10:43 +00:00
private System . Windows . Forms . Button bookmarkallbutton ;
2009-04-19 18:07:22 +00:00
}
}