⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 termfepext1.h

📁 大名鼎鼎的远程登录软件putty的Symbian版源码
💻 H
字号:
/*    termfepext1.h
 *
 * FEP extension class for S60 terminal control
 *
 * Copyright 2005 Petteri Kangaslampi
 *
 * See license.txt for full copyright and license information.
*/

#ifndef __TERMFEPEXT1_H__
#define __TERMFEPEXT1_H__

#include <fepbase.h>

class MObjectProvider;

/**
 * FEP extension class for S60 terminal control. All S60 FEP-aware
 * editors need to implement MCoeFepAwareTextEditor_Extension1 and
 * own a CAknEdwinState object. This isn't really documented anywhere except in
 * a single Forum Nokia post...
 */
class CTermFepExt1 : public CBase, public MCoeFepAwareTextEditor_Extension1 {
    
public:
    static CTermFepExt1 *NewL(MObjectProvider &aObjectProvider);
    ~CTermFepExt1();

    // MCoeFepAwareTextEditor_Extension1 methods
    CState* State(TUid aTypeSafetyUid);
    void SetStateTransferingOwnershipL(CState* aState, TUid aTypeSafetyUid);
    void StartFepInlineEditL(
        TBool& aSetToTrue,
        const TCursorSelection& aCursorSelection,
        const TDesC& aInitialInlineText,
        TInt aPositionOfInsertionPointInInlineText,
        TBool aCursorVisibility,
        const MFormCustomDraw* aCustomDraw,
        MFepInlineTextFormatRetriever& aInlineTextFormatRetriever,
        MFepPointerEventHandlerDuringInlineEdit& aPointerEventHandlerDuringInlineEdit);
    void SetCursorType(TBool& aSetToTrue, const TTextCursor& aTextCursor);

private:
    CTermFepExt1(MObjectProvider &aObjectProvider);
    void ConstructL();

    CState *iState;
    TUid iUid;
    MObjectProvider &iObjectProvider;
};


#endif

⌨️ 快捷键说明

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