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

📄 floatingwindow.h

📁 本例是SYMBIAN C++一个创建短信的例子
💻 H
字号:
#ifndef __FLOATINGWINDOW_H__
#define __FLOATINGWINDOW_H__

#include <coecntrl.h>
#include <w32std.h>

class RWsSession;
class CWsScreenDevice;
class CWindowGc;
class CFbsBitmap;
class RWindowGroup;
    
/**
* CFloatingWindow
*/
class CFloatingWindow : public CBase
{
public: // constructors and destructor
    static CFloatingWindow* NewL(const TRect& aRect, CFbsBitmap* aIcon, CFbsBitmap* aIconMask);
    static CFloatingWindow* NewLC(const TRect& aRect, CFbsBitmap* aIcon, CFbsBitmap* aIconMask);
    ~CFloatingWindow();

public: // public methods
    void SetRect(const TRect& aRect);

private: // constructor
    CFloatingWindow();
    void ConstructL(const TRect& aRect, CFbsBitmap* aIcon, CFbsBitmap* aIconMask);

private: // data
    RWsSession  iWsSession;
    RWindowGroup* iWindowGroup;
    
private:
	TPoint          iWinPoint;
	TSize           iWinSize;
	RWsSprite       iSprite;
};

#endif // __FLOATINGWINDOW_H__

⌨️ 快捷键说明

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