Search found 29 matches
- Sat Jan 18 2025 5:45 pm
- Forum: Developers
- Topic: Dealing with overloads in QString
- Replies: 0
- Views: 286
Dealing with overloads in QString
Hello, Barbara and All! I looked at the QString class in the Copper Spice documentation. And that's what I found there.: bool contains (char ch, Qt::CaseSensitivity cs=Qt::CaseSensitive) const bool contains (const QRegularExpression8 ®Exp) const bool contains (const QString8 &str, Qt::Cas...
- Sat Jan 18 2025 11:30 am
- Forum: Developers
- Topic: I want to suggest functions and classes for implementation in CopperSpice
- Replies: 9
- Views: 32511
Re: I want to suggest functions and classes for implementation in CopperSpice
Hello, Barbara and All! a) Yes. I was looking at the documentation on QRegularExpression in CopperSpice. b) Everything is consistent, except for the speed of operation. I don't need the full power of QRegularExpression. Why should I pay for QRegularExpression if the Like function does the same thing...
- Sat Jan 11 2025 8:06 am
- Forum: Developers
- Topic: I want to suggest functions and classes for implementation in CopperSpice
- Replies: 9
- Views: 32511
Re: I want to suggest functions and classes for implementation in CopperSpice
Hello, Barbara and All! Have you looked at the source code on the GitFlic website? Have you tried compiling and running the PrabhupadaDictionary.exe ? I sent you a link to a public repository. https://gitflic.ru/project/navadvipa-chandra-das/slovar-shrily-prabhupady-na-copperspice 1. Format binary. ...
- Tue Jan 07 2025 6:11 pm
- Forum: Developers
- Topic: I want to suggest functions and classes for implementation in CopperSpice
- Replies: 9
- Views: 32511
Re: I want to suggest functions and classes for implementation in CopperSpice
Hello, Barbara and All! 1. Yes, QStorage and QStorageDB class work for saving and restore data. 2. No. While I was working on the project alone. 3. Butter won't spoil porridge. A Russian proverb 4. In regular expressions, the dot symbol "." means any character, and the asterisk symbol &quo...
- Sat Jan 04 2025 10:11 pm
- Forum: Developers
- Topic: I want to suggest functions and classes for implementation in CopperSpice
- Replies: 9
- Views: 32511
I want to suggest functions and classes for implementation in CopperSpice
Hello? All! I present to your attention some interesting classes and functions that I did not find in CopperSpice, but which can be added to it very easily. 1. The QStorage and QStorageDB class It can serialize C++ classes, which do not need to be modified at all. To do this, you need to create a St...
- Tue May 23 2023 12:19 pm
- Forum: Developers
- Topic: Please help me compilated and link my branch CopperSpice!
- Replies: 7
- Views: 19014
Re: Please help me compilated and link my branch CopperSpice!
Barbara, I don't really want to keep a separate fork of CopperSpice! I started it to put a requirement on GitHub, but since there were problems with the assembly of the Prabhupada library, I did not have time to do it. Look here - the same Prabhupada.h and files QPrabhupada.cpp they work very well w...
- Sat May 20 2023 7:34 pm
- Forum: Developers
- Topic: Please help me compilated and link my branch CopperSpice!
- Replies: 7
- Views: 19014
Re: Please help me compilated and link my branch CopperSpice!
Thank You very much for letter! I will remove the Cs prefix one of these days, since the CopperSpice compilation is a whole ceremony that stretches for a long time! Now my Prabhupada library compiles well and at first glance stands on a par with such a library as, for example, CsSql. But when it com...
- Sun May 14 2023 7:17 am
- Forum: Developers
- Topic: Please help me compilated and link my branch CopperSpice!
- Replies: 7
- Views: 19014
Re: Please help me compilated and link my branch CopperSpice!
Hello, Barbara and everyone else! The Prabhupada Dictionary application is working. It is not fully written, but what is written is debugged and works. I agree that you need to make your own library. No, not everything can be divided without using the CopperSpice code. I just wanted to offer good th...
- Sat May 13 2023 2:10 pm
- Forum: Developers
- Topic: Please help me compilated and link my branch CopperSpice!
- Replies: 7
- Views: 19014
Please help me compilated and link my branch CopperSpice!
My branch this - https://github.com/Navadvipa-Chandra-das/copperspice My application this - https://github.com/Navadvipa-Chandra-das/PrabhupadaDictionary But at the moment the assembly of Prabhupada Dictionary is not possible, because CopperSpice is not being assembled. [3770/3845] Linking CXX share...
- Thu Mar 16 2023 7:25 am
- Forum: Issues
- Topic: QSaveFile.open( QIODevice::Append ) not work
- Replies: 2
- Views: 37290
QSaveFile.open( QIODevice::Append ) not work
Hello, All! void PrabhupadaLog( const QString &AFileName, const QString &msg ) { QSaveFile ASaveFile = QSaveFile( AFileName ); QDataStream AStream = QDataStream( &ASaveFile ); ASaveFile.open( QIODevice::WriteOnly ); // work QString S = QDateTime::currentDateTime().toString( "dd/MM/y...