Search found 3471 matches

by freedman
Mon Apr 22, 2024 7:12 pm
Forum: Python scripting and macros
Topic: How to display context menu (right-click menu) with a macro
Replies: 5
Views: 334

Re: How to display context menu (right-click menu) with a macro

I got this working and I do see some of your issues like the timer.
This is good macro for me, I wanted to override the Right click and here it is. :)
Thanks

Edit: Deleted the macro because it has issues, will post later.
by freedman
Sun Apr 21, 2024 9:07 pm
Forum: Help on using FreeCAD
Topic: How to model a complicated 3D surface?
Replies: 9
Views: 477

Re: How to model a complicated 3D surface?

That looks like a pretty easy PartDesign part. You might need to mess around with the fillets. Create a sketch top and side view and someone here will probably model it or at least get you started.
by freedman
Sun Apr 21, 2024 7:53 pm
Forum: Python scripting and macros
Topic: How to undock a Toolbar?
Replies: 4
Views: 339

Re: How to undock a Toolbar?

Syres That code works good. I did change a couple things. I like the floating vertical toolbar: tb.setOrientation(QtCore.Qt.Vertical) and changing this line creates a frameless window, so no worries about closing the toolbar. tb.setWindowFlags(QtCore.Qt.Tool | QtCore.Qt.FramelessWindowHint) Thanks
by freedman
Sat Apr 20, 2024 8:38 pm
Forum: Open discussion
Topic: Is FreeCAD ready for production?
Replies: 6
Views: 584

Re: Is FreeCAD ready for production?

Put yourself in the position of Manager of production. I would have questions like this: 1) Who knows how to use it 2) If that person quits, who knows how to use it 3) Is the program going to get better over the years 4) Is it worth it, no fees but middle of the road performance 5) Will the file typ...
by freedman
Sat Apr 20, 2024 5:41 pm
Forum: Python scripting and macros
Topic: How to undock a Toolbar?
Replies: 4
Views: 339

Re: How to undock a Toolbar?

Maybe someone can figure out how to make the Toolbar a Widget instead of a Window type. I tried some and can't get there.
Thanks
by freedman
Sat Apr 20, 2024 2:22 am
Forum: Python scripting and macros
Topic: How to undock a Toolbar?
Replies: 4
Views: 339

Re: How to undock a Toolbar?

Syres This was a good challenge. I went thru about 2 hours of trying this and that. Nice work, it looks good. I would like the new icon window created without the close X button, but from what I have tried and what I read on stackoverflow it doesn't seem possible for child windows. I can monitor if...
by freedman
Thu Apr 18, 2024 9:24 pm
Forum: Python scripting and macros
Topic: How to undock a Toolbar?
Replies: 4
Views: 339

How to undock a Toolbar?

I found about 10 posts on how to dock but can't find how to undock a toolbar. If I undock manually I can move the toolbar around with the code below. The question; What am I missing to undock the toolbar? Thanks self.toolbar1.setFloatable(True) self.toolbar1.x = 611 self.toolbar1.y = 139 self.toolba...
by freedman
Tue Apr 16, 2024 7:36 pm
Forum: Open discussion
Topic: Merging Fasteners and Gears in Part wb?
Replies: 28
Views: 2486

Re: Merging Fasteners and Gears in Part wb?

I want fasteners and gears to have options for specific file libraries. Here is an example; A contractor works with a few different companies. Any time a FreeCAD file is opened only the fasteners and gears associated with that companies specific library are available to use. Libraries are set up in...
by freedman
Sun Apr 14, 2024 5:01 pm
Forum: Open discussion
Topic: Merging Fasteners and Gears in Part wb?
Replies: 28
Views: 2486

Re: Merging Fasteners and Gears in Part wb?

I am not a mech person, but how would that work if a specific fastener that is not available in the current 'library' already exists in the file? Anything new might need to be modeled and added to the library. A company will have many custom made items like springs, gaskets, buttons, overlays. The ...
by freedman
Sun Apr 14, 2024 2:41 am
Forum: Open discussion
Topic: Merging Fasteners and Gears in Part wb?
Replies: 28
Views: 2486

Re: Merging Fasteners and Gears in Part wb?

I want fasteners and gears to have options for specific file libraries. Here is an example; A contractor works with a few different companies. Any time a FreeCAD file is opened only the fasteners and gears associated with that companies specific library are available to use. Libraries are set up in ...