All Projects → pureqml → Qmlcore

pureqml / Qmlcore

Licence: mit
QML to Javascript/HTML5 translator, both for mobile and desktop targets

Projects that are alternatives of or similar to Qmlcore

Qmlweb
A QML engine in a web browser. Current state: fixing things…
Stars: ✭ 703 (+172.48%)
Mutual labels:  qml, declarative-ui, html5
Fast
Develop, build, deploy, redeploy, and teardown frontend projects fast.
Stars: ✭ 126 (-51.16%)
Mutual labels:  frontend, html5
Play2 Html5tags
HTML5 form tags module for Play Framework
Stars: ✭ 101 (-60.85%)
Mutual labels:  frontend, html5
Lazy
Kule Lazy4 / CSS Framework
Stars: ✭ 147 (-43.02%)
Mutual labels:  frontend, html5
Frontend Mentor Challenge
Here you will find all the challenges that we took from frontend-mentor.
Stars: ✭ 47 (-81.78%)
Mutual labels:  frontend, html5
Sharebook Frontend
Projeto frontend de código livre para o app Sharebook.
Stars: ✭ 59 (-77.13%)
Mutual labels:  frontend, html5
Roadmap Web Developer 2017
Front-end (HTML5/CSS3/Javascript related) technologies to learn in 2017
Stars: ✭ 142 (-44.96%)
Mutual labels:  frontend, html5
Fritz2
Easily build reactive web-apps in Kotlin based on flows and coroutines.
Stars: ✭ 308 (+19.38%)
Mutual labels:  frontend, html5
Quasar
An experimental rust-to-{wasm,asmjs} frontend framework.
Stars: ✭ 180 (-30.23%)
Mutual labels:  frontend, frontend-framework
The Front End Knowledge You May Not Know
😇 你可能不知道的前端知识点
Stars: ✭ 2,238 (+767.44%)
Mutual labels:  frontend, html5
Tko
🥊 Technical Knockout – The Monorepo for Knockout.js (4.0+)
Stars: ✭ 227 (-12.02%)
Mutual labels:  frontend, frontend-framework
Awesome Web Components
🤖 Awesome web components and snippets for every Front-End Developer
Stars: ✭ 28 (-89.15%)
Mutual labels:  frontend, html5
Amis
前端低代码框架,通过 JSON 配置就能生成各种页面。
Stars: ✭ 8,930 (+3361.24%)
Mutual labels:  frontend, frontend-framework
Neo
Create blazing fast multithreaded Web Apps
Stars: ✭ 1,219 (+372.48%)
Mutual labels:  frontend, html5
Displayjs
A simple JavaScript framework for building ambitious UIs 😊
Stars: ✭ 590 (+128.68%)
Mutual labels:  frontend, frontend-framework
Javascript Code Challenges
A collection of JavaScript modern interview code challenges for beginners to experts
Stars: ✭ 2,710 (+950.39%)
Mutual labels:  frontend, frontend-framework
Front End Web Development Resources
This repository contains content which will be helpful in your journey as a front-end Web Developer
Stars: ✭ 3,452 (+1237.98%)
Mutual labels:  frontend, frontend-framework
Saltgui
A web interface for managing SaltStack based infrastructure.
Stars: ✭ 278 (+7.75%)
Mutual labels:  frontend, html5
Layerjs
layerJS: Javascript UI composition framework
Stars: ✭ 1,825 (+607.36%)
Mutual labels:  frontend, html5
Gomponents
Declarative view components in Go, that can render to HTML5.
Stars: ✭ 49 (-81.01%)
Mutual labels:  declarative-ui, html5

PureQML::QMLCore: QML to Javascript translator

QmlCore is a simple set of tools we (a small team of QML advocates) use since years to simplify the development of HTML5 UIs for both mobile and desktop devices. It was designed with the original QML in mind, while it's not 100% compatible and improved in some aspects. The main concepts are the same though, so if you're familiar with original QML, you could start right away.

Usage

QmlCore provides a toolchain written in Python using python-future, allowing it to be run on top of both python versions. Normally you don't need to use them directly. build provides a convenient wrapper around them all.

Prerequisites

Any modern Python (2 or 3) will go well. Jinja2 is a different option for templating in case you want more than QML loader in your HTML file, while it's not required for small apps.

