Search found 262 matches

by seasoned_geek
Tue May 14 2024 11:39 am
Forum: Enhancements
Topic: Progressive Typing
Replies: 1
Views: 14

Progressive Typing

Before we had a mouse we had progressive typing drop-list fields. When you entered the field and hit a key a list of potential matches appeared below it. When you hit the next keystroke the list adjusted containing only entries having the first two. Each character was added to the selection criteria...
by seasoned_geek
Thu May 02 2024 10:35 pm
Forum: Issues
Topic: Fedora CsMultiMedia bug
Replies: 1
Views: 157

Fedora CsMultiMedia bug

All, Perhaps it is all RPM based distros with this bug? Until I had to add multimedia to play a wav file for RedDiamond I didn't notice. CopperSpiceLibraryTargets.cmake On Debian platforms you get this: set_target_properties(CopperSpice::CsMultimedia PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${...
by seasoned_geek
Thu Apr 25 2024 3:01 pm
Forum: Issues
Topic: QLocalServer bug
Replies: 2
Views: 695

Re: QLocalServer bug

The fix can be found here:

https://www.logikalsolutions.com/wordpress/wp-content/uploads/2024/04/copperspice-bug-0001.png

line 269 in qlocalserver_unix.cpp needs to be == instead of !=
by seasoned_geek
Tue Apr 23 2024 10:50 pm
Forum: Issues
Topic: QLocalServer documentation error
Replies: 1
Views: 435

QLocalServer documentation error

Small nit found here https://www.copperspice.com/docs/cs_api/class_qlocalserver.html#ac27b49a4b72839ad0aa48c2055e04629 QLocalServer:NoOptions 0x00 No access restrictions have been set QLocalServer:UserAccessOption 0x01 Access is restricted to the same user as the process that created the socket QLoc...
by seasoned_geek
Tue Apr 23 2024 9:58 pm
Forum: Issues
Topic: QLocalServer bug
Replies: 2
Views: 695

QLocalServer bug

All, When my application is built with the 1.8.1 packages that can be found here https://sourceforge.net/projects/csscintilla/files/ and were created April of last year right after a fresh merge of the current CopperSpice, all is perfect. When a second instance is started it checks the lock file and...
by seasoned_geek
Wed Mar 27 2024 6:24 pm
Forum: Issues
Topic: QString documentation issue
Replies: 3
Views: 2263

Re: QString documentation issue

>There is no difference between a type alias declaration and typedef declaration. typedef is global. That's the difference. Within an application framework a typedef has a singular definition. No matter the class or container, a typedef defined entity is always the exact same. My issue is the docume...
by seasoned_geek
Wed Mar 27 2024 1:25 pm
Forum: Issues
Topic: Debian 12 has same selection problem as Mate
Replies: 2
Views: 1824

Re: Debian 12 has same selection problem as Mate

Nope, I used the default Gnome-3 to test then installed the Flashback desktop that uses the Gnome-3 libraries with but provides a real desktop UI. You don't have any problems because Diamond, using QTextEdit does not support inactive text selection background . This is the changing of the selection ...
by seasoned_geek
Tue Mar 26 2024 2:04 pm
Forum: Issues
Topic: Qt::CaseInsensitive no longer working
Replies: 5
Views: 2410

Re: Qt::CaseInsensitive no longer working

This this shouldn't compile. https://www.copperspice.com/docs/cs_api/class_qt.html#aa2ba2914e203bc3a4cad512b57cc7ab8 Should be an enum class so this cannot compile. Yes, I looked again, you are correct. The documentation is mushed together so it is difficult to see for people wearing glasses, but if...
by seasoned_geek
Sun Mar 24 2024 3:23 pm
Forum: Issues
Topic: Qt::CaseInsensitive no longer working
Replies: 5
Views: 2410

Re: Qt::CaseInsensitive no longer working

The only work around is to needlessly burden the application with RegEx. QString EdtBaseWidget::stripGistName( QString &text, bool &validCommand ) { qDebug() << ";;;;;;;;;;;;;;;; exists for bug report\n"; QRegularExpression regExpna( "/na", QPatternOption::CaseInsensitive...
by seasoned_geek
Sun Mar 24 2024 3:00 pm
Forum: Issues
Topic: Qt::CaseInsensitive no longer working
Replies: 5
Views: 2410

Qt::CaseInsensitive no longer working

qDebug() << ";;;;;;;;;;;;;;;; exists for bug report\n"; QString lcCommand = "gist /name=\"some_file.txt\" /desc=\"test of command line gist\" sel "; qDebug() << "lccommand: " << lcCommand << "\n"; QString::size_type somePos = lcCommand.ind...