Search found 259 matches

by seasoned_geek
Tue Sep 01 2020 12:15 pm
Forum: Developers
Topic: Containers and parentage
Replies: 2
Views: 4430

Containers and parentage

Perhaps I'm just having a brain fart? Perhaps I had a brain fart the other day when I left a comment in the code that sent me down this path this morning. Given all of the changes when forking from Qt, do all of the containers provide parentage? The documentation is not clear. If most things are now...
by seasoned_geek
Mon Aug 31 2020 7:21 pm
Forum: Developers
Topic: QTemporaryFile bug
Replies: 2
Views: 4477

Re: QTemporaryFile bug

Just an FYI, QTemporaryDir works well. void Task::run() { // Do processing here qDebug() << "Hello World!"; QTemporaryDir d; if (d.isValid()) { qDebug() << "temporary dir name: " << d.path(); } else { qDebug() << "failed to create temporary dir"; } emit finished(); } ro...
by seasoned_geek
Mon Aug 31 2020 7:16 pm
Forum: Developers
Topic: QTemporaryFile bug
Replies: 2
Views: 4477

QTemporaryFile bug

If there is an official bug database please let me know and I will put this there along with the malloc crash thing I reported earlier. From the doc, Detailed Description section // Within a function/method QTemporaryFile file; if (file.open()) { // file.fileName() returns the unique file name } // ...
by seasoned_geek
Thu Aug 27 2020 9:08 pm
Forum: User Support
Topic: Maybe I'm just tired or can't read?
Replies: 3
Views: 8478

Re: Maybe I'm just tired or can't read?

Is this also true of signals?
by seasoned_geek
Thu Aug 27 2020 12:38 am
Forum: User Support
Topic: Maybe I'm just tired or can't read?
Replies: 3
Views: 8478

Maybe I'm just tired or can't read?

I thought a slot had to be wrapped in CS_SLOT_1() CS_SLOT_2() in the header file in order for it to be used via connect() as a slot. Spent most of today trying to track down a focus problem when closing the advanced find window. The text edit tab doesn't actually get keyboard focus. The Close pushbu...
by seasoned_geek
Wed Aug 26 2020 8:27 pm
Forum: Developers
Topic: malloc crash
Replies: 1
Views: 3971

malloc crash

Maybe this should have never worked? It was working flawlessly until I pulled down the update for CopperSpice mentioned in this thread. "Failed to create xcb gl-integration" I happened to use the colors dialog again today and then spent some time chasing my tail. void Dialog_Colors::copyCl...
by seasoned_geek
Tue Aug 25 2020 9:54 pm
Forum: Developers
Topic: Position a QDialog at the bottom of its parent
Replies: 0
Views: 6805

Position a QDialog at the bottom of its parent

I appear to be suffering from severe head-up-butt syndrome right now. I just wanted to put the input dialog for EDT responses at the bottom of the tabbed widget. I swear I've done this in Qt before. There seems to be something forcing the dialog back to center no matter what I do. https://www.logika...
by seasoned_geek
Sat Aug 22 2020 9:25 pm
Forum: User Support
Topic: Two new posts
Replies: 0
Views: 9370

Two new posts

https://www.logikalsolutions.com/wordpress/uncategorized/further-adventures-with-copperspice/ https://www.logikalsolutions.com/wordpress/uncategorized/copperspice-diamond-editor-changes/ I may get one more done later tonight, but kind of tired after those two. Just posting them here in case people a...
by seasoned_geek
Sat Aug 22 2020 7:07 pm
Forum: User Support
Topic: Where are the compiler options hidden?
Replies: 3
Views: 8276

Re: Where are the compiler options hidden?

Thanks for the notice. I got no messages about the missing w. I understand your philosophy, but coming from the medical device world, one is not allowed to use environment variables for compiler options. Too high a risk and cannot be verified by external auditors. I have a fork here: https://github....
by seasoned_geek
Fri Aug 21 2020 11:07 pm
Forum: Developers
Topic: QKeySequence QKeyEvent enhancement request
Replies: 1
Views: 3655

Re: QKeySequence QKeyEvent enhancement request

Sorry, I just noticed I posted this in the wrong section. I'm going to sleep on it a bit tonight, but it really does look like you simply can't get there from here in any reliable manner. If I try building the string from the modifiers I can generate Ctrl+, Alt+, Delete But the user many have entere...