To install the requirements run:

$ pip install -r requirements.txt

Simple how-to

  • Create project directory, cd <project-dir>
  • Clone QmlCore to it: git clone [email protected]:pureqml/qmlcore.git
  • Run ./qmlcore/build --boilerplate
  • Look into ./src/app.qml
  • Run ./qmlcore/build Please find the resulting files in build.web/*

How it works

The QML compiler scans source directories for QML files and parses each one. Filename starting with uppercase letter considered component, lowercase instantiated. Project-wide options are stored in the .manifest file. The result of the compilation is a single Javascript file with minimum dependencies (modernizr only), ready to use in mobile and desktop environment and accompanied by sample .html launcher.

Manifest options

Manifest is a collection of project-wide hacks we used to botch various projects. Some of them may or may not be useful.

  • templater - template engine to use, only 'simple' and 'jinja2' are supported at the moment
  • web-prefix - see -p option below, specify css rules prefix
  • minify - false/true or compiler name as string, only 'gcc' and 'uglify-js' are supported. google closure compiler requires java to run.
  • platforms use additional platform/*/ files, default and only platform is 'web' for now
  • path - additional directories to search sources for

build tool command line options

  • -m, --minify minify with default option ('uglify-js')
  • -k, --keep keep original source after minification, useful for debugging minification warnings
  • -d, --devel development mode, keep running and wait for changes, requires inotify module
  • -p, --web-prefix web prefix, removed default CSS rules, adds 'qml-' prefix for them, allowing you to interchange HTML/QML.
  • -u, --update-translation update translation files, specified in manifest.languages
  • -j, --jobs run N jobs in parallel
  • --boilerplate initialises bare minimum for quicker kick-off in current directory.

Supported Platforms

We support many different platforms and video integration variants.

Most notable platforms are:

  • HTML5 Web Browser (Obviously) with different addons:
    • Shaka
    • Dash.js
    • Video.js Web Extension
  • ElectronJS
  • Android (Native engine and Cordova)
  • IOS (Cordova)
  • SmartTV Platorms:
    • Any Android TV via native Android support.
    • LG (Netcast and WebOS)
    • Samsung SmartTv (Orsay and Tizen)
    • OperaTV
  • Many STB platforms (privately)
  • Native C++ engine with minimal requirements (EGL or LinuxFB) (privately)

For the full list of supported platform see here and here. Or alternatively just ask us.

Native Android support

Main repo for Pureqml native Android implementation is https://github.com/pureqml/qmlcore-android.

In order to build native android app you need to:

  • Install Android SDK and set ANDROID_HOME environment variable
  • Run ./qmlcore/platform/pure.femto/build-android-native.sh script.

Localisation

QmlCore uses Qt-approach to localisation. You write the code in your default language, then generate/update (build -u) .ts translation files, translate them with qt linguist and compile your project. QmlCore recognizes tr, qsTr, qsTranslate function, as well as QT_TR_NOOP/QT_TRANSLATE_NOOP macros.

Controls library

QmlCore contains a bare minimum of platform controls: Images, texts, rectangles and model-view-delegate classes. Various controls that might be useful are in a separate repository. Just clone it via git clone [email protected]:pureqml/controls.git in your project and that's it!

QML differences

Grammar

We require a semicolon after each statement. This may be changed in future.

Focus

The biggest discrepancy with original QML is how focus is implemented. We're aiming to have "always-consistent" focus everywhere. You have to mark every focus-able component with focus: true; property, and the rest should work without tweaking. We provide several convenient properties to handle focus with ease:

  • activeFocus — this item has current focus and got any user input first
  • focused — this item has current focus in its parent, but not necessarily focused globally

Random customization notes

Adding modernizr features

Please use the following command to get the custom modernizr build page: head -n2 dist/modernizr-custom.js | tail -n1 or just the second line of modernizr-custom.js file

Thanks

Modernizr project

Modernizr tells you what HTML, CSS and JavaScript features the user’s browser has to offer. https://modernizr.com/

SDL Game Controller Database

A community sourced database of game controller mappings https://github.com/gabomdq/SDL_GameControllerDB

Apache Cordova project

Apache Cordova is an open-source mobile development framework. It allows you to use standard web technologies - HTML5, CSS3, and JavaScript for cross-platform development. https://cordova.apache.org

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].