QtnProperty icon indicating copy to clipboard operation
QtnProperty copied to clipboard

Extended properties for Qt5

Results 15 QtnProperty issues
Sort by recently updated
recently updated
newest added

this code: ``` QtnPropertySet* set = new QtnPropertySet(this); ui->propertyWidget->setPropertySet(set); QtnPropertyQColor* textColor = new QtnPropertyQColor(set); textColor->setName(tr("textColor")); textColor->setDescription(tr("Foreground text color")); textColor->setValue(QColor(0, 0, 0)); ``` produces following: > textColor Delegate unknown; I've spent...

Building the demo application with Qt 5.15.2 and MinGW 11 causes the following error ```shell make -f Makefile.Release make[1]: Entering directory 'C:/CodingXP/QtnProperty/build/Demo' g++ -c -fno-keep-inline-dllexport -O2 -std=gnu++11 -Wall -Wextra -Wextra...

Qt 5.14.2 Unable to compile ![image](https://user-images.githubusercontent.com/12770958/156101408-7bb70adb-ea60-42b6-9234-d45b06bb91bf.png)

When calling propertyView()->setActiveProperty() sub-items are not created immediately. So if I send fake Enter key to the view synchronously it doesn't start inplace editing. I have to send it async...

enhancement

editorBase() will destoryed which is QColorDialog's parent why not use as flow auto property = &this->property(); auto reason = delegate()->editReason(); QColorDialog dlg(property->value()); if (dlg.exec() == QDialog::Accepted) { property->setValue(dlg.currentColor(), reason); }

Hi! I operate with small values which should be entered in scientific notation. For example 0.000000001 is more convenient when written as 1.0e-9. Is it possible to set up display...

My Qt version is 5.4.2.

Hi, Alex Zhondin. First, thanks for your QtnProperty library. It's nice. And can you support Tab (Shift + Tab) to navigate to input next field? Regards, Eric.