~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/cpp/debugger/kdevdebugger.rc

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
2
 
<kpartgui name="KDevDebugger" version="11">
3
 
<MenuBar>
4
 
 <Menu name="debug">
5
 
  <text>&amp;Debug</text>
6
 
  <Action name="debug_run" group="debug"/>
7
 
  <Action name="debug_stop" group="debug"/>
8
 
  <Action name="debug_pause" group="debug"/>
9
 
  <Action name="debug_runtocursor" group="debug"/>
10
 
  <Action name="debug_jumptocursor" group="debug"/>
11
 
  <Separator group="debug"/>
12
 
  <Action name="debug_stepover" group="debug"/>
13
 
  <Action name="debug_stepoverinst" group="debug"/>
14
 
  <Action name="debug_stepinto" group="debug"/>
15
 
  <Action name="debug_stepintoinst" group="debug"/>
16
 
  <Action name="debug_stepout" group="debug"/>
17
 
  <Action name="debug_restart" group="debug"/>
18
 
  <Separator group="debug"/>
19
 
  <Action name="debug_toggle_breakpoint" group="debug"/>
20
 
  <Action name="debug_disable_breakpoint" group="debug"/>
21
 
  <Separator group="debug"/>
22
 
  <Action name="debug_memview" group="debug"/>
23
 
  <Action name="debug_core" group="debug"/>
24
 
  <Action name="debug_attach" group="debug"/>
25
 
  <Separator group="debug"/>
26
 
 </Menu>
27
 
</MenuBar>
28
 
<ToolBar name="debugToolBar">
29
 
  <text>Debugger Toolbar</text>
30
 
  <Action name="debug_run"/>
31
 
  <Action name="debug_restart"/>
32
 
  <Action name="debug_stepover"/>
33
 
  <Action name="debug_stepinto"/>
34
 
  <Action name="debug_stepout"/>
35
 
  <Separator/>
36
 
  <Action name="debug_memview"/>
37
 
  <WeakSeparator/>
38
 
</ToolBar>
39
 
<State name="stopped">
40
 
  <enable>
41
 
    <Action name="debug_run"/>
42
 
    <Action name="debug_core"/>
43
 
    <Action name="debug_attach"/>
44
 
  </enable>
45
 
  <disable>
46
 
    <Action name="debug_stop"/>
47
 
    <Action name="debug_pause"/>
48
 
    <Action name="debug_runtocursor"/>
49
 
    <Action name="debug_stepover"/>
50
 
    <Action name="debug_stepoverinst"/>
51
 
    <Action name="debug_stepinto"/>
52
 
    <Action name="debug_stepintoinst"/>
53
 
    <Action name="debug_stepout"/>
54
 
    <Action name="debug_memview"/>
55
 
  </disable>
56
 
</State>
57
 
<State name="paused">
58
 
  <enable>
59
 
    <Action name="debug_run"/>
60
 
    <Action name="debug_stop"/>
61
 
    <Action name="debug_runtocursor"/>
62
 
    <Action name="debug_stepover"/>
63
 
    <Action name="debug_stepoverinst"/>
64
 
    <Action name="debug_stepinto"/>
65
 
    <Action name="debug_stepintoinst"/>
66
 
    <Action name="debug_stepout"/>
67
 
    <Action name="debug_memview"/>
68
 
  </enable>
69
 
  <disable>
70
 
    <Action name="debug_core"/>
71
 
    <Action name="debug_attach"/>
72
 
  </disable>
73
 
</State>
74
 
<State name="active">
75
 
  <enable>
76
 
    <Action name="debug_pause"/>
77
 
    <Action name="debug_stop"/>
78
 
  </enable>
79
 
  <disable>
80
 
    <Action name="debug_run"/>
81
 
    <Action name="debug_runtocursor"/>
82
 
    <Action name="debug_stepover"/>
83
 
    <Action name="debug_stepoverinst"/>
84
 
    <Action name="debug_stepinto"/>
85
 
    <Action name="debug_stepintoinst"/>
86
 
    <Action name="debug_stepout"/>
87
 
    <Action name="debug_memview"/>
88
 
    <Action name="debug_core"/>
89
 
    <Action name="debug_attach"/>
90
 
  </disable>
91
 
</State>
92
 
</kpartgui>
93