sysinfoview.h

来自「手机文件浏览器 Here are the sources to SMan v1.」· C头文件 代码 · 共 39 行

H
39
字号
#include "bjackicon.h"
#include "dialogs.h"
#include "viewbase.h"

#if !defined(__SYSINFOVIEW_H__)
#define __SYSINFOVIEW_H__


/*************************************************************
*
* Sysinfo view
*
**************************************************************/

class CSMan2SysInfoView : public MCoeControlObserver, public MCoeView, public CViewBase
{
protected:		// implements MCoeView
	virtual void ViewDeactivated();
	virtual void ViewActivatedL(const TVwsViewId& /*aPrevViewId*/, TUid /*aCustomMessageId*/, const TDesC8& /*aCustomMessage*/);

public:
	CSMan2SysInfoView(CConfig *cData);
	~CSMan2SysInfoView();
	virtual TVwsViewId ViewId() const;
	virtual TVwsViewIdAndMessage ViewScreenDeviceChangedL();
	virtual TBool ViewScreenModeCompatible(TInt aScreenMode);
	void SetZoomLevel(TInt zoomLevel);
	void ConstructL(const TRect& aRect);
	void HandlePointerEventL(const TPointerEvent& aPointerEvent);
	CEikColumnListBox *cSysInfoListBox;
	void HandleControlEventL(CCoeControl* aControl, TCoeEvent aEventType);	
	void refreshSysInfo();

private:
	TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType);
	void showDetail();
};

#endif

⌨️ 快捷键说明

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