Migration to SharpLibDisplay.
2 // Copyright (C) 2014-2015 Stéphane Lenclud.
4 // This file is part of SharpDisplayManager.
6 // SharpDisplayManager is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
11 // SharpDisplayManager is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with SharpDisplayManager. If not, see <http://www.gnu.org/licenses/>.
21 using System.Collections.Generic;
22 using System.ComponentModel;
27 using System.Threading.Tasks;
28 using System.Windows.Forms;
29 using System.ServiceModel;
30 using System.ServiceModel.Channels;
31 using System.Diagnostics;
32 using SharpLib.Display;
35 namespace SharpDisplayClient
37 public partial class MainForm : Form
39 public StartParams Params { get; set; }
44 ContentAlignment Alignment;
45 DataField iTextFieldTop;
53 InitializeComponent();
54 Alignment = ContentAlignment.MiddleLeft;
55 iTextFieldTop = new DataField(0);
58 public void OnCloseOrder()
66 /// <param name="sender"></param>
67 /// <param name="e"></param>
68 private void MainForm_Load(object sender, EventArgs e)
70 iClient = new Client();
71 iClient.CloseOrderEvent += OnCloseOrder;
74 //Connect using unique name
75 //string name = DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss.fff tt");
76 string name = "Client-" + (iClient.ClientCount() - 1);
77 iClient.SetName(name);
78 //Text = Text + ": " + name;
79 Text = "[[" + name + "]] " + iClient.SessionId;
82 textBoxTop.Text = iClient.Name;
83 textBoxBottom.Text = iClient.SessionId;
87 //Parameters where specified use them
88 if (Params.TopText != "")
90 textBoxTop.Text = Params.TopText;
93 if (Params.BottomText != "")
95 textBoxBottom.Text = Params.BottomText;
98 Location = Params.Location;
100 SetBasicLayoutAndText();
107 public delegate void CloseConnectionDelegate();
108 public delegate void CloseDelegate();
113 public void CloseConnectionThreadSafe()
115 if (this.InvokeRequired)
117 //Not in the proper thread, invoke ourselves
118 CloseConnectionDelegate d = new CloseConnectionDelegate(CloseConnectionThreadSafe);
119 this.Invoke(d, new object[] { });
123 //We are in the proper thread
126 string sessionId = iClient.SessionId;
127 Trace.TraceInformation("Closing client: " + sessionId);
129 Trace.TraceInformation("Closed client: " + sessionId);
139 public void CloseThreadSafe()
141 if (this.InvokeRequired)
143 //Not in the proper thread, invoke ourselves
144 CloseDelegate d = new CloseDelegate(CloseThreadSafe);
145 this.Invoke(d, new object[] { });
149 //We are in the proper thread
155 private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
157 CloseConnectionThreadSafe();
160 public bool IsClientReady()
162 return (iClient != null && iClient.IsReady());
165 private void buttonAlignLeft_Click(object sender, EventArgs e)
167 Alignment = ContentAlignment.MiddleLeft;
168 textBoxTop.TextAlign = HorizontalAlignment.Left;
169 textBoxBottom.TextAlign = HorizontalAlignment.Left;
172 private void buttonAlignCenter_Click(object sender, EventArgs e)
174 Alignment = ContentAlignment.MiddleCenter;
175 textBoxTop.TextAlign = HorizontalAlignment.Center;
176 textBoxBottom.TextAlign = HorizontalAlignment.Center;
179 private void buttonAlignRight_Click(object sender, EventArgs e)
181 Alignment = ContentAlignment.MiddleRight;
182 textBoxTop.TextAlign = HorizontalAlignment.Right;
183 textBoxBottom.TextAlign = HorizontalAlignment.Right;
186 private void buttonSetTopText_Click(object sender, EventArgs e)
188 //TextField top = new TextField(0, textBoxTop.Text, ContentAlignment.MiddleLeft);
189 iTextFieldTop.Text = textBoxTop.Text;
190 iTextFieldTop.Alignment = Alignment;
191 bool res = iClient.SetField(iTextFieldTop);
195 MessageBox.Show("Create you fields first", "Field update error", MessageBoxButtons.OK, MessageBoxIcon.Error);
201 private void buttonSetText_Click(object sender, EventArgs e)
203 SetBasicLayoutAndText();
206 void SetBasicLayoutAndText()
208 //Set one column two lines layout
209 TableLayout layout = new TableLayout(1, 2);
210 iClient.SetLayout(layout);
213 iClient.CreateFields(new DataField[]
215 new DataField(0, textBoxTop.Text, Alignment),
216 new DataField(1, textBoxBottom.Text, Alignment)
221 private void buttonLayoutUpdate_Click(object sender, EventArgs e)
223 //Define a 2 by 2 layout
224 TableLayout layout = new TableLayout(2,2);
225 //Second column only takes up 25%
226 layout.Columns[1].Width = 25F;
227 //Send layout to server
228 iClient.SetLayout(layout);
231 iClient.CreateFields(new DataField[]
233 new DataField(0, textBoxTop.Text, Alignment),
234 new DataField(1, textBoxBottom.Text, Alignment),
235 new DataField(2, "Third text field", Alignment),
236 new DataField(3, "Forth text field", Alignment)
241 private void buttonSetBitmap_Click(object sender, EventArgs e)
248 Bitmap bitmap = new Bitmap(x2,y2);
249 Pen blackPen = new Pen(Color.Black, 3);
251 // Draw line to screen.
252 using (var graphics = Graphics.FromImage(bitmap))
254 graphics.DrawLine(blackPen, x1, y1, x2, y2);
255 graphics.DrawLine(blackPen, x1, y2, x2, y1);
258 DataField field = new DataField(0, bitmap);
259 //field.ColumnSpan = 2;
260 iClient.SetField(field);
263 private void buttonBitmapLayout_Click(object sender, EventArgs e)
265 SetLayoutWithBitmap();
269 /// Define a layout with a bitmap field on the left and two lines of text on the right.
271 private void SetLayoutWithBitmap()
273 //Define a 2 by 2 layout
274 TableLayout layout = new TableLayout(2, 2);
275 //First column only takes 25%
276 layout.Columns[0].Width = 25F;
277 //Second column takes up 75%
278 layout.Columns[1].Width = 75F;
279 //Send layout to server
280 iClient.SetLayout(layout);
282 //Set a bitmap for our first field
288 Bitmap bitmap = new Bitmap(x2, y2);
289 Pen blackPen = new Pen(Color.Black, 3);
291 // Draw line to screen.
292 using (var graphics = Graphics.FromImage(bitmap))
294 graphics.DrawLine(blackPen, x1, y1, x2, y2);
295 graphics.DrawLine(blackPen, x1, y2, x2, y1);
298 //Create a bitmap field from the bitmap we just created
299 DataField field = new DataField(0, bitmap);
300 //We want our bitmap field to span across two rows
304 iClient.CreateFields(new DataField[]
307 new DataField(1, textBoxTop.Text, Alignment),
308 new DataField(2, textBoxBottom.Text, Alignment)
313 private void buttonIndicatorsLayout_Click(object sender, EventArgs e)
315 //Define a 2 by 4 layout
316 TableLayout layout = new TableLayout(2, 4);
318 layout.Columns[0].Width = 87.5F;
320 layout.Columns[1].Width = 12.5F;
321 //Send layout to server
322 iClient.SetLayout(layout);
324 //Create a bitmap for our indicators field
330 Bitmap bitmap = new Bitmap(x2, y2);
331 Pen blackPen = new Pen(Color.Black, 3);
333 // Draw line to screen.
334 using (var graphics = Graphics.FromImage(bitmap))
336 graphics.DrawLine(blackPen, x1, y1, x2, y2);
337 graphics.DrawLine(blackPen, x1, y2, x2, y1);
340 //Create a bitmap field from the bitmap we just created
341 DataField indicator1 = new DataField(2, bitmap);
342 //Create a bitmap field from the bitmap we just created
343 DataField indicator2 = new DataField(3, bitmap);
344 //Create a bitmap field from the bitmap we just created
345 DataField indicator3 = new DataField(4, bitmap);
346 //Create a bitmap field from the bitmap we just created
347 DataField indicator4 = new DataField(5, bitmap);
350 DataField textFieldTop = new DataField(0, textBoxTop.Text, Alignment);
351 textFieldTop.RowSpan = 2;
353 DataField textFieldBottom = new DataField(1, textBoxBottom.Text, Alignment);
354 textFieldBottom.RowSpan = 2;
358 iClient.CreateFields(new DataField[]
370 private void buttonUpdateTexts_Click(object sender, EventArgs e)
373 bool res = iClient.SetFields(new DataField[]
375 new DataField(0, textBoxTop.Text, Alignment),
376 new DataField(1, textBoxBottom.Text, Alignment)
381 MessageBox.Show("Create you fields first", "Field update error", MessageBoxButtons.OK, MessageBoxIcon.Error);
386 private void buttonLayoutOneTextField_Click(object sender, EventArgs e)
388 //Set one column two lines layout
389 TableLayout layout = new TableLayout(1, 1);
390 iClient.SetLayout(layout);
393 iClient.CreateFields(new DataField[]
395 new DataField(0, textBoxTop.Text, Alignment)