File: README.md

package info (click to toggle)
quickflux 1.1.3%2Bgit20201110.2a37acf-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,036 kB
  • sloc: cpp: 2,874; makefile: 26
file content (42 lines) | stat: -rw-r--r-- 1,249 bytes parent folder | download
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
36
37
38
39
40
41
42
That is a template created for application with using Quick Flux. This template provides:

1. qpm.json - Install QuickFlux via qpm
2. Template of ActionTypes and AppActions
3. Templates of Store / StoreWorker and Adapter
4. AppView C++ - Initialize QML environment and listen message from AppDispatcher

File Structre:

```
.
├── App
│   ├── actions
│   │   ├── ActionTypes.qml
│   │   ├── AppActions.qml
│   │   └── qmldir
│   ├── adapters
│   │   ├── StoreAdapter.qml
│   │   └── qmldir
│   ├── constants
│   │   ├── Constants.qml
│   │   └── qmldir
│   ├── stores
│   │   ├── MainStore.qml
│   │   └── qmldir
│   └── storeworkers
│       ├── MainStoreWorker.qml
│       ├── StoreWorker.qml
│       └── qmldir
├── app.pri
├── app.pro
├── app.qrc
├── appview.cpp
├── appview.h
├── deployment.pri
├── main.cpp
├── main.qml
└── qpm.json

```

To use this project template, just copy this folder to your workspace. Rename the app.pro to your project name. Then you could start coding.