2020-08-31 02:13:02 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows.Forms;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.IO;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
using SmartX;
|
2020-08-31 06:52:43 +00:00
|
|
|
|
using ITC81DB_0H.Controls;
|
|
|
|
|
using ITC81DB_0H.DialogForms;
|
2022-07-22 00:43:48 +00:00
|
|
|
|
using ITC81DB_2H_ImageDll;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
using ITC81DB_2H.Datastore;
|
|
|
|
|
using ITC81DB_0H.Part11_UserManager;
|
|
|
|
|
using ITC81DB_0H.Part11_Encryption;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
2020-08-31 06:52:43 +00:00
|
|
|
|
namespace ITC81DB_0H.Forms
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
public partial class FormMenu : Form
|
|
|
|
|
{
|
|
|
|
|
#region Field
|
2023-05-24 04:16:07 +00:00
|
|
|
|
private Queue<string> Q_FileList = new Queue<string>();
|
|
|
|
|
private string EncFileName;
|
|
|
|
|
private Define.E_DataType SelectedDataType;
|
|
|
|
|
private SmartSplash Splash;
|
|
|
|
|
|
2020-08-31 02:13:02 +00:00
|
|
|
|
private FormMain m_ParentForm;
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
private Define.E_MenuSide SelectedSideMenu;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
private Collection<SmartButton> CollectionButtonMenu;
|
|
|
|
|
|
|
|
|
|
// 기본설정
|
|
|
|
|
public ControlCenterBasicDataStatistics CenterBasicDataStatistics;
|
|
|
|
|
public ControlCenterBasicHelp CenterBasicHelp;
|
|
|
|
|
public ControlCenterBasicProduct CenterBasicProduct;
|
|
|
|
|
public ControlCenterBasicTime CenterBasicTime;
|
|
|
|
|
// 환경설정
|
|
|
|
|
public ControlCenterConfiSerial CenterConfiSerial;
|
|
|
|
|
public ControlCenterConfiEthernet CenterConfiEthernet;
|
|
|
|
|
public ControlCenterConfiHelp CenterConfiHelp;
|
|
|
|
|
public ControlCenterConfiOptionBoard CenterConfiOptionBoard;
|
|
|
|
|
// 장비설정
|
|
|
|
|
public ControlCenterEquipHelp CenterEquipHelp;
|
|
|
|
|
public ControlCenterEquipInitialize CenterEquipInitialize;
|
|
|
|
|
public ControlCenterEquipUpdate CenterEquipUpdate;
|
|
|
|
|
public ControlCenterEquipFunctionSetting CenterEquipFunctionSetting;
|
|
|
|
|
public ControlCenterEquipUser CenterEquipUser;
|
|
|
|
|
public ControlCenterEquipEngineer CenterEquipEngineer;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public ControlCenterEquipUserGroupEditor CenterEquipUserGroupEditor;
|
|
|
|
|
public ControlCenterEquipMyPage CenterEquipMyPage;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
// 시스템설정
|
2023-02-13 07:47:48 +00:00
|
|
|
|
public ControlCenterSystemAutoZero CenterSystemAutoZero;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
public ControlCenterSystemCalibration CenterSystemCalibration;
|
|
|
|
|
public ControlCenterSystemExternalOutput CenterSystemExternalOutput;
|
|
|
|
|
public ControlCenterSystemHelp CenterSystemHelp;
|
|
|
|
|
public ControlCenterSystemIOTest CenterSystemIOTest;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public ControlCenterSystemJudgment CenterSystemJudgment;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
public ControlCenterSystemSorterSetting CenterSystemSorterSetting;
|
2022-02-15 10:57:12 +00:00
|
|
|
|
public ControlCenterSystemBLDCMotorSetting CenterSystemBLDCMotorSetting;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
// 로그
|
|
|
|
|
public ControlCenterLogHelp CenterLogHelp;
|
2023-06-21 10:11:37 +00:00
|
|
|
|
public ControlCenterLogInspection CenterLogInspection;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public ControlCenterLogHistory CenterLogHistory;
|
|
|
|
|
public ControlCenterLogOthers CenterLogOthers;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
// 시스템 정보
|
|
|
|
|
public ControlCenterInforHelp CenterInforHelp;
|
|
|
|
|
public ControlCenterInforSystem CenterInforSystem;
|
|
|
|
|
public ControlCenterInforAS CenterInforAS;
|
|
|
|
|
public ControlCenterInforSystem2 CenterInforSystem2;
|
|
|
|
|
public ControlCenterInforSystem3 CenterInforSystem3;
|
|
|
|
|
|
|
|
|
|
// Bottom Menu
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public ControlBottomBasic BottomBasic;
|
|
|
|
|
public ControlBottomConfiguration BottomConfiguration;
|
|
|
|
|
public ControlBottomEquipment BottomEquipment;
|
|
|
|
|
public ControlBottomInformation BottomInformation;
|
|
|
|
|
public ControlBottomLog BottomLog;
|
|
|
|
|
public ControlBottomSystem BottomSystem;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Constructor
|
|
|
|
|
public FormMenu(FormMain parent)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
this.ParentForm = parent;
|
|
|
|
|
|
|
|
|
|
this.DefaultSetting();
|
|
|
|
|
this.InitializeDesign();
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Property
|
|
|
|
|
public FormMain ParentForm
|
|
|
|
|
{
|
|
|
|
|
get { return this.m_ParentForm; }
|
|
|
|
|
private set { this.m_ParentForm = value; }
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Method
|
|
|
|
|
public void InitializeDesign()
|
|
|
|
|
{
|
|
|
|
|
Class1 images = new Class1();
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.English)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
this.labelTitleRoot.Font = new Font("새굴림", 20, FontStyle.Bold);
|
|
|
|
|
|
|
|
|
|
this.buttonBasic.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuDefaultDisable));
|
|
|
|
|
this.buttonBasic.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuDefaultDown));
|
|
|
|
|
this.buttonBasic.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuDefaultUp));
|
|
|
|
|
this.buttonConfiguration.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuConfigDisable));
|
|
|
|
|
this.buttonConfiguration.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuConfigDown));
|
|
|
|
|
this.buttonConfiguration.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuConfigUp));
|
|
|
|
|
this.buttonSystem.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuSystemDisable));
|
|
|
|
|
this.buttonSystem.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuSystemDown));
|
|
|
|
|
this.buttonSystem.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuSystemUp));
|
|
|
|
|
this.buttonEquipment.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuEquipmentDisable));
|
|
|
|
|
this.buttonEquipment.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuEquipmentDown));
|
|
|
|
|
this.buttonEquipment.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuEquipmentUp));
|
|
|
|
|
this.buttonInformation.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuInformationDisable));
|
|
|
|
|
this.buttonInformation.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuInformationDown));
|
|
|
|
|
this.buttonInformation.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engFormMenuInformationUp));
|
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Chinese)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
this.labelTitleRoot.Font = new Font("새굴림", 20, FontStyle.Bold);
|
|
|
|
|
|
|
|
|
|
this.buttonBasic.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuDefaultDisable));
|
|
|
|
|
this.buttonBasic.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuDefaultDown));
|
|
|
|
|
this.buttonBasic.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuDefaultUp));
|
|
|
|
|
this.buttonConfiguration.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuConfigDisable));
|
|
|
|
|
this.buttonConfiguration.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuConfigDown));
|
|
|
|
|
this.buttonConfiguration.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuConfigUp));
|
|
|
|
|
this.buttonSystem.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuSystemDisable));
|
|
|
|
|
this.buttonSystem.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuSystemDown));
|
|
|
|
|
this.buttonSystem.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuSystemUp));
|
|
|
|
|
this.buttonEquipment.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuEquipmentDisable));
|
|
|
|
|
this.buttonEquipment.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuEquipmentDown));
|
|
|
|
|
this.buttonEquipment.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuEquipmentUp));
|
|
|
|
|
this.buttonInformation.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuInformationDisable));
|
|
|
|
|
this.buttonInformation.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuInformationDown));
|
|
|
|
|
this.buttonInformation.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuInformationUp));
|
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Czech)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Russian)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
this.labelTitleRoot.Font = new Font("새굴림", 14, FontStyle.Bold);
|
|
|
|
|
|
|
|
|
|
this.buttonBasic.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuDefaultDisable));
|
|
|
|
|
this.buttonBasic.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuDefaultDown));
|
|
|
|
|
this.buttonBasic.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuDefaultUp));
|
|
|
|
|
this.buttonConfiguration.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuConfigDisable));
|
|
|
|
|
this.buttonConfiguration.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuConfigDown));
|
|
|
|
|
this.buttonConfiguration.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuConfigUp));
|
|
|
|
|
this.buttonSystem.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuSystemDisable));
|
|
|
|
|
this.buttonSystem.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuSystemDown));
|
|
|
|
|
this.buttonSystem.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuSystemUp));
|
|
|
|
|
this.buttonEquipment.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuEquipmentDisable));
|
|
|
|
|
this.buttonEquipment.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuEquipmentDown));
|
|
|
|
|
this.buttonEquipment.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuEquipmentUp));
|
|
|
|
|
this.buttonInformation.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuInformationDisable));
|
|
|
|
|
this.buttonInformation.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuInformationDown));
|
|
|
|
|
this.buttonInformation.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.rusFormMenuInformationUp));
|
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.German)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
this.labelTitleRoot.Font = new Font("새굴림", 20, FontStyle.Bold);
|
|
|
|
|
|
|
|
|
|
this.buttonBasic.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuDefaultDisable));
|
|
|
|
|
this.buttonBasic.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuDefaultDown));
|
|
|
|
|
this.buttonBasic.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuDefaultUp));
|
|
|
|
|
this.buttonConfiguration.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuConfigDisable));
|
|
|
|
|
this.buttonConfiguration.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuConfigDown));
|
|
|
|
|
this.buttonConfiguration.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuConfigUp));
|
|
|
|
|
this.buttonSystem.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuSystemDisable));
|
|
|
|
|
this.buttonSystem.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuSystemDown));
|
|
|
|
|
this.buttonSystem.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuSystemUp));
|
|
|
|
|
this.buttonEquipment.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuEquipmentDisable));
|
|
|
|
|
this.buttonEquipment.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuEquipmentDown));
|
|
|
|
|
this.buttonEquipment.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuEquipmentUp));
|
|
|
|
|
this.buttonInformation.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuInformationDisable));
|
|
|
|
|
this.buttonInformation.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuInformationDown));
|
|
|
|
|
this.buttonInformation.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.gerFormMenuInformationUp));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.labelTitleRoot.Font = new Font("새굴림", 20, FontStyle.Bold);
|
|
|
|
|
|
|
|
|
|
this.buttonBasic.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuDefaultDisable));
|
|
|
|
|
this.buttonBasic.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuDefaultDown));
|
|
|
|
|
this.buttonBasic.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuDefaultUp));
|
|
|
|
|
this.buttonConfiguration.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuConfigDisable));
|
|
|
|
|
this.buttonConfiguration.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuConfigDown));
|
|
|
|
|
this.buttonConfiguration.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuConfigUp));
|
|
|
|
|
this.buttonSystem.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuSystemDisable));
|
|
|
|
|
this.buttonSystem.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuSystemDown));
|
|
|
|
|
this.buttonSystem.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuSystemUp));
|
|
|
|
|
this.buttonEquipment.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuEquipmentDisable));
|
|
|
|
|
this.buttonEquipment.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuEquipmentDown));
|
|
|
|
|
this.buttonEquipment.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuEquipmentUp));
|
|
|
|
|
this.buttonInformation.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuInformationDisable));
|
|
|
|
|
this.buttonInformation.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuInformationDown));
|
|
|
|
|
this.buttonInformation.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.korFormMenuInformationUp));
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.UpdateDisplayUser(this.ParentForm.CurrentSystemStatus);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
|
|
|
|
private void DefaultSetting()
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.EncFileName = "";
|
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Basic;
|
|
|
|
|
this.SelectedDataType = Define.E_DataType.None;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
this.CollectionButtonMenu = new Collection<SmartButton>();
|
|
|
|
|
this.CollectionButtonMenu.Clear();
|
|
|
|
|
this.CollectionButtonMenu.Add(this.buttonBasic);
|
|
|
|
|
this.CollectionButtonMenu.Add(this.buttonSystem);
|
|
|
|
|
this.CollectionButtonMenu.Add(this.buttonEquipment);
|
|
|
|
|
this.CollectionButtonMenu.Add(this.buttonInformation);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.CollectionButtonMenu.Add(this.buttonLog);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CollectionButtonMenu.Add(this.buttonMain);
|
|
|
|
|
|
|
|
|
|
this.InitializeControl();
|
2023-07-24 04:23:49 +00:00
|
|
|
|
|
|
|
|
|
if (this.ParentForm.SystemConfig1.IsLogin == true)
|
|
|
|
|
this.LoginVisible(true);
|
|
|
|
|
}
|
|
|
|
|
public void LoginVisible(bool bValue)
|
|
|
|
|
{
|
|
|
|
|
this.labelUserID.Visible = bValue;
|
|
|
|
|
this.labelUserLevel.Visible = bValue;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
|
|
|
|
private void InitializeControl()
|
|
|
|
|
{
|
|
|
|
|
this.CreateCenterBasicControl();
|
|
|
|
|
this.CreateCenterConfigurationControl();
|
|
|
|
|
this.CreateCenterEquipmentControl();
|
|
|
|
|
this.CreateCenterSystemControl();
|
|
|
|
|
this.CreateCenterInformationControl();
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.CreateCenterLogControl();
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
#region new
|
|
|
|
|
// Bottom Menu
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomBasic = new ControlBottomBasic(this);
|
|
|
|
|
this.BottomConfiguration = new ControlBottomConfiguration(this);
|
|
|
|
|
this.BottomEquipment = new ControlBottomEquipment(this);
|
|
|
|
|
this.BottomInformation = new ControlBottomInformation(this);
|
|
|
|
|
this.BottomSystem = new ControlBottomSystem(this);
|
|
|
|
|
this.BottomLog = new ControlBottomLog(this);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Location
|
|
|
|
|
// Bottom Menu
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomBasic.Location = new Point(0, 535);
|
|
|
|
|
this.BottomConfiguration.Location = new Point(0, 535);
|
|
|
|
|
this.BottomEquipment.Location = new Point(0, 535);
|
|
|
|
|
this.BottomInformation.Location = new Point(0, 535);
|
|
|
|
|
this.BottomSystem.Location = new Point(0, 535);
|
|
|
|
|
this.BottomLog.Location = new Point(0, 535);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Add
|
|
|
|
|
// Bottom Menu
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.Controls.Add(this.BottomBasic);
|
|
|
|
|
this.Controls.Add(this.BottomConfiguration);
|
|
|
|
|
this.Controls.Add(this.BottomEquipment);
|
|
|
|
|
this.Controls.Add(this.BottomInformation);
|
|
|
|
|
this.Controls.Add(this.BottomSystem);
|
|
|
|
|
this.Controls.Add(this.BottomLog);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
private void CreateCenterBasicControl()
|
|
|
|
|
{
|
|
|
|
|
this.CenterBasicHelp = new ControlCenterBasicHelp(this);
|
|
|
|
|
this.CenterBasicProduct = new ControlCenterBasicProduct(this);
|
|
|
|
|
this.CenterBasicDataStatistics = new ControlCenterBasicDataStatistics(this);
|
|
|
|
|
this.CenterBasicTime = new ControlCenterBasicTime(this);
|
|
|
|
|
|
|
|
|
|
this.CenterBasicHelp.Location = new Point(0, 65);
|
|
|
|
|
this.CenterBasicProduct.Location = new Point(0, 65);
|
|
|
|
|
this.CenterBasicDataStatistics.Location = new Point(0, 65);
|
|
|
|
|
this.CenterBasicTime.Location = new Point(0, 65);
|
|
|
|
|
|
|
|
|
|
this.Controls.Add(this.CenterBasicHelp);
|
|
|
|
|
this.Controls.Add(this.CenterBasicProduct);
|
|
|
|
|
this.Controls.Add(this.CenterBasicDataStatistics);
|
|
|
|
|
this.Controls.Add(this.CenterBasicTime);
|
|
|
|
|
}
|
|
|
|
|
private void CreateCenterConfigurationControl()
|
|
|
|
|
{
|
|
|
|
|
this.CenterConfiHelp = new ControlCenterConfiHelp(this);
|
|
|
|
|
this.CenterConfiSerial = new ControlCenterConfiSerial(this);
|
|
|
|
|
this.CenterConfiEthernet = new ControlCenterConfiEthernet(this);
|
|
|
|
|
this.CenterConfiOptionBoard = new ControlCenterConfiOptionBoard(this);
|
|
|
|
|
|
|
|
|
|
this.CenterConfiHelp.Location = new Point(0, 65);
|
|
|
|
|
this.CenterConfiSerial.Location = new Point(0, 65);
|
|
|
|
|
this.CenterConfiEthernet.Location = new Point(0, 65);
|
|
|
|
|
this.CenterConfiOptionBoard.Location = new Point(0, 65);
|
|
|
|
|
|
|
|
|
|
this.Controls.Add(this.CenterConfiHelp);
|
|
|
|
|
this.Controls.Add(this.CenterConfiSerial);
|
|
|
|
|
this.Controls.Add(this.CenterConfiEthernet);
|
|
|
|
|
this.Controls.Add(this.CenterConfiOptionBoard);
|
|
|
|
|
}
|
|
|
|
|
private void CreateCenterEquipmentControl()
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipHelp = new ControlCenterEquipHelp(this);
|
|
|
|
|
this.CenterEquipUpdate = new ControlCenterEquipUpdate(this);
|
2020-09-22 01:11:23 +00:00
|
|
|
|
this.CenterEquipInitialize = new ControlCenterEquipInitialize(this);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterEquipFunctionSetting = new ControlCenterEquipFunctionSetting(this);
|
|
|
|
|
this.CenterEquipUser = new ControlCenterEquipUser(this);
|
|
|
|
|
this.CenterEquipEngineer = new ControlCenterEquipEngineer(this);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.CenterEquipUserGroupEditor = new ControlCenterEquipUserGroupEditor(this);
|
|
|
|
|
this.CenterEquipMyPage = new ControlCenterEquipMyPage(this);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
this.CenterEquipHelp.Location = new Point(0, 65);
|
|
|
|
|
this.CenterEquipUpdate.Location = new Point(0, 65);
|
2020-09-22 01:11:23 +00:00
|
|
|
|
this.CenterEquipInitialize.Location = new Point(0, 65);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterEquipFunctionSetting.Location = new Point(0, 65);
|
|
|
|
|
this.CenterEquipUser.Location = new Point(0, 65);
|
|
|
|
|
this.CenterEquipEngineer.Location = new Point(0, 65);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.CenterEquipUserGroupEditor.Location = new Point(0, 65);
|
|
|
|
|
this.CenterEquipMyPage.Location = new Point(0, 65);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
this.Controls.Add(this.CenterEquipHelp);
|
|
|
|
|
this.Controls.Add(this.CenterEquipUpdate);
|
2020-09-22 01:11:23 +00:00
|
|
|
|
this.Controls.Add(this.CenterEquipInitialize);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.Controls.Add(this.CenterEquipFunctionSetting);
|
|
|
|
|
this.Controls.Add(this.CenterEquipUser);
|
|
|
|
|
this.Controls.Add(this.CenterEquipEngineer);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.Controls.Add(this.CenterEquipUserGroupEditor);
|
|
|
|
|
this.Controls.Add(this.CenterEquipMyPage);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
|
|
|
|
private void CreateCenterSystemControl()
|
|
|
|
|
{
|
|
|
|
|
this.CenterSystemCalibration = new ControlCenterSystemCalibration(this);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.CenterSystemJudgment = new ControlCenterSystemJudgment(this);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterSystemExternalOutput = new ControlCenterSystemExternalOutput(this);
|
|
|
|
|
this.CenterSystemHelp = new ControlCenterSystemHelp(this);
|
|
|
|
|
this.CenterSystemIOTest = new ControlCenterSystemIOTest(this);
|
|
|
|
|
this.CenterSystemSorterSetting = new ControlCenterSystemSorterSetting(this);
|
2022-02-15 10:57:12 +00:00
|
|
|
|
this.CenterSystemBLDCMotorSetting = new ControlCenterSystemBLDCMotorSetting(this);
|
2023-02-13 07:47:48 +00:00
|
|
|
|
this.CenterSystemAutoZero = new ControlCenterSystemAutoZero(this);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
this.CenterSystemCalibration.Location = new Point(0, 65);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.CenterSystemJudgment.Location = new Point(0, 65);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterSystemExternalOutput.Location = new Point(0, 65);
|
|
|
|
|
this.CenterSystemHelp.Location = new Point(0, 65);
|
|
|
|
|
this.CenterSystemIOTest.Location = new Point(0, 65);
|
|
|
|
|
this.CenterSystemSorterSetting.Location = new Point(0, 65);
|
2022-02-15 10:57:12 +00:00
|
|
|
|
this.CenterSystemBLDCMotorSetting.Location = new Point(0, 65);
|
2023-02-13 07:47:48 +00:00
|
|
|
|
this.CenterSystemAutoZero.Location = new Point(0, 65);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
this.Controls.Add(this.CenterSystemCalibration);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.Controls.Add(this.CenterSystemJudgment);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.Controls.Add(this.CenterSystemExternalOutput);
|
|
|
|
|
this.Controls.Add(this.CenterSystemHelp);
|
|
|
|
|
this.Controls.Add(this.CenterSystemIOTest);
|
|
|
|
|
this.Controls.Add(this.CenterSystemSorterSetting);
|
2022-02-15 10:57:12 +00:00
|
|
|
|
this.Controls.Add(this.CenterSystemBLDCMotorSetting);
|
2023-02-13 07:47:48 +00:00
|
|
|
|
this.Controls.Add(this.CenterSystemAutoZero);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
private void CreateCenterLogControl()
|
|
|
|
|
{
|
|
|
|
|
this.CenterLogHelp = new ControlCenterLogHelp(this);
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.CenterLogInspection = new ControlCenterLogInspection(this);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.CenterLogHistory = new ControlCenterLogHistory(this);
|
|
|
|
|
this.CenterLogOthers = new ControlCenterLogOthers(this);
|
|
|
|
|
|
|
|
|
|
this.CenterLogHelp.Location = new Point(0, 65);
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.CenterLogInspection.Location = new Point(0, 65);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.CenterLogHistory.Location = new Point(0, 65);
|
|
|
|
|
this.CenterLogOthers.Location = new Point(0, 65);
|
|
|
|
|
|
|
|
|
|
this.Controls.Add(this.CenterLogHelp);
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.Controls.Add(this.CenterLogInspection);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.Controls.Add(this.CenterLogHistory);
|
|
|
|
|
this.Controls.Add(this.CenterLogOthers);
|
|
|
|
|
}
|
2020-08-31 02:13:02 +00:00
|
|
|
|
private void CreateCenterInformationControl()
|
|
|
|
|
{
|
|
|
|
|
this.CenterInforHelp = new ControlCenterInforHelp(this);
|
|
|
|
|
this.CenterInforSystem = new ControlCenterInforSystem(this);
|
|
|
|
|
this.CenterInforAS = new ControlCenterInforAS(this);
|
|
|
|
|
this.CenterInforSystem2 = new ControlCenterInforSystem2(this);
|
|
|
|
|
this.CenterInforSystem3 = new ControlCenterInforSystem3(this);
|
|
|
|
|
|
|
|
|
|
this.CenterInforHelp.Location = new Point(0, 65);
|
|
|
|
|
this.CenterInforSystem.Location = new Point(0, 65);
|
|
|
|
|
this.CenterInforAS.Location = new Point(0, 65);
|
|
|
|
|
this.CenterInforSystem2.Location = new Point(0, 65);
|
|
|
|
|
this.CenterInforSystem3.Location = new Point(0, 65);
|
|
|
|
|
|
|
|
|
|
this.Controls.Add(this.CenterInforHelp);
|
|
|
|
|
this.Controls.Add(this.CenterInforSystem);
|
|
|
|
|
this.Controls.Add(this.CenterInforAS);
|
|
|
|
|
this.Controls.Add(this.CenterInforSystem2);
|
|
|
|
|
this.Controls.Add(this.CenterInforSystem3);
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
#region Log
|
|
|
|
|
private void CreateHeaderFile(string headerFilePath, string sourceFilePath, FileHeaderItem header)
|
|
|
|
|
{
|
|
|
|
|
string[] result, fileName;
|
|
|
|
|
string filePath, section, key, value;
|
|
|
|
|
|
|
|
|
|
result = sourceFilePath.Split('\\');
|
|
|
|
|
fileName = result[result.Length - 1].Split('.');
|
|
|
|
|
filePath = string.Format("{0}{1}_h.ini", headerFilePath, fileName[0]);
|
|
|
|
|
section = header.GetType().Name;
|
|
|
|
|
|
|
|
|
|
// LoginID
|
|
|
|
|
key = Define.E_FileHeaderItem.LoginId.ToString();
|
|
|
|
|
value = header.LoginId;
|
|
|
|
|
LogIniFile.WriteString(filePath, section, key, value);
|
|
|
|
|
Thread.Sleep(5);
|
|
|
|
|
|
|
|
|
|
// SerialNumber
|
|
|
|
|
key = Define.E_FileHeaderItem.SerialNumber.ToString();
|
|
|
|
|
value = header.SerialNumber;
|
|
|
|
|
LogIniFile.WriteString(filePath, section, key, value);
|
|
|
|
|
Thread.Sleep(5);
|
|
|
|
|
|
|
|
|
|
// EquipmentColumns
|
|
|
|
|
key = Define.E_FileHeaderItem.EquipmentColumns.ToString();
|
|
|
|
|
value = header.EquipmentColumns.ToString();
|
|
|
|
|
LogIniFile.WriteString(filePath, section, key, value);
|
|
|
|
|
Thread.Sleep(5);
|
|
|
|
|
|
|
|
|
|
// TimeStamp
|
|
|
|
|
key = Define.E_FileHeaderItem.TimeStamp.ToString();
|
|
|
|
|
value = header.TimeStamp.ToString("MM/dd/yyyy HH:mm:ss");
|
|
|
|
|
LogIniFile.WriteString(filePath, section, key, value);
|
|
|
|
|
Thread.Sleep(5);
|
|
|
|
|
|
|
|
|
|
// Type
|
|
|
|
|
key = Define.E_FileHeaderItem.EquipmentType.ToString();
|
|
|
|
|
value = header.Type.ToString();
|
|
|
|
|
LogIniFile.WriteString(filePath, section, key, value);
|
|
|
|
|
Thread.Sleep(5);
|
|
|
|
|
}
|
|
|
|
|
private void DirectoryFileDelete(string dirPath)
|
|
|
|
|
{
|
|
|
|
|
DirectoryInfo dir = new DirectoryInfo(dirPath);
|
|
|
|
|
FileInfo[] files = dir.GetFiles();
|
|
|
|
|
|
|
|
|
|
foreach (FileInfo file in files)
|
|
|
|
|
{
|
|
|
|
|
file.Delete();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void EncryptionFile(string sourceFilePath)
|
|
|
|
|
{
|
|
|
|
|
string[] data = sourceFilePath.Split('\\');
|
|
|
|
|
string destinationFilePath = string.Format("{0}{1}", this.ParentForm.PathEncryptionFolder, data[data.Length - 1]);
|
|
|
|
|
|
|
|
|
|
this.UI_Invoke(delegate
|
|
|
|
|
{
|
|
|
|
|
//this.labelFileName.Text = data[data.Length - 1];
|
|
|
|
|
this.EncFileName = sourceFilePath;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Encryption.fAesEncryption(sourceFilePath, destinationFilePath, true, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Backup
|
|
|
|
|
public void Backup(Define.E_DataType type, TreeView view)
|
|
|
|
|
{
|
|
|
|
|
int count = 0;
|
|
|
|
|
string targetPath = "", sourceFilePath = "", destFilePath = "", dataFolderPath = "";
|
|
|
|
|
string[] result;
|
|
|
|
|
DirectoryInfo dir;
|
|
|
|
|
FileInfo[] files;
|
|
|
|
|
List<string> listSelectedFile = new List<string>(); // 백업할 파일 리스트 (yyyy\\MM\\filename.csv)
|
|
|
|
|
this.Q_FileList = new Queue<string>();
|
|
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case Define.E_DataType.None:
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DataType.History:
|
|
|
|
|
dataFolderPath = this.ParentForm.PathDataHistoryFolder;
|
|
|
|
|
this.SelectedDataType = Define.E_DataType.History;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DataType.Inspection:
|
|
|
|
|
dataFolderPath = this.ParentForm.PathDataInspectionFolder;
|
|
|
|
|
this.SelectedDataType = Define.E_DataType.Inspection;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DataType.Others:
|
|
|
|
|
dataFolderPath = this.ParentForm.PathDataOthersFolder;
|
|
|
|
|
this.SelectedDataType = Define.E_DataType.Others;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dataFolderPath == "")
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
targetPath = "하드 디스크\\";
|
|
|
|
|
#region USB 장착 유무 체크
|
|
|
|
|
dir = new DirectoryInfo(targetPath);
|
|
|
|
|
if (dir.Exists == false)
|
|
|
|
|
{
|
|
|
|
|
// USB메모리가 장착되지 않았습니다
|
|
|
|
|
DialogFormMessage msg = new DialogFormMessage(5, this.ParentForm.SystemConfig1.Language);
|
|
|
|
|
msg.ShowDialog();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
listSelectedFile = this.GetSeletedNodeList(view);
|
|
|
|
|
#region 백업할 파일 유무 체크
|
|
|
|
|
if (listSelectedFile.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
// 백업할 파일이 없습니다
|
|
|
|
|
DialogFormMessage msg = new DialogFormMessage(4, this.ParentForm.SystemConfig1.Language);
|
|
|
|
|
msg.ShowDialog();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
// Splash Start
|
|
|
|
|
this.SplashStart();
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.timerTimeout.Enabled = true;
|
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("Backup() ({0:yyyy-MM-dd HH:mm:ss}): timeout true1", DateTime.Now));
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (this.ParentForm.SystemConfig3.IsPart11 == true)
|
|
|
|
|
{
|
|
|
|
|
#region Header && Encryption 폴더에 파일 삭제
|
|
|
|
|
// Header && Encryption 폴더에 파일 삭제
|
|
|
|
|
this.DirectoryFileDelete(this.ParentForm.PathEncryptionFolder);
|
|
|
|
|
this.DirectoryFileDelete(this.ParentForm.PathHeaderFolder);
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Header 파일 생성
|
|
|
|
|
// Header 파일 생성
|
|
|
|
|
FileHeaderItem header = new FileHeaderItem();
|
|
|
|
|
header.TimeStamp = DateTime.Now;
|
|
|
|
|
header.LoginId = this.ParentForm.CurrentSystemStatus.CurrentUser.ID;
|
|
|
|
|
header.SerialNumber = this.ParentForm.SystemConfig1.SerialNumber;
|
|
|
|
|
header.EquipmentColumns = 1;
|
|
|
|
|
header.Type = 1;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < listSelectedFile.Count; i++)
|
2023-06-21 10:11:37 +00:00
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.CreateHeaderFile(this.ParentForm.PathHeaderFolder, listSelectedFile[i], header);
|
2023-06-21 10:11:37 +00:00
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("Header-FileName ({0:yyyy-MM-dd HH:mm:ss}): {1}", DateTime.Now, listSelectedFile[i]));
|
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 파일 암호화
|
|
|
|
|
// 데이터 파일
|
|
|
|
|
for (int i = 0; i < listSelectedFile.Count; i++)
|
|
|
|
|
this.Q_FileList.Enqueue(string.Format("{0}{1}", dataFolderPath, listSelectedFile[i]));
|
|
|
|
|
// 헤더 파일
|
|
|
|
|
dir = new DirectoryInfo(this.ParentForm.PathHeaderFolder);
|
|
|
|
|
files = dir.GetFiles();
|
|
|
|
|
foreach (FileInfo file in files)
|
|
|
|
|
{
|
|
|
|
|
result = file.FullName.Split('\\');
|
|
|
|
|
sourceFilePath = file.FullName;
|
|
|
|
|
destFilePath = string.Format("{0}{1}", this.ParentForm.PathEncryptionFolder, result[result.Length - 1]);
|
|
|
|
|
|
|
|
|
|
this.Q_FileList.Enqueue(file.FullName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.EncryptionFile(this.Q_FileList.Dequeue());
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.timerTimeout.Enabled = false;
|
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("Backup() ({0:yyyy-MM-dd HH:mm:ss}): timeout false1", DateTime.Now));
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
#region Part11 미사용 시 - USB 복사
|
|
|
|
|
// USB\SerialNumber\Data\{Type}\yyyyMMdd_HHmmss 루트
|
|
|
|
|
targetPath = string.Format("{0}{1}\\Data\\{2}\\{3}\\", targetPath, this.ParentForm.SystemConfig1.SerialNumber, type, DateTime.Now.ToString("yyyyMMdd_HHmmss"));
|
|
|
|
|
|
|
|
|
|
// Target폴더 - USB 폴더 체크 및 생성
|
|
|
|
|
dir = new DirectoryInfo(targetPath);
|
|
|
|
|
if (dir.Exists == false)
|
|
|
|
|
dir.Create();
|
|
|
|
|
|
|
|
|
|
count = listSelectedFile.Count;
|
|
|
|
|
for (int i = 0; i < listSelectedFile.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
result = listSelectedFile[i].Split('\\');
|
|
|
|
|
sourceFilePath = dataFolderPath + listSelectedFile[i];
|
|
|
|
|
destFilePath = string.Format("{0}{1}", targetPath, result[result.Length - 1]);
|
|
|
|
|
|
|
|
|
|
// 파일 중복 검사
|
|
|
|
|
if (File.Exists(destFilePath) == true)
|
|
|
|
|
{
|
|
|
|
|
DialogFormYesNo df = new DialogFormYesNo(this.ParentForm.SystemConfig1.Language, 1, Path.GetFileName(result[result.Length - 1]));
|
|
|
|
|
df.BringToFront();
|
|
|
|
|
if (df.ShowDialog() == DialogResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
this.Refresh();
|
|
|
|
|
File.Delete(destFilePath); // 존재하는 파일 삭제
|
|
|
|
|
File.Copy(sourceFilePath, destFilePath);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
count--;
|
|
|
|
|
this.Refresh();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
File.Copy(sourceFilePath, destFilePath);
|
2024-02-07 00:42:03 +00:00
|
|
|
|
File.Delete(sourceFilePath); // 존재하는 파일 삭제
|
2023-05-24 04:16:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 복사 완료 메시지
|
2023-06-21 10:11:37 +00:00
|
|
|
|
DialogFormMessage msg = new DialogFormMessage(count.ToString(), this.ParentForm.SystemConfig1.Language);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.SplashFinish();
|
|
|
|
|
msg.ShowDialog();
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
// 제조사에 문의하세요
|
|
|
|
|
DialogFormMessage msg = new DialogFormMessage(6, this.ParentForm.SystemConfig1.Language);
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.timerTimeout.Enabled = false;
|
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("Backup() ({0:yyyy-MM-dd HH:mm:ss}): timeout false2", DateTime.Now));
|
2023-05-24 04:16:07 +00:00
|
|
|
|
msg.ShowDialog();
|
|
|
|
|
this.SplashFinish();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// FileCopy
|
|
|
|
|
public void FileCopy(Define.E_DataType type)
|
|
|
|
|
{
|
|
|
|
|
int count = 0;
|
|
|
|
|
string targetPath = "", destTargetPath = "", sourceFilePath = "", destFilePath = "";
|
|
|
|
|
string[] result;
|
|
|
|
|
DirectoryInfo dir;
|
|
|
|
|
FileInfo[] files;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
#region USB 복사
|
|
|
|
|
targetPath = "하드 디스크\\";
|
|
|
|
|
|
|
|
|
|
// USB\SerialNumber\ 루트
|
|
|
|
|
destTargetPath = string.Format("{0}{1}\\Data\\{2}\\{3}\\", targetPath, this.ParentForm.SystemConfig1.SerialNumber, type, DateTime.Now.ToString("yyyyMMdd_HHmmss"));
|
|
|
|
|
|
|
|
|
|
// USB 폴더 체크 및 생성
|
|
|
|
|
dir = new DirectoryInfo(destTargetPath);
|
|
|
|
|
if (dir.Exists == false)
|
|
|
|
|
dir.Create();
|
|
|
|
|
|
|
|
|
|
// Encryption 폴더
|
|
|
|
|
dir = new DirectoryInfo(this.ParentForm.PathEncryptionFolder);
|
|
|
|
|
if (dir.Exists == false)
|
|
|
|
|
dir.Create();
|
|
|
|
|
|
|
|
|
|
files = dir.GetFiles();
|
|
|
|
|
count = files.Length;
|
|
|
|
|
foreach (FileInfo file in files)
|
|
|
|
|
{
|
|
|
|
|
result = file.FullName.Split('\\');
|
|
|
|
|
sourceFilePath = file.FullName;
|
|
|
|
|
destFilePath = string.Format("{0}{1}", destTargetPath, result[result.Length - 1]);
|
|
|
|
|
|
|
|
|
|
// 파일 중복 검사
|
|
|
|
|
if (File.Exists(destFilePath) == true)
|
|
|
|
|
{
|
|
|
|
|
DialogFormYesNo df = new DialogFormYesNo(this.ParentForm.SystemConfig1.Language, 1, Path.GetFileName(result[result.Length - 1]));
|
|
|
|
|
df.BringToFront();
|
|
|
|
|
if (df.ShowDialog() == DialogResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
this.Refresh();
|
|
|
|
|
File.Delete(destFilePath); // 존재하는 파일 삭제
|
|
|
|
|
File.Copy(sourceFilePath, destFilePath);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
count--;
|
|
|
|
|
this.Refresh();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
File.Copy(sourceFilePath, destFilePath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//if (type == Define.E_DataType.Others)
|
|
|
|
|
//{
|
|
|
|
|
// dir = new DirectoryInfo(this.ParentForm.PathDataOthersFolder);
|
|
|
|
|
// files = dir.GetFiles();
|
|
|
|
|
// foreach (FileInfo file in files)
|
|
|
|
|
// file.Delete();
|
|
|
|
|
|
|
|
|
|
// //this.UpdateDisplayOtherFile();
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
// 복사 완료 메시지
|
2023-06-21 10:11:37 +00:00
|
|
|
|
DialogFormMessage msg = new DialogFormMessage((count / 2).ToString(), this.ParentForm.SystemConfig1.Language);
|
|
|
|
|
this.timerTimeout.Enabled = false;
|
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("FileCopy() ({0:yyyy-MM-dd HH:mm:ss}): timeout false1", DateTime.Now));
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.SplashFinish();
|
|
|
|
|
msg.ShowDialog();
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
// 제조사에 문의하세요
|
|
|
|
|
DialogFormMessage msg = new DialogFormMessage(6, this.ParentForm.SystemConfig1.Language);
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.timerTimeout.Enabled = false;
|
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("FileCopy() ({0:yyyy-MM-dd HH:mm:ss}): timeout false2", DateTime.Now));
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.SplashFinish();
|
|
|
|
|
msg.ShowDialog();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-21 10:11:37 +00:00
|
|
|
|
public void FileClose()
|
|
|
|
|
{
|
|
|
|
|
this.CenterLogHistory.FileClose();
|
|
|
|
|
this.CenterLogInspection.FileClose();
|
|
|
|
|
this.CenterLogOthers.FileClose();
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void CopyFolder(string sourceFolder, string destFolder)
|
|
|
|
|
{
|
|
|
|
|
if (!Directory.Exists(destFolder))
|
|
|
|
|
Directory.CreateDirectory(destFolder);
|
|
|
|
|
|
|
|
|
|
string[] files = Directory.GetFiles(sourceFolder);
|
|
|
|
|
string[] folders = Directory.GetDirectories(sourceFolder);
|
|
|
|
|
|
|
|
|
|
foreach (string file in files)
|
|
|
|
|
{
|
|
|
|
|
string name = Path.GetFileName(file);
|
|
|
|
|
string dest = Path.Combine(destFolder, name);
|
|
|
|
|
File.Copy(file, dest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (string folder in folders)
|
|
|
|
|
{
|
|
|
|
|
string name = Path.GetFileName(folder);
|
|
|
|
|
string dest = Path.Combine(destFolder, name);
|
|
|
|
|
this.CopyFolder(folder, dest);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void CopyFile(string sourceFile, string destFile)
|
|
|
|
|
{
|
|
|
|
|
string[] targetPath = destFile.Split('\\');
|
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
|
for (int i = 0; i < targetPath.Length - 1; i++)
|
|
|
|
|
{
|
|
|
|
|
sb.Append(targetPath[i]);
|
|
|
|
|
sb.Append("\\");
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (!Directory.Exists(sb.ToString()))
|
|
|
|
|
Directory.CreateDirectory(sb.ToString());
|
|
|
|
|
|
|
|
|
|
File.Copy(sourceFile, destFile);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//string[] files = Directory.GetFiles(sourceFolder);
|
|
|
|
|
//string[] folders = Directory.GetDirectories(sourceFolder);
|
|
|
|
|
|
|
|
|
|
//foreach (string file in files)
|
|
|
|
|
//{
|
|
|
|
|
// if (targetFileFullPath == file)
|
|
|
|
|
// {
|
|
|
|
|
// string name = Path.GetFileName(file);
|
|
|
|
|
// string dest = Path.Combine(destFolder, name);
|
|
|
|
|
// File.Copy(sourceFile, destFile);
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
//foreach (string folder in folders)
|
|
|
|
|
//{
|
|
|
|
|
// for (int i = 0; i < targetPath.Length; i++)
|
|
|
|
|
// {
|
|
|
|
|
// if (targetPath[i] == folder)
|
|
|
|
|
// {
|
|
|
|
|
// string name = Path.GetFileName(folder);
|
|
|
|
|
// string dest = Path.Combine(destFolder, name);
|
|
|
|
|
// this.CopyFolder(folder, dest);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SplashStart()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
this.Splash = new SmartX.SmartSplash();
|
|
|
|
|
this.Splash.CenterPosition = true;
|
|
|
|
|
//this.Splash.Left = 462;
|
|
|
|
|
//this.Splash.Top = 200;
|
|
|
|
|
this.Splash.AnimationInterval = 200;
|
|
|
|
|
this.Splash.LoadingImagePathname = "SmartLoading4";
|
|
|
|
|
this.Splash.Start();
|
|
|
|
|
this.Enabled = false;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void SplashFinish()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
this.Splash.Finish();
|
|
|
|
|
this.Enabled = true;
|
|
|
|
|
|
|
|
|
|
this.EncFileName = "";
|
|
|
|
|
this.SelectedDataType = Define.E_DataType.None;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<string> DirectorySort(DirectoryInfo[] directorys)
|
|
|
|
|
{
|
|
|
|
|
List<string> listDirectory = new List<string>();
|
|
|
|
|
Dictionary<string, int> dirNames = new Dictionary<string, int>();
|
|
|
|
|
|
|
|
|
|
foreach (DirectoryInfo dir in directorys)
|
2024-02-07 00:42:03 +00:00
|
|
|
|
if (dir.Name != "Log")
|
|
|
|
|
dirNames.Add(dir.Name, int.Parse(dir.Name));
|
2023-07-24 04:23:49 +00:00
|
|
|
|
|
|
|
|
|
// 순서데로 오름차순 정렬
|
|
|
|
|
var vrList = dirNames.OrderBy(x => x.Value);
|
|
|
|
|
foreach (var v in vrList)
|
|
|
|
|
listDirectory.Add(v.Key);
|
|
|
|
|
|
|
|
|
|
return listDirectory;
|
|
|
|
|
}
|
|
|
|
|
private List<string> GetSeletedNodeList(TreeView tree)
|
|
|
|
|
{
|
|
|
|
|
int yearCNT, monthCNT, dayCNT;
|
|
|
|
|
List<string> listSelectedFile = new List<string>();
|
|
|
|
|
|
|
|
|
|
yearCNT = tree.Nodes.Count;
|
|
|
|
|
if (yearCNT != 0)
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < yearCNT; i++)
|
|
|
|
|
{
|
|
|
|
|
monthCNT = tree.Nodes[i].Nodes.Count;
|
|
|
|
|
if (monthCNT != 0)
|
|
|
|
|
{
|
|
|
|
|
for (int j = 0; j < monthCNT; j++)
|
|
|
|
|
{
|
|
|
|
|
dayCNT = tree.Nodes[i].Nodes[j].Nodes.Count;
|
|
|
|
|
if (dayCNT != 0)
|
|
|
|
|
{
|
|
|
|
|
for (int k = 0; k < dayCNT; k++)
|
|
|
|
|
{
|
|
|
|
|
if (tree.Nodes[i].Nodes[j].Nodes[k].Checked == true)
|
|
|
|
|
{
|
|
|
|
|
//listSelectedFile.Add(tree.Nodes[i].Nodes[j].Nodes[k].Text);
|
|
|
|
|
listSelectedFile.Add(string.Format("{0}\\{1}\\{2}", tree.Nodes[i].Text, tree.Nodes[i].Nodes[j].Text, tree.Nodes[i].Nodes[j].Nodes[k].Text));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return listSelectedFile;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private bool UI_Invoke(ThreadStart invoker)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (this.InvokeRequired)
|
|
|
|
|
{
|
|
|
|
|
if (this.IsDisposed)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
this.Invoke(invoker);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
invoker();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void CurrentControlEnable(bool enable)
|
|
|
|
|
{
|
|
|
|
|
foreach (SmartButton button in this.CollectionButtonMenu)
|
|
|
|
|
button.Enabled = enable;
|
|
|
|
|
|
|
|
|
|
switch (this.SelectedSideMenu)
|
|
|
|
|
{
|
|
|
|
|
case Define.E_MenuSide.Basic:
|
|
|
|
|
this.BottomBasic.CurrentControlEnable(enable);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuSide.Configuration:
|
|
|
|
|
this.BottomConfiguration.CurrentControlEnable(enable);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuSide.System:
|
|
|
|
|
this.BottomSystem.CurrentControlEnable(enable);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuSide.Equipment:
|
|
|
|
|
this.BottomEquipment.CurrentControlEnable(enable);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuSide.Information:
|
|
|
|
|
this.BottomInformation.CurrentControlEnable(enable);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void UpdateDisplayUser(SystemStatus status)
|
|
|
|
|
{
|
|
|
|
|
string id = "", group = "", expireDate = "";
|
|
|
|
|
|
|
|
|
|
switch (status.CurrentUser.Group)
|
|
|
|
|
{
|
|
|
|
|
case Define.E_UserGroup.LogOut:
|
|
|
|
|
id = "";
|
|
|
|
|
if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.German)
|
|
|
|
|
group = "Ausloggen";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Chinese)
|
|
|
|
|
group = "登出";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Russian)
|
|
|
|
|
group = "Выйти.";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Spanish)
|
|
|
|
|
group = "Cerrar sesión";
|
|
|
|
|
else
|
|
|
|
|
group = "Log out";
|
|
|
|
|
|
|
|
|
|
this.labelExpireOfPassword.Visible = false;
|
|
|
|
|
|
|
|
|
|
if (this.labelUserLevel.ForeColor != this.ParentForm.ColorLogOff)
|
|
|
|
|
this.labelUserLevel.ForeColor = this.labelUserID.ForeColor = this.ParentForm.ColorLogOff;
|
|
|
|
|
|
|
|
|
|
this.buttonBasic.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsBasicEnable;
|
|
|
|
|
this.buttonConfiguration.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsConfiEnable;
|
|
|
|
|
this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsSystemEnable;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsLogEnable;
|
|
|
|
|
this.buttonInformation.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsInforEnable;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Level1:
|
|
|
|
|
id = status.CurrentUser.ID;
|
|
|
|
|
group = this.ParentForm.SystemConfig2.UserGroupLevel1Name;
|
|
|
|
|
|
|
|
|
|
if (this.ParentForm.SystemConfig3.IsPart11 == true)
|
|
|
|
|
this.labelExpireOfPassword.Visible = true;
|
|
|
|
|
|
|
|
|
|
if (this.labelUserLevel.ForeColor != this.ParentForm.ColorLogOn)
|
|
|
|
|
this.labelUserLevel.ForeColor = this.labelUserID.ForeColor = this.ParentForm.ColorLogOn;
|
|
|
|
|
|
|
|
|
|
this.buttonBasic.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsBasicEnable;
|
|
|
|
|
this.buttonConfiguration.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsConfiEnable;
|
|
|
|
|
this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsSystemEnable;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsLogEnable;
|
|
|
|
|
this.buttonInformation.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsInforEnable;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Level2:
|
|
|
|
|
id = status.CurrentUser.ID;
|
|
|
|
|
group = this.ParentForm.SystemConfig2.UserGroupLevel2Name;
|
|
|
|
|
|
|
|
|
|
if (this.ParentForm.SystemConfig3.IsPart11 == true)
|
|
|
|
|
this.labelExpireOfPassword.Visible = true;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (this.labelUserLevel.ForeColor != this.ParentForm.ColorLogOn)
|
|
|
|
|
this.labelUserLevel.ForeColor = this.labelUserID.ForeColor = this.ParentForm.ColorLogOn;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
this.buttonBasic.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsBasicEnable;
|
|
|
|
|
this.buttonConfiguration.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsConfiEnable;
|
|
|
|
|
this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsSystemEnable;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsLogEnable;
|
|
|
|
|
this.buttonInformation.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsInforEnable;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Level3:
|
|
|
|
|
id = status.CurrentUser.ID;
|
|
|
|
|
group = this.ParentForm.SystemConfig2.UserGroupLevel3Name;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (this.ParentForm.SystemConfig3.IsPart11 == true)
|
|
|
|
|
this.labelExpireOfPassword.Visible = true;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (this.labelUserLevel.ForeColor != this.ParentForm.ColorLogOn)
|
|
|
|
|
this.labelUserLevel.ForeColor = this.labelUserID.ForeColor = this.ParentForm.ColorLogOn;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
this.buttonBasic.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsBasicEnable;
|
|
|
|
|
this.buttonConfiguration.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsConfiEnable;
|
|
|
|
|
this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsSystemEnable;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsLogEnable;
|
|
|
|
|
this.buttonInformation.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsInforEnable;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Admin:
|
|
|
|
|
id = status.CurrentUser.ID;
|
|
|
|
|
if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.German)
|
|
|
|
|
group = "Administrator";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Chinese)
|
|
|
|
|
group = "行政";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Russian)
|
|
|
|
|
group = "Администратор";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Spanish)
|
|
|
|
|
group = "Administrator";
|
|
|
|
|
else
|
|
|
|
|
group = "Administrator";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (this.ParentForm.SystemConfig3.IsPart11 == true)
|
|
|
|
|
this.labelExpireOfPassword.Visible = true;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (this.labelUserLevel.ForeColor != this.ParentForm.ColorLogOn)
|
|
|
|
|
this.labelUserLevel.ForeColor = this.labelUserID.ForeColor = this.ParentForm.ColorLogOn;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
this.buttonBasic.Enabled = true;
|
|
|
|
|
this.buttonConfiguration.Enabled = true;
|
|
|
|
|
this.buttonSystem.Enabled = true;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = true;
|
|
|
|
|
this.buttonInformation.Enabled = true;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Developer:
|
|
|
|
|
id = status.CurrentUser.ID;
|
|
|
|
|
if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.German)
|
|
|
|
|
group = "Entwickler";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Chinese)
|
|
|
|
|
group = "开发商";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Russian)
|
|
|
|
|
group = "Разработчик";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Spanish)
|
|
|
|
|
group = "Desarrollador";
|
|
|
|
|
else
|
|
|
|
|
group = "Developer";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (this.ParentForm.SystemConfig3.IsPart11 == true)
|
|
|
|
|
this.labelExpireOfPassword.Visible = true;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (this.labelUserLevel.ForeColor != this.ParentForm.ColorLogOn)
|
|
|
|
|
this.labelUserLevel.ForeColor = this.labelUserID.ForeColor = this.ParentForm.ColorLogOn;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
this.buttonBasic.Enabled = true;
|
|
|
|
|
this.buttonConfiguration.Enabled = true;
|
|
|
|
|
this.buttonSystem.Enabled = true;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = true;
|
|
|
|
|
this.buttonInformation.Enabled = true;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.NotLogin:
|
|
|
|
|
this.buttonBasic.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsBasicEnable;
|
|
|
|
|
this.buttonConfiguration.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsConfiEnable;
|
|
|
|
|
this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsSystemEnable;
|
|
|
|
|
this.buttonEquipment.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsEquipEnable;
|
|
|
|
|
this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsLogEnable;
|
|
|
|
|
this.buttonInformation.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsInforEnable;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
id = "";
|
|
|
|
|
if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.German)
|
|
|
|
|
group = "Ausloggen";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Chinese)
|
|
|
|
|
group = "登出";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Russian)
|
|
|
|
|
group = "Выйти.";
|
|
|
|
|
else if (this.ParentForm.SystemConfig1.Language == Define.E_LanguageID.Spanish)
|
|
|
|
|
group = "Cerrar sesión";
|
|
|
|
|
else
|
|
|
|
|
group = "Log out";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
this.labelExpireOfPassword.Visible = false;
|
|
|
|
|
|
|
|
|
|
if (this.labelUserLevel.ForeColor != this.ParentForm.ColorLogOff)
|
|
|
|
|
this.labelUserLevel.ForeColor = this.labelUserID.ForeColor = this.ParentForm.ColorLogOff;
|
|
|
|
|
|
|
|
|
|
this.buttonBasic.Enabled = false;
|
|
|
|
|
this.buttonConfiguration.Enabled = false;
|
|
|
|
|
this.buttonSystem.Enabled = false;
|
|
|
|
|
this.buttonEquipment.Enabled = false;
|
|
|
|
|
this.buttonLog.Enabled = true;
|
|
|
|
|
this.buttonInformation.Enabled = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.ParentForm.SystemConfig1.IsLogin == true)
|
2023-05-24 04:16:07 +00:00
|
|
|
|
{
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (this.ParentForm.SystemConfig3.IsPart11 == true)
|
2023-05-24 04:16:07 +00:00
|
|
|
|
{
|
2023-07-24 04:23:49 +00:00
|
|
|
|
expireDate = this.ParentForm.ChildFormMainDisplay.DisplayExpireOfPassword(status.CurrentUser.Group);
|
|
|
|
|
if (expireDate != "-")
|
2023-05-24 04:16:07 +00:00
|
|
|
|
{
|
2023-07-24 04:23:49 +00:00
|
|
|
|
int intExpireDate = int.Parse(expireDate);
|
|
|
|
|
|
|
|
|
|
if (intExpireDate == 0)
|
2023-05-24 04:16:07 +00:00
|
|
|
|
{
|
2023-07-24 04:23:49 +00:00
|
|
|
|
this.labelExpireOfPassword.ForeColor = this.ParentForm.ColorLogOff;
|
|
|
|
|
this.labelExpireOfPassword.Text = "D-0";
|
|
|
|
|
}
|
|
|
|
|
else if (intExpireDate < 0)
|
|
|
|
|
{
|
|
|
|
|
if (intExpireDate * -1 > this.ParentForm.CurrentSystemStatus.CurrentUser.ExpirePassword)
|
|
|
|
|
expireDate = "-" + (this.ParentForm.CurrentSystemStatus.CurrentUser.ExpirePassword - 1).ToString();
|
|
|
|
|
|
|
|
|
|
if (intExpireDate >= -10)
|
|
|
|
|
this.labelExpireOfPassword.ForeColor = this.ParentForm.ColorLogOff;
|
|
|
|
|
else
|
|
|
|
|
this.labelExpireOfPassword.ForeColor = this.ParentForm.ColorLogOn;
|
|
|
|
|
this.labelExpireOfPassword.Text = "D" + expireDate;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.labelExpireOfPassword.ForeColor = this.ParentForm.ColorLogOn;
|
|
|
|
|
this.labelExpireOfPassword.Text = "D+" + expireDate;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-24 04:23:49 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.labelExpireOfPassword.ForeColor = this.ParentForm.ColorLogOn;
|
|
|
|
|
this.labelExpireOfPassword.Text = "-";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.labelExpireOfPassword.ForeColor = this.ParentForm.ColorLogOn;
|
|
|
|
|
this.labelExpireOfPassword.Text = "-";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (this.labelUserLevel.Text != group)
|
|
|
|
|
this.labelUserLevel.Text = group;
|
|
|
|
|
if (this.labelUserID.Text != id)
|
|
|
|
|
this.labelUserID.Text = id;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
}
|
2023-07-24 04:23:49 +00:00
|
|
|
|
private bool EquipmentRun(Define.E_DisplayStore currentDisplay)
|
2023-05-24 04:16:07 +00:00
|
|
|
|
{
|
2023-07-24 04:23:49 +00:00
|
|
|
|
if (currentDisplay == Define.E_DisplayStore.SystemJudgment
|
|
|
|
|
|| currentDisplay == Define.E_DisplayStore.SystemSorterSetting
|
|
|
|
|
|| currentDisplay == Define.E_DisplayStore.SystemBLDCMotorSetting)
|
|
|
|
|
return true;
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void CallBackGetUserData(UserManager.UserMgr_user_list_t userList)
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipUser.CallBackGetUserData(userList);
|
|
|
|
|
}
|
|
|
|
|
public void CallBackUserListLockDataEvent(UserManager.UserMgr_user_lock_t user)
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipUser.CallBackUserListLockDataEvent(user);
|
|
|
|
|
}
|
|
|
|
|
public void CallBackUserListDeleteDataEvent(UserManager.UserMgr_user_del_t user)
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipUser.CallBackUserListDeleteDataEvent(user);
|
|
|
|
|
}
|
|
|
|
|
public void CallBackUserModifyUserData(UserManager.UserMgr_user_modify_t user)
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipUser.CallBackUserModifyUserData(user);
|
|
|
|
|
}
|
|
|
|
|
public void CallBackUserListModifyInfoData(UserManager.UserMgr_user_info_t user)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (this.ParentForm.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.EquipUser)
|
|
|
|
|
this.CenterEquipUser.CallBackUserListModifyInfoDataEvent(user);
|
|
|
|
|
else if (this.ParentForm.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.EquipMyPage)
|
|
|
|
|
this.CenterEquipMyPage.CallBackUserListModifyInfoDataEvent(user);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
FormMain.Exception(ex);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void CallBackUserListNewData(UserManager.UserMgr_user_info_t user)
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipUser.CallBackUserListNewData(user);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void CallBackEncryptionEvent(Encryption.auth_encryption_status_t sender)
|
|
|
|
|
{
|
|
|
|
|
if (sender.inFileName == this.EncFileName)
|
|
|
|
|
{
|
|
|
|
|
this.UI_Invoke(delegate
|
|
|
|
|
{
|
|
|
|
|
//this.labelPercentage.Text = string.Format("{0} %", sender.percentage);
|
2023-06-21 10:11:37 +00:00
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("CallBackEncryptionEvent() ({0:yyyy-MM-dd HH:mm:ss}): {1}", DateTime.Now, sender.percentage));
|
2023-05-24 04:16:07 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (sender.percentage == 100)
|
|
|
|
|
{
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.timerTimeout.Enabled = false;
|
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("CallBackEncryptionEvent() ({0:yyyy-MM-dd HH:mm:ss}): timeout false", DateTime.Now));
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
if (sender.status == 0)
|
|
|
|
|
{
|
|
|
|
|
if (this.Q_FileList.Count != 0)
|
|
|
|
|
{
|
|
|
|
|
this.UI_Invoke(delegate
|
|
|
|
|
{
|
|
|
|
|
this.timerEncryption.Enabled = true;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.UI_Invoke(delegate
|
|
|
|
|
{
|
|
|
|
|
this.timerFileCopy.Enabled = true;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void DisplaySideMenu(Define.E_MenuSide menu)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
2023-06-21 10:11:37 +00:00
|
|
|
|
// Log - smartFile Close
|
|
|
|
|
this.FileClose();
|
|
|
|
|
|
2020-08-31 02:13:02 +00:00
|
|
|
|
switch (menu)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuSide.Basic:
|
|
|
|
|
this.BottomBasic.Visible = true;
|
|
|
|
|
this.BottomConfiguration.Visible = false;
|
|
|
|
|
this.BottomSystem.Visible = false;
|
|
|
|
|
this.BottomEquipment.Visible = false;
|
|
|
|
|
this.BottomLog.Visible = false;
|
|
|
|
|
this.BottomInformation.Visible = false;
|
|
|
|
|
|
|
|
|
|
this.BottomBasic.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuSide.Configuration:
|
|
|
|
|
this.BottomBasic.Visible = false;
|
|
|
|
|
this.BottomConfiguration.Visible = true;
|
|
|
|
|
this.BottomSystem.Visible = false;
|
|
|
|
|
this.BottomEquipment.Visible = false;
|
|
|
|
|
this.BottomLog.Visible = false;
|
|
|
|
|
this.BottomInformation.Visible = false;
|
|
|
|
|
|
|
|
|
|
this.BottomConfiguration.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuSide.System:
|
|
|
|
|
this.BottomBasic.Visible = false;
|
|
|
|
|
this.BottomConfiguration.Visible = false;
|
|
|
|
|
this.BottomSystem.Visible = true;
|
|
|
|
|
this.BottomEquipment.Visible = false;
|
|
|
|
|
this.BottomLog.Visible = false;
|
|
|
|
|
this.BottomInformation.Visible = false;
|
|
|
|
|
|
|
|
|
|
this.BottomSystem.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuSide.Equipment:
|
|
|
|
|
this.BottomBasic.Visible = false;
|
|
|
|
|
this.BottomConfiguration.Visible = false;
|
|
|
|
|
this.BottomSystem.Visible = false;
|
|
|
|
|
this.BottomEquipment.Visible = true;
|
|
|
|
|
this.BottomLog.Visible = false;
|
|
|
|
|
this.BottomInformation.Visible = false;
|
|
|
|
|
|
|
|
|
|
this.BottomEquipment.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuSide.Log:
|
|
|
|
|
this.BottomBasic.Visible = false;
|
|
|
|
|
this.BottomConfiguration.Visible = false;
|
|
|
|
|
this.BottomSystem.Visible = false;
|
|
|
|
|
this.BottomEquipment.Visible = false;
|
|
|
|
|
this.BottomLog.Visible = true;
|
|
|
|
|
this.BottomInformation.Visible = false;
|
|
|
|
|
|
|
|
|
|
this.BottomLog.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuSide.Information:
|
|
|
|
|
this.BottomBasic.Visible = false;
|
|
|
|
|
this.BottomConfiguration.Visible = false;
|
|
|
|
|
this.BottomSystem.Visible = false;
|
|
|
|
|
this.BottomEquipment.Visible = false;
|
|
|
|
|
this.BottomLog.Visible = false;
|
|
|
|
|
this.BottomInformation.Visible = true;
|
|
|
|
|
|
|
|
|
|
this.BottomInformation.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void DisplayHiddenMenu(Define.E_DisplayStore menu, SystemConfigurationItem1 systemConfig1)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
2023-06-21 10:11:37 +00:00
|
|
|
|
// Log - smartFile Close
|
|
|
|
|
this.FileClose();
|
|
|
|
|
|
2020-08-31 02:13:02 +00:00
|
|
|
|
switch (menu)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.MainDisplay:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.ParentForm.ChildFormMainDisplay.DisplayHiddenMenu(true);
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiEthernet:
|
2023-02-23 08:34:29 +00:00
|
|
|
|
this.CenterConfiEthernet.DisplayHiddenMenu(true);
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipInitialize:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterEquipInitialize.DisplayHiddenMenu(true);
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipFuctionSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterEquipFunctionSetting.DisplayHiddenMenu(true);
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforSystem:
|
2023-02-27 11:52:59 +00:00
|
|
|
|
string temp = systemConfig1.MainBoardVersion.Replace(".", "");
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (int.Parse(temp) >= 20000)
|
|
|
|
|
this.CenterInforSystem.DisplayHiddenMenu(true);
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
2023-02-13 07:47:48 +00:00
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUser:
|
|
|
|
|
this.CenterEquipUser.DisplayHiddenMenu(true);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.EquipHelp:
|
2020-11-30 07:47:15 +00:00
|
|
|
|
DialogFormPasswordKeyPad password = new DialogFormPasswordKeyPad(8, this.ParentForm.SystemConfig1.Language, this.ParentForm.CurrentSystemStatus.CurrentUserPasswordType);
|
|
|
|
|
DialogResult dialogResult = password.ShowDialog();
|
|
|
|
|
if (dialogResult == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipHelp.DisplayHiddenMenu(true);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomEquipment.DisplayHiddenMenu(true);
|
2020-11-30 07:47:15 +00:00
|
|
|
|
}
|
2020-08-31 02:13:02 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void DisplayBottomBasic(Define.E_MenuBottomBasic menu)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
switch (menu)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomBasic.DataStatistics:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterBasicDataStatistics.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterBasicDataStatistics.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomBasic.Help:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterBasicHelp.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterBasicHelp.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomBasic.Product:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterBasicProduct.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterBasicProduct.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomBasic.Time:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterBasicTime.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterBasicTime.BringToFront();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomBasic.UpdateDisplayMenuButton(menu);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void DisplayBottomConfiguration(Define.E_MenuBottomConfiguration menu)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
switch (menu)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomConfiguration.SerialCOM1:
|
|
|
|
|
this.BottomConfiguration.CurrentMenu = Define.E_MenuBottomConfiguration.SerialCOM1;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterConfiSerial.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterConfiSerial.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomConfiguration.SerialCOM3:
|
|
|
|
|
this.BottomConfiguration.CurrentMenu = Define.E_MenuBottomConfiguration.SerialCOM3;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterConfiSerial.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterConfiSerial.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomConfiguration.SerialCOM4:
|
|
|
|
|
this.BottomConfiguration.CurrentMenu = Define.E_MenuBottomConfiguration.SerialCOM4;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterConfiSerial.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterConfiSerial.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomConfiguration.Ethernet:
|
|
|
|
|
this.BottomConfiguration.CurrentMenu = Define.E_MenuBottomConfiguration.Ethernet;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterConfiEthernet.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterConfiEthernet.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomConfiguration.Help:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterConfiHelp.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterConfiHelp.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomConfiguration.OptionBoard:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterConfiOptionBoard.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterConfiOptionBoard.BringToFront();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomConfiguration.UpdateDisplayMenuButton(menu);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void DisplayBottomSystem(Define.E_MenuBottomSystem menu)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
switch (menu)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomSystem.Calibration:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterSystemCalibration.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterSystemCalibration.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomSystem.Help:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterSystemHelp.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterSystemHelp.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomSystem.IOTest:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterSystemIOTest.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterSystemIOTest.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomSystem.JudgmentSetting:
|
|
|
|
|
this.CenterSystemJudgment.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterSystemJudgment.BringToFront();
|
2020-08-31 02:13:02 +00:00
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomSystem.SorterSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterSystemSorterSetting.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterSystemSorterSetting.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomSystem.AutoZero:
|
2023-02-13 07:47:48 +00:00
|
|
|
|
this.CenterSystemAutoZero.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterSystemAutoZero.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomSystem.ExternalOutput:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterSystemExternalOutput.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterSystemExternalOutput.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomSystem.BLDCMotorSetting:
|
2022-02-18 09:13:11 +00:00
|
|
|
|
this.CenterSystemBLDCMotorSetting.DisplayRefresh(this.ParentForm.CurrentSystemStatus, this.ParentForm.CollectionBLDCParameter);
|
2022-02-17 05:13:43 +00:00
|
|
|
|
this.CenterSystemBLDCMotorSetting.BringToFront();
|
|
|
|
|
break;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomSystem.UpdateDisplayMenuButton(menu);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void DisplayBottomEquipment(Define.E_MenuBottomEquipment menu)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomEquipment.DisplayHiddenMenu(false);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
switch (menu)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomEquipment.Help:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterEquipHelp.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipHelp.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomEquipment.Initialize:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterEquipInitialize.BringToFront();
|
|
|
|
|
this.Refresh();
|
|
|
|
|
this.CenterEquipInitialize.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomEquipment.Update:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterEquipUpdate.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipUpdate.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomEquipment.FunctionSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterEquipFunctionSetting.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipFunctionSetting.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomEquipment.User:
|
|
|
|
|
this.DisplayUserScreen(this.ParentForm.CurrentUserGroup);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomEquipment.Engineer:
|
|
|
|
|
this.BottomEquipment.DisplayHiddenMenu(true);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterEquipEngineer.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipEngineer.BringToFront();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomEquipment.UpdateDisplayMenuButton(menu);
|
|
|
|
|
}
|
|
|
|
|
public void DisplayBottomLog(Define.E_MenuBottomLog menu)
|
|
|
|
|
{
|
2023-06-21 10:11:37 +00:00
|
|
|
|
// Log - smartFile Close
|
|
|
|
|
this.FileClose();
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomLog.UpdateDisplayMenuButton(menu);
|
|
|
|
|
|
|
|
|
|
switch (menu)
|
|
|
|
|
{
|
|
|
|
|
case Define.E_MenuBottomLog.Help:
|
|
|
|
|
this.CenterLogHelp.BringToFront();
|
|
|
|
|
this.CenterLogHelp.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
break;
|
2023-06-21 10:11:37 +00:00
|
|
|
|
case Define.E_MenuBottomLog.LogInspection:
|
|
|
|
|
this.CenterLogInspection.BringToFront();
|
|
|
|
|
this.CenterLogInspection.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
2023-05-24 04:16:07 +00:00
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuBottomLog.LogHistory:
|
|
|
|
|
this.CenterLogHistory.BringToFront();
|
|
|
|
|
this.CenterLogHistory.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_MenuBottomLog.LogOthers:
|
|
|
|
|
this.CenterLogOthers.BringToFront();
|
|
|
|
|
this.CenterLogOthers.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void DisplayBottomInformation(Define.E_MenuBottomInformation menu)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
switch (menu)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomInformation.Help:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterInforHelp.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterInforHelp.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomInformation.SystemInformation:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterInforSystem.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterInforSystem.BringToFront();
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_MenuBottomInformation.AS:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterInforAS.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterInforAS.BringToFront();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomInformation.UpdateDisplayMenuButton(menu);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void UpdateEquipmentStatusDisplay(Define.E_EquipmentStatus status)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
if (status == Define.E_EquipmentStatus.Start)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
|
|
|
|
this.buttonBasic.Enabled = false;
|
|
|
|
|
this.buttonConfiguration.Enabled = false;
|
|
|
|
|
this.buttonSystem.Enabled = false;
|
|
|
|
|
this.buttonEquipment.Enabled = false;
|
2023-07-26 00:53:50 +00:00
|
|
|
|
this.buttonLog.Enabled = false;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.buttonInformation.Enabled = false;
|
|
|
|
|
this.buttonMain.Enabled = false;
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomBasic.Enabled = false;
|
|
|
|
|
this.BottomConfiguration.Enabled = false;
|
|
|
|
|
this.BottomEquipment.Enabled = false;
|
|
|
|
|
this.BottomInformation.Enabled = false;
|
|
|
|
|
this.BottomSystem.Enabled = false;
|
2023-07-26 00:53:50 +00:00
|
|
|
|
this.BottomLog.Enabled = false;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
this.pictureBoxStart.Visible = true;
|
|
|
|
|
this.pictureBoxStop.Visible = false;
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
if (this.ParentForm.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.SystemJudgment)
|
|
|
|
|
this.CenterSystemJudgment.UpdateEquipmentStatusDisplay(status);
|
|
|
|
|
else if (this.ParentForm.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.SystemSorterSetting)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterSystemSorterSetting.UpdateEquipmentStatusDisplay(status);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.buttonBasic.Enabled = true;
|
|
|
|
|
this.buttonConfiguration.Enabled = true;
|
|
|
|
|
this.buttonSystem.Enabled = true;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
2023-07-26 00:53:50 +00:00
|
|
|
|
this.buttonLog.Enabled = true;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.buttonInformation.Enabled = true;
|
|
|
|
|
this.buttonMain.Enabled = true;
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomBasic.Enabled = true;
|
|
|
|
|
this.BottomConfiguration.Enabled = true;
|
|
|
|
|
this.BottomEquipment.Enabled = true;
|
|
|
|
|
this.BottomInformation.Enabled = true;
|
|
|
|
|
this.BottomSystem.Enabled = true;
|
2023-07-26 00:53:50 +00:00
|
|
|
|
this.BottomLog.Enabled = true;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
this.pictureBoxStart.Visible = false;
|
|
|
|
|
this.pictureBoxStop.Visible = true;
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
if (this.ParentForm.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.SystemJudgment)
|
|
|
|
|
this.CenterSystemJudgment.UpdateEquipmentStatusDisplay(status);
|
|
|
|
|
else if (this.ParentForm.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.SystemSorterSetting)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.CenterSystemSorterSetting.UpdateEquipmentStatusDisplay(status);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void UpdateMenuExceptBarcodeDisplay(bool bValue)
|
|
|
|
|
{
|
|
|
|
|
this.buttonBasic.Enabled = bValue;
|
|
|
|
|
this.buttonConfiguration.Enabled = bValue;
|
|
|
|
|
this.buttonSystem.Enabled = bValue;
|
|
|
|
|
this.buttonEquipment.Enabled = bValue;
|
|
|
|
|
this.buttonInformation.Enabled = bValue;
|
|
|
|
|
this.buttonMain.Enabled = bValue;
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.BottomBasic.Enabled = bValue;
|
|
|
|
|
this.BottomConfiguration.Enabled = bValue;
|
|
|
|
|
this.BottomEquipment.Enabled = bValue;
|
|
|
|
|
this.BottomInformation.Enabled = bValue;
|
|
|
|
|
this.BottomSystem.Enabled = bValue;
|
|
|
|
|
}
|
|
|
|
|
private void DisplayUserScreen(UserGroup group)
|
|
|
|
|
{
|
|
|
|
|
switch (this.ParentForm.CurrentSystemStatus.CurrentUser.Group)
|
|
|
|
|
{
|
|
|
|
|
case Define.E_UserGroup.Level1:
|
|
|
|
|
if (group.Level1.IsEquipUserSetting == true)
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipUser.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipUser.BringToFront();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipMyPage.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipMyPage.BringToFront();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Level2:
|
|
|
|
|
if (group.Level2.IsEquipUserSetting == true)
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipUser.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipUser.BringToFront();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipMyPage.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipMyPage.BringToFront();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Level3:
|
|
|
|
|
if (group.Level3.IsEquipUserSetting == true)
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipUser.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipUser.BringToFront();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.CenterEquipMyPage.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipMyPage.BringToFront();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Developer:
|
|
|
|
|
case Define.E_UserGroup.Admin:
|
|
|
|
|
this.CenterEquipUser.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
this.CenterEquipUser.BringToFront();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateMenuDisplay(SystemStatus status)
|
|
|
|
|
{
|
|
|
|
|
switch (status.CurrentUser.Group)
|
|
|
|
|
{
|
|
|
|
|
case Define.E_UserGroup.Level1:
|
|
|
|
|
this.buttonBasic.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsBasicEnable;
|
|
|
|
|
this.buttonConfiguration.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsConfiEnable;
|
|
|
|
|
this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsSystemEnable;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsLogEnable;
|
|
|
|
|
this.buttonInformation.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsInforEnable;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Level2:
|
|
|
|
|
this.buttonBasic.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsBasicEnable;
|
|
|
|
|
this.buttonConfiguration.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsConfiEnable;
|
|
|
|
|
this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsSystemEnable;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsLogEnable;
|
|
|
|
|
this.buttonInformation.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsInforEnable;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Level3:
|
|
|
|
|
this.buttonBasic.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsBasicEnable;
|
|
|
|
|
this.buttonConfiguration.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsConfiEnable;
|
|
|
|
|
this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsSystemEnable;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsLogEnable;
|
|
|
|
|
this.buttonInformation.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsInforEnable;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.Admin:
|
|
|
|
|
case Define.E_UserGroup.Developer:
|
|
|
|
|
this.buttonBasic.Enabled = true;
|
|
|
|
|
this.buttonConfiguration.Enabled = true;
|
|
|
|
|
this.buttonSystem.Enabled = true;
|
|
|
|
|
this.buttonEquipment.Enabled = true;
|
|
|
|
|
this.buttonLog.Enabled = true;
|
|
|
|
|
this.buttonInformation.Enabled = true;
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_UserGroup.NotLogin:
|
|
|
|
|
this.buttonBasic.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsBasicEnable;
|
|
|
|
|
this.buttonConfiguration.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsConfiEnable;
|
|
|
|
|
this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsSystemEnable;
|
|
|
|
|
this.buttonEquipment.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsEquipEnable;
|
|
|
|
|
this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsLogEnable;
|
|
|
|
|
this.buttonInformation.Enabled = this.ParentForm.CurrentUserGroup.NotLogin.IsInforEnable;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public void ChangeToMainScreen()
|
|
|
|
|
{
|
|
|
|
|
if (this.CenterConfiEthernet != null)
|
|
|
|
|
{
|
|
|
|
|
if (this.CenterConfiEthernet.timerServer.Enabled == true)
|
|
|
|
|
this.CenterConfiEthernet.timerServer.Enabled = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//if (this.ParentForm.SystemConfig2.Barcode == 2) // DataLogic 바코드 사용 시
|
|
|
|
|
//{
|
|
|
|
|
// this.ParentForm.ChangeSerialCOM3FrameSeparateType(DataStore.SeparateType.ETXONLY);
|
|
|
|
|
// this.ParentForm.TransferSerialCOM3RawData(Barcode.ExitProgrammingMode);
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
this.ParentForm.ChildFormMainDisplay.DisplayHiddenMenu(false);
|
|
|
|
|
|
|
|
|
|
if (this.ParentForm.SystemConfig2.EthernetOperationMode == 2)
|
|
|
|
|
this.ParentForm.EthernetClientDisconnect();
|
|
|
|
|
|
2024-02-22 01:23:23 +00:00
|
|
|
|
if (this.ParentForm.ChildFormMainDisplay.MainFeedback.IsUsingFeedback() == true)
|
2023-05-24 04:16:07 +00:00
|
|
|
|
{
|
|
|
|
|
string feedbackValue = "";
|
|
|
|
|
|
|
|
|
|
if (this.ParentForm.CurrentSystemParameter2.OPT1IsWeightSetting == "1")
|
|
|
|
|
{
|
|
|
|
|
this.ParentForm.CurrentSystemParameter2.OPT1OverRange =
|
|
|
|
|
(this.ParentForm.CurrentProductItem.PassRangeInt + this.ParentForm.CurrentFeedbackItem.OverRangeDeviationInt).ToString();
|
|
|
|
|
|
|
|
|
|
this.ParentForm.CurrentSystemParameter2.OPT1UnderRange =
|
|
|
|
|
(this.ParentForm.CurrentProductItem.PassRangeInt + this.ParentForm.CurrentFeedbackItem.UnderRangeDeviationInt).ToString();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.ParentForm.CurrentSystemParameter2.OPT1OverRange = this.ParentForm.CurrentProductItem.OverRange;
|
|
|
|
|
this.ParentForm.CurrentSystemParameter2.OPT1UnderRange = this.ParentForm.CurrentProductItem.UnderRange;
|
|
|
|
|
this.ParentForm.CurrentFeedbackItem.OverRangeDeviation = this.ParentForm.CurrentProductItem.OverRangeDeviation.ToString();
|
|
|
|
|
this.ParentForm.CurrentFeedbackItem.UnderRangeDeviation = this.ParentForm.CurrentProductItem.UnderRangeDeviation.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.ParentForm.SaveSystemParameter2File(this.ParentForm.CurrentSystemParameter2);
|
|
|
|
|
feedbackValue = Helper.StringZeroFillDigits7(this.ParentForm.CurrentSystemParameter2.OPT1OverRange);
|
|
|
|
|
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress.OPT1OverRange, feedbackValue);
|
|
|
|
|
feedbackValue = Helper.StringZeroFillDigits7(this.ParentForm.CurrentSystemParameter2.OPT1UnderRange);
|
|
|
|
|
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress.OPT1UnderRange, feedbackValue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.ParentForm.ChildFormMainDisplay.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
|
|
|
|
|
((FormMain)(Owner)).smartForm.Show((int)Define.E_FormStore.FormMainDisplay);
|
|
|
|
|
}
|
2020-08-31 02:13:02 +00:00
|
|
|
|
public void DisplayTitleRoot(SystemStatus status)
|
|
|
|
|
{
|
|
|
|
|
switch (this.ParentForm.SystemConfig1.Language)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_LanguageID.English:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
#region 영문
|
|
|
|
|
switch (status.CurrentDisplay)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicDataStatistics:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Data statistics";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Help";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicProduct:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Product settings";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicRandomMode:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Product settings > Random Mode";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicTime:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Time setting";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiSerial:
|
|
|
|
|
if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM1)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Configuration > Serial(COM1)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM3)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Configuration > Serial(COM3)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM4)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Configuration > Serial(COM4)";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiEthernet:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Configuration > Ethernet";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Configuration > Help";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiOptionBoard:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Configuration > Option board";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipFuctionSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Equipment > Feature Settings";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Equipment > Help";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipInitialize:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Equipment > Initialization";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUpdate:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Equipment > Update";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUser:
|
2023-06-26 00:44:05 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipMyPage:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Equipment > User Settings";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipEngineer:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Equipment > Engineer Settings";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.LogHelp:
|
|
|
|
|
this.labelTitleRoot.Text = "Log > Help";
|
|
|
|
|
break;
|
2023-06-21 10:11:37 +00:00
|
|
|
|
case Define.E_DisplayStore.LogInspection:
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Log > Judgment log";
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.LogHistory:
|
|
|
|
|
this.labelTitleRoot.Text = "Log > History log";
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.LogOthers:
|
|
|
|
|
this.labelTitleRoot.Text = "Log > Others";
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.InforAS:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Information > A/S";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Information > Help";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforSystem:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Information > Information";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemAutoZero:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "System > Auto zero";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemCalibration:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "System > Calibration";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemExternalOutput:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "System > External output";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "System > Help";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemIOTest:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "System > I/O test";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemJudgment:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "System > Judgment";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemSorterSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "System > Sorter settings";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemBLDCMotorSetting:
|
2022-02-15 10:57:12 +00:00
|
|
|
|
this.labelTitleRoot.Text = "System > BLDC Motor settings";
|
|
|
|
|
break;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_LanguageID.Chinese:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
#region 중문
|
|
|
|
|
switch (status.CurrentDisplay)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicDataStatistics:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "基本 > 数据统计";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "基本 > 帮助";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicProduct:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "基本 > 产品设置";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicRandomMode:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "基本 > 产品设置 > 随机模式";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicTime:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "基本 > 时间设定";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiSerial:
|
|
|
|
|
if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM1)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "选项 > 串行端口(COM1)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM3)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "选项 > 串行端口(COM3)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM4)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "选项 > 串行端口(COM4)";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiEthernet:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "选项 > 以太网";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "选项 > 帮助";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiOptionBoard:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "选项 > 选项板";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipFuctionSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "设备 > 功能设定";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "设备 > 帮助";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipInitialize:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "设备 > 工厂初期化";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUpdate:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "设备 > 更新";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUser:
|
2023-06-26 00:44:05 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipMyPage:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "设备 > 用户设置";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipEngineer:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "设备 > 工程师设置";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.LogHelp:
|
|
|
|
|
this.labelTitleRoot.Text = "日志 > 帮助";
|
|
|
|
|
break;
|
2023-06-21 10:11:37 +00:00
|
|
|
|
case Define.E_DisplayStore.LogInspection:
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.labelTitleRoot.Text = "日志 > 判断日志";
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.LogHistory:
|
|
|
|
|
this.labelTitleRoot.Text = "日志 > 历史日志";
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.LogOthers:
|
|
|
|
|
this.labelTitleRoot.Text = "日志 > 其他的";
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.InforAS:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "信息 > A/S";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "信息 > 帮助";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforSystem:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "信息 > 系统信息";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemAutoZero:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "系统 > 自动零点跟踪";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemCalibration:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "系统 > 校准";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemExternalOutput:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "系统 > 外部输出";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "系统 > 帮助";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemIOTest:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "系统 > I/O测试";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.SystemJudgment:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "系统 > 判断设置";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemSorterSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "系统 > 筛选设定";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemBLDCMotorSetting:
|
2022-02-15 10:57:12 +00:00
|
|
|
|
this.labelTitleRoot.Text = "系统 > BLDC 电机设置";
|
|
|
|
|
break;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_LanguageID.Czech:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_LanguageID.German:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
#region 독일어
|
|
|
|
|
switch (status.CurrentDisplay)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicDataStatistics:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Statistik";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Hilfe";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicProduct:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Produkteinstellung";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicRandomMode:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Produkteinstellung > Zufallsmodus";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicTime:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Basic > Zeiteinstellung";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiSerial:
|
|
|
|
|
if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM1)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Konfiguration > Serielle(COM1)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM3)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Konfiguration > Serielle(COM3)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM4)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Konfiguration > Serielle(COM4)";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiEthernet:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Konfiguration > Ethernet";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Konfiguration > Hilfe";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiOptionBoard:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Konfiguration > Optionsplatine";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipFuctionSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Vorrichtung > Funktionseinstellungen";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Vorrichtung > Hilfe";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipInitialize:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Vorrichtung > Initialisierung";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUpdate:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Vorrichtung > Aktualisierung";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUser:
|
2023-06-26 00:44:05 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipMyPage:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Vorrichtung > Benutzereinstellungen";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipEngineer:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Vorrichtung > Ingenieur Einstellung";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforAS:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Information > Kundendienst";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Information > Hilfe";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforSystem:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Information > Information";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemAutoZero:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Systemeinstellung > Automatische Nullung";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemCalibration:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Systemeinstellung > Kalibrierung";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemExternalOutput:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Systemeinstellung > Externer Ausgang";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Systemeinstellung > Hilfe";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemIOTest:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Systemeinstellung > I/O test";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemJudgment:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Systemeinstellung > Tascheneinstellung";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemSorterSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Systemeinstellung > Sortierereinstellung";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemBLDCMotorSetting:
|
2022-02-15 10:57:12 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Systemeinstellung > BLDC-Motoreinstellungen";
|
|
|
|
|
break;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_LanguageID.Russian:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
#region 러시아어
|
|
|
|
|
switch (status.CurrentDisplay)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicDataStatistics:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Основной > Статистика данных";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Основной > Помощь";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicProduct:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Основной > Настройки продукта";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicRandomMode:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Основной > Настройки продукта > Случайный режим";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicTime:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Основной > Настройки времени";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
|
|
|
|
|
case Define.E_DisplayStore.ConfiSerial:
|
|
|
|
|
if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM1)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Конфигурация > Послед. порт(COM1)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM3)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Конфигурация > Послед. порт(COM3)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM4)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Конфигурация > Послед. порт(COM4)";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiEthernet:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Конфигурация > Локальная сеть";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Конфигурация > Помощь";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiOptionBoard:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Конфигурация > Опции";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipFuctionSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Настройка > Функциональные настройки";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Настройка > Помощь";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipInitialize:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Настройка > Инициализация";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUpdate:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Настройка > Обновить";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUser:
|
2023-06-26 00:44:05 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipMyPage:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Настройка > Настройки пользователя";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipEngineer:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Настройка > Инженерные настройки";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforAS:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Информация > Обслуживание клиентов";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Информация > Помощь";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforSystem:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Информация > Информация";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemAutoZero:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Системные > Автоотслеживание нуля";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemCalibration:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Системные > Калибровка";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemExternalOutput:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Системные > Внешний выход";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Системные > Помощь";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemIOTest:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Системные > Тест ввода/вывода";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.SystemJudgment:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Системные > Настройка отбраковки";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemSorterSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Системные > Настройка сортировки";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemBLDCMotorSetting:
|
2022-02-15 10:57:12 +00:00
|
|
|
|
this.labelTitleRoot.Text = "Системные > Настройки двигателя BLDC";
|
|
|
|
|
break;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
#region 한글
|
|
|
|
|
switch (status.CurrentDisplay)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicDataStatistics:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "기본설정 > 데이터집계";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "기본설정 > 도움말";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicProduct:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "기본설정 > 품목설정";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicRandomMode:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "기본설정 > 품목설정 > 랜덤모드";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.BasicTime:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "기본설정 > 시간설정";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiSerial:
|
|
|
|
|
if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM1)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "환경설정 > 시리얼통신(COM1)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM3)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "환경설정 > 시리얼통신(COM3)";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
else if (this.CurrentConfigurationMenu() == Define.E_MenuBottomConfiguration.SerialCOM4)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "환경설정 > 시리얼통신(COM4)";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiEthernet:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "환경설정 > 이더넷통신";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "환경설정 > 도움말";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.ConfiOptionBoard:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "환경설정 > 옵션보드설정";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipFuctionSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "장비설정 > 기능설정";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "장비설정 > 도움말";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipInitialize:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "장비설정 > 공장초기화";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUpdate:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "장비설정 > 업데이트";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipUser:
|
2023-06-26 00:44:05 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipMyPage:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "장비설정 > 유저설정";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.EquipEngineer:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "장비설정 > 엔지니어설정";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.LogHelp:
|
|
|
|
|
this.labelTitleRoot.Text = "로그 > 도움말";
|
|
|
|
|
break;
|
2023-06-21 10:11:37 +00:00
|
|
|
|
case Define.E_DisplayStore.LogInspection:
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.labelTitleRoot.Text = "로그 > 판정로그";
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.LogHistory:
|
|
|
|
|
this.labelTitleRoot.Text = "로그 > 히스토리로그";
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.LogOthers:
|
|
|
|
|
this.labelTitleRoot.Text = "로그 > 기타로그";
|
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.InforAS:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "정보 > A/S";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "정보 > 도움말";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.InforSystem:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "정보 > 시스템정보";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemAutoZero:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "시스템설정 > 자동영점";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemCalibration:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "시스템설정 > 중량조정";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemExternalOutput:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "시스템설정 > 외부출력";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemHelp:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "시스템설정 > 도움말";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemIOTest:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "시스템설정 > I/O테스트";
|
2023-05-24 04:16:07 +00:00
|
|
|
|
break;
|
|
|
|
|
case Define.E_DisplayStore.SystemJudgment:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "시스템설정 > 판정설정";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemSorterSetting:
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.labelTitleRoot.Text = "시스템설정 > 선별기설정";
|
|
|
|
|
break;
|
2023-05-24 04:16:07 +00:00
|
|
|
|
case Define.E_DisplayStore.SystemBLDCMotorSetting:
|
2022-02-15 10:57:12 +00:00
|
|
|
|
this.labelTitleRoot.Text = "시스템설정 > BLDC 모터 설정";
|
|
|
|
|
break;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void DisplayRefresh(SystemStatus status)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.EncFileName = "";
|
|
|
|
|
this.SelectedDataType = Define.E_DataType.None;
|
|
|
|
|
|
|
|
|
|
if (this.buttonBasic.Enabled == true)
|
|
|
|
|
{
|
|
|
|
|
this.buttonBasic.ButtonDown();
|
|
|
|
|
this.buttonConfiguration.ButtonUp();
|
|
|
|
|
this.buttonSystem.ButtonUp();
|
|
|
|
|
this.buttonEquipment.ButtonUp();
|
|
|
|
|
this.buttonLog.ButtonUp();
|
|
|
|
|
this.buttonInformation.ButtonUp();
|
|
|
|
|
|
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Basic;
|
|
|
|
|
}
|
|
|
|
|
else if (this.buttonConfiguration.Enabled == true)
|
|
|
|
|
{
|
|
|
|
|
this.buttonBasic.ButtonUp();
|
|
|
|
|
this.buttonConfiguration.ButtonDown();
|
|
|
|
|
this.buttonSystem.ButtonUp();
|
|
|
|
|
this.buttonEquipment.ButtonUp();
|
|
|
|
|
this.buttonLog.ButtonUp();
|
|
|
|
|
this.buttonInformation.ButtonUp();
|
|
|
|
|
|
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Configuration;
|
|
|
|
|
}
|
|
|
|
|
else if (this.buttonSystem.Enabled == true)
|
|
|
|
|
{
|
|
|
|
|
this.buttonBasic.ButtonUp();
|
|
|
|
|
this.buttonConfiguration.ButtonUp();
|
|
|
|
|
this.buttonSystem.ButtonDown();
|
|
|
|
|
this.buttonEquipment.ButtonUp();
|
|
|
|
|
this.buttonLog.ButtonUp();
|
|
|
|
|
this.buttonInformation.ButtonUp();
|
|
|
|
|
|
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.System;
|
|
|
|
|
}
|
|
|
|
|
else if (this.buttonEquipment.Enabled == true)
|
|
|
|
|
{
|
|
|
|
|
this.buttonBasic.ButtonUp();
|
|
|
|
|
this.buttonConfiguration.ButtonUp();
|
|
|
|
|
this.buttonSystem.ButtonUp();
|
|
|
|
|
this.buttonEquipment.ButtonDown();
|
|
|
|
|
this.buttonLog.ButtonUp();
|
|
|
|
|
this.buttonInformation.ButtonUp();
|
|
|
|
|
|
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Equipment;
|
|
|
|
|
}
|
|
|
|
|
else if (this.BottomLog.Enabled == true)
|
|
|
|
|
{
|
|
|
|
|
this.buttonBasic.ButtonUp();
|
|
|
|
|
this.buttonConfiguration.ButtonUp();
|
|
|
|
|
this.buttonSystem.ButtonUp();
|
|
|
|
|
this.buttonEquipment.ButtonUp();
|
|
|
|
|
this.buttonLog.ButtonDown();
|
|
|
|
|
this.buttonInformation.ButtonUp();
|
|
|
|
|
|
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Equipment;
|
|
|
|
|
}
|
|
|
|
|
else if (this.buttonInformation.Enabled == true)
|
|
|
|
|
{
|
|
|
|
|
this.buttonBasic.ButtonUp();
|
|
|
|
|
this.buttonConfiguration.ButtonUp();
|
|
|
|
|
this.buttonSystem.ButtonUp();
|
|
|
|
|
this.buttonEquipment.ButtonUp();
|
|
|
|
|
this.buttonLog.ButtonUp();
|
|
|
|
|
this.buttonInformation.ButtonDown();
|
|
|
|
|
|
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Information;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.buttonConfiguration.ButtonUp();
|
|
|
|
|
this.buttonSystem.ButtonUp();
|
|
|
|
|
this.buttonEquipment.ButtonUp();
|
|
|
|
|
this.buttonLog.ButtonUp();
|
|
|
|
|
this.buttonInformation.ButtonUp();
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Basic;
|
|
|
|
|
}
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
this.DisplaySideMenu(this.SelectedSideMenu);
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Override Member
|
|
|
|
|
protected override void OnLoad(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnLoad(e);
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Event Handler
|
|
|
|
|
private void buttonBasic_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Basic;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.DisplaySideMenu(this.SelectedSideMenu);
|
|
|
|
|
}
|
|
|
|
|
private void buttonConfiguration_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Configuration;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.DisplaySideMenu(this.SelectedSideMenu);
|
|
|
|
|
}
|
|
|
|
|
private void buttonSystem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.System;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.DisplaySideMenu(this.SelectedSideMenu);
|
|
|
|
|
}
|
|
|
|
|
private void buttonEquipment_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Equipment;
|
|
|
|
|
this.DisplaySideMenu(this.SelectedSideMenu);
|
|
|
|
|
}
|
|
|
|
|
private void buttonLog_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Log;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.DisplaySideMenu(this.SelectedSideMenu);
|
|
|
|
|
}
|
|
|
|
|
private void buttonInformation_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.SelectedSideMenu = Define.E_MenuSide.Information;
|
2020-08-31 02:13:02 +00:00
|
|
|
|
this.DisplaySideMenu(this.SelectedSideMenu);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void buttonHiddenMenu_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.ParentForm.SystemConfig1.IsLogin == false)
|
|
|
|
|
{
|
|
|
|
|
this.DisplayHiddenMenu(this.ParentForm.CurrentSystemStatus.CurrentDisplay, this.ParentForm.SystemConfig1);
|
|
|
|
|
}
|
2020-11-30 07:47:15 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
if (this.ParentForm.CurrentSystemStatus.CurrentUser.Group == Define.E_UserGroup.Admin
|
|
|
|
|
|| this.ParentForm.CurrentSystemStatus.CurrentUser.Group == Define.E_UserGroup.Developer
|
|
|
|
|
|| this.ParentForm.CurrentSystemStatus.CurrentUser.Group == Define.E_UserGroup.Level3)
|
2020-11-30 07:47:15 +00:00
|
|
|
|
this.DisplayHiddenMenu(this.ParentForm.CurrentSystemStatus.CurrentDisplay, this.ParentForm.SystemConfig1);
|
|
|
|
|
}
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void buttonMain_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-06-21 10:11:37 +00:00
|
|
|
|
// Log - smartFile Close
|
|
|
|
|
this.FileClose();
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.ChangeToMainScreen();
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void pictureBoxStart_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if(this.EquipmentRun(this.ParentForm.CurrentSystemStatus.CurrentDisplay) == true)
|
|
|
|
|
this.ParentForm.TransferData(CommunicationCommand.Stop, CommunicationID.MainBoard);
|
|
|
|
|
}
|
|
|
|
|
private void pictureBoxStop_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.EquipmentRun(this.ParentForm.CurrentSystemStatus.CurrentDisplay) == true)
|
|
|
|
|
this.ParentForm.TransferData(CommunicationCommand.Start, CommunicationID.MainBoard);
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
private void timerEncryption_Tick(object sender, EventArgs e)
|
2020-08-31 02:13:02 +00:00
|
|
|
|
{
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.timerEncryption.Enabled = false;
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.timerTimeout.Enabled = true;
|
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("timerEncryption_Tick() ({0:yyyy-MM-dd HH:mm:ss}): timeout true", DateTime.Now));
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.EncryptionFile(this.Q_FileList.Dequeue());
|
|
|
|
|
}
|
|
|
|
|
private void timerFileCopy_Tick(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.timerFileCopy.Enabled = false;
|
2023-06-21 10:11:37 +00:00
|
|
|
|
this.timerTimeout.Enabled = true;
|
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("timerFileCopy_Tick() ({0:yyyy-MM-dd HH:mm:ss}): timeout true", DateTime.Now));
|
2023-05-24 04:16:07 +00:00
|
|
|
|
this.FileCopy(this.SelectedDataType);
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
2023-06-21 10:11:37 +00:00
|
|
|
|
private void timerTimeout_Tick(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.timerTimeout.Enabled = false;
|
|
|
|
|
//if (this.ParentForm.IsCommunicationLogOpen == true)
|
|
|
|
|
// this.ParentForm.smartFileCommunicationLog.WriteString(string.Format("timerTimeout_Tick() ({0:yyyy-MM-dd HH:mm:ss}): timeout false", DateTime.Now));
|
|
|
|
|
this.SplashFinish();
|
|
|
|
|
|
|
|
|
|
DialogFormMessage myMsg = new DialogFormMessage(16, this.ParentForm.SystemConfig1.Language);
|
|
|
|
|
myMsg.ShowDialog();
|
|
|
|
|
}
|
2020-08-31 02:13:02 +00:00
|
|
|
|
|
2023-05-24 04:16:07 +00:00
|
|
|
|
public Define.E_MenuBottomConfiguration CurrentConfigurationMenu()
|
|
|
|
|
{
|
|
|
|
|
return this.BottomConfiguration.CurrentMenu;
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
2020-08-31 02:13:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|