Python Forum
[PyQt] command require close window
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[PyQt] command require close window
#3
(Nov-18-2022, 06:56 PM)deanhystad Wrote: In a post about a button command that closes a window I would expect to see code that creates a button and binds it to a command that closes the window.

Sorry, this is my button command:
show_map = Button(root, text='SHOW', font=("", 10), command=Map, width="10")
show_map.grid(row=0, column=5, padx=5, pady=0)
And this is def:
   class MyApp(QWidget):
        def __init__(self):
            super().__init__()
            self.setWindowTitle('Map')
            self.window_width, self.window_height = 1366, 768
            self.setMinimumSize(self.window_width, self.window_height)
            layout = QVBoxLayout()
            self.setLayout(layout)
            coordinate = (latitude, longitude)

            m = folium.Map(
                tiles='Stamen Terrain',
                zoom_start=6,
                location=coordinate
            )
            folium.Marker(location=[latitude, longitude]).add_to(m)

            # save map data to data object
            data = io.BytesIO()
            m.save(data, close_file=False)

            webView = QWebEngineView()
            webView.setHtml(data.getvalue().decode())
            layout.addWidget(webView)

    if __name__ == '__main__':
        app = QApplication(sys.argv)
        app.setStyleSheet('''
            QWidget {
                font-size: 35px;
            }
        ''')

        myApp = MyApp()
        myApp.show()

    try:
        sys.exit(app.exec_())
    except SystemExit:
        print('Closing Window...')
Problem is after i press the button and plot the result on map, the command it not stop execute...
Reply


Messages In This Thread
command require close window - by Krissstian - Nov-18-2022, 06:49 PM
RE: command require close window - by deanhystad - Nov-18-2022, 06:56 PM
RE: command require close window - by Krissstian - Nov-18-2022, 07:29 PM
RE: command require close window - by deanhystad - Nov-18-2022, 07:47 PM
RE: command require close window - by Krissstian - Nov-18-2022, 08:04 PM
RE: command require close window - by deanhystad - Nov-18-2022, 08:48 PM
RE: command require close window - by Krissstian - Nov-18-2022, 09:03 PM
RE: command require close window - by Axel_Erfurt - Nov-18-2022, 09:34 PM
RE: command require close window - by deanhystad - Nov-18-2022, 09:48 PM
RE: command require close window - by Krissstian - Nov-19-2022, 06:08 AM
RE: command require close window - by Yoriz - Nov-18-2022, 11:19 PM
RE: command require close window - by Krissstian - Nov-19-2022, 06:23 AM
RE: command require close window - by Axel_Erfurt - Nov-19-2022, 10:46 AM
RE: command require close window - by Krissstian - Nov-19-2022, 02:34 PM
RE: command require close window - by Krissstian - Nov-19-2022, 04:18 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Interaction between Matplotlib window, Python prompt and TKinter window NorbertMoussy 3 612 Mar-17-2024, 09:37 AM
Last Post: deanhystad
  tkinter window and turtle window error 1885 3 6,795 Nov-02-2019, 12:18 PM
Last Post: 1885
  Require scroll bars horizontal and vertical throughout the window tejgandhi 2 2,740 Jun-28-2019, 03:13 AM
Last Post: tejgandhi
  Launch pdf and close on delete window event ashtona 6 5,736 Mar-22-2018, 03:04 PM
Last Post: ashtona
  update a variable in parent window after closing its toplevel window gray 5 9,176 Mar-20-2017, 10:35 PM
Last Post: Larz60+
  [Tkinter] I have a Toplevel button in tkinker that I want to close the window and then perform Bloodypizza17 2 7,843 Jan-06-2017, 07:18 PM
Last Post: Bloodypizza17
  Hide command window sparkz_alot 8 20,951 Sep-29-2016, 10:14 AM
Last Post: wavic

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020