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
|
<!-- Application name and version (the version is automatically replaced by CMake
using the version defined in the Properties.cmake) -->
<plugin id="tuto01_basic">
<!-- The modules in requirements are automatically started when this
Application is launched. -->
<requirement id="sight::module::service" />
<requirement id="sight::module::ui::qt" />
<!-- Defines the App-config -->
<extension implements="sight::app::extension::config">
<!-- identifier of the configuration -->
<id>Tuto01Basic_AppCfg</id>
<config>
<!-- ******************************* UI declaration *********************************** -->
<service uid="myFrame" type="sight::module::ui::frame">
<gui>
<frame>
<name>tuto01_basic</name>
<icon>tuto01_basic/tuto.ico</icon>
<minSize width="800" height="600" />
</frame>
</gui>
</service>
<!-- ******************************* Start services ***************************************** -->
<start uid="myFrame" />
</config>
</extension>
</plugin>
|