猿问

如何使用 Python 和 Glade 在 GTK3 中刷新 matplotlib 图表

我已经使用 GTK3、Python 和 Glade 将两个 matplotlib 图插入到一个容器中。他们使用来自第三方 API 的数据绘制区域的天气。我希望在我输入新的语言环境并按下刷新按钮时更新图表。


下面的每个解决方案都以不同的问题结束。太多了无法一一描述。通常,他们设法用新图表显示主窗口的另一个实例,但带有旧图表的旧实例保持打开状态。我试过了:


销毁父容器,然后重新加载更新的容器。以下代码产生分段错误。代码尝试将对象从构建器的新实例传递给旧实例。我相信这是我的主要问题。我不知道如何将我正在使用的构建器的实例传递到其中,on_refresh_button_click()而不必将所有内容都重写到一个类中。


def on_refresh_button_click(self, widget):


    parent = self.get_parent()

    grandparent = parent.get_parent()

    parent.destroy()


    city_name = "yerevan"

    db = "test.db"


    get_updated_data(city_name)


    builder = builder_with_signals()

    read_weather_from_db(db, builder, city_name)

    grandparent.add(parent)


    parent.show_all()

使用self.get_parent()获取按钮的父容器为对象上下工夫。这几乎奏效了,我想。我可以remove()和destroy()包含图形的容器。我想我也成功添加了更新的。但我无法让它显示出来。编码:


def on_refresh_button_click(self, widget):


    parent = self.get_parent()


    city_name = "yerevan"

    db = "test.db"


    get_updated_data(city_name)

    fig_list = read_weather_from_db(db, city_name)


    for child in parent:

        try:

            for grandchild in child:

                if Gtk.Buildable.get_name(grandchild) == "chart_past":

                    parent = child # Confusing, yes.

                    old = grandchild

                    new = FigureCanvas(fig_list[0])


                    props = {}

                    for key in parent.list_child_properties():

                        props[key.name] = parent.child_get_property(old, key.name)


                    parent.remove(old)

                    parent.add(new)


                    for name, value in props.items():

                        parent.child_set_property(new, name, value)


                    parent.show_all()

                    child.show_all()

                    grandchild.show_all()


                    # Try to find the newly added object

                    for item in parent:

                        print("trying to find another:", Gtk.Buildable.get_name(item))

    except:

        print(Gtk.Buildable.get_name(child))


MMTTMM
浏览 311回答 3
3回答

繁花如伊

我不确定我可以给你一个适用于你现有代码的例子,但我是这样做的:Figure = Nonedef invoice_chart_clicked (self, button):        global Figure        if Figure == None:            from matplotlib.figure import Figure            from matplotlib.backends.backend_gtk3agg import FigureCanvasGTK3Agg as FigureCanvas            from matplotlib.pyplot import pie            self.figure = Figure(figsize=(4, 4), dpi=100)            canvas = FigureCanvas(self.figure)  # a Gtk.DrawingArea            canvas.set_size_request(800, 500)            overlay = self.builder.get_object('overlay1')            overlay.add (canvas)        a = self.figure.add_subplot(111)        labels = list()        fractions = list()        unpaid = 0        self.cursor.execute("SELECT SUM(amount_due), c.name FROM invoices "                            "JOIN contacts AS c ON c.id = invoices.customer_id "                            "WHERE (canceled, paid, posted) = "                            "(False, False, True) GROUP BY customer_id, c.name "                            "ORDER BY SUM(amount_due)")        for row in self.cursor.fetchall():            customer_total = row[0]            customer_name = row[1]            fractions.append(customer_total)            labels.append(customer_name)            unpaid += 1        if unpaid == 0:            labels.append("None")            fractions.append(1.00)        a.pie(fractions, labels=labels, autopct='%1.f%%', radius=0.7)        window = self.builder.get_object('window1')        window.show_all()每次我重新加载这个函数时,绘图都会重新生成。您可以在此处找到完整代码。我从来没有运行过任何测试来查看所有内存是否都被正确释放等等。也许它可以从那里开始。
随时随地看视频慕课网APP

相关分类

Python
我要回答