Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mouse event has No Action in QOpenGLWindow #1914

Open
zhiyong-han opened this issue Jan 14, 2025 · 5 comments
Open

mouse event has No Action in QOpenGLWindow #1914

zhiyong-han opened this issue Jan 14, 2025 · 5 comments

Comments

@zhiyong-han
Copy link

zhiyong-han commented Jan 14, 2025

class F3DWindow : public QOpenGLWindow
{
public:
  F3DWindow(std::string filePath, std::string baselinePath, std::string outputPath)
    : QOpenGLWindow()
    , mFilePath(std::move(filePath))
    , mBaselinePath(std::move(baselinePath))
    , mOutputPath(std::move(outputPath))
  {
  }

  // nothing
  void wheelEvent(QWheelEvent* event) override
  {
    printf("wheelEvent\n");
    constexpr double scale = 10.0 / 120.0;
    mEngine->getWindow().getCamera().dolly(scale);
    mEngine->getWindow().render();
  }
}
@mwestphal
Copy link
Member

Hi @zhiyong-han

What is the issue here ?

@zhiyong-han
Copy link
Author

zhiyong-han commented Jan 14, 2025 via email

@mwestphal
Copy link
Member

Please come to our discord for usage questions: https://discord.f3d.app

You can find an example Qt usage here:

https://github.com/f3d-app/f3d/blob/master/library/testing/TestSDKExternalWindowQT.cxx

@zhiyong-han
Copy link
Author

Please come to our discord for usage questions: https://discord.f3d.app

You can find an example Qt usage here:

https://github.com/f3d-app/f3d/blob/master/library/testing/TestSDKExternalWindowQT.cxx
image

In the example, sence can display model, but mouse event have no action ,such as zoom, rotate, pan

@mwestphal
Copy link
Member

We do plan to improve our framework example in the future, lets keep this open.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Investigate
Development

No branches or pull requests

2 participants