📄 exelauncher_appview.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -