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

📄 stringcodec.h

📁 Linux窗口程序设计,Qt4精彩实例分析,以循序渐进的方式介绍Qt4开发及其实例子,第一部分
💻 H
字号:
#ifndef STRINGCODEC_H#define STRINGCODEC_H#include <QtGui>class StringCodec : public QDialog	{    Q_OBJECTpublic:    StringCodec( QWidget *parent=0, Qt::WindowFlags  f=0 );    ~StringCodec();public:    QGridLayout *layout;         QPushButton *pushButtonStart;    QLabel *labelSource;    QLabel *labelUnicode;    QLabel *labelBigEndianUnicode;    QLabel *labelUtf8;    QLabel *labelLocal;    QLineEdit *lineEditSource;    QLineEdit *lineEditUnicode;     QLineEdit *lineEditBigEndianUnicode;      QLineEdit *lineEditUtf8;    QLineEdit *lineEditLocal;    QLabel *lenUnicode;       QLabel *lenBigEndianUnicode;       QLabel *lenUtf8;    QLabel *lenLocal;    QLineEdit *lineEditUnicodeLen;       QLineEdit *lineEditBigEndianUnicodeLen;    QLineEdit *lineEditUtf8Len;    QLineEdit *lineEditLocalLen;    private slots:    void slotStart();};#endif 

⌨️ 快捷键说明

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