exelauncher_appview.h
来自「symbian控制台程序」· C头文件 代码 · 共 33 行
H
33 行
// ExeLauncher_AppView.h
//
// Copyright (c) 2002 Symbian Ltd. All rights reserved.
//
#ifndef __EXELAUNCHER_APPVIEW_H
#define __EXELAUNCHER_APPVIEW_H
#include "ExeLauncher.h"
#include <eiktxlbx.h>
#include <eiktxlbm.h>
class CExeLauncherAppView : public CCoeControl
{
public:
static CExeLauncherAppView* NewL(const TRect& aRect);
~CExeLauncherAppView();
void ConstructL(const TRect& aRect);
void AppendItemsAndActivateL(const CDir* aFileList);
TInt GetCurrentItem();
private:
void Draw(const TRect& /* aRect */) const;
CCoeControl* ComponentControl(TInt aIndex) const;
TInt CountComponentControls() const;
private:
// Text list box to display the file names
CEikTextListBox* iTextListBox;
// Array owned by the text list box
CDesCArray* iNamesArray;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?