Search found 256 matches

by seasoned_geek
Wed Mar 27 2024 1:25 pm
Forum: Issues
Topic: Debian 12 has same selection problem as Mate
Replies: 2
Views: 15

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: 34

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: 34

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: 34

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...
by seasoned_geek
Sat Mar 23 2024 1:32 pm
Forum: Issues
Topic: Debian 12 has same selection problem as Mate
Replies: 2
Views: 15

Debian 12 has same selection problem as Mate

https://www.logikalsolutions.com/wordpress/wp-content/uploads/2024/03/Screenshot-from-2024-03-23-08-27-29.png Something in the XCB code appears to be confusing the layer selection happens at. Assuming top layer instead of background. Ordinary selection is fine, but when you click on a different wind...
by seasoned_geek
Thu Mar 21 2024 12:37 am
Forum: Issues
Topic: More MATE issues
Replies: 1
Views: 36

Re: More MATE issues

Here is a new one. On any Mate desktop you want visit here https://sourceforge.net/projects/reddiamond/files/AppImages/ Pull down 3.5.9 and 3.6.2 Run 3.5.9, open a C++ file, choose whatever theme you want if you don't like the default, select some text then click in a different window on your deskto...
by seasoned_geek
Mon Mar 11 2024 7:59 pm
Forum: Issues
Topic: More MATE issues
Replies: 1
Views: 36

More MATE issues

I believe these are copperspice MATE issues. QXcbConnection: XCB error: 3 (BadWindow), sequence: 12768, resource id: 11337400, major code: 40 (TranslateCoords), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 18651, resource id: 11329781, major code: 40 (TranslateCoords), minor cod...
by seasoned_geek
Sun Mar 10 2024 4:35 pm
Forum: Issues
Topic: QSound bug
Replies: 0
Views: 21

QSound bug

All, In an attempt to work around the Beep() being busted, I tried QSound which pulled in/required the entire multimedia library. void Overlord::errorBeep() { qDebug() << "errorBeep() called\n"; //QSound::play( ":/resources/mixkit-attention-bell-ding-586.wav" ); QSound::play( &qu...
by seasoned_geek
Sat Mar 09 2024 10:05 pm
Forum: Enhancements
Topic: QTabBar setTabFont() tabFont()
Replies: 0
Views: 35

QTabBar setTabFont() tabFont()

All, I don't know if it is possible or just an oversight, but QTabBar needs to allow access to the font for individual tabs. Changing the color is all well and good, but this level of access would allow a single tab to also be Bold, Italic, or a completely different font along with its different col...
by seasoned_geek
Fri Mar 08 2024 8:16 pm
Forum: Issues
Topic: QString documentation issue
Replies: 1
Views: 24

QString documentation issue

While I'm on my documentation bender, near the bottom of this page: https://www.copperspice.com/docs/cs_api/class_qstring8.html#ae2e2be78a3e7905da42c751866b73c1b Member Typedef Documentation Does not declare the header file where size_type (or the others) are declared. If one puts just the QString h...