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

📄 conslauncherappview.h

📁 Symbian OS C++手机开发源码
💻 H
字号:
/* Copyright (c) 2003 Symbian Software Ltd. All rights reserved */

#ifndef __CONSLAUNCHER_APPVIEW_H__
#define __CONSLAUNCHER_APPVIEW_H__


#include <coecntrl.h>

#include <eiktxlbx.h>
#include <eikenv.h>


class CConsLauncherAppView : public CCoeControl
    {
public:
    CConsLauncherAppView();
    ~CConsLauncherAppView();
    void ConstructL(const TRect& aRect,  CDir* aCDir);

private: // from CCoeControl
    CCoeControl* ComponentControl(TInt aIndex) const;
    TInt CountComponentControls() const;
	TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);

public:
   TInt GetCurrentItem();
   
private:
    void AppendItemsL(const CDir* aFileList);

private:
   CEikTextListBox* iTextListBox; // Text list box to display the file names
   CDesCArray* iNamesArray;       // Array owned by the text list box
   };


#endif // __CONSLAUNCHER_APPVIEW_H__

⌨️ 快捷键说明

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