Search found 6 matches

by Valzul
Tue Sep 24, 2024 5:40 am
Forum: Developer's Forum for Windows
Topic: C++ - Custom application commands
Replies: 8
Views: 24018

Re: C++ - Custom application commands

It works !

Thanks for the help ngomes and my regards to the team :D
by Valzul
Tue Sep 24, 2024 2:41 am
Forum: Developer's Forum for Windows
Topic: C++ - Custom application commands
Replies: 8
Views: 24018

Re: C++ - Custom application commands

Here is the current code, I tried category names without spaces : CCommandSet commandSet("Default", "Modeling"); CCategory view_cat("Vues", "Vues"); CCategory macro_cat("Macro", "Macro"); commandSet.push_back(std::move(view_cat)); commandSe...
by Valzul
Mon Sep 23, 2024 6:11 am
Forum: Developer's Forum for Windows
Topic: C++ - Custom application commands
Replies: 8
Views: 24018

Re: C++ - Custom application commands

I didn't see the same issue on the navlib_viewer . I deleted the configuration files that were located in %APPDATA%\3Dconnexion\3DxWare\Cfg and now it looks like I've got it working ( while testing the navlib example, I modified the profile name to be the same as my own C++ application, which I corr...
by Valzul
Mon Sep 23, 2024 2:42 am
Forum: Developer's Forum for Windows
Topic: C++ - Custom application commands
Replies: 8
Views: 24018

C++ - Custom application commands

Hello, Is anyone having trouble to create custom application commands for the button click ? It seems I can get it to work sometimes after rebuilding my application, but sometimes nothing happens. I can't get it to consistently populate the menu ( there should be a menu with the profile name set to ...
by Valzul
Tue Sep 17, 2024 8:25 am
Forum: Developer's Forum for Windows
Topic: Getting the zoom component - C++ / OpenCascade
Replies: 3
Views: 17719

Re: Getting the zoom component - C++ / OpenCascade

Thanks for the help ngomes, I got more events to work with your help. But I think I definitely don't understand how to make the whole thing work, because I don't have much knowledge in camera/world projection matrices. The available matrix available to me to get/set by default which I know of in Ope...
by Valzul
Fri Sep 06, 2024 12:35 am
Forum: Developer's Forum for Windows
Topic: Getting the zoom component - C++ / OpenCascade
Replies: 3
Views: 17719

Getting the zoom component - C++ / OpenCascade

Hello, I've been trying to use the SDK with a Qt/QML application that uses OpenCascade as a viewer. Using the example you provided ( navlib_viewer ), I managed to get the getters/setters functions to work properly it seems and my view's camera is getting what seems to me to be the good direction, up...