Skip to content

Chinese

A forum for those speaking Chinese
698 Topics 1.7k Posts
  • 欢迎大家来到Qt中文论坛

    Pinned
    86
    1 Votes
    86 Posts
    150k Views
    N

    坐标上海,外企。 小伙伴有找工作的么。

    精通C/C++编程,熟悉C++11/14/17新特性 熟悉Qt开发框架(QGraphicsView、QWidget、QML),了解Qt内部机制优先,如信号槽机制、事件机制、Moc,具备GUI应用独立开发经验 年以上Windows客户端开发经验,熟悉Windows窗口特性、消息循环机制、多线程、网络编程
    熟练运用系统级的调试工具来发现和定位问题(如IDA/WinDbg/xperf) 至少参与一款已发布Windows客户端应用的研发,有Webview/Web开发经验更佳
  • in qt3D can not use custom QMaterial on QEntity, why?

    Unsolved
    4
    0 Votes
    4 Posts
    40 Views
    JoeCFDJ

    @JoeCFD Try the following

    Qt3DCore::QEntity* createTorusWithGradient(Qt3DCore::QEntity* rootEntity) { Qt3DCore::QEntity* torusEntity = new Qt3DCore::QEntity(rootEntity); // Torus mesh Qt3DExtras::QTorusMesh* torusMesh = new Qt3DExtras::QTorusMesh(torusEntity); torusMesh->setRadius(5.0f); torusMesh->setMinorRadius(1.0f); torusMesh->setRings(100); torusMesh->setSlices(20); torusEntity->addComponent(torusMesh); // Transform Qt3DCore::QTransform* transform = new Qt3DCore::QTransform(torusEntity); transform->setScale3D(QVector3D(1.5f, 1.5f, 1.5f)); // Fixed typo transform->setRotation(QQuaternion::fromAxisAndAngle(QVector3D(1, 0, 0), 60.0f)); torusEntity->addComponent(transform); // Custom material setup Qt3DRender::QMaterial* material = new Qt3DRender::QMaterial(torusEntity); // Effect, technique, render pass, and shader Qt3DRender::QEffect* effect = new Qt3DRender::QEffect(); Qt3DRender::QTechnique* gl3Technique = new Qt3DRender::QTechnique(); Qt3DRender::QRenderPass* gl3Pass = new Qt3DRender::QRenderPass(); Qt3DRender::QShaderProgram* glShader = new Qt3DRender::QShaderProgram(); // Simple vertex shader const QByteArray vertexShaderCode = R"( #version 330 core in vec3 vertexPosition; in vec3 vertexNormal; uniform mat4 modelViewProjection; out vec3 fragPosition; void main() { fragPosition = vertexPosition; gl_Position = modelViewProjection * vec4(vertexPosition, 1.0); } )"; // Simple fragment shader with color parameter const QByteArray fragmentShaderCode = R"( #version 330 core in vec3 fragPosition; out vec4 fragColor; uniform vec4 color; void main() { fragColor = color; // Use the color parameter directly } )"; // Set shader code glShader->setVertexShaderCode(vertexShaderCode); glShader->setFragmentShaderCode(fragmentShaderCode); // Connect shader program to render pass gl3Pass->setShaderProgram(glShader); gl3Technique->addRenderPass(gl3Pass); // Set OpenGL 3.3 Core profile gl3Technique->graphicsApiFilter()->setApi(Qt3DRender::QGraphicsApiFilter::OpenGL); gl3Technique->graphicsApiFilter()->setMajorVersion(3); gl3Technique->graphicsApiFilter()->setMinorVersion(3); gl3Technique->graphicsApiFilter()->setProfile(Qt3DRender::QGraphicsApiFilter::CoreProfile); // Add technique to effect effect->addTechnique(gl3Technique); material->setEffect(effect); // Add a color parameter material->addParameter(new Qt3DRender::QParameter("color", QColor::fromRgbF(0.0f, 1.0f, 0.0f, 1.0f))); // Add material to entity torusEntity->addComponent(material); // Debug shader compilation errors QObject::connect(glShader, &Qt3DRender::QShaderProgram::statusChanged, [=](Qt3DRender::QShaderProgram::Status status) { if (status == Qt3DRender::QShaderProgram::Error) { qDebug() << "Shader Error:" << glShader->log(); } }); return torusEntity; }
  • 0 Votes
    2 Posts
    21 Views
    Christian EhrlicherC

    Please write in english or use the appropriate subforum. Moved to Chinese subforum

  • QT打包

    Unsolved
    1
    0 Votes
    1 Posts
    34 Views
    No one has replied
  • Qt应用程序打包

    Moved Unsolved
    2
    0 Votes
    2 Posts
    50 Views
    Christian EhrlicherC

    Please write in english or us the appropriate subforum: https://forum.qt.io/category/37/chinese

  • 0 Votes
    1 Posts
    47 Views
    No one has replied
  • 刚刚接触QT,菜单直接打开链接都某个文件

    Unsolved
    3
    0 Votes
    3 Posts
    147 Views
    Grit ClefG

    您试试在相应的action里头打开文件?
    比如

    QAction *openLocalFileAction = new QAction("打开视频1", this); connect(openLocalFileAction, &QAction::triggered, this, &Player::openLocalFile);

    然后在槽中写入类似于

    #include <QtMultimedia> #include <QtMultimediaWidgets> ... QMediaPlayer *player = new QMediaPlayer; player->setMedia(QMediaContent(QUrl("1.mp4"))); QVideoWidget *videoWidget = new QVideoWidget; player->setVideoOutput(videoWidget); videoWidget->show(); player->play();
  • 0 Votes
    3 Posts
    86 Views
    S

    Ok ,thanks

  • 0 Votes
    7 Posts
    326 Views
    A

    @joyforward 不用看了,大概国内镜像源出问题,或者qt的某个验证网站出问题了。等周一有人排查吧。

  • Qt 资源文件与QML 的问题

    Moved Unsolved
    3
    0 Votes
    3 Posts
    234 Views
    D

    不是可以不用qrc添加qml文件吗, 在CMakeLists.txt里编辑添加或者DiskTool添加现有文件

  • This topic is deleted!

    Solved
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • The default order of compile multiple sub-projects

    Unsolved
    2
    0 Votes
    2 Posts
    87 Views
    jsulmJ

    @Three-Body You posted in English in Chinese forum. Please use correct forum.

    I think if you do not define dependencies between the projects the order will be undefined and on multi-core and/or multi-cpu machines they will be built in unspecified and probably non-reproducible order.

  • 有人弄PySide6打包安卓APP么,可以一起交流

    Unsolved
    1
    0 Votes
    1 Posts
    79 Views
    No one has replied
  • qml代码缩进问题

    Unsolved
    1
    0 Votes
    1 Posts
    65 Views
    No one has replied
  • qt中国区代理的联系方式?

    Unsolved
    2
    0 Votes
    2 Posts
    257 Views
    J

    @Tunghohin 找到了吗?官网电话都打不通。

  • 请求WASM开发,怎么配置编译出多线程?

    Unsolved
    1
    0 Votes
    1 Posts
    52 Views
    No one has replied
  • 银河麒麟v10安装mysql不成功

    Unsolved
    1
    0 Votes
    1 Posts
    94 Views
    No one has replied
  • 0 Votes
    5 Posts
    830 Views
    xanaduX

    如果你想要实现相当窗口缩放的功能,你需要在resizeEvent时获取用户按下的位置(上下左右和四个角)然后保持原始比例来同步调整宽和高。这样可以保证用户无论在哪里调整大小,原始比例都不会变。
    同时,你需要按原始与现在的比例调整控件的字号。控件的大小可以按百分比自动调整。

  • 关于QPlugin的一点小问题。

    Unsolved
    1
    0 Votes
    1 Posts
    93 Views
    No one has replied
  • 0 Votes
    2 Posts
    299 Views
    R

    13天了,连个模棱两可的敷衍都没有,真是挺高傲的.