zoukankan      html  css  js  c++  java
  • 2. 一些小函数

    摘要: 比较重要的函数。  哪有不重要的函数呢?   标题就这样起,有合适的名字再改。

    -----------------------------------------------------------------------------------------------------------

    1.  int QDialog::exec() [slot]

    帮助文档:

    int QDialog::exec () [slot]

      Shows the dialog as a modal dialog, blocking until the user closes it. The function returns a DialogCode result.

    If the dialog is application modal, users cannot interact with any other window in the same application until they close the dialog. If the dialog is window modal, only interaction with the parent window is blocked while the dialog is open. By default, the dialog is application modal.

    ==================================

    2. void QDialog::accepted ()  [signal]

    帮助文档

    void QDialog::accepted ()  [signal]

    This signal is emitted when the dialog has been accepted either by the user or by calling accept() or done() with the QDialog::Accepted argument.

    Note that this signal is not emitted when hiding the dialog with hide() or setVisible(false). This includes deleting the dialog while it is visible.

    This function was introduced in Qt 4.1.

    ===================================

  • 相关阅读:
    Hibernate配置文件详解
    Struts工作原理、流程
    java三大框架原理
    JAVA三大框架的各自作用
    tomcat的种种
    jdk及tomcat的配置
    java-io-file
    JAVA-IO-文件过滤
    SPSS-单因素方差分析(ANOVA) 案例解析(转)
    SPSS-比较均值-独立样本T检验 案例解析(转)
  • 原文地址:https://www.cnblogs.com/584709796-qq-com/p/4890480.html
Copyright © 2011-2022 走看看