메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
GTK4를 사용한 pyplot #
pyplot을 사용하여 Figure 창을 관리하지만 기본 GTK 위젯에 액세스하여 GUI를 수정하는 방법의 예입니다.
import matplotlib
matplotlib.use('GTK4Agg') # or 'GTK4Cairo'
import matplotlib.pyplot as plt
import gi
gi.require_version('Gtk', '4.0')
from gi.repository import Gtk
fig, ax = plt.subplots()
ax.plot([1, 2, 3], 'ro-', label='easy as 1 2 3')
ax.plot([1, 4, 9], 'gs--', label='easy as 1 2 3 squared')
ax.legend()
manager = fig.canvas.manager
# you can access the window or vbox attributes this way
toolbar = manager.toolbar
vbox = manager.vbox
# now let's add a button to the toolbar
button = Gtk.Button(label='Click me')
button.connect('clicked', lambda button: print('hi mom'))
button.set_tooltip_text('Click me for fun and profit')
toolbar.append(button)
# now let's add a widget to the vbox
label = Gtk.Label()
label.set_markup('Drag mouse over axes for position')
vbox.insert_child_after(label, fig.canvas)
def update(event):
if event.xdata is None:
label.set_markup('Drag mouse over axes for position')
else:
label.set_markup(
f'<span color="#ef0000">x,y=({event.xdata}, {event.ydata})</span>')
fig.canvas.mpl_connect('motion_notify_event', update)
plt.show()