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

📄 oggsplashcontainer.h

📁 OggPlay for Symbian 是symbian上的一个媒体播放程序的源码。它支持ogg,wav等等多媒体格式。
💻 H
字号:
/*
* ============================================================================
*  Name     : CSplashView from SplashView.h
*  Part of  : Splash
*  Created  : 17/02/2003 by Eric@NewLC
*  Description:
*     Declares container control for application.
*  Version  :
*  Copyright: 
* ============================================================================
*/

#ifndef SPLASHVIEW_H
#define SPLASHVIEW_H

// INCLUDES
#include <coecntrl.h>
#include <vwsdef.h>
#include "OggHelperFcts.h"

// Startup splash screen control
class CSplashContainer :public CCoeControl
    {
public:
    void ConstructL();
    void ShowSplashL();
    ~CSplashContainer();

public: // Functions from base classes
    void Draw(const TRect& aRect) const;

private: // New Functions
	static TInt TimerExpired(TAny* aPtr);

private: //data
    COggTimer* iDisplayTimer;
	CFbsBitmap* iBitmap;
    };

#endif

// End of File

⌨️ 快捷键说明

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