qtsciicodec.h
来自「著名的A780系列,E680系列的SDK开发包」· C头文件 代码 · 共 36 行
H
36 行
/****************************************************************************** $Id: qt/src/3rdparty/tools/qtsciicodec.h 2.3.6 edited 2002-06-07 $**** Definition of QTSCIICodec class*******************************************************************************/// Contributed by Hans Petter Bieker <bieker@kde.org>// See the documentation for their license statement for the code as// it was at the time of contribution.#ifndef QTSCIICODEC_H#define QTSCIICODEC_H#ifndef QT_H#include "qtextcodec.h"#endif // QT_H#ifndef QT_NO_TSCIICODECclass Q_EXPORT QTsciiCodec : public QTextCodec {public: virtual int mibEnum() const; const char* name() const; QCString fromUnicode(const QString& uc, int& len_in_out) const; QString toUnicode(const char* chars, int len) const; int heuristicContentMatch(const char* chars, int len) const; int heuristicNameMatch(const char* hint) const;};#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?