1
FalkonTutorials/qml/articles/1.Introduction.md
Juraj Oravec e07a78c946
Add QML "Introduction" section
Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
2022-03-19 00:02:05 +01:00

1.6 KiB

Falkon QML Tutorial - 1. Introduction

Hello, in this series I would like to introduce and describe how to write extensions for Falkon web browser with QML.

Starting with Falkon 3.2 there is support for installing extensions from store which can be found at store.falkon.org

Falkon supports extensions written in C++, Python and QML.
This series will go over the QML implementation.

Requirements

  1. Knowledge of C++
    There is no way around this, while there are times when just looking at documentation is enough I prefer the code.
  2. The Falkon source code
  3. Knowledge of QML, QtQuick and Qt
    It is good to have Qt documentation and Qt development tools like Qt Designer at hand.

Limitations

NOTE: First I have to mention that I do not know much about QML development, only bits here and there.

  • The instance of FalkonAction (toolbar button) is shared between all Falkon windows in the same instance. This makes it unsuitable for showing live status of website since it will be totaly broken the moment another window is opened and I do not want to see that happening to my extentions.

Falkon module

To access Falkon specific features and functions inside the python script you need to use Falkon module.

import org.kde.falkon 1.0 as Falkon