ExporterForm.Designer.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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.chkBinary = new System.Windows.Forms.CheckBox();
  43. this.chkOnlySelected = new System.Windows.Forms.CheckBox();
  44. this.chkAutoSave = new System.Windows.Forms.CheckBox();
  45. this.chkHidden = new System.Windows.Forms.CheckBox();
  46. this.butExportAndRun = new System.Windows.Forms.Button();
  47. this.butClose = new System.Windows.Forms.Button();
  48. this.chkGltf = new System.Windows.Forms.CheckBox();
  49. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  50. this.groupBox1.SuspendLayout();
  51. this.SuspendLayout();
  52. //
  53. // butExport
  54. //
  55. this.butExport.Anchor = System.Windows.Forms.AnchorStyles.Top;
  56. this.butExport.Enabled = false;
  57. this.butExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  58. this.butExport.Location = new System.Drawing.Point(210, 166);
  59. this.butExport.Name = "butExport";
  60. this.butExport.Size = new System.Drawing.Size(197, 27);
  61. this.butExport.TabIndex = 0;
  62. this.butExport.Text = "Export";
  63. this.butExport.UseVisualStyleBackColor = true;
  64. this.butExport.Click += new System.EventHandler(this.butExport_Click);
  65. //
  66. // label1
  67. //
  68. this.label1.AutoSize = true;
  69. this.label1.Location = new System.Drawing.Point(6, 17);
  70. this.label1.Name = "label1";
  71. this.label1.Size = new System.Drawing.Size(52, 13);
  72. this.label1.TabIndex = 2;
  73. this.label1.Text = "Filename:";
  74. //
  75. // txtFilename
  76. //
  77. this.txtFilename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  78. | System.Windows.Forms.AnchorStyles.Right)));
  79. this.txtFilename.Location = new System.Drawing.Point(18, 34);
  80. this.txtFilename.Name = "txtFilename";
  81. this.txtFilename.Size = new System.Drawing.Size(420, 20);
  82. this.txtFilename.TabIndex = 3;
  83. this.txtFilename.TextChanged += new System.EventHandler(this.txtFilename_TextChanged);
  84. //
  85. // butBrowse
  86. //
  87. this.butBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  88. this.butBrowse.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  89. this.butBrowse.Location = new System.Drawing.Point(444, 32);
  90. this.butBrowse.Name = "butBrowse";
  91. this.butBrowse.Size = new System.Drawing.Size(43, 23);
  92. this.butBrowse.TabIndex = 4;
  93. this.butBrowse.Text = "...";
  94. this.butBrowse.UseVisualStyleBackColor = true;
  95. this.butBrowse.Click += new System.EventHandler(this.butBrowse_Click);
  96. //
  97. // saveFileDialog
  98. //
  99. this.saveFileDialog.DefaultExt = "babylon";
  100. this.saveFileDialog.Filter = "Babylon files|*.babylon";
  101. this.saveFileDialog.RestoreDirectory = true;
  102. //
  103. // progressBar
  104. //
  105. this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  106. | System.Windows.Forms.AnchorStyles.Right)));
  107. this.progressBar.Location = new System.Drawing.Point(12, 516);
  108. this.progressBar.Name = "progressBar";
  109. this.progressBar.Size = new System.Drawing.Size(627, 23);
  110. this.progressBar.TabIndex = 5;
  111. //
  112. // treeView
  113. //
  114. this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  115. | System.Windows.Forms.AnchorStyles.Left)
  116. | System.Windows.Forms.AnchorStyles.Right)));
  117. this.treeView.Location = new System.Drawing.Point(12, 199);
  118. this.treeView.Name = "treeView";
  119. this.treeView.Size = new System.Drawing.Size(799, 311);
  120. this.treeView.TabIndex = 6;
  121. //
  122. // butCancel
  123. //
  124. this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  125. this.butCancel.Enabled = false;
  126. this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  127. this.butCancel.Location = new System.Drawing.Point(645, 516);
  128. this.butCancel.Name = "butCancel";
  129. this.butCancel.Size = new System.Drawing.Size(80, 23);
  130. this.butCancel.TabIndex = 7;
  131. this.butCancel.Text = "Cancel";
  132. this.butCancel.UseVisualStyleBackColor = true;
  133. this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
  134. //
  135. // pictureBox2
  136. //
  137. this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  138. this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
  139. this.pictureBox2.Location = new System.Drawing.Point(511, 12);
  140. this.pictureBox2.Name = "pictureBox2";
  141. this.pictureBox2.Size = new System.Drawing.Size(300, 130);
  142. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
  143. this.pictureBox2.TabIndex = 9;
  144. this.pictureBox2.TabStop = false;
  145. //
  146. // chkManifest
  147. //
  148. this.chkManifest.AutoSize = true;
  149. this.chkManifest.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  150. this.chkManifest.Location = new System.Drawing.Point(18, 104);
  151. this.chkManifest.Name = "chkManifest";
  152. this.chkManifest.Size = new System.Drawing.Size(112, 17);
  153. this.chkManifest.TabIndex = 2;
  154. this.chkManifest.Text = "Generate .manifest";
  155. this.chkManifest.UseVisualStyleBackColor = true;
  156. //
  157. // label2
  158. //
  159. this.label2.AutoSize = true;
  160. this.label2.Location = new System.Drawing.Point(6, 62);
  161. this.label2.Name = "label2";
  162. this.label2.Size = new System.Drawing.Size(46, 13);
  163. this.label2.TabIndex = 11;
  164. this.label2.Text = "Options:";
  165. //
  166. // chkCopyTextures
  167. //
  168. this.chkCopyTextures.AutoSize = true;
  169. this.chkCopyTextures.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  170. this.chkCopyTextures.Location = new System.Drawing.Point(18, 81);
  171. this.chkCopyTextures.Name = "chkCopyTextures";
  172. this.chkCopyTextures.Size = new System.Drawing.Size(132, 17);
  173. this.chkCopyTextures.TabIndex = 12;
  174. this.chkCopyTextures.Text = "Copy textures to output";
  175. this.chkCopyTextures.UseVisualStyleBackColor = true;
  176. //
  177. // groupBox1
  178. //
  179. this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  180. | System.Windows.Forms.AnchorStyles.Right)));
  181. this.groupBox1.Controls.Add(this.chkBinary);
  182. this.groupBox1.Controls.Add(this.chkOnlySelected);
  183. this.groupBox1.Controls.Add(this.chkAutoSave);
  184. this.groupBox1.Controls.Add(this.chkHidden);
  185. this.groupBox1.Controls.Add(this.label1);
  186. this.groupBox1.Controls.Add(this.chkCopyTextures);
  187. this.groupBox1.Controls.Add(this.txtFilename);
  188. this.groupBox1.Controls.Add(this.chkManifest);
  189. this.groupBox1.Controls.Add(this.butBrowse);
  190. this.groupBox1.Controls.Add(this.label2);
  191. this.groupBox1.Location = new System.Drawing.Point(12, 6);
  192. this.groupBox1.Name = "groupBox1";
  193. this.groupBox1.Size = new System.Drawing.Size(493, 154);
  194. this.groupBox1.TabIndex = 13;
  195. this.groupBox1.TabStop = false;
  196. //
  197. // chkBinary
  198. //
  199. this.chkBinary.AutoSize = true;
  200. this.chkBinary.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  201. this.chkBinary.Location = new System.Drawing.Point(320, 104);
  202. this.chkBinary.Name = "chkBinary";
  203. this.chkBinary.Size = new System.Drawing.Size(135, 17);
  204. this.chkBinary.TabIndex = 16;
  205. this.chkBinary.Text = "Generate binary version";
  206. this.chkBinary.UseVisualStyleBackColor = true;
  207. //
  208. // chkOnlySelected
  209. //
  210. this.chkOnlySelected.AutoSize = true;
  211. this.chkOnlySelected.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  212. this.chkOnlySelected.Location = new System.Drawing.Point(320, 81);
  213. this.chkOnlySelected.Name = "chkOnlySelected";
  214. this.chkOnlySelected.Size = new System.Drawing.Size(118, 17);
  215. this.chkOnlySelected.TabIndex = 15;
  216. this.chkOnlySelected.Text = "Export only selected";
  217. this.chkOnlySelected.UseVisualStyleBackColor = true;
  218. //
  219. // chkAutoSave
  220. //
  221. this.chkAutoSave.AutoSize = true;
  222. this.chkAutoSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  223. this.chkAutoSave.Location = new System.Drawing.Point(166, 104);
  224. this.chkAutoSave.Name = "chkAutoSave";
  225. this.chkAutoSave.Size = new System.Drawing.Size(130, 17);
  226. this.chkAutoSave.TabIndex = 14;
  227. this.chkAutoSave.Text = "Auto save 3ds Max file";
  228. this.chkAutoSave.UseVisualStyleBackColor = true;
  229. //
  230. // chkHidden
  231. //
  232. this.chkHidden.AutoSize = true;
  233. this.chkHidden.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  234. this.chkHidden.Location = new System.Drawing.Point(166, 81);
  235. this.chkHidden.Name = "chkHidden";
  236. this.chkHidden.Size = new System.Drawing.Size(125, 17);
  237. this.chkHidden.TabIndex = 13;
  238. this.chkHidden.Text = "Export hidden objects";
  239. this.chkHidden.UseVisualStyleBackColor = true;
  240. //
  241. // butExportAndRun
  242. //
  243. this.butExportAndRun.Anchor = System.Windows.Forms.AnchorStyles.Top;
  244. this.butExportAndRun.Enabled = false;
  245. this.butExportAndRun.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  246. this.butExportAndRun.Location = new System.Drawing.Point(413, 166);
  247. this.butExportAndRun.Name = "butExportAndRun";
  248. this.butExportAndRun.Size = new System.Drawing.Size(197, 27);
  249. this.butExportAndRun.TabIndex = 14;
  250. this.butExportAndRun.Text = "Export && Run";
  251. this.butExportAndRun.UseVisualStyleBackColor = true;
  252. this.butExportAndRun.Click += new System.EventHandler(this.butExportAndRun_Click);
  253. //
  254. // butClose
  255. //
  256. this.butClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  257. this.butClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  258. this.butClose.Location = new System.Drawing.Point(731, 516);
  259. this.butClose.Name = "butClose";
  260. this.butClose.Size = new System.Drawing.Size(80, 23);
  261. this.butClose.TabIndex = 7;
  262. this.butClose.Text = "Close";
  263. this.butClose.UseVisualStyleBackColor = true;
  264. this.butClose.Click += new System.EventHandler(this.butClose_Click);
  265. //
  266. // chkGltf
  267. //
  268. this.chkGltf.AutoSize = true;
  269. this.chkGltf.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  270. this.chkGltf.Location = new System.Drawing.Point(30, 133);
  271. this.chkGltf.Name = "chkGltf";
  272. this.chkGltf.Size = new System.Drawing.Size(135, 17);
  273. this.chkGltf.TabIndex = 17;
  274. this.chkGltf.Text = "Generate glTF file";
  275. this.chkGltf.UseVisualStyleBackColor = true;
  276. this.chkGltf.CheckedChanged += new System.EventHandler(this.chkGltf_CheckedChanged);
  277. //
  278. // ExporterForm
  279. //
  280. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  281. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  282. this.ClientSize = new System.Drawing.Size(823, 551);
  283. this.Controls.Add(this.chkGltf);
  284. this.Controls.Add(this.butExportAndRun);
  285. this.Controls.Add(this.groupBox1);
  286. this.Controls.Add(this.pictureBox2);
  287. this.Controls.Add(this.butClose);
  288. this.Controls.Add(this.butCancel);
  289. this.Controls.Add(this.treeView);
  290. this.Controls.Add(this.progressBar);
  291. this.Controls.Add(this.butExport);
  292. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
  293. this.MinimumSize = new System.Drawing.Size(750, 400);
  294. this.Name = "ExporterForm";
  295. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  296. this.Text = "Babylon.js - Export scene to .babylon file";
  297. this.Activated += new System.EventHandler(this.ExporterForm_Activated);
  298. this.Deactivate += new System.EventHandler(this.ExporterForm_Deactivate);
  299. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ExporterForm_FormClosed);
  300. this.Load += new System.EventHandler(this.ExporterForm_Load);
  301. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  302. this.groupBox1.ResumeLayout(false);
  303. this.groupBox1.PerformLayout();
  304. this.ResumeLayout(false);
  305. this.PerformLayout();
  306. }
  307. #endregion
  308. private System.Windows.Forms.Button butExport;
  309. private System.Windows.Forms.Label label1;
  310. private System.Windows.Forms.TextBox txtFilename;
  311. private System.Windows.Forms.Button butBrowse;
  312. private System.Windows.Forms.SaveFileDialog saveFileDialog;
  313. private System.Windows.Forms.ProgressBar progressBar;
  314. private System.Windows.Forms.TreeView treeView;
  315. private System.Windows.Forms.Button butCancel;
  316. private System.Windows.Forms.PictureBox pictureBox2;
  317. private System.Windows.Forms.CheckBox chkManifest;
  318. private System.Windows.Forms.Label label2;
  319. private System.Windows.Forms.CheckBox chkCopyTextures;
  320. private System.Windows.Forms.GroupBox groupBox1;
  321. private System.Windows.Forms.CheckBox chkHidden;
  322. private System.Windows.Forms.CheckBox chkAutoSave;
  323. private System.Windows.Forms.Button butExportAndRun;
  324. private System.Windows.Forms.CheckBox chkOnlySelected;
  325. private System.Windows.Forms.Button butClose;
  326. private System.Windows.Forms.CheckBox chkBinary;
  327. private System.Windows.Forms.CheckBox chkGltf;
  328. }
  329. }