Beispiel #1
0
        private void listViewWifi_ItemSelectionChanged(object sender, ListViewItemSelectionChangedEventArgs e)
        {
            ListView.SelectedListViewItemCollection itemcollection = listViewWifi.SelectedItems;
            foreach (ListViewItem itemseleted in itemcollection)
            {
                if (itemseleted.Tag != null)
                {
                    SDK_NetWifiDevice wifiDevice = (SDK_NetWifiDevice)itemseleted.Tag;
                    curWifiDevice = wifiDevice;

                    textBoxSSID.Text = wifiDevice.sSSID;
                    comboBoxWifiEntryType.Items.Clear();
                    comboBoxWifiEntryType.Items.Add(wifiDevice.sEncrypType);
                    comboBoxWifiEntryType.SelectedIndex = 0;
                    if (wifiDevice.sEncrypType == "WEP")
                    {
                        comboBoxWifiKeyType.SelectedIndex = 0;
                        comboBoxWifiKeyType.Show();
                        labelKeyType.Show();
                    }
                    else
                    {
                        labelKeyType.Hide();
                        comboBoxWifiKeyType.Hide();
                    }
                    break;
                }
            }
        }
Beispiel #2
0
        private void UpdateConfig(int nLoginID, int nChannel, uint nConfig)
        {
            if (nLoginID > 0)
            {
                IntPtr bufPtr;
                uint   nBufSize = 0;
                uint   nOutSize = 0;
                switch (nConfig)
                {
                case (uint)SDK_CONFIG_TYPE.E_SDK_CONFIG_SYSNORMAL:
                {
                    nBufSize = (uint)Marshal.SizeOf(typeof(SDK_CONFIG_NORMAL));
                    bufPtr   = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(SDK_CONFIG_NORMAL)));
                    int nRet = XMSDK.H264_DVR_GetDevConfig(nLoginID, nConfig, nChannel, bufPtr, nBufSize, out nOutSize, 1000);
                    if (nRet < 0)
                    {
                        MessageBox.Show("Get config error!");
                        return;
                    }

                    SDK_CONFIG_NORMAL cfgNormal = new SDK_CONFIG_NORMAL();
                    cfgNormal = (SDK_CONFIG_NORMAL)Marshal.PtrToStructure(bufPtr, typeof(SDK_CONFIG_NORMAL));

                    nBufSize = (uint)Marshal.SizeOf(typeof(H264_DVR_DEVICEINFO));
                    bufPtr   = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(H264_DVR_DEVICEINFO)));
                    nRet     = XMSDK.H264_DVR_GetDevConfig(nLoginID, (uint)SDK_CONFIG_TYPE.E_SDK_CONFIG_SYSINFO, nChannel, bufPtr, nBufSize, out nOutSize, 1000);
                    H264_DVR_DEVICEINFO cfgSysInfo = new H264_DVR_DEVICEINFO();
                    cfgSysInfo = (H264_DVR_DEVICEINFO)Marshal.PtrToStructure(bufPtr, typeof(H264_DVR_DEVICEINFO));

                    textBoxSerial.Text                  = cfgSysInfo.sSerialNumber.ToString();
                    textBoxDeviceNo.Text                = cfgNormal.iLocalNo.ToString();
                    textBoxDeviceName.Text              = cfgNormal.sMachineName.ToString();
                    textBoxVideoOut.Text                = cfgNormal.iVideoStartOutPut.ToString();
                    textBoxAlarmIn.Text                 = cfgSysInfo.byAlarmInPortNum.ToString();
                    textBoxAlarmOut.Text                = cfgSysInfo.byAlarmOutPortNum.ToString();
                    comboBoxDiskFullTo.SelectedIndex    = cfgNormal.iOverWrite;
                    comboBoxVideoStandard.SelectedIndex = cfgNormal.iVideoFormat;
                    comboBoxDateFormat.SelectedIndex    = cfgNormal.iDateFormat;
                    comboBoxDateSeparator.SelectedIndex = cfgNormal.iDateSeparator;
                    textBoxStandbyTime.Text             = cfgNormal.iWorkDay.ToString();
                    comboBoxTimeFormat.SelectedIndex    = cfgNormal.iTimeFormat;

                    textBoxRecordChannel.Text  = (cfgSysInfo.byChanNum + cfgSysInfo.iDigChannel).ToString();
                    textBoxAudioIn.Text        = cfgSysInfo.iAudioInChannel.ToString();
                    textBoxTalkIn.Text         = cfgSysInfo.iTalkInChannel.ToString();
                    textBoxTalkOut.Text        = cfgSysInfo.iTalkOutChannel.ToString();
                    textBoxVideoOut.Text       = cfgSysInfo.iTalkOutChannel.ToString();
                    textBoxExChannel.Text      = cfgSysInfo.iExtraChannel.ToString();
                    textBoxDigitalChannel.Text = cfgSysInfo.iDigChannel.ToString();
                    textBox1SystemVersion.Text = cfgSysInfo.sSoftWareVersion;

                    StringBuilder strTime;
                    strTime = new StringBuilder();
                    strTime.AppendFormat("{0:d}-{1:d}-{2:d} {3:d}:{4:d}:{5:d}", cfgSysInfo.tmBuildTime.year,
                                         cfgSysInfo.tmBuildTime.month, cfgSysInfo.tmBuildTime.day, cfgSysInfo.tmBuildTime.hour,
                                         cfgSysInfo.tmBuildTime.minute, cfgSysInfo.tmBuildTime.second);

                    textBoxReleaseDate.Text = strTime.ToString();
                    break;
                }

                case (uint)SDK_CONFIG_TYPE.E_SDK_CONFIG_NET_WIFI:
                {
                    nBufSize = (uint)Marshal.SizeOf(typeof(SDK_NetWifiConfig));
                    bufPtr   = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(SDK_NetWifiConfig)));
                    int nRet = XMSDK.H264_DVR_GetDevConfig(nLoginID, nConfig, nChannel, bufPtr, nBufSize, out nOutSize, 1000);
                    if (nRet < 0)
                    {
                        MessageBox.Show("Get config error!");
                        return;
                    }

                    curcfgWifi = (SDK_NetWifiConfig)Marshal.PtrToStructure(bufPtr, typeof(SDK_NetWifiConfig));

                    checkEnableWifi.Checked = Convert.ToBoolean(curcfgWifi.bEnable);

                    bool bWifiEnable = checkEnableWifi.Checked;
                    comboBoxWifiEntryType.Enabled = bWifiEnable;
                    if (!checkBoxDHCP.Checked)
                    {
                        textBoxWifiIP.Enabled      = bWifiEnable;
                        textBoxWifiSubmask.Enabled = bWifiEnable;
                        textBoxWifiGateway.Enabled = bWifiEnable;
                    }


                    StringBuilder strIP, strSubMask, strGateway;
                    strIP = new StringBuilder();
                    strIP.AppendFormat("{0:d}.{1:d}.{2:d}.{3:d}", (int)curcfgWifi.HostIP.c[0], (int)curcfgWifi.HostIP.c[1], (int)curcfgWifi.HostIP.c[2], (int)curcfgWifi.HostIP.c[3]);
                    strSubMask = new StringBuilder();
                    strSubMask.AppendFormat("{0:d}.{1:d}.{2:d}.{3:d}", (int)curcfgWifi.Submask.c[0], (int)curcfgWifi.Submask.c[1], (int)curcfgWifi.Submask.c[2], (int)curcfgWifi.Submask.c[3]);
                    strGateway = new StringBuilder();
                    strGateway.AppendFormat("{0:d}.{1:d}.{2:d}.{3:d}", (int)curcfgWifi.Gateway.c[0], (int)curcfgWifi.Gateway.c[1], (int)curcfgWifi.Gateway.c[2], (int)curcfgWifi.Gateway.c[3]);

                    textBoxWifiIP.Text       = strIP.ToString();
                    textBoxWifiSubmask.Text  = strSubMask.ToString();
                    textBoxWifiGateway.Text  = strGateway.ToString();
                    textBoxWifiPassword.Text = curcfgWifi.sKeys;
                    textBoxSSID.Text         = curcfgWifi.sSSID;
                    comboBoxWifiEntryType.Items.Clear();
                    comboBoxWifiEntryType.Items.Add(curcfgWifi.sEncrypType);
                    comboBoxWifiEntryType.SelectedIndex = 0;
                    comboBoxWifiKeyType.SelectedIndex   = 1;

                    if (curcfgWifi.sEncrypType == "WEP")
                    {
                        comboBoxWifiKeyType.SelectedIndex = curcfgWifi.nKeyType;
                        comboBoxWifiKeyType.Show();
                        labelKeyType.Show();
                    }
                    else
                    {
                        comboBoxWifiKeyType.Hide();
                        labelKeyType.Hide();
                    }

                    checkBoxDHCP.Checked       = false;
                    textBoxWifiIP.Enabled      = true;
                    textBoxWifiSubmask.Enabled = true;
                    textBoxWifiGateway.Enabled = true;
                    break;
                }

                case (uint)SDK_CONFIG_TYPE.E_SDK_CONFIG_NET_DHCP:
                {
                    nBufSize = (uint)Marshal.SizeOf(typeof(SDK_NetDHCPConfigAll));
                    bufPtr   = Marshal.AllocHGlobal((int)nBufSize);
                    int nRet = XMSDK.H264_DVR_GetDevConfig(nLoginID, (uint)SDK_CONFIG_TYPE.E_SDK_CONFIG_NET_DHCP, -1, bufPtr, nBufSize, out nOutSize, 1000);
                    if (nRet > 0)
                    {
                        SDK_NetDHCPConfigAll dhcpAll = new SDK_NetDHCPConfigAll();
                        dhcpAll       = (SDK_NetDHCPConfigAll)Marshal.PtrToStructure(bufPtr, typeof(SDK_NetDHCPConfigAll));
                        curDHCPcfgAll = dhcpAll;

                        if (Convert.ToBoolean(dhcpAll.vNetDHCPConfig[2].bEnable))
                        {
                            checkBoxDHCP.Checked       = true;
                            textBoxWifiIP.Enabled      = false;
                            textBoxWifiSubmask.Enabled = false;
                            textBoxWifiGateway.Enabled = false;
                        }
                    }
                    break;
                }

                case (uint)SDK_CONFIG_TYPE.E_SDK_CONFIG_NET_WIFI_AP_LIST:
                {
                    nBufSize = (uint)Marshal.SizeOf(typeof(SDK_NetWifiDeviceAll));
                    bufPtr   = Marshal.AllocHGlobal((int)nBufSize);
                    int nRet = XMSDK.H264_DVR_GetDevConfig(nLoginID, (uint)SDK_CONFIG_TYPE.E_SDK_CONFIG_NET_WIFI_AP_LIST, -1, bufPtr, nBufSize, out nOutSize, 5000);


                    if (nRet >= 0)
                    {
                        listViewWifi.Items.Clear();

                        SDK_NetWifiDeviceAll wifiDeviAll = new SDK_NetWifiDeviceAll();
                        wifiDeviAll = (SDK_NetWifiDeviceAll)Marshal.PtrToStructure(bufPtr, typeof(SDK_NetWifiDeviceAll));
                        for (int i = 0; i < wifiDeviAll.nDevNumber; i++)
                        {
                            string strRSSI;
                            switch (wifiDeviAll.vNetWifiDeviceAll[i].nRSSI)
                            {
                            case (int)SDK_RSSI_SINGNAL.SDK_RSSI_NO_SIGNAL:
                                strRSSI = "ConfigNet.NoSignal";
                                break;

                            case (int)SDK_RSSI_SINGNAL.SDK_RSSI_VERY_LOW:
                                strRSSI = "VeryLow";
                                break;

                            case (int)SDK_RSSI_SINGNAL.SDK_RSSI_LOW:
                                strRSSI = "Low";
                                break;

                            case (int)SDK_RSSI_SINGNAL.SDK_RSSI_GOOD:
                                strRSSI = "Good";
                                break;

                            case (int)SDK_RSSI_SINGNAL.SDK_RSSI_VERY_GOOD:
                                strRSSI = "VeryGood";
                                break;

                            case (int)SDK_RSSI_SINGNAL.SDK_RSSI_EXCELLENT:
                                strRSSI = "Excellent";
                                break;

                            default:
                                strRSSI = "NoSignal";
                                break;
                            }

                            SDK_NetWifiDevice wifi = new SDK_NetWifiDevice();
                            wifi = wifiDeviAll.vNetWifiDeviceAll[i];
                            ListViewItem item = new ListViewItem(new string[] { wifi.sSSID, wifi.sAuth, strRSSI });

                            item.Tag = wifi;
                            listViewWifi.Items.Add(item);
                        }
                    }
                    break;
                }

                case (uint)SDK_CONFIG_TYPE.E_SDK_CONFIG_ABILITY_SYSFUNC:
                {
                    nBufSize = (uint)Marshal.SizeOf(typeof(SDK_SystemFunction));
                    bufPtr   = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(SDK_SystemFunction)));
                    int nRet = XMSDK.H264_DVR_GetDevConfig(nLoginID, (uint)SDK_CONFIG_TYPE.E_SDK_CONFIG_ABILITY_SYSFUNC, -1, bufPtr, nBufSize, out nOutSize, 2000);

                    if (nRet > 0)
                    {
                        SDK_SystemFunction sysFunction = new SDK_SystemFunction();
                        sysFunction = (SDK_SystemFunction)Marshal.PtrToStructure(bufPtr, typeof(SDK_SystemFunction));
                        if (!Convert.ToBoolean(sysFunction.vNetServerFunction[(int)SDK_NetServerTypes.SDK_NET_SERVER_TYPES_WIFI]))
                        {
                            tabPageWifi.Hide();
                        }
                        else
                        {
                            tabPageWifi.Show();
                        }
                    }
                    break;
                }
                }
            }
        }