ExporterForm.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. namespace Max2Babylon
  2. {
  3. partial class ExporterForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExporterForm));
  29. this.butExport = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.txtFilename = new System.Windows.Forms.TextBox();
  32. this.butBrowse = new System.Windows.Forms.Button();
  33. this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
  34. this.progressBar = new System.Windows.Forms.ProgressBar();
  35. this.treeView = new System.Windows.Forms.TreeView();
  36. this.butCancel = new System.Windows.Forms.Button();
  37. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  38. this.chkManifest = new System.Windows.Forms.CheckBox();
  39. this.label2 = new System.Windows.Forms.Label();
  40. this.chkCopyTextures = new System.Windows.Forms.CheckBox();
  41. this.groupBox1 = new System.Windows.Forms.GroupBox();
  42. this.chkOnlySelected = new System.Windows.Forms.CheckBox();
  43. this.chkAutoSave = new System.Windows.Forms.CheckBox();
  44. this.chkHidden = new System.Windows.Forms.CheckBox();
  45. this.butExportAndRun = new System.Windows.Forms.Button();
  46. this.butClose = new System.Windows.Forms.Button();
  47. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  48. this.groupBox1.SuspendLayout();
  49. this.SuspendLayout();
  50. //
  51. // butExport
  52. //
  53. this.butExport.Anchor = System.Windows.Forms.AnchorStyles.Top;
  54. this.butExport.Enabled = false;
  55. this.butExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  56. this.butExport.Location = new System.Drawing.Point(211, 153);
  57. this.butExport.Name = "butExport";
  58. this.butExport.Size = new System.Drawing.Size(197, 27);
  59. this.butExport.TabIndex = 0;
  60. this.butExport.Text = "Export";
  61. this.butExport.UseVisualStyleBackColor = true;
  62. this.butExport.Click += new System.EventHandler(this.butExport_Click);
  63. //
  64. // label1
  65. //
  66. this.label1.AutoSize = true;
  67. this.label1.Location = new System.Drawing.Point(6, 17);
  68. this.label1.Name = "label1";
  69. this.label1.Size = new System.Drawing.Size(52, 13);
  70. this.label1.TabIndex = 2;
  71. this.label1.Text = "Filename:";
  72. //
  73. // txtFilename
  74. //
  75. this.txtFilename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  76. | System.Windows.Forms.AnchorStyles.Right)));
  77. this.txtFilename.Location = new System.Drawing.Point(18, 34);
  78. this.txtFilename.Name = "txtFilename";
  79. this.txtFilename.Size = new System.Drawing.Size(420, 20);
  80. this.txtFilename.TabIndex = 3;
  81. this.txtFilename.TextChanged += new System.EventHandler(this.txtFilename_TextChanged);
  82. //
  83. // butBrowse
  84. //
  85. this.butBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  86. this.butBrowse.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  87. this.butBrowse.Location = new System.Drawing.Point(444, 32);
  88. this.butBrowse.Name = "butBrowse";
  89. this.butBrowse.Size = new System.Drawing.Size(43, 23);
  90. this.butBrowse.TabIndex = 4;
  91. this.butBrowse.Text = "...";
  92. this.butBrowse.UseVisualStyleBackColor = true;
  93. this.butBrowse.Click += new System.EventHandler(this.butBrowse_Click);
  94. //
  95. // saveFileDialog
  96. //
  97. this.saveFileDialog.DefaultExt = "babylon";
  98. this.saveFileDialog.Filter = "Babylon files|*.babylon";
  99. this.saveFileDialog.RestoreDirectory = true;
  100. //
  101. // progressBar
  102. //
  103. this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  104. | System.Windows.Forms.AnchorStyles.Right)));
  105. this.progressBar.Location = new System.Drawing.Point(12, 516);
  106. this.progressBar.Name = "progressBar";
  107. this.progressBar.Size = new System.Drawing.Size(627, 23);
  108. this.progressBar.TabIndex = 5;
  109. //
  110. // treeView
  111. //
  112. this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  113. | System.Windows.Forms.AnchorStyles.Left)
  114. | System.Windows.Forms.AnchorStyles.Right)));
  115. this.treeView.Location = new System.Drawing.Point(12, 186);
  116. this.treeView.Name = "treeView";
  117. this.treeView.Size = new System.Drawing.Size(799, 324);
  118. this.treeView.TabIndex = 6;
  119. //
  120. // butCancel
  121. //
  122. this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  123. this.butCancel.Enabled = false;
  124. this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  125. this.butCancel.Location = new System.Drawing.Point(645, 516);
  126. this.butCancel.Name = "butCancel";
  127. this.butCancel.Size = new System.Drawing.Size(80, 23);
  128. this.butCancel.TabIndex = 7;
  129. this.butCancel.Text = "Cancel";
  130. this.butCancel.UseVisualStyleBackColor = true;
  131. this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
  132. //
  133. // pictureBox2
  134. //
  135. this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  136. this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
  137. this.pictureBox2.Location = new System.Drawing.Point(511, 12);
  138. this.pictureBox2.Name = "pictureBox2";
  139. this.pictureBox2.Size = new System.Drawing.Size(300, 130);
  140. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
  141. this.pictureBox2.TabIndex = 9;
  142. this.pictureBox2.TabStop = false;
  143. //
  144. // chkManifest
  145. //
  146. this.chkManifest.AutoSize = true;
  147. this.chkManifest.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  148. this.chkManifest.Location = new System.Drawing.Point(18, 104);
  149. this.chkManifest.Name = "chkManifest";
  150. this.chkManifest.Size = new System.Drawing.Size(112, 17);
  151. this.chkManifest.TabIndex = 2;
  152. this.chkManifest.Text = "Generate .manifest";
  153. this.chkManifest.UseVisualStyleBackColor = true;
  154. //
  155. // label2
  156. //
  157. this.label2.AutoSize = true;
  158. this.label2.Location = new System.Drawing.Point(6, 62);
  159. this.label2.Name = "label2";
  160. this.label2.Size = new System.Drawing.Size(46, 13);
  161. this.label2.TabIndex = 11;
  162. this.label2.Text = "Options:";
  163. //
  164. // chkCopyTextures
  165. //
  166. this.chkCopyTextures.AutoSize = true;
  167. this.chkCopyTextures.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  168. this.chkCopyTextures.Location = new System.Drawing.Point(18, 81);
  169. this.chkCopyTextures.Name = "chkCopyTextures";
  170. this.chkCopyTextures.Size = new System.Drawing.Size(132, 17);
  171. this.chkCopyTextures.TabIndex = 12;
  172. this.chkCopyTextures.Text = "Copy textures to output";
  173. this.chkCopyTextures.UseVisualStyleBackColor = true;
  174. //
  175. // groupBox1
  176. //
  177. this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  178. | System.Windows.Forms.AnchorStyles.Right)));
  179. this.groupBox1.Controls.Add(this.chkOnlySelected);
  180. this.groupBox1.Controls.Add(this.chkAutoSave);
  181. this.groupBox1.Controls.Add(this.chkHidden);
  182. this.groupBox1.Controls.Add(this.label1);
  183. this.groupBox1.Controls.Add(this.chkCopyTextures);
  184. this.groupBox1.Controls.Add(this.txtFilename);
  185. this.groupBox1.Controls.Add(this.chkManifest);
  186. this.groupBox1.Controls.Add(this.butBrowse);
  187. this.groupBox1.Controls.Add(this.label2);
  188. this.groupBox1.Location = new System.Drawing.Point(12, 6);
  189. this.groupBox1.Name = "groupBox1";
  190. this.groupBox1.Size = new System.Drawing.Size(493, 136);
  191. this.groupBox1.TabIndex = 13;
  192. this.groupBox1.TabStop = false;
  193. //
  194. // chkOnlySelected
  195. //
  196. this.chkOnlySelected.AutoSize = true;
  197. this.chkOnlySelected.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  198. this.chkOnlySelected.Location = new System.Drawing.Point(362, 81);
  199. this.chkOnlySelected.Name = "chkOnlySelected";
  200. this.chkOnlySelected.Size = new System.Drawing.Size(118, 17);
  201. this.chkOnlySelected.TabIndex = 15;
  202. this.chkOnlySelected.Text = "Export only selected";
  203. this.chkOnlySelected.UseVisualStyleBackColor = true;
  204. //
  205. // chkAutoSave
  206. //
  207. this.chkAutoSave.AutoSize = true;
  208. this.chkAutoSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  209. this.chkAutoSave.Location = new System.Drawing.Point(196, 104);
  210. this.chkAutoSave.Name = "chkAutoSave";
  211. this.chkAutoSave.Size = new System.Drawing.Size(130, 17);
  212. this.chkAutoSave.TabIndex = 14;
  213. this.chkAutoSave.Text = "Auto save 3ds Max file";
  214. this.chkAutoSave.UseVisualStyleBackColor = true;
  215. //
  216. // chkHidden
  217. //
  218. this.chkHidden.AutoSize = true;
  219. this.chkHidden.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  220. this.chkHidden.Location = new System.Drawing.Point(196, 81);
  221. this.chkHidden.Name = "chkHidden";
  222. this.chkHidden.Size = new System.Drawing.Size(125, 17);
  223. this.chkHidden.TabIndex = 13;
  224. this.chkHidden.Text = "Export hidden objects";
  225. this.chkHidden.UseVisualStyleBackColor = true;
  226. //
  227. // butExportAndRun
  228. //
  229. this.butExportAndRun.Anchor = System.Windows.Forms.AnchorStyles.Top;
  230. this.butExportAndRun.Enabled = false;
  231. this.butExportAndRun.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  232. this.butExportAndRun.Location = new System.Drawing.Point(414, 153);
  233. this.butExportAndRun.Name = "butExportAndRun";
  234. this.butExportAndRun.Size = new System.Drawing.Size(197, 27);
  235. this.butExportAndRun.TabIndex = 14;
  236. this.butExportAndRun.Text = "Export && Run";
  237. this.butExportAndRun.UseVisualStyleBackColor = true;
  238. this.butExportAndRun.Click += new System.EventHandler(this.butExportAndRun_Click);
  239. //
  240. // butClose
  241. //
  242. this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  243. this.butClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  244. this.butClose.Location = new System.Drawing.Point(731, 516);
  245. this.butClose.Name = "butClose";
  246. this.butClose.Size = new System.Drawing.Size(80, 23);
  247. this.butClose.TabIndex = 7;
  248. this.butClose.Text = "Close";
  249. this.butClose.UseVisualStyleBackColor = true;
  250. this.butClose.Click += new System.EventHandler(this.butClose_Click);
  251. //
  252. // ExporterForm
  253. //
  254. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  255. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  256. this.ClientSize = new System.Drawing.Size(823, 551);
  257. this.Controls.Add(this.butExportAndRun);
  258. this.Controls.Add(this.groupBox1);
  259. this.Controls.Add(this.pictureBox2);
  260. this.Controls.Add(this.butClose);
  261. this.Controls.Add(this.butCancel);
  262. this.Controls.Add(this.treeView);
  263. this.Controls.Add(this.progressBar);
  264. this.Controls.Add(this.butExport);
  265. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
  266. this.MinimumSize = new System.Drawing.Size(750, 400);
  267. this.Name = "ExporterForm";
  268. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  269. this.Text = "Babylon.js - Export scene to .babylon file";
  270. this.Activated += new System.EventHandler(this.ExporterForm_Activated);
  271. this.Deactivate += new System.EventHandler(this.ExporterForm_Deactivate);
  272. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ExporterForm_FormClosed);
  273. this.Load += new System.EventHandler(this.ExporterForm_Load);
  274. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  275. this.groupBox1.ResumeLayout(false);
  276. this.groupBox1.PerformLayout();
  277. this.ResumeLayout(false);
  278. this.PerformLayout();
  279. }
  280. #endregion
  281. private System.Windows.Forms.Button butExport;
  282. private System.Windows.Forms.Label label1;
  283. private System.Windows.Forms.TextBox txtFilename;
  284. private System.Windows.Forms.Button butBrowse;
  285. private System.Windows.Forms.SaveFileDialog saveFileDialog;
  286. private System.Windows.Forms.ProgressBar progressBar;
  287. private System.Windows.Forms.TreeView treeView;
  288. private System.Windows.Forms.Button butCancel;
  289. private System.Windows.Forms.PictureBox pictureBox2;
  290. private System.Windows.Forms.CheckBox chkManifest;
  291. private System.Windows.Forms.Label label2;
  292. private System.Windows.Forms.CheckBox chkCopyTextures;
  293. private System.Windows.Forms.GroupBox groupBox1;
  294. private System.Windows.Forms.CheckBox chkHidden;
  295. private System.Windows.Forms.CheckBox chkAutoSave;
  296. private System.Windows.Forms.Button butExportAndRun;
  297. private System.Windows.Forms.CheckBox chkOnlySelected;
  298. private System.Windows.Forms.Button butClose;
  299. }
  300. }