Writing Your Own Lighthouse Backend: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
'''<span class="caps">THIS</span> <span class="caps">PAGE</span> IS <span class="caps">OBSOLETE</span>''' – Please move the useful content to [[Qt-Platform-Abstraction|Qt Platform Abstraction]] and redirect there. Thank you!
[[Category:Developing_Qt::Lighthouse]]


=How to write Lighthouse backends=
'''THIS PAGE IS OBSOLETE''' - Please move the useful content to [[Qt Platform Abstraction]] and redirect there. Thank you!
 
= How to write Lighthouse backends =


The short version: Look at the files in
The short version: Look at the files in
<code>your-dev-directory/qt-lighthouse/src/plugins/platforms/minimal/<code>


That should show what needs to be implemented to get a new plugin off the ground.
That should show what needs to be implemented to get a new plugin off the ground.


[ ''More detailed documentation to follow'' ]
''More detailed documentation to follow''
 
Please note that all <span class="caps">API</span>s are private and subject to change. (This is a research project after all.) Even if Lighthouse at some point gets included in an official Qt release, we will not promise binary compatibility between minor versions: A Lighthouse plugin is tied to a specific version of Qt, just as much as the individual Qt libraries are tied together.
 
===Categories:===
 
* [[:Category:Developing Qt|Developing_Qt]]
** [[:Category:Developing Qt::Lighthouse|Lighthouse]]

Revision as of 10:25, 24 February 2015


THIS PAGE IS OBSOLETE - Please move the useful content to Qt Platform Abstraction and redirect there. Thank you!

How to write Lighthouse backends

The short version: Look at the files in

your-dev-directory/qt-lighthouse/src/plugins/platforms/minimal/

That should show what needs to be implemented to get a new plugin off the ground.

More detailed documentation to follow