using System; using System.Collections.Generic; using System.Text; using ZigBee.Device; namespace Shared.Phone.UserCenter.DevicePanel { /// /// 方悦面板功能设置 /// public class PanelFangyueFunctionSettionForm : EditorCommonForm { #region ■ 变量声明___________________________ /// /// 列表控件 /// private FrameListControl listview = null; /// /// 当前选择的设备 /// private CommonDevice nowSelectDevice = null; /// /// 当前选择的回路控件 /// private NormalViewControl nowSelectControl = null; /// /// 设备备注的控件 /// private FrameCaptionInputControl btnDeviceName = null; /// /// 设备的某一回路 /// private CommonDevice deviceObj = null; /// /// 设备的类型 /// private DeviceEnumInfo deviceEnum = null; /// /// 设备需要保存的设备名字 /// private Dictionary dicDeviceSaveName = new Dictionary(); /// /// 信息编辑控件 /// private InformationEditorControl tableContr = null; #endregion #region ■ 初始化_____________________________ /// /// 画面显示(底层会固定调用此方法,借以完成画面创建) /// /// 设备的某一回路 /// 设备的类型 public void ShowForm(CommonDevice i_device, DeviceEnumInfo i_deviceEnum) { this.deviceObj = i_device; this.deviceEnum = i_deviceEnum; //设置头部信息 base.SetTitleText(Language.StringByID(R.MyInternationalizationString.uFunctionSettingUp)); //初始化中部信息 this.InitMiddleFrame(); //初始化右上角菜单 this.InitTopRightMenu(); } /// /// 初始化中部信息 /// private void InitMiddleFrame() { //清空bodyFrame this.ClearBodyFrame(); var listBackControl = new VerticalFrameControl(); listBackControl.Height = bodyFrameLayout.Height; bodyFrameLayout.AddChidren(listBackControl); //初始化桌布 this.tableContr = new InformationEditorControl(); this.listview = tableContr.InitControl(listBackControl.frameTable, Language.StringByID(R.MyInternationalizationString.uDeviceEditor), 1028); //初始化设备回路图标 this.InitDeviceEpointIcon(listBackControl); //保存 var btnFinish = new BottomClickButton(); btnFinish.TextID = R.MyInternationalizationString.uSave; bodyFrameLayout.AddChidren(btnFinish); btnFinish.ButtonClickEvent += (sender, e) => { //记录起当前正在操作的回路名字 dicDeviceSaveName[nowSelectDevice.DeviceEpoint] = btnDeviceName.Text.Trim(); foreach (var epoint in dicDeviceSaveName.Keys) { var device = Common.LocalDevice.Current.GetDevice(deviceObj.DeviceAddr, epoint); if (device == null || dicDeviceSaveName[epoint] == string.Empty) { //不能允许空白名字 continue; } string newName = dicDeviceSaveName[epoint]; string oldName = Common.LocalDevice.Current.GetDeviceEpointName(device); if (oldName != newName) { //设备名称修改 var result = Common.LocalDevice.Current.ReName(device, newName); if (result == false) { return; } } } //关闭自身 this.CloseForm(); }; } /// /// 初始化菜单行 /// private void InitMenuRow() { this.listview.RemoveAll(); //回路备注 string caption = Language.StringByID(R.MyInternationalizationString.uDeviceEpointNote); string nameValue = Common.LocalDevice.Current.GetDeviceEpointName(nowSelectDevice); if (dicDeviceSaveName.ContainsKey(nowSelectDevice.DeviceEpoint) == true) { nameValue = dicDeviceSaveName[nowSelectDevice.DeviceEpoint]; } this.btnDeviceName = new FrameCaptionInputControl(caption, nameValue, listview.rowSpace / 2); listview.AddChidren(btnDeviceName); btnDeviceName.InitControl(); btnDeviceName.AddBottomLine(); btnDeviceName.txtInput.FinishInputEvent += () => { string oldName = Common.LocalDevice.Current.GetDeviceEpointName(nowSelectDevice); if (btnDeviceName.Text.Trim() == string.Empty) { //将名字还原 btnDeviceName.Text = oldName; } if (oldName != btnDeviceName.Text.Trim()) { //设备名称修改 var result = Common.LocalDevice.Current.ReName(nowSelectDevice, btnDeviceName.Text.Trim()); if (result == false) { return; } //回路备注修改成功! string msg = Language.StringByID(R.MyInternationalizationString.uDeviceEpointReNoteSuccess); this.ShowMassage(ShowMsgType.Tip, msg); } }; //所属区域 var rowBeloneArea = new BelongAreaControl(listview.rowSpace / 2); listview.AddChidren(rowBeloneArea); rowBeloneArea.InitControl(Language.StringByID(R.MyInternationalizationString.uBelongArea), nowSelectDevice); //底线 rowBeloneArea.AddBottomLine(); rowBeloneArea.SelectRoomEvent += (roomKeys) => { //变更房间 HdlRoomLogic.Current.ChangedRoom(nowSelectDevice, roomKeys); }; //添加功能类型行 this.AddFunctionTypeRow(); //初始化桌布完成 tableContr.FinishInitControl(); } #endregion #region ■ 右上角菜单_________________________ /// /// 初始化右上角菜单 /// private void InitTopRightMenu() { //检测此回路是否拥有定位功能 if (Common.LocalDevice.Current.DeviceIsCanFixedPosition(nowSelectDevice) == false) { return; } var btnIcon = new MostRightIconControl(69, 69); btnIcon.UnSelectedImagePath = "Item/More.png"; topFrameLayout.AddChidren(btnIcon); btnIcon.InitControl(); btnIcon.ButtonClickEvent += ((sender, e) => { //显示右上角菜单界面 this.ShowTopRightMenu(); }); } /// /// 显示右上角菜单界面 /// private void ShowTopRightMenu() { int menuCount = 1; string deviceMenu = string.Empty; //检测此回路是否拥有定位功能 bool canTest = Common.LocalDevice.Current.DeviceIsCanFixedPosition(nowSelectDevice); //if (canTest == true) //{ // menuCount = 2; //} var frame = new TopRightMenuControl(menuCount, 1); if (canTest == true) { //定位 deviceMenu = Language.StringByID(R.MyInternationalizationString.uFixedPosition); frame.AddRowMenu(deviceMenu, "Item/FixedPosition.png", "Item/FixedPositionSelected.png", () => { //发送定位功能 Common.LocalDevice.Current.SetFixedPositionCommand(nowSelectDevice); }); } //删除 //deviceMenu = Language.StringByID(R.MyInternationalizationString.uDelete); //frame.AddRowMenu(deviceMenu, "Item/DeleteIcon2.png", "Item/DeleteIcon2Selected.png", () => //{ //}); } #endregion #region ■ 功能类型___________________________ /// /// 添加功能类型行 /// private void AddFunctionTypeRow() { //自定义功能类型控件 var rowFunction = new DeviceFunctionTypeRowControl(nowSelectDevice, listview.rowSpace / 2); if (rowFunction.CanShowRow == true) { listview.AddChidren(rowFunction); rowFunction.InitControl(); //底线 rowFunction.AddBottomLine(); } } #endregion #region ■ 初始化设备回路图标_________________ /// /// 初始化设备回路图标 /// private void InitDeviceEpointIcon(VerticalFrameControl listBackControl) { bool hadDevice = false; var listDevice = Common.LocalDevice.Current.GetDevicesByMac(deviceObj.DeviceAddr); var listSort = new List(); foreach (var device in listDevice) { //如果是继电器 if (device.Type == DeviceType.OnOffOutput) { listSort.Add(device); if (device.DeviceEpoint == deviceObj.DeviceEpoint) { //能够匹配得到这个回路 hadDevice = true; } } } //排序 listSort.Sort((obj1, obj2) => { if (obj1.DeviceEpoint > obj2.DeviceEpoint) { return 1; } return -1; }); if (hadDevice == false) { //如果匹配不到这个回路,则默认第一个 this.deviceObj = listSort[0]; } var frameBorder = new FrameLayout(); frameBorder.Y = Application.GetRealHeight(150); frameBorder.Gravity = Gravity.CenterHorizontal; frameBorder.Width = this.GetPictrueRealSize(426); frameBorder.Height = this.GetPictrueRealSize(426); listBackControl.frameTable.AddChidren(frameBorder); var btnPic = new PicViewControl(frameBorder.Width, frameBorder.Height, false); frameBorder.AddChidren(btnPic); if (deviceEnum.ConcreteType == Common.DeviceConcreteType.ButtonPanel_FangyueEight) { //四开八控面板 btnPic.UnSelectedImagePath = "DeviceItem/PanelFangyueEightButtonTable.png"; this.InitEightButtonPanelIcon(frameBorder, listSort); } else if (deviceEnum.ConcreteType == Common.DeviceConcreteType.ButtonPanel_FangyueFour) { //双开四控面板 btnPic.UnSelectedImagePath = "DeviceItem/PanelFangyueFourButtonTable.png"; this.InitFourButtonPanelIcon(frameBorder, listSort); } else { //单开双控面板 btnPic.UnSelectedImagePath = "DeviceItem/PanelFangyueTwoButtonTable.png"; this.InitTwoButtonPanelIcon(frameBorder, listSort); } } /// /// 初始化按钮控件 /// /// 容器 /// 设备对象 /// private NormalViewControl InitDeviceButtonControl(FrameLayout frame, CommonDevice device) { var btnIcon = new NormalViewControl(this.GetPictrueRealSize(52), this.GetPictrueRealSize(52), false); btnIcon.Text = "CHANNEL" + device.DeviceEpoint; btnIcon.TextAlignment = TextAlignment.Center; btnIcon.TextColor = UserCenterColor.Current.TextGrayColor1; btnIcon.IsBold = true; if (frame is FrameLayoutStatuControl) { ((FrameLayoutStatuControl)frame).AddChidren(btnIcon, ChidrenBindMode.BindEvent); ((FrameLayoutStatuControl)frame).ButtonClickEvent += (sender, e) => { //按键点击 this.DeviceEpointSelectEvent(btnIcon, null); }; } else { frame.AddChidren(btnIcon); //点击事件 btnIcon.ButtonClickEvent += (sender, e) => { //按键点击 this.DeviceEpointSelectEvent(btnIcon, null); }; } if (device.DeviceEpoint == deviceObj.DeviceEpoint) { //初始化菜单行 this.DeviceEpointSelectEvent(btnIcon, null); } return btnIcon; } #endregion #region ■ 初始化二按键图标___________________ /// /// 初始化单开双控面板的图标 /// /// 容器 /// 设备列表 private void InitTwoButtonPanelIcon(FrameLayout frameBack, List listDevice) { //按键1 var btnButton1 = this.InitDeviceButtonControl(frameBack, listDevice[0]); btnButton1.Height = this.GetPictrueRealSize(175); btnButton1.Width = this.GetPictrueRealSize(361); btnButton1.Y = this.GetPictrueRealSize(39); btnButton1.Gravity = Gravity.CenterHorizontal; //按键2 var btnButton2 = this.InitDeviceButtonControl(frameBack, listDevice[1]); btnButton2.Height = this.GetPictrueRealSize(175); btnButton2.Width = this.GetPictrueRealSize(361); btnButton2.Y = btnButton1.Bottom; btnButton2.Gravity = Gravity.CenterHorizontal; } #endregion #region ■ 初始化四按键图标___________________ /// /// 初始化双开四控键面板的图标 /// /// 容器 /// 设备列表 private void InitFourButtonPanelIcon(FrameLayout frameBack, List listDevice) { //按键1 var btnButton1 = this.InitDeviceButtonControl(frameBack, listDevice[0]); btnButton1.TextSize = 8; btnButton1.Height = this.GetPictrueRealSize(175); btnButton1.Width = this.GetPictrueRealSize(183); btnButton1.X = this.GetPictrueRealSize(34); btnButton1.Y = this.GetPictrueRealSize(30); //按键2 var btnButton2 = this.InitDeviceButtonControl(frameBack, listDevice[1]); btnButton2.TextSize = 8; btnButton2.Height = this.GetPictrueRealSize(175); btnButton2.Width = this.GetPictrueRealSize(183); btnButton2.X = btnButton1.Right; btnButton2.Y = btnButton1.Y; //按键3 var btnButton3 = this.InitDeviceButtonControl(frameBack, listDevice[2]); btnButton3.TextSize = 8; btnButton3.Height = this.GetPictrueRealSize(175); btnButton3.Width = this.GetPictrueRealSize(183); btnButton3.X = btnButton1.X; btnButton3.Y = btnButton1.Bottom + this.GetPictrueRealSize(4); //按键4 var btnButton4 = this.InitDeviceButtonControl(frameBack, listDevice[3]); btnButton4.TextSize = 8; btnButton4.Height = this.GetPictrueRealSize(175); btnButton4.Width = this.GetPictrueRealSize(183); btnButton4.X = btnButton2.X; btnButton4.Y = btnButton3.Y; } #endregion #region ■ 初始化八按键图标___________________ /// /// 初始化四开八控面板的图标 /// /// 容器 /// 设备列表 private void InitEightButtonPanelIcon(FrameLayout frameBack, List listDevice) { //按键1~按键2 var frame1 = new FrameLayout(); frame1.X = this.GetPictrueRealSize(34); frame1.Y = this.GetPictrueRealSize(30); frame1.Height = this.GetPictrueRealSize(183); frame1.Width = this.GetPictrueRealSize(183); frameBack.AddChidren(frame1); this.InitEightButtonPanelIcon(frame1, listDevice[0], listDevice[1]); //按键3~按键4 var frame2 = new FrameLayout(); frame2.X = frame1.Right; frame2.Y = frame1.Y; frame2.Height = frame1.Height; frame2.Width = frame1.Width; frameBack.AddChidren(frame2); this.InitEightButtonPanelIcon(frame2, listDevice[2], listDevice[3]); } /// /// 初始化八按键面板的图标 /// /// 容器 /// 设备1 /// 设备2 private void InitEightButtonPanelIcon(FrameLayout frameBack, CommonDevice device1, CommonDevice device2) { //按键1 var frameButton1 = new FrameLayoutStatuControl(); frameButton1.UseClickStatu = false; frameButton1.Height = this.GetPictrueRealSize(92); frameButton1.Width = this.GetPictrueRealSize(183); frameBack.AddChidren(frameButton1); var btnButton1 = this.InitDeviceButtonControl(frameButton1, device1); btnButton1.TextSize = 8; btnButton1.Height = this.GetPictrueRealSize(35); btnButton1.Width = this.GetPictrueRealSize(183); btnButton1.Y = this.GetPictrueRealSize(37); //按键2 var frameButton2 = new FrameLayoutStatuControl(); frameButton2.UseClickStatu = false; frameButton2.Height = frameButton1.Height; frameButton2.Width = frameButton1.Width; frameButton2.Y = frameButton1.Bottom; frameBack.AddChidren(frameButton2); var btnButton2 = this.InitDeviceButtonControl(frameButton2, device2); btnButton2.TextSize = 8; btnButton2.Height = btnButton1.Height; btnButton2.Width = btnButton1.Width; btnButton2.Y = this.GetPictrueRealSize(20); } #endregion #region ■ 回路选择___________________________ /// /// 回路选择事件 /// /// /// private void DeviceEpointSelectEvent(object sender, MouseEventArgs e) { var nowContr = (NormalViewControl)sender; if (nowSelectControl != null) { //同一个东西,不鸟他 if (nowSelectControl.Text == nowContr.Text) { return; } //不选择状态 nowSelectControl.TextColor = UserCenterColor.Current.TextGrayColor1; //记录它的名字 dicDeviceSaveName[nowSelectDevice.DeviceEpoint] = btnDeviceName.Text.Trim(); } //选择状态 nowContr.TextColor = 0xfffb744a; nowSelectControl = nowContr; nowSelectDevice = Common.LocalDevice.Current.GetDevice(deviceObj.DeviceAddr, Convert.ToInt32(nowContr.Text.Replace("CHANNEL", string.Empty))); //重新初始化菜单行 this.InitMenuRow(); } #endregion } }