📄 listboxui.h
字号:
#ifndef LISTBOXAPPUI_H
#define LISTBOXAPPUI_H
#include <eikapp.h>
#include <eikdoc.h>
#include <e32std.h>
#include <coeccntx.h>
#include <aknappui.h>
class ListBoxContainer;
class ListBoxUi : public CAknAppUi
{
public:
void ConstructL(); // EPOC 2nd phase constructor
~ListBoxUi();
private:
// MEikMenuObserver interface implementation
void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane);
private:
// From CEikAppUi
void HandleCommandL(TInt aCommand); // takes care of command handling
virtual TKeyResponse HandleKeyEventL(const TKeyEvent& keyEvent, TEventCode type); // handles key events
private:
ListBoxContainer* _container;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -