在PyQT和Boost.Python之间共享小部件

时间:2009-09-17 02:59:18

标签: python qt pyqt boost-python python-sip

我想知道是否有可能在PyQt和Boost.Python之间共享小部件。

我将把Python解释器嵌入到使用Qt的我的应用程序中。我希望我的应用程序的用户能够将自己的UI小部件嵌入到用C ++编写的UI小部件中,并通过Boost.Python公开。

这可能吗?如何做到这一点?

1 个答案:

答案 0 :(得分:2)

我试图为此编写一些代理,但我没有完全成功。这是一个试图解决这个问题的开始,但是dir()将不起作用。调用函数可以直接使用。

这个想法是创建一个包含在SIP中的附加python对象,如果原始的boost.python对象没有任何匹配的属性,则将任何调用/属性转发给该对象。

但是,我还不足以让Python工作正常。 :(

(我把它变成了wiki,所以ppl可以在这里编辑和更新,因为这段代码只是半生不熟的样板。)

C ++:

#include "stdafx.h"    
#include <QtCore/QTimer>

class MyWidget : public QTimer
{
public:
    MyWidget() {}
    void foo() { std::cout << "yar\n"; }
    unsigned long myself() { return reinterpret_cast<unsigned long>(this); }
};

#ifdef _DEBUG
BOOST_PYTHON_MODULE(PyQtBoostPythonD)
#else
BOOST_PYTHON_MODULE(PyQtBoostPython)
#endif
{
    using namespace boost::python;

    class_<MyWidget, bases<>, MyWidget*, boost::noncopyable>("MyWidget").
        def("foo", &MyWidget::foo).
        def("myself", &MyWidget::myself);
} 

的Python:

from PyQt4.Qt import *
import sys

import sip
from PyQtBoostPythonD import * # the module compiled from cpp file above

a = QApplication(sys.argv)
w = QWidget()
f = MyWidget()

def _q_getattr(self, attr):
  if type(self) == type(type(MyWidget)):
    raise AttributeError
  else:
    print "get %s" % attr
    value = getattr(sip.wrapinstance(self.myself(), QObject), attr)
    print "get2 %s returned %s" % (attr, value)
    return value

MyWidget.__getattr__ = _q_getattr

def _q_dir(self):
  r = self.__dict__
  r.update(self.__class__.__dict__)
  wrap = sip.wrapinstance(self.myself(), QObject)
  r.update(wrap.__dict__)
  r.update(wrap.__class__.__dict__)
  return r

MyWidget.__dir__ = _q_dir

f.start()
f.foo()
print dir(f)