~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

Viewing changes to src/plugins/contrib/symtab/resources/exec_dialog.xrc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<resource>
 
3
  <object class="wxDialog" name="dlgSymTabExec">
 
4
    <style>wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxMAXIMIZE_BOX</style>
 
5
    <title>SymTab Results</title>
 
6
    <centered>1</centered>
 
7
    <object class="wxBoxSizer">
 
8
      <orient>wxVERTICAL</orient>
 
9
      <object class="sizeritem">
 
10
        <flag>wxTOP|wxLEFT|wxRIGHT|wxEXPAND|wxALIGN_CENTRE|wxADJUST_MINSIZE</flag>
 
11
        <border>8</border>
 
12
        <object class="wxStaticText" name="stxtAbout">
 
13
          <style>wxALIGN_CENTRE</style>
 
14
          <font>
 
15
            <size>14</size>
 
16
            <weight>bold</weight>
 
17
          </font>
 
18
          <label>NM's Output</label>
 
19
        </object>
 
20
      </object>
 
21
      <object class="sizeritem">
 
22
        <object class="wxStaticText" name="stxtFile">
 
23
          <label>File: (none selected)</label>
 
24
          <style>wxALIGN_CENTRE</style>
 
25
        </object>
 
26
        <flag>wxALL|wxEXPAND|wxALIGN_CENTRE|wxADJUST_MINSIZE</flag>
 
27
        <border>8</border>
 
28
      </object>
 
29
      <object class="sizeritem">
 
30
        <flag>wxGROW|wxALL</flag>
 
31
        <border>5</border>
 
32
        <object class="wxStaticLine" name="wxID_STATIC">
 
33
          <style>wxLI_VERTICAL</style>
 
34
        </object>
 
35
      </object>
 
36
      <object class="sizeritem">
 
37
        <object class="wxNotebook" name="nbTabs">
 
38
          <usenotebooksizer>1</usenotebooksizer>
 
39
          <object class="notebookpage">
 
40
            <label>Symbols</label>
 
41
            <object class="wxPanel" name="tabSymbols">
 
42
              <style>wxTAB_TRAVERSAL</style>
 
43
              <object class="wxGridSizer">
 
44
                <object class="sizeritem">
 
45
                  <object class="wxListCtrl" name="lstLib2Symbol">
 
46
                    <size>600,200</size>
 
47
                    <style>wxLC_REPORT</style>
 
48
                  </object>
 
49
                  <flag>wxALL|wxEXPAND</flag>
 
50
                </object>
 
51
                <object class="sizeritem">
 
52
                  <object class="wxTextCtrl" name="txtHelp">
 
53
                    <value>At least the following symbol types are used; others are, as well, depending on the object file format. If lowercase, the symbol is local; if uppercase, the symbol is global (external).
 
54
 
 
55
A  The symbol's value is absolute, and will not be changed by further linking.
 
56
B  The symbol is in the uninitialized data section (known as BSS).
 
57
C  The symbol is common. Common symbols are uninitialized data. When linking, multiple common symbols may appear with the same name. If the symbol is defined anywhere, the common symbols are treated as undefined references.
 
58
D  The symbol is in the initialized data section.
 
59
G  The symbol is in an initialized data section for small objects. Some object file formats permit more efficient access to small data objects, such as a global int variable as opposed to a large global array.
 
60
I  The symbol is an indirect reference to another symbol. This is a GNU extension to the a.out object file format which is rarely used.
 
61
N  The symbol is a debugging symbol.
 
62
R  The symbol is in a read only data section.
 
63
S  The symbol is in an uninitialized data section for small objects.
 
64
T  The symbol is in the text (code) section.
 
65
U  The symbol is undefined.
 
66
V  The symbol is a weak object. When a weak defined symbol is linked with a normal defined symbol, the normal defined symbol is used with no error. When a weak undefined symbol is linked and the symbol is not defined, the value of the weak symbol becomes zero with no error.
 
67
W  The symbol is a weak symbol that has not been specifically tagged as a weak object symbol. When a weak defined symbol is linked with a normal defined symbol, the normal defined symbol is used with no error. When a weak undefined symbol is linked and the symbol is not defined, the value of the symbol is determined in a system-specific manner without error. On some systems, uppercase indicates that a default value has been specified.
 
68
-  The symbol is a stabs symbol in an a.out object file. In this case, the next values printed are the stabs other field, the stabs desc field, and the stab type. Stabs symbols are used to hold debugging information.
 
69
?  The symbol type is unknown, or object file format specific.</value>
 
70
                    <size>600,150</size>
 
71
                    <style>wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL</style>
 
72
                  </object>
 
73
                  <flag>wxALL|wxEXPAND</flag>
 
74
                </object>
 
75
                <cols>1</cols>
 
76
                <rows>2</rows>
 
77
              </object>
 
78
            </object>
 
79
          </object>
 
80
          <object class="notebookpage">
 
81
            <label>Misc</label>
 
82
            <object class="wxPanel" name="tabMisc">
 
83
              <object class="wxGridSizer">
 
84
                <object class="sizeritem">
 
85
                  <object class="wxTextCtrl" name="txtMisc">
 
86
                    <size>600,400</size>
 
87
                    <style>wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL</style>
 
88
                  </object>
 
89
                  <flag>wxALL|wxEXPAND</flag>
 
90
                </object>
 
91
                <cols>1</cols>
 
92
                <rows>1</rows>
 
93
              </object>
 
94
              <style>wxTAB_TRAVERSAL</style>
 
95
            </object>
 
96
          </object>
 
97
        </object>
 
98
        <option>1</option>
 
99
        <flag>wxALL|wxEXPAND</flag>
 
100
        <border>8</border>
 
101
      </object>
 
102
      <object class="sizeritem">
 
103
        <object class="wxBoxSizer">
 
104
          <orient>wxHORIZONTAL</orient>
 
105
          <object class="sizeritem">
 
106
            <object class="wxButton" name="btnExport">
 
107
              <label>&amp;Export to File...</label>
 
108
            </object>
 
109
            <flag>wxALL</flag>
 
110
            <border>8</border>
 
111
          </object>
 
112
          <object class="sizeritem">
 
113
            <flag>wxALL</flag>
 
114
            <border>8</border>
 
115
            <object class="wxButton" name="btnNext">
 
116
              <label>&amp;Next File...</label>
 
117
              <default>1</default>
 
118
            </object>
 
119
          </object>
 
120
          <object class="sizeritem">
 
121
            <object class="wxButton" name="btnCancel">
 
122
              <label>&amp;Cancel</label>
 
123
            </object>
 
124
            <flag>wxALL</flag>
 
125
            <border>8</border>
 
126
          </object>
 
127
        </object>
 
128
        <flag>wxBOTTOM|wxLEFT|wxRIGHT|wxALIGN_CENTRE_HORIZONTAL</flag>
 
129
        <border>8</border>
 
130
      </object>
 
131
    </object>
 
132
  </object>
 
133
</resource>
 
 
b'\\ No newline at end of file'