Inheritance: System.Windows.Forms.Form
Esempio n. 1
0
		private static void beautifyBackground (string sourceFile, string destinationFile, int? indent, bool? bracesInNewLine, bool? preserveEmptyLines,
				bool? detectPackers, bool? keepArrayIndent)
		{
			JsBeautifier b=new JsBeautifier();

			b.BeautifierReady += delegate(object sender, EventArgs e)
			{
				if (indent.HasValue) b.setIndentation(indent.Value);
				if (bracesInNewLine.HasValue) b.setBracesNewLine(bracesInNewLine.Value);
				if (preserveEmptyLines.HasValue) b.setPreserveEmptyLines(preserveEmptyLines.Value);
				if (detectPackers.HasValue) b.setDetectPackers(detectPackers.Value);
				if (keepArrayIndent.HasValue) b.setKeepArrayIndent(keepArrayIndent.Value);

				string beautified=b.getBeautifiedScript(System.IO.File.ReadAllText(sourceFile));

				System.IO.File.WriteAllText(destinationFile, beautified);

				b.Close();
			};

			b.Shown += delegate(object sender, EventArgs e)
			{
				b.WindowState = FormWindowState.Minimized;
				b.Location = new System.Drawing.Point(800, 800);
				b.Size = new System.Drawing.Size(100, 100);
			};

			b.ShowDialog();
		}
Esempio n. 2
0
        private static void beautifyBackground(string sourceFile, string destinationFile, int?indent, bool?bracesInNewLine, bool?preserveEmptyLines,
                                               bool?detectPackers, bool?keepArrayIndent)
        {
            JsBeautifier b = new JsBeautifier();

            b.BeautifierReady += delegate(object sender, EventArgs e)
            {
                if (indent.HasValue)
                {
                    b.setIndentation(indent.Value);
                }
                if (bracesInNewLine.HasValue)
                {
                    b.setBracesNewLine(bracesInNewLine.Value);
                }
                if (preserveEmptyLines.HasValue)
                {
                    b.setPreserveEmptyLines(preserveEmptyLines.Value);
                }
                if (detectPackers.HasValue)
                {
                    b.setDetectPackers(detectPackers.Value);
                }
                if (keepArrayIndent.HasValue)
                {
                    b.setKeepArrayIndent(keepArrayIndent.Value);
                }

                string beautified = b.getBeautifiedScript(System.IO.File.ReadAllText(sourceFile));

                System.IO.File.WriteAllText(destinationFile, beautified);

                b.Close();
            };

            b.Shown += delegate(object sender, EventArgs e)
            {
                b.WindowState = FormWindowState.Minimized;
                b.Location    = new System.Drawing.Point(800, 800);
                b.Size        = new System.Drawing.Size(100, 100);
            };

            b.ShowDialog();
        }