forked from pradeepkodical/FlowChart2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.cs
More file actions
188 lines (164 loc) · 5.85 KB
/
Copy pathMainForm.cs
File metadata and controls
188 lines (164 loc) · 5.85 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using FlowChart2.ControllerModel;
using FlowChart2.Utility;
using PK.Controls;
using FlowChart2.Model;
using PK.Grid.Def;
namespace FlowChart2
{
public partial class MainForm : Form
{
private bool blnRestoring = false;
private GridControl<FlowChart> gridControl1;
private List<FlowChart> undoList = new List<FlowChart>();
public MainForm()
{
InitializeComponent();
this.OnResize(new EventArgs());
nPanel1.ComponentAdded += new Action<NComponent>(nPanel1_ComponentAdded);
nPanel1.Change +=new Action<string>(nPanel1_Change);
this.gridControl1 = new PK.Controls.GridControl<FlowChart>();
this.gridControl1.Name = "gridControl1";
this.gridControl1.Dock = DockStyle.Fill;
pnlUndo.Controls.Add(gridControl1);
this.gridControl1.CellClick += new Action<FlowChart, PK.Grid.Def.ColumnDef<FlowChart>>(gridControl1_CellClick);
gridControl1.SetData(new List<ColumnDef<FlowChart>> {
new ColumnDef<FlowChart>
{
Width = 50,
HeaderText = "Undo",
CellRenderer = x => "UNDO"
},
new ColumnDef<FlowChart>
{
Flex = 1,
HeaderText = "Content",
CellRenderer = x => x.Timestamp
},
}, undoList);
}
void gridControl1_CellClick(FlowChart flowChart, PK.Grid.Def.ColumnDef<FlowChart> column)
{
if (column.HeaderText == "Undo")
{
blnRestoring = true;
nPanel1.SetFlatModeJSON(JSONUtil.Serialize(flowChart));
blnRestoring = false;
}
}
void nPanel1_Change(string strJSON)
{
if (!blnRestoring)
{
FlowChart flowChart = JSONUtil.Deserialize<FlowChart>(strJSON);
flowChart.Timestamp = DateTime.Now.ToString("hh:mm:ss");
undoList.Add(flowChart);
gridControl1.Invalidate();
}
}
void nPanel1_ComponentAdded(NComponent obj)
{
}
private void btnAddBox_Click(object sender, EventArgs e)
{
nPanel1.AddComponent(new NBox
{
X = 5 * NConfig.BLOCK_SIZE_2,
Y = 5 * NConfig.BLOCK_SIZE_2,
Width = 5 * NConfig.BLOCK_SIZE_2,
Height = 5 * NConfig.BLOCK_SIZE_2
});
}
private void btnAddRound_Click(object sender, EventArgs e)
{
nPanel1.AddComponent(new NRound
{
X = 5* NConfig.BLOCK_SIZE_2,
Y = 5 * NConfig.BLOCK_SIZE_2,
Width = 5 * NConfig.BLOCK_SIZE_2,
Height = 5 * NConfig.BLOCK_SIZE_2
});
}
private void btnAddRhombus_Click(object sender, EventArgs e)
{
nPanel1.AddComponent(new NRhombus
{
X = 5 * NConfig.BLOCK_SIZE_2,
Y = 5 * NConfig.BLOCK_SIZE_2,
Width = 5 * NConfig.BLOCK_SIZE_2,
Height = 5 * NConfig.BLOCK_SIZE_2
});
}
private void btnAddConnector_Click(object sender, EventArgs e)
{
nPanel1.AddComponent(new NConnector(
5 * NConfig.BLOCK_SIZE_2,
5* NConfig.BLOCK_SIZE_2,
10 * NConfig.BLOCK_SIZE_2,
10 * NConfig.BLOCK_SIZE_2));
}
private void Form1_Resize(object sender, EventArgs e)
{
nPanel1.Width = 900;
nPanel1.Height = 1200;
nPanel1.Left = (panel1.Width - nPanel1.Width) / 2;
}
private void btnCloud_Click(object sender, EventArgs e)
{
nPanel1.AddComponent(new NCloud
{
X = 5 * NConfig.BLOCK_SIZE_2,
Y = 5 * NConfig.BLOCK_SIZE_2,
Width = 5 * NConfig.BLOCK_SIZE_2,
Height = 5 * NConfig.BLOCK_SIZE_2
});
}
private void btnDatabase_Click(object sender, EventArgs e)
{
nPanel1.AddComponent(new NDatabase
{
X = 5 * NConfig.BLOCK_SIZE_2,
Y = 5 * NConfig.BLOCK_SIZE_2,
Width = 5 * NConfig.BLOCK_SIZE_2,
Height = 5 * NConfig.BLOCK_SIZE_2
});
}
private void btnAddProcess_Click(object sender, EventArgs e)
{
nPanel1.AddComponent(new NProcess
{
X = 5 * NConfig.BLOCK_SIZE_2,
Y = 5 * NConfig.BLOCK_SIZE_2,
Width = 5 * NConfig.BLOCK_SIZE_2,
Height = 5 * NConfig.BLOCK_SIZE_2
});
}
private void btnSaveDoc_Click(object sender, EventArgs e)
{
saveFileDialog1.ShowDialog();
}
private void btnOpenDoc_Click(object sender, EventArgs e)
{
openFileDialog1.ShowDialog();
}
private void btnNewDoc_Click(object sender, EventArgs e)
{
nPanel1.CreateNew();
}
private void saveFileDialog1_FileOk(object sender, CancelEventArgs e)
{
System.IO.File.WriteAllText(saveFileDialog1.FileName, nPanel1.GetFlatModelJSON());
}
private void openFileDialog1_FileOk(object sender, CancelEventArgs e)
{
nPanel1.SetFlatModeJSON(System.IO.File.ReadAllText(openFileDialog1.FileName));
}
}
}