File: plugin.xml

package info (click to toggle)
sight 25.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 43,108 kB
  • sloc: cpp: 306,170; xml: 18,037; ansic: 9,960; python: 1,379; sh: 144; makefile: 33
file content (31 lines) | stat: -rw-r--r-- 1,234 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
<!-- 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>