Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. qinputdialog
    Log in to post

    • SOLVED setCancelButtonText not working
      General and Desktop • qinputdialog • • Oreonan  

      5
      0
      Votes
      5
      Posts
      139
      Views

      Thanks, it's exactly that I wanted. Problem is solve.
    • UNSOLVED Use a QDialog box in Win32 Application
      General and Desktop • win32 qinputdialog console app • • falcon010216  

      4
      0
      Votes
      4
      Posts
      652
      Views

      @newbieQTDev said in Use a QDialog box in Win32 Application: This is the version of my QT. No this is the Qt version which was used to build QtCreator (which is a Qt app). You're using Qt 5.6.0
    • SOLVED QInputDialog with fixed size
      General and Desktop • qdialog size qinputdialog • • YokeM  

      4
      0
      Votes
      4
      Posts
      4707
      Views

      @SGaist Ahh thank you. Totally overlooked that while implementing.
    • UNSOLVED adding timer to QInputDialog
      General and Desktop • widget timer qinputdialog • • Eyal Erez  

      4
      0
      Votes
      4
      Posts
      1141
      Views

      I think that your question is not specifique enough What you can do is to derive from QWidget (creating a new class) In this class compose a QTimer object: http://doc.qt.io/qt-5/qtimer.html Then your widget is a empty box that have the functionality of a QTimer.... If you required that the QWidget has only one shot per click (guessing), you would like to use the static function SingleShot http://doc.qt.io/qt-5/qtimer.html#singleShot Kind Regards, Carlos
    • Using QInputDialog with a checkbox
      General and Desktop • c++ gui qinputdialog • • Onikouzou  

      3
      0
      Votes
      3
      Posts
      3067
      Views

      @Onikouzou What is this checkbox used for? If you only want to use a combobox then do: QInputDialog showSounds; QStringList soundList; soundList << "Sound 1" << "Sound 2"; showSounds.setOptions(QInputDialog::UseListViewForComboBoxItems); // Remove this if you want a combobox instead of a list showSounds.setComboBoxItems(soundList); showSounds.setWindowTitle("Select sounds"); showSounds.exec();
    • UNSOLVED CheckBox to QInputDialog..?
      General and Desktop • dialog checkbox qinputdialog • • Rohith  

      2
      0
      Votes
      2
      Posts
      1140
      Views

      @Rohith no it's not. You would have to implement your custom QDialog subclass. Which shouldn't be much of an effort.