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

📄 browser.h

📁 qtopia的源程序,一种嵌入式图形操作系统
💻 H
字号:
/******************************************************************************** Copyright (C) 1992-$THISYEAR$ Trolltech AS. All rights reserved.**** This file is part of the $MODULE$ of the Qt Toolkit.**** $LICENSE$**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef BROWSER_H#define BROWSER_H#include <QObject>#include <QEvent>class Editor;class Q3TextCursor;class Q3TextParagraph;class Q3TextFormat;class EditorBrowser : public QObject{    Q_OBJECTpublic:    EditorBrowser(Editor *e);    ~EditorBrowser();    bool eventFilter(QObject *o, QEvent *e);    virtual void setCurrentEdior(Editor *e);    virtual void addEditor(Editor *e);    virtual bool findCursor(const Q3TextCursor &c, Q3TextCursor &from, Q3TextCursor &to);    virtual void showHelp(const QString &) {}protected:    Editor *curEditor;    Q3TextParagraph *oldHighlightedParag;    QString lastWord;    Q3TextFormat *highlightedFormat;};#endif

⌨️ 快捷键说明

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