Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5bb5c863352c3ab3149bd3ab31e3b1907b864eff (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2006, 2015 PalmSource, Inc. and others
All rights reserved. This program and the accompanying materials 
are made available under the terms of the Eclipse Public License v1.0 
which accompanies this distribution, and is available at 
http://www.eclipse.org/legal/epl-v10.html 

Contributors: 
Ewa Matejska     (PalmSource)      - initial API and implementation 
Martin Oberhuber (Wind River)      - fix 158529: Migrate docs to HTML / TOC format 
Anna Dushistova  (Mentor Graphics) - [314659] added launch delegate for dsf
Anna Dushistova  (Mentor Graphics) - code restructuring
Anna Dushistova  (MontaVista)      - adapted from org.eclipse.cdt.launch.remote
-->
<?eclipse version="3.0"?>
<plugin>
   <extension point="org.eclipse.debug.core.launchDelegates">
      <launchDelegate
            id="org.eclipse.tcf.te.remotecdt.debug"
            type="org.eclipse.cdt.launch.remoteApplicationLaunchType"
            modes="debug"
            delegate="org.eclipse.tcf.te.tcf.launch.cdt.launching.TEGdbLaunchDelegate"
            name="%tedsfLaunchDelegate.name"
            delegateDescription="%tedsfLaunchDelegate.description"
            sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
            sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
      </launchDelegate>      
      <launchDelegate
            id="org.eclipse.tcf.te.remotecdt.run"
            type="org.eclipse.cdt.launch.remoteApplicationLaunchType"
            modes="run"
            delegate="org.eclipse.tcf.te.tcf.launch.cdt.launching.TERunLaunchDelegate"
            name="%terunLaunchDelegate.name"
            delegateDescription="%terunLaunchDelegate.description">
      </launchDelegate>
      <launchDelegate
            id="org.eclipse.tcf.te.remotecdt.attach"
            type="org.eclipse.cdt.launch.attachLaunchType"
            modes="debug"
            delegate="org.eclipse.tcf.te.tcf.launch.cdt.launching.TEGdbAttachLaunchDelegate"
            name="%teattachLaunchDelegate.name"
            delegateDescription="%teattachLaunchDelegate.description"
            sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
            sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
      </launchDelegate>      
           
   </extension>
   
   <extension point="org.eclipse.debug.ui.launchConfigurationTabs">
      <!-- Remote Application (Run) -->
      <tab
            id="org.eclipse.tcf.te.remotecdt.run.mainTab"
            group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
            name="Main"
            class="org.eclipse.tcf.te.tcf.launch.cdt.tabs.TEApplicationMainTab">
         <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.run"/>
      </tab>         
      <tab 
            id="org.eclipse.tcf.te.remotecdt.run.argumentsTab"
            group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
            name="Arguments"
            class="org.eclipse.cdt.dsf.gdb.internal.ui.launching.CArgumentsTab">
         <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.run"/>
         <placement after="org.eclipse.tcf.te.remotecdt.run.mainTab"/>
      </tab>
      <tab
            id="org.eclipse.tcf.te.remotecdt.CommonTab"
            group="org.eclipse.cdt.launch.remoteApplicationRunLaunchTabGroup"
            name="Common"
            class="org.eclipse.debug.ui.CommonTab">
         <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.run"/>
         <placement after="org.eclipse.tcf.te.remotecdt.run.argumentsTab"/>
      </tab>

      <!-- Remote Application (Debug) -->
      <tab
            id="org.eclipse.tcf.te.remotecdt.debug.mainTab"
            group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
            name="Main"
            class="org.eclipse.tcf.te.tcf.launch.cdt.tabs.TEApplicationMainTab">
         <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.debug"/>
      </tab>
      <tab 
            id="org.eclipse.tcf.te.remotecdt.debug.argumentsTab"
            group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
            name="Arguments"
            class="org.eclipse.cdt.dsf.gdb.internal.ui.launching.CArgumentsTab">
         <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.debug"/>
         <placement after="org.eclipse.tcf.te.remotecdt.debug.mainTab"/>
      </tab>
      <tab
            id="org.eclipse.tcf.te.remotecdt.debug.debuggerTab"
            group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
            name="Debugger"
            class="org.eclipse.tcf.te.tcf.launch.cdt.tabs.TEApplicationDebuggerTab">
        <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.debug"/>
        <placement after="org.eclipse.cdt.dsf.gdb.launch.argumentsTab"/>
      </tab>
      <tab
            id="org.eclipse.tcf.te.remotecdt.debug.sourceLookupTab"
            group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
            name="Source"
            class="org.eclipse.debug.ui.sourcelookup.SourceLookupTab">
        <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.debug"/>
        <placement after="org.eclipse.tcf.te.remotecdt.debug.debuggerTab"/>        
      </tab>         
      <tab
            id="org.eclipse.tcf.te.remotecdt.debug.commonTab"
            group="org.eclipse.cdt.launch.remoteApplicationLaunchTabGroup"
            name="Common"
            class="org.eclipse.debug.ui.CommonTab">
        <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.debug"/>
        <placement after="org.eclipse.debug.ui.sourceLookupTab"/>                
      </tab>         

      <!-- Attach Launch -->
      <tab
            id="org.eclipse.tcf.te.remotecdt.attach.mainTab"
            group="org.eclipse.cdt.launch.attachLaunchTabGroup"
            name="Main"
            class="org.eclipse.tcf.te.tcf.launch.cdt.tabs.TEAttachMainTab">
         <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.attach"/>
      </tab>
      <tab
            id="org.eclipse.tcf.te.remotecdt.attach.debuggerTab"
            group="org.eclipse.cdt.launch.attachLaunchTabGroup"
            name="Debugger"
            class="org.eclipse.tcf.te.tcf.launch.cdt.tabs.TEAttachDebuggerTab">
        <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.attach"/>
        <placement after="org.eclipse.tcf.te.remotecdt.attach.mainTab"/>
      </tab>
      <tab
            id="org.eclipse.tcf.te.remotecdt.attach.sourceLookupTab"
            group="org.eclipse.cdt.launch.attachLaunchTabGroup"
            name="Source"
            class="org.eclipse.debug.ui.sourcelookup.SourceLookupTab">
        <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.attach"/>
        <placement after="org.eclipse.tcf.te.remotecdt.attach.debuggerTab"/>
      </tab>
      <tab
            id="org.eclipse.tcf.te.remotecdt.attach.commonTab"
            group="org.eclipse.cdt.launch.attachLaunchTabGroup"
            name="Common"
            class="org.eclipse.debug.ui.CommonTab">
        <associatedDelegate delegate="org.eclipse.tcf.te.remotecdt.attach"/>
        <placement after="org.eclipse.debug.ui.sourceLookupTab"/>
      </tab>

   </extension>

<!-- Preference contributions -->
   <extension point="org.eclipse.core.runtime.preferences">
      <initializer
            class="org.eclipse.tcf.te.tcf.launch.cdt.preferences.PreferencesInitializer">
      </initializer>
   </extension>

</plugin>

Back to the top