QT布局管理,应用程序主窗口和事件系统

布局管理

QLayout.

1.QBoxLayout
QBoxLayout使
QHBoxLayoutQVBoxLayout

2.QGridLayout
QGridLayout使

3.QFormLayout
QFormLayout
QFormLayout

4.QStsckedLayout


sizeHintminimumSizeHintlayoutStretchlayoutSizeConstraint


QSplitter
QSplitterQBoxLayoutQSplitter


QLabel使setBuddy()

Tab
使setTabOrderQt

应用程序主窗口

QMainWindow(QMenuBar)(QToolBar)(CentralWidget)Dock(QDockWidget)(QStatusBar)
QAction
使
QAction

(QMdiArea)
QDockWidget
QStatusBar
QWidgetAction

富文本处理

QTextCursorQTextDocument

QTextFrameFormat


QTextFrameFormatQTextCharFormat


QTextTableFormatQTextListFormatQTextImageFormat

语法高亮和HTML


QSyntaxHighlighter
QLabelQTextEdit使HTMLCSS
QCompleter

拖放操作

使
使QMimeDataQDrag
使setAcceptDrops(true)

自定义拖放操作

    void mousePressEvent(QMouseEvent * event);//鼠标按下事件
    void dragEnterEvent(QDragEnterEvent * event);//拖动进入事件

    void dragMoveEvent(QDragMoveEvent * event);//拖放事件
    void dropEvent(QDropEvent * event);//放下事件

打印文档

使QPrinterQPrintDialog

private slots:
    void doprint();//打印
    void doprintpreview();//打印预览
    void printpreview(QPrinter *printer);
    void createpdf();//生成pdf

事件系统

QT使QEvent


QMouseEventQWheelEvent

    void mousePressEvent(QMouseEvent *event);//鼠标按下
    void mouseReleaseEvent(QMouseEvent *event);//鼠标释放
    void mouseDoubleClickEvent(QMouseEvent *event);//双击
    void mouseMoveEvent(QMouseEvent *event);//鼠标移动
    void wheelEvent(QWheelEvent *event);//滚轮滚动


QKeyEnent


QTimerEvent

int QObject::startTimer(int interval)//开启定时器函数

qrand()qsrand()


installEventFilter()eventFilter()

你可能感兴趣的:(qt)