TerrainToolDialog.Designer.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. //
  2. // Copyright 2020 Electronic Arts Inc.
  3. //
  4. // The Command & Conquer Map Editor and corresponding source code is free
  5. // software: you can redistribute it and/or modify it under the terms of
  6. // the GNU General Public License as published by the Free Software Foundation,
  7. // either version 3 of the License, or (at your option) any later version.
  8. // The Command & Conquer Map Editor and corresponding source code is distributed
  9. // in the hope that it will be useful, but with permitted additional restrictions
  10. // under Section 7 of the GPL. See the GNU General Public License in LICENSE.TXT
  11. // distributed with this program. You should have received a copy of the
  12. // GNU General Public License along with permitted additional restrictions
  13. // with this program. If not, see https://github.com/electronicarts/CnC_Remastered_Collection
  14. namespace MobiusEditor.Tools.Dialogs
  15. {
  16. partial class TerrainToolDialog
  17. {
  18. /// <summary>
  19. /// Required designer variable.
  20. /// </summary>
  21. private System.ComponentModel.IContainer components = null;
  22. /// <summary>
  23. /// Clean up any resources being used.
  24. /// </summary>
  25. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  26. protected override void Dispose(bool disposing)
  27. {
  28. if (disposing && (components != null))
  29. {
  30. components.Dispose();
  31. }
  32. base.Dispose(disposing);
  33. }
  34. #region Windows Form Designer generated code
  35. /// <summary>
  36. /// Required method for Designer support - do not modify
  37. /// the contents of this method with the code editor.
  38. /// </summary>
  39. private void InitializeComponent()
  40. {
  41. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TerrainToolDialog));
  42. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  43. this.terrainTypeMapPanel = new MobiusEditor.Controls.MapPanel();
  44. this.terrainTypeComboBox = new MobiusEditor.Controls.TypeComboBox();
  45. this.terrainProperties = new MobiusEditor.Controls.TerrainProperties();
  46. this.tableLayoutPanel1.SuspendLayout();
  47. this.SuspendLayout();
  48. //
  49. // tableLayoutPanel1
  50. //
  51. this.tableLayoutPanel1.AutoSize = true;
  52. this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  53. this.tableLayoutPanel1.ColumnCount = 1;
  54. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  55. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  56. this.tableLayoutPanel1.Controls.Add(this.terrainTypeMapPanel, 0, 1);
  57. this.tableLayoutPanel1.Controls.Add(this.terrainTypeComboBox, 0, 0);
  58. this.tableLayoutPanel1.Controls.Add(this.terrainProperties, 0, 3);
  59. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  60. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  61. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  62. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  63. this.tableLayoutPanel1.RowCount = 4;
  64. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  65. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  66. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  67. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  68. this.tableLayoutPanel1.Size = new System.Drawing.Size(411, 466);
  69. this.tableLayoutPanel1.TabIndex = 0;
  70. //
  71. // terrainTypeMapPanel
  72. //
  73. this.terrainTypeMapPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  74. this.terrainTypeMapPanel.Location = new System.Drawing.Point(4, 42);
  75. this.terrainTypeMapPanel.MapImage = null;
  76. this.terrainTypeMapPanel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  77. this.terrainTypeMapPanel.MaxZoom = 8;
  78. this.terrainTypeMapPanel.MinZoom = 1;
  79. this.terrainTypeMapPanel.Name = "terrainTypeMapPanel";
  80. this.terrainTypeMapPanel.Quality = 1;
  81. this.terrainTypeMapPanel.Size = new System.Drawing.Size(403, 370);
  82. this.terrainTypeMapPanel.TabIndex = 3;
  83. this.terrainTypeMapPanel.Zoom = 1;
  84. this.terrainTypeMapPanel.ZoomStep = 1;
  85. //
  86. // terrainTypeComboBox
  87. //
  88. this.terrainTypeComboBox.DisplayMember = "Name";
  89. this.terrainTypeComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
  90. this.terrainTypeComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
  91. this.terrainTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  92. this.terrainTypeComboBox.FormattingEnabled = true;
  93. this.terrainTypeComboBox.Location = new System.Drawing.Point(4, 5);
  94. this.terrainTypeComboBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  95. this.terrainTypeComboBox.MissingThumbnail = ((System.Drawing.Image)(resources.GetObject("terrainTypeComboBox.MissingThumbnail")));
  96. this.terrainTypeComboBox.Name = "terrainTypeComboBox";
  97. this.terrainTypeComboBox.Size = new System.Drawing.Size(403, 27);
  98. this.terrainTypeComboBox.TabIndex = 2;
  99. this.terrainTypeComboBox.ValueMember = "Type";
  100. //
  101. // terrainProperties
  102. //
  103. this.terrainProperties.Dock = System.Windows.Forms.DockStyle.Top;
  104. this.terrainProperties.Location = new System.Drawing.Point(4, 422);
  105. this.terrainProperties.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  106. this.terrainProperties.Name = "terrainProperties";
  107. this.terrainProperties.Size = new System.Drawing.Size(403, 38);
  108. this.terrainProperties.TabIndex = 4;
  109. this.terrainProperties.Terrain = null;
  110. //
  111. // TerrainToolDialog
  112. //
  113. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
  114. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  115. this.AutoSize = true;
  116. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  117. this.ClientSize = new System.Drawing.Size(411, 466);
  118. this.ControlBox = false;
  119. this.Controls.Add(this.tableLayoutPanel1);
  120. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
  121. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  122. this.MaximizeBox = false;
  123. this.MinimizeBox = false;
  124. this.MinimumSize = new System.Drawing.Size(424, 421);
  125. this.Name = "TerrainToolDialog";
  126. this.ShowIcon = false;
  127. this.ShowInTaskbar = false;
  128. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  129. this.Text = "Terrain";
  130. this.tableLayoutPanel1.ResumeLayout(false);
  131. this.ResumeLayout(false);
  132. this.PerformLayout();
  133. }
  134. #endregion
  135. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  136. private Controls.TypeComboBox terrainTypeComboBox;
  137. private Controls.MapPanel terrainTypeMapPanel;
  138. private Controls.TerrainProperties terrainProperties;
  139. }
  140. }