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

📄 callrecorddisplayitem.h

📁 一个WinCE6。0下的IP phone的源代码
💻 H
字号:
//
// 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 __CALLRECORDDISPLAYITEM_H__
#define __CALLRECORDDISPLAYITEM_H__


#include "DisplayItem.hpp"
#include "voipstore.h"
#include "string.hxx"
#include <atlbase.h>
#include <atlcom.h>

/*------------------------------------------------------------------------------
    CVoIPCallRecordDisplayItem
    
    Implements a display item that contains a speed dial item.
------------------------------------------------------------------------------*/
class CVoIPCallRecordDisplayItem : public CVoIPDisplayItem
{
public:
    // Construction/destruction
    CVoIPCallRecordDisplayItem(
        void* piRecord
        );

   ~CVoIPCallRecordDisplayItem();
   
public:
    // Public methods
    HRESULT GetCallRecord(IVoIPCallRecord** ppiCallRecord);
    HRESULT GetCallerInfoRecord(IVoIPCallerInfoRecord** ppiCallerInfoRecord); 


	//
	//	TODO === Move this back to PRIVATE
	//
	HRESULT GetSubItemText(
        int idxSubItem, 
        WCHAR * wszText, 
        UINT cchText
        );


private:
    // Overrides
    virtual HRESULT Draw(
        HDC hdc, 
        const RECT *prc, 
        BOOL fSelected, 
        BOOL fTopItem
        );

	/*
    HRESULT GetSubItemText(
        UINT idxSubItem, 
        WCHAR * wszText, 
        UINT cchText
        ); 
    */

    BOOL GetHeight(
        UINT * pfHeight
        );

    BOOL NeedsToolTip(
        RECT * prc
        );

    HRESULT GetText(
        WCHAR * wszBuffer, 
        INT cchBuffer
        );
    
private:
    // Helper functions
    HRESULT GetStartTimeString(
        ce::wstring &str
        );
    
    HRESULT GetStartDateString(
        ce::wstring &str
        );
    
protected:
    CComPtr<IVoIPCallRecord>        m_cpCallRecord;  
    CComPtr<IVoIPCallerInfoRecord>  m_cpCallerInfoRecord; 
    
    ce::wstring              m_wstrCallerId;
};

#endif

⌨️ 快捷键说明

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