Search found 463 matches

by barbara
Wed Sep 04 2024 10:28 pm
Forum: Installation
Topic: Exe would not load qwindows.dll
Replies: 1
Views: 457

Re: Exe would not load qwindows.dll

Thanks for reaching out to the CopperSpice team. The current CopperSpice Windows platform plugin file is called CsGuiWin1.9.dll . This plugin must be located in a folder named platforms which is located in the same directory as your executable. Based on the message reported, it is likely you did not...
by barbara
Wed Sep 04 2024 10:03 pm
Forum: User Support
Topic: Does it work on Wayland?
Replies: 5
Views: 10098

Re: Does it work on Wayland?

Thanks for bringing this up. We do agree support for Wayland would be worthwhile. It is on the roadmap and will happen sometime after we move to C++20, which is slated for the end of this year.

Barbara
by barbara
Sat Jul 13 2024 12:23 am
Forum: Developers
Topic: CS_Signal & Slots
Replies: 1
Views: 1949

Re: CS_Signal & Slots

David, Thanks for your questions. I have downloaded the signals and slots from github. Just so we are on the same page, can you let us know what you downloaded? The ways I have tried get activate() Signal parameter mismatch. Please tell us what you are trying to implement and a sample of the code yo...
by barbara
Sat Jul 06 2024 5:28 pm
Forum: Developers
Topic: Migrating VTK
Replies: 3
Views: 1676

Re: Migrating VTK

This macro was removed in favor of a using declaration. // Q_DECLARE_FLAGS(enumName, flagName) using flagName = QFlags<enumName>; // Q_DECLARE_FLAGS(Option, OptionFlags) using OptionFlags = QFlags<Option>; Thanks for letting us know about the documentation issue and please continue to tell us about ...
by barbara
Wed Jul 03 2024 8:12 am
Forum: Developers
Topic: Signal overload
Replies: 2
Views: 1266

Re: Signal overload

Here is an example to help explain how this works. The valueChanged() signal for QSpinBox has two overloads. When calling connect() using method pointers, the second parameter is a pointer to the signal and the fourth parameter is a pointer to the slot. If either the signal or the slot is overloaded...
by barbara
Mon Jun 10 2024 2:27 am
Forum: Enhancements
Topic: Progressive Typing
Replies: 3
Views: 4936

Re: Progressive Typing

We have uploaded a new CS Journal entry with a full working example and CMake build files. This example explains how to display a subset of the values in a QComboBox based on the text entered by the user in the line edit portion of the combo box. CopperSpice Journal - Gui Example 45 https://journal....
by barbara
Sun May 19 2024 4:13 pm
Forum: Enhancements
Topic: Progressive Typing
Replies: 3
Views: 4936

Re: Progressive Typing

QComboBox currently has built in functionality to support these two items. (a) case sensitive/insensitive, the default is “case insensitive” (b) beginning of word match It sounds like you are interested in knowing how to use a QComboBox and have the display be limited by what the user has typed. We ...
by barbara
Fri May 03 2024 9:45 pm
Forum: Issues
Topic: Fedora CsMultiMedia bug
Replies: 2
Views: 5818

Re: Fedora CsMultiMedia bug

I opened the "CopperSpiceLibraryTargets.cmake" file located in our Fedora 36 binary release (CS 1.9.1), dated Feb 19 2024. The binary distribution is located on our CS download page and also on our CS github page. We also tested CSMultimedia in KitchenSink using the Music Player and did no...
by barbara
Fri Apr 26 2024 3:29 am
Forum: Issues
Topic: QLocalServer bug
Replies: 2
Views: 3173

Re: QLocalServer bug

The single change has been made in our source code. It will be committed shortly.

Barbara
by barbara
Fri Apr 26 2024 3:23 am
Forum: Issues
Topic: QLocalServer documentation error
Replies: 1
Views: 2599

Re: QLocalServer documentation error

Thanks, we corrected the documentation. This will appear in the next release of the CS API documentation.