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

📄 listalign.h

📁 linux窗口程序设计一书的第四章代码-QMainWindow,希望对大家有用
💻 H
字号:
#ifndef LISTALIGN_H
#define LISTALIGN_H

#include <QtGui>

class ListAlign : public QMainWindow
{
    Q_OBJECT
public:
    ListAlign(QWidget *parent=0);
     
public slots:
    void slotAlignment(QAction*);
    void slotList(int);
    void slotCursorPositionChanged();
        
private:
    QTextEdit *text;
    QLabel *label;
        
    QComboBox *listBox;
    QAction *leftAction;
    QAction *rightAction;
    QAction *centerAction;
    QAction *justifyAction;
    QAction *redoAction;
    QAction *undoAction;
};

#endif 

⌨️ 快捷键说明

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