You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ryzom-core/studio/src/3rdparty/qtpropertybrowser
Jan Boon 34ba374d8b Move code to root 5 years ago
..
images Move code to root 5 years ago
CMakeLists.txt Move code to root 5 years ago
LGPL_EXCEPTION.txt Move code to root 5 years ago
LICENSE.GPL3 Move code to root 5 years ago
LICENSE.LGPL Move code to root 5 years ago
QtAbstractEditorFactoryBase Move code to root 5 years ago
QtAbstractPropertyBrowser Move code to root 5 years ago
QtAbstractPropertyManager Move code to root 5 years ago
QtBoolPropertyManager Move code to root 5 years ago
QtBrowserItem Move code to root 5 years ago
QtButtonPropertyBrowser Move code to root 5 years ago
QtCharEditorFactory Move code to root 5 years ago
QtCharPropertyManager Move code to root 5 years ago
QtCheckBoxFactory Move code to root 5 years ago
QtColorEditorFactory Move code to root 5 years ago
QtColorPropertyManager Move code to root 5 years ago
QtCursorEditorFactory Move code to root 5 years ago
QtCursorPropertyManager Move code to root 5 years ago
QtDateEditFactory Move code to root 5 years ago
QtDatePropertyManager Move code to root 5 years ago
QtDateTimeEditFactory Move code to root 5 years ago
QtDateTimePropertyManager Move code to root 5 years ago
QtDoublePropertyManager Move code to root 5 years ago
QtDoubleSpinBoxFactory Move code to root 5 years ago
QtEnumEditorFactory Move code to root 5 years ago
QtEnumPropertyManager Move code to root 5 years ago
QtFlagPropertyManager Move code to root 5 years ago
QtFontEditorFactory Move code to root 5 years ago
QtFontPropertyManager Move code to root 5 years ago
QtGroupBoxPropertyBrowser Move code to root 5 years ago
QtGroupPropertyManager Move code to root 5 years ago
QtIntPropertyManager Move code to root 5 years ago
QtKeySequenceEditorFactory Move code to root 5 years ago
QtKeySequencePropertyManager Move code to root 5 years ago
QtLineEditFactory Move code to root 5 years ago
QtLocalePropertyManager Move code to root 5 years ago
QtPointFPropertyManager Move code to root 5 years ago
QtPointPropertyManager Move code to root 5 years ago
QtProperty Move code to root 5 years ago
QtRectFPropertyManager Move code to root 5 years ago
QtRectPropertyManager Move code to root 5 years ago
QtScrollBarFactory Move code to root 5 years ago
QtSizeFPropertyManager Move code to root 5 years ago
QtSizePolicyPropertyManager Move code to root 5 years ago
QtSizePropertyManager Move code to root 5 years ago
QtSliderFactory Move code to root 5 years ago
QtSpinBoxFactory Move code to root 5 years ago
QtStringPropertyManager Move code to root 5 years ago
QtTimeEditFactory Move code to root 5 years ago
QtTimePropertyManager Move code to root 5 years ago
QtTreePropertyBrowser Move code to root 5 years ago
QtVariantEditorFactory Move code to root 5 years ago
QtVariantProperty Move code to root 5 years ago
QtVariantPropertyManager Move code to root 5 years ago
README.TXT Move code to root 5 years ago
qtbuttonpropertybrowser.cpp Move code to root 5 years ago
qtbuttonpropertybrowser.h Move code to root 5 years ago
qteditorfactory.cpp Move code to root 5 years ago
qteditorfactory.h Move code to root 5 years ago
qtgroupboxpropertybrowser.cpp Move code to root 5 years ago
qtgroupboxpropertybrowser.h Move code to root 5 years ago
qtpropertybrowser.cpp Move code to root 5 years ago
qtpropertybrowser.h Move code to root 5 years ago
qtpropertybrowser.pri Move code to root 5 years ago
qtpropertybrowser.qrc Move code to root 5 years ago
qtpropertybrowserutils.cpp Move code to root 5 years ago
qtpropertybrowserutils_p.h Move code to root 5 years ago
qtpropertymanager.cpp Move code to root 5 years ago
qtpropertymanager.h Move code to root 5 years ago
qttreepropertybrowser.cpp Move code to root 5 years ago
qttreepropertybrowser.h Move code to root 5 years ago
qtvariantproperty.cpp Move code to root 5 years ago
qtvariantproperty.h Move code to root 5 years ago

README.TXT

Property Browser v2.5

A property browser framework enabling the user to edit a set of
properties.

The framework provides a browser widget that displays the given
properties with labels and corresponding editing widgets (e.g.
line edits or comboboxes). The various types of editing widgets
are provided by the framework's editor factories: For each
property type, the framework provides a property manager (e.g.
QtIntPropertyManager and QtStringPropertyManager) which can be
associated with the preferred editor factory (e.g.
QtSpinBoxFactory and QtLineEditFactory). The framework also
provides a variant based property type with corresponding variant
manager and factory. Finally, the framework provides three
ready-made implementations of the browser widget:
QtTreePropertyBrowser, QtButtonPropertyBrowser and
QtGroupBoxPropertyBrowser.