Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Trying to use closeEvent on MainWindow if user press X
Forum Updated to NodeBB v4.3 + New Features

Trying to use closeEvent on MainWindow if user press X

Scheduled Pinned Locked Moved Unsolved General and Desktop
25 Posts 5 Posters 7.4k Views 1 Watching
  • 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.
  • D Offline
    D Offline
    DouglinhasZN
    wrote on last edited by
    #3

    Sorry, im rather new to everything. Should I add a QtWdigets to the class? I tried and it didnt work, returned an error:

    class Ui_Proofo(object, QtWidgets):
    
    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #4

      No, please take a look at the Using Designer of the PyQt documentation.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      D 1 Reply Last reply
      0
      • SGaistS SGaist

        No, please take a look at the Using Designer of the PyQt documentation.

        D Offline
        D Offline
        DouglinhasZN
        wrote on last edited by
        #5

        @SGaist
        I read it but im not sure i understand what you meant.
        The class I get? I've only got one, and thats the one I showed in my snipped.

        jsulmJ 1 Reply Last reply
        0
        • D DouglinhasZN

          @SGaist
          I read it but im not sure i understand what you meant.
          The class I get? I've only got one, and thats the one I showed in my snipped.

          jsulmJ Online
          jsulmJ Online
          jsulm
          Lifetime Qt Champion
          wrote on last edited by jsulm
          #6

          @DouglinhasZN It is shown in the link @SGaist posted:

          from PyQt5.QtWidgets import QDialog
          from ui_imagedialog import Ui_ImageDialog # Your UI class from designer
          
          class ImageDialog(QDialog): # This is your own class
              def __init__(self):
                  super(ImageDialog, self).__init__()
          
                  # Set up the user interface from Designer.
                  self.ui = Ui_ImageDialog() # Here you use the class from designer to create the UI
                  self.ui.setupUi(self)
          

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          1
          • D Offline
            D Offline
            DouglinhasZN
            wrote on last edited by
            #7

            @jsulm I see, but I don't understand just by looking at that code, do you mind explaining abit further?
            This is all I have on my code:

            import sys
            
            from PyQt5 import QtCore, QtGui, QtWidgets
            from PyQt5.QtWidgets import QMessageBox
            import urllib3
            from urllib.request import urlopen
            from bs4 import BeautifulSoup
            from urllib.parse import urlparse
            urllib3.disable_warnings()
            
            class Ui_Proofo(object):
                def setupUi(self, Proofo):
            

            Everything else are functions

            jsulmJ 1 Reply Last reply
            0
            • D DouglinhasZN

              @jsulm I see, but I don't understand just by looking at that code, do you mind explaining abit further?
              This is all I have on my code:

              import sys
              
              from PyQt5 import QtCore, QtGui, QtWidgets
              from PyQt5.QtWidgets import QMessageBox
              import urllib3
              from urllib.request import urlopen
              from bs4 import BeautifulSoup
              from urllib.parse import urlparse
              urllib3.disable_warnings()
              
              class Ui_Proofo(object):
                  def setupUi(self, Proofo):
              

              Everything else are functions

              jsulmJ Online
              jsulmJ Online
              jsulm
              Lifetime Qt Champion
              wrote on last edited by
              #8

              @DouglinhasZN said in Trying to use closeEvent on MainWindow if user press X:

              Ui_Proofo

              This is the UI class from designer. You can use it in your MainWindow class as shown before. What exactly is not clear?

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              0
              • D Offline
                D Offline
                DouglinhasZN
                wrote on last edited by
                #9

                I dont have a MainWindow class, unless that's Ui_Proofo.
                And if that's the case, it's already in there but it doesn't recognise it. I dont get an error or anything like that, it just doesnt do anything.

                jsulmJ 1 Reply Last reply
                0
                • D DouglinhasZN

                  I dont have a MainWindow class, unless that's Ui_Proofo.
                  And if that's the case, it's already in there but it doesn't recognise it. I dont get an error or anything like that, it just doesnt do anything.

                  jsulmJ Online
                  jsulmJ Online
                  jsulm
                  Lifetime Qt Champion
                  wrote on last edited by
                  #10

                  @DouglinhasZN Can you please show how you're using Ui_Proofo? One usually does not use generated Ui_ classes directly as all manual changes in there will be lost next time the code is generated.

                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply
                  0
                  • D Offline
                    D Offline
                    DouglinhasZN
                    wrote on last edited by
                    #11

                    How I am using it? Im guessing you'd like the snippets for my code?

                    import sys
                    
                    from PyQt5 import QtCore, QtGui, QtWidgets
                    from PyQt5.QtWidgets import QMessageBox
                    import urllib3
                    from urllib.request import urlopen
                    from bs4 import BeautifulSoup
                    from urllib.parse import urlparse
                    urllib3.disable_warnings()
                    
                    
                    class Ui_Proofo(object):
                        def setupUi(self, Proofo):
                        {Here is the UI, so all my labels, buttons, boxes etc.}
                        def retranslateUi(self, Proofo):
                    
                    if __name__ == "__main__":
                        import sys
                        app = QtWidgets.QApplication(sys.argv)
                        Proofo = QtWidgets.QMainWindow()
                        ui = Ui_Proofo()
                        ui.setupUi(Proofo)
                        Proofo.show()
                        sys.exit(app.exec_())
                    
                    jsulmJ 1 Reply Last reply
                    0
                    • D DouglinhasZN

                      How I am using it? Im guessing you'd like the snippets for my code?

                      import sys
                      
                      from PyQt5 import QtCore, QtGui, QtWidgets
                      from PyQt5.QtWidgets import QMessageBox
                      import urllib3
                      from urllib.request import urlopen
                      from bs4 import BeautifulSoup
                      from urllib.parse import urlparse
                      urllib3.disable_warnings()
                      
                      
                      class Ui_Proofo(object):
                          def setupUi(self, Proofo):
                          {Here is the UI, so all my labels, buttons, boxes etc.}
                          def retranslateUi(self, Proofo):
                      
                      if __name__ == "__main__":
                          import sys
                          app = QtWidgets.QApplication(sys.argv)
                          Proofo = QtWidgets.QMainWindow()
                          ui = Ui_Proofo()
                          ui.setupUi(Proofo)
                          Proofo.show()
                          sys.exit(app.exec_())
                      
                      jsulmJ Online
                      jsulmJ Online
                      jsulm
                      Lifetime Qt Champion
                      wrote on last edited by jsulm
                      #12

                      @DouglinhasZN You should do it like described in the link above: create another class (call it for example MainWindow) and load your Ui_Proofo there as UI and then implement the close event in MainWindow.

                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      0
                      • D Offline
                        D Offline
                        DouglinhasZN
                        wrote on last edited by DouglinhasZN
                        #13

                        Thank you @jsulm , I gave it a go:

                        from CVE_Design import Ui_Proofo
                        class MainWindow(QWidget):
                            def __init__(self):
                                super(MainWindow, self).__init__()
                                self.ui = Ui_Proofo() # Here you use the class from designer to create the UI
                                self.ui.setupUi(self)
                            def closeEvent(self, event):
                                        close = QMessageBox.question(self, "QUIT", "Are you sure want to stop process?", QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
                                        if close == QMessageBox.Yes:
                                            event.accept()
                                        else:
                                            event.ignore()
                        

                        However, nothing seems to happen. I apologise if I seem to be overcomplicating it, but I really am clueless now.

                        JonBJ 1 Reply Last reply
                        0
                        • D DouglinhasZN

                          Thank you @jsulm , I gave it a go:

                          from CVE_Design import Ui_Proofo
                          class MainWindow(QWidget):
                              def __init__(self):
                                  super(MainWindow, self).__init__()
                                  self.ui = Ui_Proofo() # Here you use the class from designer to create the UI
                                  self.ui.setupUi(self)
                              def closeEvent(self, event):
                                          close = QMessageBox.question(self, "QUIT", "Are you sure want to stop process?", QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
                                          if close == QMessageBox.Yes:
                                              event.accept()
                                          else:
                                              event.ignore()
                          

                          However, nothing seems to happen. I apologise if I seem to be overcomplicating it, but I really am clueless now.

                          JonBJ Offline
                          JonBJ Offline
                          JonB
                          wrote on last edited by
                          #14

                          @DouglinhasZN said in Trying to use closeEvent on MainWindow if user press X:

                          However, nothing seems to happen.

                          What does this mean? You get no UI appear when you run the program, MainWindow.__init__() is not called, , or you don't get the close message box when you try to close the widget? Do yourself a favor and at least put in a couple of print() statements so you know what is being executed.

                          1 Reply Last reply
                          2
                          • D Offline
                            D Offline
                            DouglinhasZN
                            wrote on last edited by
                            #15

                            @JonB I had some print statement, but they dont get printed. The code itself don't seem to run. When I close the application, nothing happens, it just closes as it normally would

                            JonBJ 1 Reply Last reply
                            0
                            • D DouglinhasZN

                              @JonB I had some print statement, but they dont get printed. The code itself don't seem to run. When I close the application, nothing happens, it just closes as it normally would

                              JonBJ Offline
                              JonBJ Offline
                              JonB
                              wrote on last edited by
                              #16

                              @DouglinhasZN
                              Nothing shown in your post above is going to run if you never create an instance of MainWindow. You only show that fragment of your code, not where you create it from, so who knows.

                              D 1 Reply Last reply
                              1
                              • D Offline
                                D Offline
                                DouglinhasZN
                                wrote on last edited by
                                #17

                                @JonB said in Trying to use closeEvent on MainWindow if user press X:

                                your post above is going to run if you never create an instance of MainWindow.

                                What do you mean where I create it from?
                                @JonB

                                1 Reply Last reply
                                0
                                • JonBJ JonB

                                  @DouglinhasZN
                                  Nothing shown in your post above is going to run if you never create an instance of MainWindow. You only show that fragment of your code, not where you create it from, so who knows.

                                  D Offline
                                  D Offline
                                  DouglinhasZN
                                  wrote on last edited by
                                  #18

                                  @JonB I see where you are coming from, you mean adding the following under: if name == "main":

                                  w = MainWindow()
                                  w.setupUi(MainWindow)
                                  

                                  ?
                                  I have tried that and indeed it does work, but it creates a new application. In that application it does everything I want it to, but its not my main one

                                  JonBJ Cobra91151C 2 Replies Last reply
                                  0
                                  • D DouglinhasZN

                                    @JonB I see where you are coming from, you mean adding the following under: if name == "main":

                                    w = MainWindow()
                                    w.setupUi(MainWindow)
                                    

                                    ?
                                    I have tried that and indeed it does work, but it creates a new application. In that application it does everything I want it to, but its not my main one

                                    JonBJ Offline
                                    JonBJ Offline
                                    JonB
                                    wrote on last edited by JonB
                                    #19

                                    @DouglinhasZN
                                    I'm sorry, I really don't understand. There is no "new application"! I suspect you mean a new, separate window, which is kind of what I was wondering....

                                    We have seen your latest class MainWindow(QWidget): definition. Can you now paste the whole of your code from

                                    if __name__ == "__main__":
                                    

                                    downward and then we might see what is going on. The trouble is we keep seeing snippets....

                                    D 1 Reply Last reply
                                    0
                                    • D DouglinhasZN

                                      @JonB I see where you are coming from, you mean adding the following under: if name == "main":

                                      w = MainWindow()
                                      w.setupUi(MainWindow)
                                      

                                      ?
                                      I have tried that and indeed it does work, but it creates a new application. In that application it does everything I want it to, but its not my main one

                                      Cobra91151C Offline
                                      Cobra91151C Offline
                                      Cobra91151
                                      wrote on last edited by Cobra91151
                                      #20

                                      @DouglinhasZN

                                      Hello!

                                      You can try my code, it should intercept the close event:

                                      class UI_MainWindow(QMainWindow):
                                          def __init__(self):
                                              super(UI_MainWindow, self).__init__()
                                              print("Initialization succeeded")
                                      
                                          def closeEvent(self, event):
                                              print("closeEvent has been called")
                                              userResult = QMessageBox.question(None, "Quit", "Do you want to close the program?", QMessageBox.Yes, QMessageBox.No)
                                      
                                              if userResult == QMessageBox.Yes:
                                                  event.accept()
                                              else:
                                                  event.ignore()
                                      
                                      1 Reply Last reply
                                      0
                                      • JonBJ JonB

                                        @DouglinhasZN
                                        I'm sorry, I really don't understand. There is no "new application"! I suspect you mean a new, separate window, which is kind of what I was wondering....

                                        We have seen your latest class MainWindow(QWidget): definition. Can you now paste the whole of your code from

                                        if __name__ == "__main__":
                                        

                                        downward and then we might see what is going on. The trouble is we keep seeing snippets....

                                        D Offline
                                        D Offline
                                        DouglinhasZN
                                        wrote on last edited by
                                        #21

                                        @JonB I see, I have posted the whole of my code up in the thread, but here it is:

                                        import sys
                                        
                                        from PyQt5 import QtCore, QtGui, QtWidgets
                                        from PyQt5.QtWidgets import QMessageBox
                                        import urllib3
                                        from urllib.request import urlopen
                                        from bs4 import BeautifulSoup
                                        from urllib.parse import urlparse
                                        urllib3.disable_warnings()
                                        
                                        
                                        class Ui_Proofo(object):
                                            def setupUi(self, Proofo):
                                            {Here is the UI, so all my labels, buttons, boxes etc.}
                                            def retranslateUi(self, Proofo):
                                        
                                        from CVE_Design import Ui_Proofo
                                        class MainWindow(QWidget):
                                            def __init__(self):
                                                super(MainWindow, self).__init__()
                                                self.ui = Ui_Proofo()
                                                self.ui.setupUi(self)
                                        
                                            def closeEvent(self, event):
                                                        close = QMessageBox.question(self, "QUIT", "Are you sure want to stop process?", QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
                                                        print("okay this is done 2")
                                                        if close == QMessageBox.Yes:
                                                            print("okay this is done 3")
                                                            event.accept()
                                                        else:
                                                            event.ignore()
                                        
                                        if __name__ == "__main__":
                                            import sys
                                            app = QtWidgets.QApplication(sys.argv)
                                            Proofo = QtWidgets.QMainWindow()
                                            ui = Ui_Proofo()
                                            ui.setupUi(Proofo)
                                            Proofo.show()
                                            sys.exit(app.exec_())
                                        
                                        Cobra91151C JonBJ 2 Replies Last reply
                                        0
                                        • D DouglinhasZN

                                          @JonB I see, I have posted the whole of my code up in the thread, but here it is:

                                          import sys
                                          
                                          from PyQt5 import QtCore, QtGui, QtWidgets
                                          from PyQt5.QtWidgets import QMessageBox
                                          import urllib3
                                          from urllib.request import urlopen
                                          from bs4 import BeautifulSoup
                                          from urllib.parse import urlparse
                                          urllib3.disable_warnings()
                                          
                                          
                                          class Ui_Proofo(object):
                                              def setupUi(self, Proofo):
                                              {Here is the UI, so all my labels, buttons, boxes etc.}
                                              def retranslateUi(self, Proofo):
                                          
                                          from CVE_Design import Ui_Proofo
                                          class MainWindow(QWidget):
                                              def __init__(self):
                                                  super(MainWindow, self).__init__()
                                                  self.ui = Ui_Proofo()
                                                  self.ui.setupUi(self)
                                          
                                              def closeEvent(self, event):
                                                          close = QMessageBox.question(self, "QUIT", "Are you sure want to stop process?", QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
                                                          print("okay this is done 2")
                                                          if close == QMessageBox.Yes:
                                                              print("okay this is done 3")
                                                              event.accept()
                                                          else:
                                                              event.ignore()
                                          
                                          if __name__ == "__main__":
                                              import sys
                                              app = QtWidgets.QApplication(sys.argv)
                                              Proofo = QtWidgets.QMainWindow()
                                              ui = Ui_Proofo()
                                              ui.setupUi(Proofo)
                                              Proofo.show()
                                              sys.exit(app.exec_())
                                          
                                          Cobra91151C Offline
                                          Cobra91151C Offline
                                          Cobra91151
                                          wrote on last edited by
                                          #22

                                          @DouglinhasZN

                                          So, what happens when you press X on the MainWindow?

                                          D 1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved