⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 editserversettings.hpp

📁 一个WinCE6。0下的IP phone的源代码
💻 HPP
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
#pragma once

#ifndef __EDITSERVERSETTINGS_HPP__
#define __EDITSERVERSETTINGS_HPP__

#include <windows.h>
#include <regext.h>
#include "SettingsDialog.hpp"
#include "ServerSettings.hpp"
#include "DisplayItem.hpp"


class EditServerSettingsDialog_t : 
    public SettingsDialog_t
{
public:
    EditServerSettingsDialog_t(
        bool NeedProvisionData = true
        );

    ~EditServerSettingsDialog_t();

    __override HRESULT 
    CreateDialogScreen(
        void
        );

private:
    __override HRESULT 
    Initialize(
        void
        );

    __override HRESULT 
    OnCommand(
        WPARAM      wParam
        );

    HRESULT 
    UpdateStatusHeader(
        void
        );

    HRESULT
    UpdateMenuBar(
        void
        ); 

    void
    GetSelectedDisplayItem(
        IVoIPDisplayItem**  ppSelectedDisplayItem,
        int*                pItemIndex = NULL
        ); 
    HRESULT 
    UpdateTransportMode(
        const WCHAR*   c_wszTransportMode
        );

    HRESULT
    OnSave(
        void
        ); 

    void
    UpdateFlags(
        unsigned int Index
        ); 

    HRESULT
    ApplyNewSettings(
        void
        ); 

    void
    CleanupPointer(
        WCHAR**  ppString
        ); 


    //inlines
    inline
    bool
    ShouldDeleteSIPSettings(
        void
        ); 

    inline
    bool
    ShouldDeleteBackupSIPSettings(
        void
        ); 

    inline
    bool
    ShouldDeleteVoicemailSettings(
        void
        ); 
    
    inline
    bool
    ShouldDeleteVoicemailNumber(
        void
        ); 

    inline
    void
    CleanupAllPointers(
        void
        ); 
    
    
private:

    static const WCHAR  sc_SIPSettingsTemplate[]; 
    static const WCHAR  sc_BackupSIPSettingsTemplate[]; 
    static const WCHAR  sc_VoicemailSettingsTemplate[]; 
    static const WCHAR  sc_VoicemailNumberTemplate[]; 
    static const WCHAR  sc_ProvisionTemplate[]; 
    
    static const WCHAR  sc_EmptyString[]; 
    
    static const WCHAR  sc_DeleteSIPSettings[]; 
    static const WCHAR  sc_DeleteBackupSIPSettings[]; 
    static const WCHAR  sc_DeleteVoicemailSettings[]; 
    static const WCHAR  sc_DeleteVoicemailNumber[]; 
             
    DWORD               m_UpdatedCategoryFlag; 
    ce::wstring         m_NewServerSettings[ServerSettings_t::LastSetting];

    WCHAR*              m_pSIPSettings; 
    WCHAR*              m_pBackupSIPSettings; 
    WCHAR*              m_pVoicemailSettings; 
    WCHAR*              m_pVoicemailNumber;    
    WCHAR*              m_pProvisionDocument;

    UINT                m_CurrentMenuId;
    bool                m_NeedProvisionData;
};

#endif // !defined __EDITSERVERSETTINGS_HPP__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -