Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Main window focus problem

    General and Desktop
    3
    3
    3033
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • K
      Ketan Shah last edited by

      I am opening an another window from my main window..
      What I want is, when the new window is opened, my main window should be disabled(deactivate).
      and the main window should be enabled only if the new window is closed.
      how can i do this..

      Thanks in advance..

      1 Reply Last reply Reply Quote 0
      • H
        HuXiKa last edited by

        Make your window / dialog "modal":http://doc.qt.nokia.com/4.7/qdialog.html#modal-dialogs .

        If you can find faults of spelling in the text above, you can keep them.

        1 Reply Last reply Reply Quote 0
        • C
          Chuck Gao last edited by

          If your opened window is a QDialog based widget, you can make it by
          @setModal(true)@
          For QWidget based widget, try
          @setWindowModality ( Qt::WindowModality windowModality )@

          And these 2 are all using/in the event loop

          Chuck

          1 Reply Last reply Reply Quote 0
          • First post
            Last post