在GIMP中,他们用于画笔大小的旋转盒允许
它们还提供了一个可以拖动的条形图,它可以很好地指示旋转框可以采用的范围。
pygtk有可能吗?
答案 0 :(得分:0)
您可能想要使用Gtk.SpimButton和Gtk.Scale:
https://developer.gnome.org/gtk3/stable/GtkSpinButton.html https://developer.gnome.org/gtk3/stable/GtkScale.html
这些是GTK + 3版本,但您也可以在GTK + 2中找到它们,但我强烈建议不要使用PyGTK2,因为它不再维护,请使用内省绑定代替PyGobject:
https://wiki.gnome.org/action/show/Projects/PyGObject
您还有一个教程: https://python-gtk-3-tutorial.readthedocs.org/en/latest/index.html
和API参考: http://lazka.github.io/pgi-docs/
http://lazka.github.io/pgi-docs/api/Gtk_3.0/classes/SpinButton.html http://lazka.github.io/pgi-docs/api/Gtk_3.0/classes/Scale.html