tkinter中的非顶级opengl小部件

时间:2013-06-28 14:29:16

标签: python opengl tkinter

我有一个现有的tkinter gui,我想添加一个openGL小部件。但是,看起来OpenGL小部件只有在顶层时才有效。

这有效:

from OpenGL.Tk import *
from Tkinter import *
herp=Opengl(height=100,width=100)
herp.pack()
herp.mainloop()

但这不是:

from OpenGL.Tk import *
root=Tk()
b=Opengl(root,height=100,width=100)
b.pack()
root.mainloop()

给我以下错误:

Traceback (most recent call last):
  File "\\sith\user_files\2013-Softerns\new_gui_planning\LearningOpenGL\integration_3.py", line 4, in <module>
    b=Opengl(root,height=100,width=100)
  File "C:\Python27_32bit\lib\site-packages\OpenGL\Tk\__init__.py", line 267, in __init__
    apply(RawOpengl.__init__, (self, master, cnf), kw)
  File "C:\Python27_32bit\lib\site-packages\OpenGL\Tk\__init__.py", line 216, in __init__
    Widget.__init__(self, master, 'togl', cnf, kw)
  File "C:\Python27_32bit\lib\lib-tk\Tkinter.py", line 2036, in __init__
    (widgetName, self._w) + extra + self._options(cnf))
TclError: invalid command name "togl"

我需要导入togl吗?

我能找到的另一件事就是:

http://computer-programming-forum.com/56-python/ece79da9298c54de.htm

但他们的解决方案对我不起作用。

1 个答案:

答案 0 :(得分:4)

看起来togl的PyOpengl包装器正在使用默认的根窗口。

您应该能够通过master属性获取对它的引用 您的Opengl小部件。

from Tkinter import *
from OpenGL.Tk import *

b=Opengl(height=100,width=100)
root = b.master
f = Frame(root, width=100, bg='blue')
f.pack(side='left', fill='y')
b.pack(side='right', expand=1, fill='both')

root.mainloop()