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 (211 lines) | stat: -rw-r--r-- 8,740 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<plugin id="tuto05_mesher">
    <requirement id="sight::module::service" />
    <requirement id="sight::module::ui::qt" />
    <extension implements="sight::app::extension::config">
        <id>Tuto05Mesher_AppCfg</id>
        <config>
            <!-- ******************************* Objects declaration ****************************** -->

            <!-- Deferred Mesh object associated to the uid 'myMesh' -->
            <object uid="myMesh" type="sight::data::mesh" deferred="true" />

            <!-- Deferred ModelSeries object associated to the key 'myModelSeries' -->
            <object uid="myModelSeries" type="sight::data::model_series" deferred="true" />

            <!-- ImageSeries object associated to the key 'imageSeries' -->
            <object uid="imageSeries" type="sight::data::image_series" />

            <!-- ******************************* UI declaration *********************************** -->
            <service uid="mainFrame" type="sight::module::ui::frame">
                <gui>
                    <frame>
                        <name>tuto05_mesher</name>
                        <icon>tuto05_mesher/tuto.ico</icon>
                        <minSize width="800" height="600" />
                    </frame>
                    <menubar />
                </gui>
                <registry>
                    <menubar sid="menuBarView" start="true" />
                    <view sid="containerView" start="true" />
                </registry>
            </service>

            <service uid="menuBarView" type="sight::module::ui::menubar">
                <gui>
                    <layout>
                        <menu name="File" />
                        <menu name="Mesher" />
                    </layout>
                </gui>
                <registry>
                    <menu sid="menuFileView" start="true" />
                    <menu sid="menuMesherView" start="true" />
                </registry>
            </service>

            <service uid="menuFileView" type="sight::module::ui::menu">
                <gui>
                    <layout>
                        <menuItem name="Open image" shortcut="Ctrl+O" />
                        <menuItem name="Save image" />
                        <separator />
                        <menuItem name="Save mesh" />
                        <separator />
                        <menuItem name="Quit" specialAction="QUIT" shortcut="Ctrl+Q" />
                    </layout>
                </gui>
                <registry>
                    <menuItem sid="openImageAct" start="true" />
                    <menuItem sid="saveImageAct" start="true" />
                    <menuItem sid="saveMeshAct" start="true" />
                    <menuItem sid="quitAct" start="true" />
                </registry>
            </service>

            <service uid="menuMesherView" type="sight::module::ui::menu">
                <gui>
                    <layout>
                        <menuItem name="Compute Mesh (VTK)" />
                    </layout>
                </gui>
                <registry>
                    <menuItem sid="createMeshAct" start="true" />
                </registry>
            </service>

            <!--
                Default view service:
                The type 'sight::ui::layout::line' represents a layout where the view are aligned
                horizontally or vertically (set orientation value 'horizontal' or 'vertical').
                It is possible to add a 'proportion' attribute for the <view> to defined the proportion
                used by the view compared to the others.
            -->
            <service uid="containerView" type="sight::module::ui::view">
                <gui>
                    <layout type="sight::ui::layout::line">
                        <orientation value="horizontal" />
                        <view />
                        <view />
                    </layout>
                </gui>
                <registry>
                    <view sid="imageSrv" start="true" />
                    <view sid="meshSrv" start="false" />
                </registry>
            </service>

            <!-- ******************************* Actions ****************************************** -->
            <service uid="quitAct" type="sight::module::ui::quit" />
            <service uid="openImageAct" type="sight::module::ui::action" />
            <service uid="saveImageAct" type="sight::module::ui::action">
                <state enabled="false" />
            </service>
            <service uid="saveMeshAct" type="sight::module::ui::action">
                <state enabled="false" />
            </service>
            <service uid="createMeshAct" type="sight::module::ui::action" />

            <service uid="mesherSrv" type="sight::module::filter::mesh::vtk_mesher">
                <in key="imageSeries" uid="imageSeries" />
                <out key="modelSeries" uid="myModelSeries" />
                <config percent_reduction="0" threshold="255" />
            </service>

            <!-- ******************************* Services ***************************************** -->

            <!-- Add a shortcut in the application (key "v") -->
            <service uid="shortcutSrv" type="sight::module::ui::qt::com::signal_shortcut">
                <config shortcut="v" sid="containerView" />
            </service>

            <!--
                Services associated to the image data :
                Visualization, reading and writing service creation.
            -->
            <service uid="imageSrv" type="sight::module::viz::sample::image">
                <in key="image" uid="imageSeries" />
            </service>

            <service uid="imageReaderSrv" type="sight::module::ui::io::selector">
                <inout key="data" uid="imageSeries" />
                <type mode="reader" />
            </service>

            <service uid="imageWriterSrv" type="sight::module::ui::io::selector">
                <inout key="data" uid="imageSeries" />
                <type mode="writer" />
            </service>

            <!--
                Services associated to the Mesh data :
                Visualization, reading and writing service creation.
            -->
            <service uid="meshSrv" type="sight::module::viz::sample::mesh">
                <in key="mesh" uid="myMesh" />
            </service>

            <service uid="meshWriterSrv" type="sight::module::ui::io::selector">
                <inout key="data" uid="myMesh" />
                <type mode="writer" />
            </service>

            <!-- Extract mesh from ModelSeries-->
            <service uid="extractMeshSrv" type="sight::module::data::get_mesh">
                <in key="modelSeries" uid="myModelSeries" />
                <out group="mesh">
                    <key index="0" uid="myMesh" />
                </out>
            </service>

            <!-- ******************************* Connections ***************************************** -->
            <connect>
                <signal>shortcutSrv/activated</signal>
                <slot>createMeshAct/update</slot>
            </connect>

            <connect>
                <signal>createMeshAct/clicked</signal>
                <slot>mesherSrv/update</slot>
            </connect>

            <connect>
                <signal>myModelSeries/modified</signal>
                <slot>extractMeshSrv/update</slot>
            </connect>

            <connect>
                <signal>extractMeshSrv/updated</signal>
                <slot>saveMeshAct/enable</slot>
            </connect>

            <!-- Connections for general menu services -->
            <connect>
                <signal>openImageAct/clicked</signal>
                <slot>imageReaderSrv/update</slot>
                <slot>saveImageAct/enable</slot>
            </connect>

            <connect>
                <signal>saveImageAct/clicked</signal>
                <slot>imageWriterSrv/update</slot>
            </connect>

            <connect>
                <signal>saveMeshAct/clicked</signal>
                <slot>meshWriterSrv/update</slot>
            </connect>

            <!-- ******************************* Start services ***************************************** -->
            <start uid="mainFrame" />
            <start uid="imageReaderSrv" />
            <start uid="imageWriterSrv" />
            <start uid="meshWriterSrv" />
            <start uid="extractMeshSrv" />
            <start uid="shortcutSrv" />
            <start uid="mesherSrv" />
            <start uid="meshSrv" />
            <update uid="extractMeshSrv" />
        </config>
    </extension>
</plugin>