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

📄 ftvhelp.h

📁 doxygen(一个自动从源代码生成文档的工具)的源代码
💻 H
字号:
/****************************************************************************** * ftvhelp.h,v 1.0 2000/09/06 16:09:00 * * Kenney Wong <kwong@ea.com> * * Folder Tree View for offline help on browsers that do not support HTML Help. * Uses the FTV structure from:  * http://www.geocities.com/Paris/LeftBank/2178/ftexample.html */#ifndef FTVHELP_H#define FTVHELP_H#include "qtbc.h"#include <qtextstream.h>class QFile;/*! A class that generated the FTV Help specific file. *  This file is used in conjunction with additional FTV web browser code *  that can be obtained from: *  http://www.geocities.com/Paris/LeftBank/2178/ftexample.html */class FTVHelp {  public:    static FTVHelp *getInstance();    void initialize();    void finalize();    int  incContentsDepth();    int  decContentsDepth();    /*! return the current depth of the contents tree */     int  contentsDepth() { return m_dc; }    void addContentsItem(bool isDir,                         const char *ref,                         const char *file,                         const char *anchor,                          const char *name);  private:    FTVHelp();    QFile *m_cf;     QTextStream m_cts;    int m_dc;    static FTVHelp *m_theInstance;};#endif /* FTVHELP_H */

⌨️ 快捷键说明

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