Search found 105 matches
- Fri Apr 09 2021 1:51 pm
- Forum: Installation
- Topic: Support for RHEL?
- Replies: 16
- Views: 10783
Re: Support for RHEL?
I'm curious to find out about RHEL 6. The version of Qt 5 on RHEL 6 has, shall we say, "not good" HiDPI support. One customer has now standardized on $300 4K monitors as their new "desktop standard." Many of the screens now look like doo-doo all because a better monitor was installed. Video card, dr...
- Thu Apr 01 2021 1:50 pm
- Forum: Issues
- Topic: fromUnicode() documentation bug
- Replies: 1
- Views: 57
fromUnicode() documentation bug
All, As part of trying to track down a real answer to this issue: https://forum.copperspice.com/viewtopic.php?f=11&t=1755 Unraveling this for (unsigned int i = 0; i < commitStrLen;) { const unsigned int ucWidth = commitStr.at(i).isHighSurrogate() ? 2 : 1; const QString oneCharUTF16 = commitStr.mid(i...
- Wed Mar 31 2021 12:17 pm
- Forum: User Support
- Topic: std::string_view
- Replies: 2
- Views: 79
Re: std::string_view
Please provide the error messages you are seeing, hopefully just a few lines. If this is a long error message please email and we will review and then post something here. I did not include the error because I didn't want to go down that rabbit hole. Here it is, per request. /home/roland/sf_project...
- Tue Mar 30 2021 9:16 pm
- Forum: User Support
- Topic: std::string_view
- Replies: 2
- Views: 79
std::string_view
All, I'm porting Scintilla to CopperSpice for use in RedDiamond. Scintilla is really robust and many editors like Notepadqq and Juffed use it. I'm down to the last source file and two compilation errors in the input method, both with code like this. if ( !event->commitString().isEmpty() ) { const QS...
- Tue Mar 30 2021 7:01 pm
- Forum: Enhancements
- Topic: QString enhancement request
- Replies: 1
- Views: 60
QString enhancement request
Can this get fixed? /home/roland/sf_projects/roland_hughes-scintilla/copperspice/ScintillaEditBase/PlatCS.cpp: In member function ‘virtual void* Scintilla::DynamicLibraryImpl::FindFunction(const char*)’: /home/roland/sf_projects/roland_hughes-scintilla/copperspice/ScintillaEditBase/PlatCS.cpp:1365:4...
- Mon Mar 29 2021 1:54 pm
- Forum: Developers
- Topic: Copperspice and python
- Replies: 6
- Views: 6867
Re: Copperspice and python
You could ask Phil Thompson
https://pypi.org/user/PhilThompson/
It looks like he did both PyQt and QScintilla
https://pypi.org/user/PhilThompson/
It looks like he did both PyQt and QScintilla
- Sat Mar 27 2021 4:03 pm
- Forum: Developers
- Topic: QScintilla
- Replies: 0
- Views: 61
QScintilla
Has anyone successfully used the QScintilla from the Ubuntu 20.04 LTS repos with CopperSpice?
Has anyone used QScintilla in any form with CopperSpice?
I'm guessing the methods returning/accepting QString will have a bit of an issue.
Has anyone used QScintilla in any form with CopperSpice?
I'm guessing the methods returning/accepting QString will have a bit of an issue.
- Tue Mar 23 2021 9:15 pm
- Forum: Developers
- Topic: Queued connection in dialog oddity
- Replies: 0
- Views: 90
Queued connection in dialog oddity
All, This just started popping up. I updated from the tip of tip this past week so maybe this will jog a memory. // check the box setSynType( m_syntaxEnum ); qDebug() << "queueRunSyntax() called with : " << synFName << " type: " << m_syntaxEnum; queueRunSyntax( synFName, m_syntaxEnum ); } } void Red...
- Sun Mar 21 2021 1:07 pm
- Forum: Developers
- Topic: QComboBox bug
- Replies: 0
- Views: 76
QComboBox bug
All, Stumbled into this bug due to one of my bugs. m_ui->themeComboBox->setCurrentIndex( m_ui->themeComboBox->findText( m_currentTheme->name() ) ); Basically if QComboBox::findText() cannot find the text and the result is directly used by QComboBox::setCurrentIndex() it neither errors out nor crashe...
- Wed Feb 24 2021 12:54 am
- Forum: Developers
- Topic: QStringParser::formatArg() for pointer
- Replies: 5
- Views: 504
Re: QStringParser::formatArg() for pointer
While what you say may well be true, the main difference is that FDA and other regulated environments where code must be externally reviewed for compliance with BARR or Joint Strike Coding standards means code with reinterpret_cast<> fails and one cannot proceed with certification/validation/clinica...