forked from tenor/Npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeScriptDialog.cs
More file actions
105 lines (91 loc) · 3.12 KB
/
ChangeScriptDialog.cs
File metadata and controls
105 lines (91 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/********************************************************
* ADO.NET 2.0 Data Provider for SQLite Version 3.X
* Written by Robert Simpson (robert@blackcastlesoft.com)
*
* Released to the public domain, use at your own risk!
********************************************************/
namespace Npgsql.Designer
{
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Npgsql.Designer.Design;
public partial class ChangeScriptDialog : Form
{
private string _tableName;
private static bool _defaultSave;
public ChangeScriptDialog(string tableName, string script, string original)
{
_tableName = tableName;
InitializeComponent();
_script.Text = script;
_original.Text = original;
_saveOrig.Checked = _defaultSave;
if (String.IsNullOrEmpty(original) || String.IsNullOrEmpty(script))
{
int increase = _splitter.Top - _show.Top;
_show.Visible = false;
_splitter.Top = _show.Top;
_splitter.Height += increase;
_saveOrig.Visible = false;
}
if (String.IsNullOrEmpty(script) == false)
_splitter.Panel1Collapsed = true;
else
_splitter.Panel2Collapsed = true;
}
private void noButton_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.Cancel;
Close();
}
private void yesButton_Click(object sender, EventArgs e)
{
using (SaveFileDialog save = new SaveFileDialog())
{
save.DefaultExt = "sql";
save.OverwritePrompt = true;
save.Filter = "SQL Script Files (*.sql)|*.sql|All Files (*.*)|*.*";
save.FileName = String.Format("{0}.sql", _tableName);
save.Title = "Save SQLite Change Script";
DialogResult = save.ShowDialog(this);
if (DialogResult == DialogResult.OK)
{
_defaultSave = _saveOrig.Checked;
using (System.IO.StreamWriter writer = new System.IO.StreamWriter(save.FileName, false, Encoding.UTF8))
{
if ((_show.Visible == true && _saveOrig.Checked == true) || (_show.Visible == false && _splitter.Panel2Collapsed == true))
{
if (_show.Visible == true) writer.WriteLine("/*");
writer.WriteLine(_original.Text.Replace("\r", "").TrimEnd('\n').Replace("\n", "\r\n"));
if (_show.Visible == true) writer.WriteLine("*/");
}
if (_show.Visible == true || _splitter.Panel2Collapsed == false)
writer.WriteLine(_script.Text.Replace("\r", "").TrimEnd('\n').Replace("\n", "\r\n"));
}
}
}
Close();
}
private void _show_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
string old = _show.Text;
_show.Text = _show.Tag.ToString();
_show.Tag = old;
if (_splitter.IsSplitterFixed)
{
_splitter.IsSplitterFixed = false;
_splitter.Panel1Collapsed = false;
}
else
{
_splitter.IsSplitterFixed = true;
_splitter.Panel1Collapsed = true;
}
}
}
}