boost.python和qt

1 投票
1 回答
1938 浏览
提问于 2025-04-16 21:31

我写了一个库,里面有一些类,这些类使用了Qt的一些对象,比如QVector、QColor等,但并没有从这些对象继承。现在我想把这些对象(部分)提供给Python使用。我最开始尝试使用SIP,但文档实在太差,我连示例都无法编译。现在我在尝试使用boost.python,这对标准的C++类来说效果不错。

不过,一旦我开始加入Qt的内容,虽然编译没有问题,但在导入到Python时就失败了。这里有一个最小的示例:

testclass.h

#include <QDebug>
#include <QVector>
#include <QColor>

class testclass
{
public:
    testclass();
    const char* output();
    QVector<double> & data();
    static int x(){return 1;}
    QColor * c();

private:
    QVector<double> v;
};
struct stat;

testclass.cpp

#include "testclass.h"

testclass::testclass()
{

}

const char* testclass::output()
{
    qDebug() << "string";
    return "hello";
}

QVector< double >& testclass::data()
{
    return v;
}

QColor* testclass::c()
{
    return new QColor();
}

testclassBoost.cpp

#include "testclass.h"
#include <boost/python.hpp>

using namespace boost::python;

BOOST_PYTHON_MODULE(libtestclass)
{
    // Create the Python type object for our extension class and define __init__ function.
    class_<testclass>("testclass", init<>())
    .def("output", &testclass::output)  // Add a regular member function.
    ;
}

CMakeList.txt

project(boostpythontest)
cmake_minimum_required(VERSION 2.8)
find_package(Qt4 REQUIRED)

FIND_PACKAGE(Boost 1.45.0)
IF(Boost_FOUND)
  SET(Boost_USE_STATIC_LIBS OFF)
  SET(Boost_USE_MULTITHREADED ON)
  SET(Boost_USE_STATIC_RUNTIME OFF)
  FIND_PACKAGE(Boost 1.45.0 COMPONENTS python)
ELSEIF(NOT Boost_FOUND)
  MESSAGE(FATAL_ERROR "Unable to find correct Boost version. Did you set BOOST_ROOT?")
ENDIF()

include_directories(${QT_INCLUDES} ${CMAKE_CURRENT_BINARY_DIR} ${Boost_INCLUDE_DIRS} "/usr/include/python2.7")


set(SRCS
  testclass.cpp
  testclassBoost.cpp
)

add_library(testclass SHARED ${SRCS})

target_link_libraries(testclass ${Boost_LIBRARIES} ${QT_QTCORE_LIBRARY})

现在尝试导入生成的库时出现了以下错误:

Python 2.7.2 (default, Jun 27 2011, 14:59:25) 
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import libtestclass
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: ./libtestclass.so: undefined symbol: _ZN6QColor10invalidateEv

有趣的是,有些Qt类没有问题。没有函数c()时,它工作得很好(QVector没有问题)。我该怎么做才能让它正常工作?我并不打算在Python中使用任何与Qt相关的函数,但我希望在库的C++部分使用Qt。

1 个回答

2

你需要使用QtGui库来获取QColor,而不仅仅是QtCore库。

撰写回答