File: README.md

package info (click to toggle)
kdeclarative 5.116.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 24,072 kB
  • sloc: cpp: 8,161; sh: 21; makefile: 11
file content (35 lines) | stat: -rw-r--r-- 1,152 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# KDeclarative

Integration of QML and KDE work spaces

## Introduction

KDeclarative provides integration of QML and KDE work spaces.
It's comprises two parts: a library used by the C++ part of your application
to intergrate QML with KDE Frameworks specific features, and a series of
QML imports that offer bindings to some of the Frameworks.

## KDeclarative library

KDeclarative exposes 3 namespaced classes: KDeclarative::KDeclarative, KDeclarative::QmlObject, KDeclarative::ConfigPropertyMap

### KDeclarative::KDeclarative

The KDeclarative class is used to manipulate the QQmlEngine instance used by 
the application and to get some information about the platform,
that influences the behavior of the QML components.

Full documentation in KDeclarative::KDeclarative

### KDeclarative::QmlObject

An object that instantiates an entire QML context, with its own declarative engine.

Full documentation in KDeclarative::QmlObject

### KDeclarative::ConfigPropertyMap

An object that (optionally) automatically saves changes in a
property map to a configuration object (e.g. a KConfig file).

Full documentation in KDeclarative::ConfigPropertyMap