Linuxcnc IDE
- udoS
- Offline
- Elite Member
Less
More
- Posts: 216
- Thank you received: 25
07 Apr 2022 17:47 - 08 Apr 2022 06:49 #239564
by udoS
Replied by udoS on topic Linuxcnc IDE
@Reinhard
Little help ?
for (int i = 0; i < NumGridRows; ++i)
{
>
>
m_buttonsName = ( "btn_" + QString::number(i) + "_toggled"); //btn_x_toggled
m_buttons->setObjectName(m_buttonsName);
m_buttons->setCheckable(true);
m_buttons->setChecked(false);
QObject::connect(m_buttons,SIGNAL(pressed()),this,SLOT(??????????()) );
>
>
>
How do I get that argument in ?
??? udoS
Little help ?
for (int i = 0; i < NumGridRows; ++i)
{
>
>
m_buttonsName = ( "btn_" + QString::number(i) + "_toggled"); //btn_x_toggled
m_buttons->setObjectName(m_buttonsName);
m_buttons->setCheckable(true);
m_buttons->setChecked(false);
QObject::connect(m_buttons,SIGNAL(pressed()),this,SLOT(??????????()) );
>
>
>
How do I get that argument in ?
??? udoS
Last edit: 08 Apr 2022 06:49 by udoS.
Please Log in or Create an account to join the conversation.
- Reinhard
- Offline
- Platinum Member
Less
More
- Posts: 508
- Thank you received: 94
08 Apr 2022 02:46 #239614
by Reinhard
Replied by Reinhard on topic Linuxcnc IDE
@udoS
Although this code is not my code, I'm willing to help, but I don't support lazyness!
You already know the class name and the method name - and your question is well documented. So rtfm!
Although this code is not my code, I'm willing to help, but I don't support lazyness!
You already know the class name and the method name - and your question is well documented. So rtfm!
Please Log in or Create an account to join the conversation.
- udoS
- Offline
- Elite Member
Less
More
- Posts: 216
- Thank you received: 25
08 Apr 2022 06:46 - 08 Apr 2022 06:50 #239622
by udoS
Replied by udoS on topic Linuxcnc IDE
@Reinhard
Hi. I was almost expecting that much. Sorry.
I know what has to go into that field. Just can't figure it.
About that rtfm -- my eyes are bleeding already..
Hi. I was almost expecting that much. Sorry.
I know what has to go into that field. Just can't figure it.
About that rtfm -- my eyes are bleeding already..
Last edit: 08 Apr 2022 06:50 by udoS.
Please Log in or Create an account to join the conversation.
- Reinhard
- Offline
- Platinum Member
Less
More
- Posts: 508
- Thank you received: 94
08 Apr 2022 13:48 #239667
by Reinhard
If you search for "qt signals" one of the first entries leads you to this page .
Qt has many of such fundamental pages with lots of examples in it.
i would argue qt online docs are exemplary!
Not like many others where you can read a lot without understanding anything
Replied by Reinhard on topic Linuxcnc IDE
Can't believe it!my eyes are bleeding already..
If you search for "qt signals" one of the first entries leads you to this page .
Qt has many of such fundamental pages with lots of examples in it.
i would argue qt online docs are exemplary!
Not like many others where you can read a lot without understanding anything
Please Log in or Create an account to join the conversation.
- udoS
- Offline
- Elite Member
Less
More
- Posts: 216
- Thank you received: 25
09 Apr 2022 05:16 #239708
by udoS
Replied by udoS on topic Linuxcnc IDE
I know what has to go inside the SLOT(?????(xxx)(yyy zzz))
I do not know how to ?? formulate it. (
I do not know how to ?? formulate it. (
Please Log in or Create an account to join the conversation.
- udoS
- Offline
- Elite Member
Less
More
- Posts: 216
- Thank you received: 25
05 May 2022 06:25 #242021
by udoS
Replied by udoS on topic Linuxcnc IDE
@Reingard (or any one else of course)
Hi Reinhard, can I some how talk you into a project building the interface for LogicLabs PLC into LinuxCNC?
It's a Software-PLC with a Ethercat Master and other Interfaces.
Professional. Not the way I would/could do it.
www.axelsoftware.it/en/runtime-components/
Best Regards
Hi Reinhard, can I some how talk you into a project building the interface for LogicLabs PLC into LinuxCNC?
It's a Software-PLC with a Ethercat Master and other Interfaces.
Professional. Not the way I would/could do it.
www.axelsoftware.it/en/runtime-components/
Best Regards
Please Log in or Create an account to join the conversation.
- smc.collins
- Offline
- Platinum Member
Less
More
- Posts: 696
- Thank you received: 123
06 May 2022 02:22 - 06 May 2022 02:25 #242099
by smc.collins
Replied by smc.collins on topic Linuxcnc IDE
QT C++ absolutely kills Python in any heavy computational workloads though, as does just plain C++, that's not specifically a QT thing, it's a c/c++ thing. My big beef with Python, is that it is executionaly inefficient in every benchmark I have ever seen.
Last edit: 06 May 2022 02:25 by smc.collins.
Please Log in or Create an account to join the conversation.
- udoS
- Offline
- Elite Member
Less
More
- Posts: 216
- Thank you received: 25
14 Jul 2022 13:57 - 14 Jul 2022 14:06 #247289
by udoS
Replied by udoS on topic Linuxcnc IDE
@Reinhard Off Topic;
Reinhard, I'm looking for the joint.n.vel-cmd over nml chanal;
I think you have been all over it, so is there a emcstat for it.
I couldn't find it in your github.com/DjangoReinhard/FalconView
Best regards
Reinhard, I'm looking for the joint.n.vel-cmd over nml chanal;
I think you have been all over it, so is there a emcstat for it.
I couldn't find it in your github.com/DjangoReinhard/FalconView
Best regards
Last edit: 14 Jul 2022 14:06 by udoS.
Please Log in or Create an account to join the conversation.
- Reinhard
- Offline
- Platinum Member
Less
More
- Posts: 508
- Thank you received: 94
14 Jul 2022 15:13 #247298
by Reinhard
Replied by Reinhard on topic Linuxcnc IDE
Learn how to use grep and don't search for linuxcnc items in my project!
Go to source-tree of linuxcnc and issue some grep -R "whatever-u-search-4"
If you don't know the exact casing of your search pattern use grep -Ri "..."
lowercase-i stands for "ignorecase".
Go to source-tree of linuxcnc and issue some grep -R "whatever-u-search-4"
If you don't know the exact casing of your search pattern use grep -Ri "..."
lowercase-i stands for "ignorecase".
Please Log in or Create an account to join the conversation.
- udoS
- Offline
- Elite Member
Less
More
- Posts: 216
- Thank you received: 25
15 Jul 2022 06:03 #247354
by udoS
Replied by udoS on topic Linuxcnc IDE
@Reinhart ... thanks; that was easy;
Now in your FalconView git you say :sample directory contains two cmake files indispensable for successful build:
But there is NO FalconView.cmake ; ?
Now in your FalconView git you say :sample directory contains two cmake files indispensable for successful build:
- FalconView.cmake
- FindlinuxCNC.cmake
But there is NO FalconView.cmake ; ?
Please Log in or Create an account to join the conversation.
Time to create page: 0.068 seconds