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
|
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
<class>ConfigureProblemReporter</class>
<widget class="QWidget">
<property name="name">
<cstring>ConfigureProblemReporter</cstring>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>588</width>
<height>492</height>
</rect>
</property>
<vbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<widget class="QGroupBox">
<property name="name">
<cstring>groupBox3_2</cstring>
</property>
<property name="title">
<string>Problem Reporter</string>
</property>
<property name="whatsThis" stdset="0">
<string>If enabled, the C++ parser will report any syntax errors it detects.
They will be displayed in the 'Problems' output view and as markers in the editor.</string>
</property>
<hbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<widget class="QCheckBox">
<property name="name">
<cstring>problemReporterCheckbox</cstring>
</property>
<property name="text">
<string>&Use Problem Reporter</string>
</property>
</widget>
</hbox>
</widget>
<widget class="QGroupBox">
<property name="name">
<cstring>groupBox1</cstring>
</property>
<property name="frameShadow">
<enum>Sunken</enum>
</property>
<property name="title">
<string>Parsing</string>
</property>
<property name="whatsThis" stdset="0">
<string>If enabled, the C++ parser will run on the active file after the stated timeout, after there has been any changes to the text.
If disabled, the parser will typically only run when the file is saved.</string>
</property>
<vbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<widget class="QLayoutWidget">
<property name="name">
<cstring>layout2</cstring>
</property>
<hbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<widget class="QCheckBox">
<property name="name">
<cstring>bgParserCheckbox</cstring>
</property>
<property name="text">
<string>Enable &background parsing</string>
</property>
</widget>
<widget class="QLabel">
<property name="name">
<cstring>delayLabel</cstring>
</property>
<property name="sizePolicy">
<sizepolicy>
<hsizetype>7</hsizetype>
<vsizetype>5</vsizetype>
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>msec</string>
</property>
<property name="alignment">
<set>AlignVCenter|AlignLeft</set>
</property>
</widget>
</hbox>
</widget>
<widget class="QSlider">
<property name="name">
<cstring>delaySlider</cstring>
</property>
<property name="minValue">
<number>250</number>
</property>
<property name="maxValue">
<number>2000</number>
</property>
<property name="lineStep">
<number>250</number>
</property>
<property name="pageStep">
<number>500</number>
</property>
<property name="orientation">
<enum>Horizontal</enum>
</property>
<property name="tickmarks">
<enum>NoMarks</enum>
</property>
<property name="tickInterval">
<number>250</number>
</property>
</widget>
</vbox>
</widget>
<widget class="QGroupBox">
<property name="name">
<cstring>groupBox3</cstring>
</property>
<property name="title">
<string>Special &Headers</string>
</property>
<property name="whatsThis" stdset="0">
<string>Often a macro that the C++ parser must understand in order to correctly parse a piece of code is defined somewhere in some far off header file that the parser doesn't look at. This textbox can be used to define those macros locally so that the C++ parser to understand them.</string>
</property>
<vbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<widget class="QTextEdit">
<property name="name">
<cstring>specialHeader</cstring>
</property>
</widget>
</vbox>
</widget>
</vbox>
</widget>
<connections>
<connection>
<sender>delaySlider</sender>
<signal>valueChanged(int)</signal>
<receiver>ConfigureProblemReporter</receiver>
<slot>setDelayLabel(int)</slot>
</connection>
<connection>
<sender>bgParserCheckbox</sender>
<signal>toggled(bool)</signal>
<receiver>ConfigureProblemReporter</receiver>
<slot>bgParserCheckbox_toggled(bool)</slot>
</connection>
</connections>
<tabstops>
<tabstop>bgParserCheckbox</tabstop>
<tabstop>delaySlider</tabstop>
</tabstops>
<includes>
<include location="global" impldecl="in implementation">kdialog.h</include>
<include location="local" impldecl="in implementation">configproblemreporter.ui.h</include>
</includes>
<forwards>
<forward>class CppSupportPart;</forward>
</forwards>
<variables>
<variable>CppSupportPart* m_part;</variable>
</variables>
<slots>
<slot>init()</slot>
<slot>destroy()</slot>
<slot>setPart( CppSupportPart * part )</slot>
<slot>accept()</slot>
<slot>bgParserCheckbox_toggled( bool b )</slot>
<slot access="protected">setDelayLabel( int delay )</slot>
</slots>
<layoutdefaults spacing="6" margin="11"/>
<layoutfunctions spacing="KDialog::spacingHint" margin="KDialog::marginHint"/>
</UI>
|