ExporterForm.Designer.cs 17 KB

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