Search found 6 matches

by bankai
Fri Feb 09 2024 9:34 pm
Forum: Installation
Topic: How to generate the API documenation from source?
Replies: 2
Views: 669

Re: How to generate the API documenation from source?

Thank you, much appreciated.
by bankai
Wed Feb 07 2024 11:18 am
Forum: Installation
Topic: How to generate the API documenation from source?
Replies: 2
Views: 669

How to generate the API documenation from source?

Hello Barbara, Ansel, You released CopperSpice 1.9.0 a few days ago (congratulations!). However, I am still developing with 1.8.2 and I wanted to have the API documentation for that version installed locally (essentially what you have on https://www.copperspice.com/docs/cs_api/index.html but then fo...
by bankai
Wed Dec 07 2022 10:00 pm
Forum: Developers
Topic: CsSignal can only connect to references?!
Replies: 2
Views: 6408

Re: CsSignal can only connect to references?!

What are you converting from? Using the CsSignal library is definitely an option however we are curious if it would make more sense for you to use the CsCore library in CopperSpice. Sigslot by Sarah Thompson; one of the reasons to switch to CsSignal is the ability to deliver signals to other thread...
by bankai
Tue Dec 06 2022 10:51 pm
Forum: Developers
Topic: CsSignal can only connect to references?!
Replies: 2
Views: 6408

CsSignal can only connect to references?!

I am converting some code to CsSignal,which seems rather straightforward: derive classes from CsSignal::SignalBase and CsSignal::SignalSlot, replace existing connections (which already use &Class::member pointers) with connect(). Of course we use pointers, but CsSignal does not support them, onl...
by bankai
Thu Jul 14 2022 5:43 pm
Forum: Developers
Topic: Playing media from QIODevice and nothing else
Replies: 2
Views: 3356

Re: Playing media from QIODevice and nothing else

Do you have a _complete_ buildable example you can zip up somewhere? Source, data, cmake, etc. I have no idea why you are using QIODevice when 1.ogg is a file. It is not a regular file. The '1.ogg' is just the internal name, the actual content is somewhere inside the container. That could be a file...
by bankai
Sun Jun 26 2022 3:14 pm
Forum: Developers
Topic: Playing media from QIODevice and nothing else
Replies: 2
Views: 3356

Playing media from QIODevice and nothing else

I am working on an application that has its music files in Ogg format embedded in its own containers. I can 'open' those files and present them as a QIODevice *. I then want to play them using QMediaPlayer but that simply refuses to play anything that does not have a valid URL, which is a bit counte...