📄 quickstart.h
字号:
//
// QuickStart.h - QuickStart example
//
// This material is provided "as is" without any warranty to its performance or functionality.
// In no event shall the authors or the publishers be liable for any damages whatsoever arising out of the
// use or inabilty to use this material.
//
#ifndef __QUICKSTART_H__
#define __QUICKSTART_H__
// these pragmas stop the compiler complaining that params to functions not being used in body
#ifdef __CW32__
#pragma warn_unusedarg off
#endif // __CW32__
#pragma warning(disable : 4100)
#include <eikenv.h>
#include <eikapp.h>
#include <eikdef.h>
#include <eikdoc.h>
#include <eikmenub.h>
#include <eikmenup.h>
#include <basched.h>
#include <coeutils.h>
#include <qikappui.h>
#include <qikdocument.h>
#include <qikapplication.h>
#include <QikScrollableContainer.h>
#include <eiklbm.h>
#include <eiktxlbm.h>
#include <eikclb.h>
#include <eikclbd.h>
/////////////////////////////////////////////////////////////////////////////////////////////
class CAppEngine;
class CAppSpecificUi : public CQikAppUi
{
protected:
// From CEikAppUi
void ConstructL(void);
public:
// new methods
~CAppSpecificUi();
CAppEngine* AppEngine(void) const;
protected:
CAppEngine* iEngine;
};
#endif // __QUICKSTART_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -