Warning, /frameworks/kdeclarative/README.md is written in an unsupported language. File is not indexed.

0001 # KDeclarative
0002 
0003 Integration of QML and KDE work spaces
0004 
0005 ## Introduction
0006 
0007 KDeclarative provides integration of QML and KDE work spaces.
0008 It's comprises two parts: a library used by the C++ part of your application
0009 to intergrate QML with KDE Frameworks specific features, and a series of
0010 QML imports that offer bindings to some of the Frameworks.
0011 
0012 ## KDeclarative library
0013 
0014 KDeclarative exposes 3 namespaced classes: KDeclarative::KDeclarative, KDeclarative::QmlObject, KDeclarative::ConfigPropertyMap
0015 
0016 ### KDeclarative::KDeclarative
0017 
0018 The KDeclarative class is used to manipulate the QQmlEngine instance used by 
0019 the application and to get some information about the platform,
0020 that influences the behavior of the QML components.
0021 
0022 Full documentation in KDeclarative::KDeclarative
0023 
0024 ### KDeclarative::QmlObject
0025 
0026 An object that instantiates an entire QML context, with its own declarative engine.
0027 
0028 Full documentation in KDeclarative::QmlObject
0029 
0030 ### KDeclarative::ConfigPropertyMap
0031 
0032 An object that (optionally) automatically saves changes in a
0033 property map to a configuration object (e.g. a KConfig file).
0034 
0035 Full documentation in KDeclarative::ConfigPropertyMap