annotate libgui/src/settings-dialog.ui @ 18179:b3838cedfe04 gui-release

redesign of dock widgets title bar with configurable colors * octave-dock-widget.cc (constructor): connect settings_changed signal to new slot handle_settings; (handle_settings): common settings for all dock widgets: style sheet, this functions calls notice_settings for individual settings; (make_window,make_widget): change dock-/undock-icon * octave-dock-widget.h: new slot handle_settings * settings-dialog.cc (constructor): check box and color pickers for title bar; (write_changed_settings): store colors to settings file * settings-dialog.h: new color-pickers as class variables * settings-dialog.ui: check box and color pickers for title bar colors
author Torsten <ttl@justmail.de>
date Tue, 31 Dec 2013 13:31:45 +0100
parents 14acb08d75fa
children f227bb47314f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
2 <ui version="4.0">
14709
f50591409306 Started to rename class names and methods from camel case to underscore-
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14707
diff changeset
3 <class>settings_dialog</class>
f50591409306 Started to rename class names and methods from camel case to underscore-
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14707
diff changeset
4 <widget class="QDialog" name="settings_dialog">
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
5 <property name="windowModality">
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
6 <enum>Qt::ApplicationModal</enum>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
7 </property>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
8 <property name="geometry">
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
9 <rect>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
10 <x>0</x>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
11 <y>0</y>
16402
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
12 <width>700</width>
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
13 <height>480</height>
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
14 </rect>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
15 </property>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
16 <property name="minimumSize">
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
17 <size>
16402
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
18 <width>700</width>
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
19 <height>480</height>
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
20 </size>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
21 </property>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
22 <property name="maximumSize">
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
23 <size>
16402
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
24 <width>700</width>
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
25 <height>480</height>
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
26 </size>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
27 </property>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
28 <property name="windowTitle">
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
29 <string>Settings</string>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
30 </property>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
31 <layout class="QVBoxLayout" name="verticalLayout_2">
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
32 <item>
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
33 <widget class="QTabWidget" name="tabWidget">
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
34 <property name="currentIndex">
18179
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
35 <number>0</number>
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
36 </property>
17676
c060ad097056 add menu entries to the editor for directly accessing the editor's settings
Torsten <ttl@justmail.de>
parents: 16865
diff changeset
37 <widget class="QWidget" name="tab_general">
15787
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
38 <property name="enabled">
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
39 <bool>true</bool>
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
40 </property>
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
41 <attribute name="title">
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
42 <string>General</string>
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
43 </attribute>
15972
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
44 <widget class="QWidget" name="verticalLayoutWidget">
15787
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
45 <property name="geometry">
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
46 <rect>
15972
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
47 <x>9</x>
15787
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
48 <y>10</y>
16525
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
49 <width>651</width>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
50 <height>371</height>
15787
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
51 </rect>
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
52 </property>
15972
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
53 <layout class="QVBoxLayout" name="verticalLayout_7">
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
54 <item>
16525
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
55 <layout class="QGridLayout" name="gridLayout">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
56 <item row="3" column="0">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
57 <widget class="QLabel" name="label_9">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
58 <property name="text">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
59 <string>Icon set for dock widgets</string>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
60 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
61 </widget>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
62 </item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
63 <item row="1" column="0">
15972
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
64 <widget class="QLabel" name="label_2">
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
65 <property name="text">
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
66 <string>Language (requires restart)</string>
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
67 </property>
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
68 </widget>
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
69 </item>
16525
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
70 <item row="2" column="0">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
71 <widget class="QLabel" name="label_8">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
72 <property name="text">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
73 <string>Icon size</string>
15972
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
74 </property>
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
75 </widget>
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
76 </item>
18179
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
77 <item row="2" column="1">
16525
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
78 <layout class="QHBoxLayout" name="horizontalLayout_6">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
79 <item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
80 <widget class="QSpinBox" name="toolbar_icon_size">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
81 <property name="minimum">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
82 <number>16</number>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
83 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
84 <property name="maximum">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
85 <number>32</number>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
86 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
87 <property name="singleStep">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
88 <number>4</number>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
89 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
90 <property name="value">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
91 <number>24</number>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
92 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
93 </widget>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
94 </item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
95 <item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
96 <spacer name="horizontalSpacer_4">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
97 <property name="orientation">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
98 <enum>Qt::Horizontal</enum>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
99 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
100 <property name="sizeHint" stdset="0">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
101 <size>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
102 <width>40</width>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
103 <height>20</height>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
104 </size>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
105 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
106 </spacer>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
107 </item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
108 </layout>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
109 </item>
18179
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
110 <item row="1" column="1">
16525
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
111 <layout class="QHBoxLayout" name="horizontalLayout_8">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
112 <item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
113 <widget class="QComboBox" name="comboBox_language">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
114 <property name="insertPolicy">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
115 <enum>QComboBox::InsertAtBottom</enum>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
116 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
117 </widget>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
118 </item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
119 <item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
120 <spacer name="horizontalSpacer_3">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
121 <property name="orientation">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
122 <enum>Qt::Horizontal</enum>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
123 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
124 <property name="sizeHint" stdset="0">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
125 <size>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
126 <width>40</width>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
127 <height>20</height>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
128 </size>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
129 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
130 </spacer>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
131 </item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
132 </layout>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
133 </item>
18179
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
134 <item row="3" column="1">
16525
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
135 <layout class="QHBoxLayout" name="horizontalLayout_9">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
136 <item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
137 <widget class="QRadioButton" name="general_icon_octave">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
138 <property name="text">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
139 <string>Octave logo only</string>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
140 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
141 <property name="checked">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
142 <bool>true</bool>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
143 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
144 </widget>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
145 </item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
146 <item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
147 <widget class="QRadioButton" name="general_icon_letter">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
148 <property name="text">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
149 <string>Letter icons</string>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
150 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
151 </widget>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
152 </item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
153 <item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
154 <widget class="QRadioButton" name="general_icon_graphic">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
155 <property name="text">
16865
a86327a7d9fb fix of typos in text strings of the gui
Torsten <ttl@justmail.de>
parents: 16822
diff changeset
156 <string>Graphic icons</string>
16525
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
157 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
158 </widget>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
159 </item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
160 <item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
161 <spacer name="horizontalSpacer_6">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
162 <property name="orientation">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
163 <enum>Qt::Horizontal</enum>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
164 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
165 <property name="sizeHint" stdset="0">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
166 <size>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
167 <width>40</width>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
168 <height>20</height>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
169 </size>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
170 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
171 </spacer>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
172 </item>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
173 </layout>
15972
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
174 </item>
18179
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
175 <item row="4" column="0">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
176 <widget class="QLabel" name="label_15">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
177 <property name="text">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
178 <string>Dock widget title bar</string>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
179 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
180 </widget>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
181 </item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
182 <item row="4" column="1">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
183 <layout class="QHBoxLayout" name="horizontalLayout_4">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
184 <item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
185 <widget class="QCheckBox" name="cb_widget_custom_style">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
186 <property name="text">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
187 <string>Custom style</string>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
188 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
189 </widget>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
190 </item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
191 <item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
192 <spacer name="horizontalSpacer_22">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
193 <property name="orientation">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
194 <enum>Qt::Horizontal</enum>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
195 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
196 <property name="sizeType">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
197 <enum>QSizePolicy::Fixed</enum>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
198 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
199 <property name="sizeHint" stdset="0">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
200 <size>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
201 <width>40</width>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
202 <height>20</height>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
203 </size>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
204 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
205 </spacer>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
206 </item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
207 <item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
208 <widget class="QLabel" name="label_bgtitle">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
209 <property name="enabled">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
210 <bool>false</bool>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
211 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
212 <property name="text">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
213 <string>Background color</string>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
214 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
215 </widget>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
216 </item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
217 <item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
218 <layout class="QHBoxLayout" name="layout_widget_bgtitle"/>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
219 </item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
220 <item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
221 <spacer name="horizontalSpacer_23">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
222 <property name="orientation">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
223 <enum>Qt::Horizontal</enum>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
224 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
225 <property name="sizeType">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
226 <enum>QSizePolicy::Fixed</enum>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
227 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
228 <property name="sizeHint" stdset="0">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
229 <size>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
230 <width>12</width>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
231 <height>20</height>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
232 </size>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
233 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
234 </spacer>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
235 </item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
236 <item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
237 <widget class="QLabel" name="label_fgtitle">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
238 <property name="enabled">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
239 <bool>false</bool>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
240 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
241 <property name="text">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
242 <string>Text color</string>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
243 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
244 </widget>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
245 </item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
246 <item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
247 <layout class="QHBoxLayout" name="layout_widget_fgtitle"/>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
248 </item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
249 <item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
250 <spacer name="horizontalSpacer_21">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
251 <property name="orientation">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
252 <enum>Qt::Horizontal</enum>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
253 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
254 <property name="sizeHint" stdset="0">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
255 <size>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
256 <width>40</width>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
257 <height>20</height>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
258 </size>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
259 </property>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
260 </spacer>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
261 </item>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
262 </layout>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
263 </item>
15972
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
264 </layout>
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
265 </item>
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
266 <item>
16525
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
267 <spacer name="verticalSpacer_4">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
268 <property name="orientation">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
269 <enum>Qt::Vertical</enum>
15972
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
270 </property>
16525
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
271 <property name="sizeHint" stdset="0">
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
272 <size>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
273 <width>20</width>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
274 <height>40</height>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
275 </size>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
276 </property>
e192525236ad configurable size of toolbar icons
Torsten <ttl@justmail.de>
parents: 16499
diff changeset
277 </spacer>
15972
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
278 </item>
22ab4fe661d7 gui: selectable language in settings dialog
Torsten <ttl@justmail.de>
parents: 15787
diff changeset
279 </layout>
15787
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
280 </widget>
b081fbe80174 provide separate icons for gui's floating widgets
Torsten <ttl@justmail.de>
parents: 15364
diff changeset
281 </widget>
17676
c060ad097056 add menu entries to the editor for directly accessing the editor's settings
Torsten <ttl@justmail.de>
parents: 16865
diff changeset
282 <widget class="QWidget" name="tab_editor">
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
283 <attribute name="title">
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
284 <string>Editor</string>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
285 </attribute>
14599
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
286 <layout class="QVBoxLayout" name="verticalLayout_6">
14307
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
287 <item>
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
288 <layout class="QVBoxLayout" name="verticalLayout_9">
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
289 <property name="spacing">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
290 <number>4</number>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
291 </property>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
292 <item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
293 <layout class="QGridLayout" name="editor_common_settings_grid">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
294 <property name="spacing">
17676
c060ad097056 add menu entries to the editor for directly accessing the editor's settings
Torsten <ttl@justmail.de>
parents: 16865
diff changeset
295 <number>6</number>
13659
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
296 </property>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
297 <item row="2" column="0">
16702
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
298 <widget class="QCheckBox" name="editor_ws_checkbox">
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
299 <property name="text">
17935
752f6b358754 Tweak GUI strings for conformity.
Rik <rik@octave.org>
parents: 17740
diff changeset
300 <string>Show whitespace</string>
16702
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
301 </property>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
302 </widget>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
303 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
304 <item row="1" column="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
305 <widget class="QCheckBox" name="editor_showLineNumbers">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
306 <property name="enabled">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
307 <bool>true</bool>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
308 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
309 <property name="text">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
310 <string>Show line numbers</string>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
311 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
312 </widget>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
313 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
314 <item row="0" column="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
315 <widget class="QCheckBox" name="editor_longWindowTitle">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
316 <property name="text">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
317 <string>Show complete path in window title</string>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
318 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
319 </widget>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
320 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
321 <item row="2" column="1">
16702
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
322 <widget class="QCheckBox" name="editor_ws_indent_checkbox">
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
323 <property name="enabled">
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
324 <bool>false</bool>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
325 </property>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
326 <property name="text">
17935
752f6b358754 Tweak GUI strings for conformity.
Rik <rik@octave.org>
parents: 17740
diff changeset
327 <string>Do not show whitespace used for indentation</string>
16702
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
328 </property>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
329 </widget>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
330 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
331 <item row="3" column="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
332 <widget class="QCheckBox" name="editor_highlightCurrentLine">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
333 <property name="enabled">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
334 <bool>true</bool>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
335 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
336 <property name="text">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
337 <string>Highlight current line</string>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
338 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
339 </widget>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
340 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
341 <item row="3" column="1">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
342 <layout class="QGridLayout" name="editor_grid_current_line" rowstretch="0" columnstretch="0,0,0,0,0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
343 <property name="horizontalSpacing">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
344 <number>12</number>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
345 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
346 <property name="verticalSpacing">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
347 <number>0</number>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
348 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
349 <item row="0" column="1">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
350 <widget class="QLabel" name="editor_label_cl_color">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
351 <property name="enabled">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
352 <bool>false</bool>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
353 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
354 <property name="text">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
355 <string>Color</string>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
356 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
357 </widget>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
358 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
359 <item row="0" column="3">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
360 <spacer name="horizontalSpacer_11">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
361 <property name="orientation">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
362 <enum>Qt::Horizontal</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
363 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
364 <property name="sizeType">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
365 <enum>QSizePolicy::Fixed</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
366 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
367 <property name="sizeHint" stdset="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
368 <size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
369 <width>80</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
370 <height>20</height>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
371 </size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
372 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
373 </spacer>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
374 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
375 <item row="0" column="4">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
376 <spacer name="horizontalSpacer_9">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
377 <property name="orientation">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
378 <enum>Qt::Horizontal</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
379 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
380 <property name="sizeHint" stdset="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
381 <size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
382 <width>40</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
383 <height>20</height>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
384 </size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
385 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
386 </spacer>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
387 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
388 </layout>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
389 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
390 <item row="0" column="2">
16702
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
391 <spacer name="horizontalSpacer_12">
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
392 <property name="orientation">
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
393 <enum>Qt::Horizontal</enum>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
394 </property>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
395 <property name="sizeHint" stdset="0">
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
396 <size>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
397 <width>40</width>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
398 <height>20</height>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
399 </size>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
400 </property>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
401 </spacer>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
402 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
403 <item row="1" column="2">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
404 <spacer name="horizontalSpacer_16">
16693
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
405 <property name="orientation">
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
406 <enum>Qt::Horizontal</enum>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
407 </property>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
408 <property name="sizeHint" stdset="0">
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
409 <size>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
410 <width>40</width>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
411 <height>20</height>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
412 </size>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
413 </property>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
414 </spacer>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
415 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
416 <item row="2" column="2">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
417 <spacer name="horizontalSpacer_17">
16693
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
418 <property name="orientation">
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
419 <enum>Qt::Horizontal</enum>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
420 </property>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
421 <property name="sizeHint" stdset="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
422 <size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
423 <width>40</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
424 <height>20</height>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
425 </size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
426 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
427 </spacer>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
428 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
429 <item row="3" column="2">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
430 <spacer name="horizontalSpacer_18">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
431 <property name="orientation">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
432 <enum>Qt::Horizontal</enum>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
433 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
434 <property name="sizeHint" stdset="0">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
435 <size>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
436 <width>40</width>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
437 <height>20</height>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
438 </size>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
439 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
440 </spacer>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
441 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
442 </layout>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
443 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
444 <item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
445 <widget class="Line" name="line">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
446 <property name="orientation">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
447 <enum>Qt::Horizontal</enum>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
448 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
449 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
450 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
451 <item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
452 <layout class="QGridLayout" name="gridLayout_4">
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
453 <property name="verticalSpacing">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
454 <number>0</number>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
455 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
456 <item row="0" column="3">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
457 <spacer name="horizontalSpacer_10">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
458 <property name="orientation">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
459 <enum>Qt::Horizontal</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
460 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
461 <property name="sizeType">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
462 <enum>QSizePolicy::Fixed</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
463 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
464 <property name="sizeHint" stdset="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
465 <size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
466 <width>10</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
467 <height>0</height>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
468 </size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
469 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
470 </spacer>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
471 </item>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
472 <item row="0" column="0">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
473 <widget class="QLabel" name="label_13">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
474 <property name="text">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
475 <string>Indent width</string>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
476 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
477 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
478 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
479 <item row="2" column="4">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
480 <widget class="QCheckBox" name="editor_tab_ind_checkbox">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
481 <property name="text">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
482 <string>Tab indents line</string>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
483 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
484 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
485 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
486 <item row="0" column="4">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
487 <widget class="QCheckBox" name="editor_auto_ind_checkbox">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
488 <property name="text">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
489 <string>Auto indentation</string>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
490 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
491 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
492 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
493 <item row="0" column="2">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
494 <widget class="QSpinBox" name="editor_ind_width_spinbox">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
495 <property name="minimum">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
496 <number>1</number>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
497 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
498 <property name="maximum">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
499 <number>32</number>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
500 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
501 <property name="value">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
502 <number>2</number>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
503 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
504 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
505 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
506 <item row="2" column="0">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
507 <widget class="QLabel" name="label_14">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
508 <property name="text">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
509 <string>Tab width</string>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
510 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
511 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
512 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
513 <item row="0" column="6">
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
514 <widget class="QCheckBox" name="editor_ind_guides_checkbox">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
515 <property name="text">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
516 <string>Show indentation guides</string>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
517 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
518 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
519 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
520 <item row="2" column="2">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
521 <widget class="QSpinBox" name="editor_tab_width_spinbox">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
522 <property name="minimum">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
523 <number>1</number>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
524 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
525 <property name="maximum">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
526 <number>32</number>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
527 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
528 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
529 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
530 <item row="2" column="6">
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
531 <widget class="QCheckBox" name="editor_bs_unind_checkbox">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
532 <property name="text">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
533 <string>Backspace unindents line</string>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
534 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
535 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
536 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
537 <item row="0" column="10">
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
538 <spacer name="horizontalSpacer_13">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
539 <property name="orientation">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
540 <enum>Qt::Horizontal</enum>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
541 </property>
16693
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
542 <property name="sizeHint" stdset="0">
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
543 <size>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
544 <width>40</width>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
545 <height>20</height>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
546 </size>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
547 </property>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
548 </spacer>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
549 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
550 <item row="0" column="5">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
551 <spacer name="horizontalSpacer_14">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
552 <property name="orientation">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
553 <enum>Qt::Horizontal</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
554 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
555 <property name="sizeType">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
556 <enum>QSizePolicy::Fixed</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
557 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
558 <property name="sizeHint" stdset="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
559 <size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
560 <width>10</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
561 <height>0</height>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
562 </size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
563 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
564 </spacer>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
565 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
566 <item row="2" column="10">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
567 <spacer name="horizontalSpacer_20">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
568 <property name="orientation">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
569 <enum>Qt::Horizontal</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
570 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
571 <property name="sizeHint" stdset="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
572 <size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
573 <width>40</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
574 <height>20</height>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
575 </size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
576 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
577 </spacer>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
578 </item>
16693
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
579 </layout>
13659
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
580 </item>
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
581 <item>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
582 <widget class="Line" name="line_2">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
583 <property name="orientation">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
584 <enum>Qt::Horizontal</enum>
15356
842ab161c10a GUI: new setting to restore tabs from previous session; allow silent load file
Thorsten Liebig <Thorsten.Liebig@gmx.de>
parents: 15274
diff changeset
585 </property>
842ab161c10a GUI: new setting to restore tabs from previous session; allow silent load file
Thorsten Liebig <Thorsten.Liebig@gmx.de>
parents: 15274
diff changeset
586 </widget>
842ab161c10a GUI: new setting to restore tabs from previous session; allow silent load file
Thorsten Liebig <Thorsten.Liebig@gmx.de>
parents: 15274
diff changeset
587 </item>
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
588 <item>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
589 <layout class="QGridLayout" name="gridLayout_2">
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
590 <property name="verticalSpacing">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
591 <number>0</number>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
592 </property>
16701
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
593 <item row="0" column="0">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
594 <widget class="QCheckBox" name="editor_codeCompletion">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
595 <property name="enabled">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
596 <bool>true</bool>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
597 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
598 <property name="text">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
599 <string>Code completion</string>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
600 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
601 <property name="checked">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
602 <bool>false</bool>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
603 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
604 </widget>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
605 </item>
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
606 <item row="0" column="2">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
607 <layout class="QHBoxLayout" name="horizontalLayout_2">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
608 <property name="spacing">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
609 <number>6</number>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
610 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
611 <item>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
612 <widget class="QLabel" name="editor_label_ac_threshold">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
613 <property name="enabled">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
614 <bool>false</bool>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
615 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
616 <property name="text">
17935
752f6b358754 Tweak GUI strings for conformity.
Rik <rik@octave.org>
parents: 17740
diff changeset
617 <string># of characters typed before completion list displayed</string>
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
618 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
619 </widget>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
620 </item>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
621 <item>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
622 <widget class="QSpinBox" name="editor_spinbox_ac_threshold">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
623 <property name="enabled">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
624 <bool>false</bool>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
625 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
626 <property name="toolTip">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
627 <string/>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
628 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
629 <property name="whatsThis">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
630 <string/>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
631 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
632 <property name="suffix">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
633 <string/>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
634 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
635 <property name="minimum">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
636 <number>1</number>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
637 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
638 <property name="maximum">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
639 <number>6</number>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
640 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
641 <property name="value">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
642 <number>2</number>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
643 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
644 </widget>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
645 </item>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
646 <item>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
647 <spacer name="horizontalSpacer_2">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
648 <property name="orientation">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
649 <enum>Qt::Horizontal</enum>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
650 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
651 <property name="sizeHint" stdset="0">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
652 <size>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
653 <width>40</width>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
654 <height>20</height>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
655 </size>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
656 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
657 </spacer>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
658 </item>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
659 </layout>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
660 </item>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
661 <item row="1" column="2">
16701
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
662 <layout class="QGridLayout" name="gridLayout_3">
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
663 <property name="verticalSpacing">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
664 <number>0</number>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
665 </property>
16701
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
666 <item row="0" column="1">
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
667 <spacer name="horizontalSpacer_15">
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
668 <property name="orientation">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
669 <enum>Qt::Horizontal</enum>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
670 </property>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
671 <property name="sizeType">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
672 <enum>QSizePolicy::Fixed</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
673 </property>
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
674 <property name="sizeHint" stdset="0">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
675 <size>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
676 <width>10</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
677 <height>0</height>
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
678 </size>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
679 </property>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
680 </spacer>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
681 </item>
16701
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
682 <item row="0" column="0">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
683 <widget class="QCheckBox" name="editor_checkbox_ac_keywords">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
684 <property name="enabled">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
685 <bool>false</bool>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
686 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
687 <property name="text">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
688 <string>Match keywords</string>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
689 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
690 <property name="checked">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
691 <bool>true</bool>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
692 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
693 </widget>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
694 </item>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
695 <item row="1" column="0">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
696 <widget class="QCheckBox" name="editor_checkbox_ac_case">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
697 <property name="enabled">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
698 <bool>false</bool>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
699 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
700 <property name="text">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
701 <string>Case sensitive</string>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
702 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
703 <property name="checked">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
704 <bool>true</bool>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
705 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
706 </widget>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
707 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
708 <item row="1" column="2">
16701
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
709 <widget class="QCheckBox" name="editor_checkbox_ac_replace">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
710 <property name="enabled">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
711 <bool>false</bool>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
712 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
713 <property name="text">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
714 <string>Replace word by suggested one</string>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
715 </property>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
716 </widget>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
717 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
718 <item row="0" column="3">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
719 <spacer name="horizontalSpacer_8">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
720 <property name="orientation">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
721 <enum>Qt::Horizontal</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
722 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
723 <property name="sizeHint" stdset="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
724 <size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
725 <width>40</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
726 <height>20</height>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
727 </size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
728 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
729 </spacer>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
730 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
731 <item row="0" column="2">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
732 <widget class="QCheckBox" name="editor_checkbox_ac_document">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
733 <property name="enabled">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
734 <bool>false</bool>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
735 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
736 <property name="text">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
737 <string>Match words in document</string>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
738 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
739 </widget>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
740 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
741 <item row="1" column="3">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
742 <spacer name="horizontalSpacer_19">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
743 <property name="orientation">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
744 <enum>Qt::Horizontal</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
745 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
746 <property name="sizeHint" stdset="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
747 <size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
748 <width>40</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
749 <height>20</height>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
750 </size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
751 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
752 </spacer>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
753 </item>
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
754 </layout>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
755 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
756 <item row="0" column="1">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
757 <spacer name="horizontalSpacer_7">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
758 <property name="orientation">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
759 <enum>Qt::Horizontal</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
760 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
761 <property name="sizeType">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
762 <enum>QSizePolicy::Fixed</enum>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
763 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
764 <property name="sizeHint" stdset="0">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
765 <size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
766 <width>10</width>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
767 <height>0</height>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
768 </size>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
769 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
770 </spacer>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
771 </item>
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
772 </layout>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
773 </item>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
774 <item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
775 <widget class="Line" name="line_3">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
776 <property name="orientation">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
777 <enum>Qt::Horizontal</enum>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
778 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
779 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
780 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
781 <item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
782 <layout class="QVBoxLayout" name="verticalLayout_11">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
783 <property name="topMargin">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
784 <number>0</number>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
785 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
786 <property name="bottomMargin">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
787 <number>0</number>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
788 </property>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
789 <item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
790 <widget class="QCheckBox" name="editor_restoreSession">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
791 <property name="sizePolicy">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
792 <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
793 <horstretch>0</horstretch>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
794 <verstretch>0</verstretch>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
795 </sizepolicy>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
796 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
797 <property name="text">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
798 <string>Restore editor tabs from previous session on startup</string>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
799 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
800 </widget>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
801 </item>
17740
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
802 <item>
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
803 <widget class="QCheckBox" name="editor_create_new file">
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
804 <property name="sizePolicy">
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
805 <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
806 <horstretch>0</horstretch>
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
807 <verstretch>0</verstretch>
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
808 </sizepolicy>
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
809 </property>
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
810 <property name="text">
17935
752f6b358754 Tweak GUI strings for conformity.
Rik <rik@octave.org>
parents: 17740
diff changeset
811 <string>Create nonexistent files without prompting</string>
17740
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
812 </property>
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
813 </widget>
e6ed77b75aec new preference in settings: editor creates nonexisting files wihtout prompt
Torsten <ttl@justmail.de>
parents: 17676
diff changeset
814 </item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
815 </layout>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
816 </item>
13659
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
817 </layout>
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
818 </item>
14307
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
819 <item>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
820 <widget class="Line" name="line_4">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
821 <property name="orientation">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
822 <enum>Qt::Horizontal</enum>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
823 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
824 </widget>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
825 </item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
826 <item>
14599
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
827 <spacer name="verticalSpacer">
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
828 <property name="orientation">
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
829 <enum>Qt::Vertical</enum>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
830 </property>
16693
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
831 <property name="sizeType">
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
832 <enum>QSizePolicy::Expanding</enum>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
833 </property>
14599
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
834 <property name="sizeHint" stdset="0">
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
835 <size>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
836 <width>20</width>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
837 <height>40</height>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
838 </size>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
839 </property>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
840 </spacer>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
841 </item>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
842 <item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
843 <layout class="QVBoxLayout" name="verticalLayout_10">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
844 <property name="topMargin">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
845 <number>0</number>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
846 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
847 <property name="bottomMargin">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
848 <number>0</number>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
849 </property>
16702
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
850 <item>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
851 <layout class="QHBoxLayout" name="horizontalLayout">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
852 <item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
853 <widget class="QCheckBox" name="useCustomFileEditor">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
854 <property name="enabled">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
855 <bool>true</bool>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
856 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
857 <property name="text">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
858 <string>Use custom file editor</string>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
859 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
860 </widget>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
861 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
862 <item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
863 <widget class="QLabel" name="customEditorLabel">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
864 <property name="enabled">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
865 <bool>false</bool>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
866 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
867 <property name="text">
17935
752f6b358754 Tweak GUI strings for conformity.
Rik <rik@octave.org>
parents: 17740
diff changeset
868 <string>command line (%f=file, %l=line):</string>
16738
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
869 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
870 </widget>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
871 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
872 <item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
873 <widget class="QLineEdit" name="customFileEditor">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
874 <property name="enabled">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
875 <bool>false</bool>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
876 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
877 <property name="text">
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
878 <string>emacs</string>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
879 </property>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
880 </widget>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
881 </item>
33ab01a26b80 fix dialog for editor settings for better view in MacOS X (thanks to Ben)
Torsten <ttl@justmail.de>
parents: 16703
diff changeset
882 </layout>
14599
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
883 </item>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
884 </layout>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
885 </item>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
886 </layout>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
887 </widget>
17676
c060ad097056 add menu entries to the editor for directly accessing the editor's settings
Torsten <ttl@justmail.de>
parents: 16865
diff changeset
888 <widget class="QWidget" name="tab_editor_styles">
16402
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
889 <attribute name="title">
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
890 <string>Editor Styles</string>
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
891 </attribute>
16700
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
892 <widget class="QWidget" name="verticalLayoutWidget_4">
16402
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
893 <property name="geometry">
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
894 <rect>
16700
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
895 <x>0</x>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
896 <y>0</y>
16744
169ea45f260f Prevent the "Editor Styles" from extending beyond the right edge of the dialog.
Ben Abbott <bpabbott@mac.com>
parents: 16743
diff changeset
897 <width>651</width>
16700
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
898 <height>401</height>
16402
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
899 </rect>
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
900 </property>
16700
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
901 <layout class="QVBoxLayout" name="verticalLayout_5">
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
902 <item>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
903 <widget class="QLabel" name="label_10">
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
904 <property name="maximumSize">
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
905 <size>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
906 <width>676</width>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
907 <height>16777215</height>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
908 </size>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
909 </property>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
910 <property name="frameShape">
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
911 <enum>QFrame::NoFrame</enum>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
912 </property>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
913 <property name="text">
17935
752f6b358754 Tweak GUI strings for conformity.
Rik <rik@octave.org>
parents: 17740
diff changeset
914 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Select font, font size (as a difference from the default size), font style (bold, italic, underline), text color and background color (for the latter, the color pink (255,0,255) is a placeholder for the default background color)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
16700
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
915 </property>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
916 <property name="scaledContents">
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
917 <bool>false</bool>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
918 </property>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
919 <property name="alignment">
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
920 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
921 </property>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
922 <property name="wordWrap">
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
923 <bool>true</bool>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
924 </property>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
925 <property name="margin">
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
926 <number>4</number>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
927 </property>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
928 </widget>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
929 </item>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
930 <item>
17676
c060ad097056 add menu entries to the editor for directly accessing the editor's settings
Torsten <ttl@justmail.de>
parents: 16865
diff changeset
931 <widget class="QTabWidget" name="tabs_editor_lexers">
16700
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
932 <property name="maximumSize">
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
933 <size>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
934 <width>676</width>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
935 <height>351</height>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
936 </size>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
937 </property>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
938 </widget>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
939 </item>
cd7d08b8c928 make background colors of editor files configurable
Torsten <ttl@justmail.de>
parents: 16693
diff changeset
940 </layout>
16402
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
941 </widget>
7fa90eb41240 gui: individually configurable styles of the editor lexers
Torsten <ttl@justmail.de>
parents: 15972
diff changeset
942 </widget>
17676
c060ad097056 add menu entries to the editor for directly accessing the editor's settings
Torsten <ttl@justmail.de>
parents: 16865
diff changeset
943 <widget class="QWidget" name="tab_terminal">
14599
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
944 <attribute name="title">
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
945 <string>Terminal</string>
97cb9286919c Cleaned up code.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14588
diff changeset
946 </attribute>
16747
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
947 <widget class="QWidget" name="verticalLayoutWidget_3">
16620
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
948 <property name="geometry">
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
949 <rect>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
950 <x>10</x>
18155
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
951 <y>10</y>
16620
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
952 <width>631</width>
18155
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
953 <height>371</height>
16620
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
954 </rect>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
955 </property>
16747
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
956 <layout class="QVBoxLayout" name="verticalLayout_8">
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
957 <item>
18155
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
958 <layout class="QHBoxLayout" name="horizontalLayout_5">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
959 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
960 <widget class="QLabel" name="label_11">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
961 <property name="text">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
962 <string>Font</string>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
963 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
964 </widget>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
965 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
966 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
967 <widget class="QFontComboBox" name="terminal_fontName">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
968 <property name="editable">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
969 <bool>false</bool>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
970 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
971 <property name="fontFilters">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
972 <set>QFontComboBox::MonospacedFonts</set>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
973 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
974 </widget>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
975 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
976 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
977 <widget class="QLabel" name="label_12">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
978 <property name="text">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
979 <string>Font size</string>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
980 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
981 </widget>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
982 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
983 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
984 <widget class="QSpinBox" name="terminal_fontSize">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
985 <property name="minimum">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
986 <number>2</number>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
987 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
988 <property name="maximum">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
989 <number>96</number>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
990 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
991 <property name="value">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
992 <number>10</number>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
993 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
994 </widget>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
995 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
996 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
997 <spacer name="horizontalSpacer_5">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
998 <property name="orientation">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
999 <enum>Qt::Horizontal</enum>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1000 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1001 <property name="sizeHint" stdset="0">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1002 <size>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1003 <width>40</width>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1004 <height>20</height>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1005 </size>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1006 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1007 </spacer>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1008 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1009 </layout>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1010 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1011 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1012 <layout class="QHBoxLayout" name="horizontalLayout_3">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1013 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1014 <widget class="QLabel" name="label">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1015 <property name="text">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1016 <string>Cursor type:</string>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1017 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1018 </widget>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1019 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1020 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1021 <widget class="QComboBox" name="terminal_cursorType"/>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1022 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1023 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1024 <spacer name="horizontalSpacer">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1025 <property name="orientation">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1026 <enum>Qt::Horizontal</enum>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1027 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1028 <property name="sizeHint" stdset="0">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1029 <size>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1030 <width>40</width>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1031 <height>20</height>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1032 </size>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1033 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1034 </spacer>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1035 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1036 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1037 <widget class="QCheckBox" name="terminal_cursorBlinking">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1038 <property name="text">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1039 <string>Cursor blinking</string>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1040 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1041 </widget>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1042 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1043 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1044 <widget class="QCheckBox" name="terminal_cursorUseForegroundColor">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1045 <property name="text">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1046 <string>Use foreground color</string>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1047 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1048 </widget>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1049 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1050 </layout>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1051 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1052 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1053 <widget class="Line" name="line_7">
16747
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1054 <property name="orientation">
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1055 <enum>Qt::Horizontal</enum>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1056 </property>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1057 </widget>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1058 </item>
16620
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1059 <item>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1060 <widget class="QGroupBox" name="terminal_colors_box">
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1061 <property name="minimumSize">
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1062 <size>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1063 <width>0</width>
16747
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1064 <height>81</height>
16620
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1065 </size>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1066 </property>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1067 <property name="title">
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1068 <string>Terminal Colors</string>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1069 </property>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1070 </widget>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1071 </item>
16747
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1072 <item>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1073 <widget class="Line" name="line_5">
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1074 <property name="minimumSize">
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1075 <size>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1076 <width>0</width>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1077 <height>0</height>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1078 </size>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1079 </property>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1080 <property name="orientation">
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1081 <enum>Qt::Horizontal</enum>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1082 </property>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1083 </widget>
9d0739413904 Reduce the spacing for the "Terminal Colors" under Terminal tab.
Ben Abbott <bpabbott@mac.com>
parents: 16746
diff changeset
1084 </item>
16620
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1085 <item>
18155
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1086 <widget class="QCheckBox" name="terminal_focus_command">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1087 <property name="text">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1088 <string>Set focus to terminal when running a command from within another widget</string>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1089 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1090 </widget>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1091 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1092 <item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1093 <widget class="Line" name="line_6">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1094 <property name="orientation">
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1095 <enum>Qt::Horizontal</enum>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1096 </property>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1097 </widget>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1098 </item>
14acb08d75fa gui: optionally set focus to console when a command is run from another widget
Torsten <ttl@justmail.de>
parents: 17942
diff changeset
1099 <item>
16620
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1100 <spacer name="verticalSpacer_3">
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1101 <property name="orientation">
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1102 <enum>Qt::Vertical</enum>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1103 </property>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1104 <property name="sizeHint" stdset="0">
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1105 <size>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1106 <width>20</width>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1107 <height>40</height>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1108 </size>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1109 </property>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1110 </spacer>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1111 </item>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1112 </layout>
818eef7b2618 allow terminal colors to be set from preferences dialog
John W. Eaton <jwe@octave.org>
parents: 16610
diff changeset
1113 </widget>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1114 </widget>
17676
c060ad097056 add menu entries to the editor for directly accessing the editor's settings
Torsten <ttl@justmail.de>
parents: 16865
diff changeset
1115 <widget class="QWidget" name="tab_file_browser">
13536
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1116 <attribute name="title">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1117 <string>File Browser</string>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1118 </attribute>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1119 <layout class="QVBoxLayout" name="verticalLayout_3">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1120 <item>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1121 <widget class="QCheckBox" name="showFileSize">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1122 <property name="text">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1123 <string>Show file size</string>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1124 </property>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1125 </widget>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1126 </item>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1127 <item>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1128 <widget class="QCheckBox" name="showFileType">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1129 <property name="text">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1130 <string>Show file type</string>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1131 </property>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1132 </widget>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1133 </item>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1134 <item>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1135 <widget class="QCheckBox" name="showLastModified">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1136 <property name="text">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1137 <string>Show date of last modification</string>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1138 </property>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1139 </widget>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1140 </item>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1141 <item>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1142 <widget class="QCheckBox" name="showHiddenFiles">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1143 <property name="text">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1144 <string>Show hidden files</string>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1145 </property>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1146 </widget>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1147 </item>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1148 <item>
16499
facf00ce97d3 gui: configurable synchronization between file browser and octave directory
Torsten <ttl@justmail.de>
parents: 16410
diff changeset
1149 <widget class="QCheckBox" name="sync_octave_directory">
facf00ce97d3 gui: configurable synchronization between file browser and octave directory
Torsten <ttl@justmail.de>
parents: 16410
diff changeset
1150 <property name="text">
17935
752f6b358754 Tweak GUI strings for conformity.
Rik <rik@octave.org>
parents: 17740
diff changeset
1151 <string>Synchronize Octave working directory with file browser</string>
16499
facf00ce97d3 gui: configurable synchronization between file browser and octave directory
Torsten <ttl@justmail.de>
parents: 16410
diff changeset
1152 </property>
facf00ce97d3 gui: configurable synchronization between file browser and octave directory
Torsten <ttl@justmail.de>
parents: 16410
diff changeset
1153 </widget>
facf00ce97d3 gui: configurable synchronization between file browser and octave directory
Torsten <ttl@justmail.de>
parents: 16410
diff changeset
1154 </item>
facf00ce97d3 gui: configurable synchronization between file browser and octave directory
Torsten <ttl@justmail.de>
parents: 16410
diff changeset
1155 <item>
13536
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1156 <widget class="QCheckBox" name="useAlternatingRowColors">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1157 <property name="text">
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1158 <string>Alternating row colors</string>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1159 </property>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1160 </widget>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1161 </item>
14307
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1162 <item>
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1163 <spacer name="verticalSpacer_2">
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1164 <property name="orientation">
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1165 <enum>Qt::Vertical</enum>
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1166 </property>
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1167 <property name="sizeHint" stdset="0">
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1168 <size>
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1169 <width>20</width>
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1170 <height>360</height>
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1171 </size>
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1172 </property>
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1173 </spacer>
be3e1a14a6de Added an interface settings tab to the settings dialog. Made a few improvements on the editor. Wrote a small welcome text in the welcome wizard. Moved configuration file to ~/.config/octave-gui/settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13676
diff changeset
1174 </item>
13536
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1175 </layout>
869c62c15e95 Few minor improvements, added advanced settings for file browser.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13531
diff changeset
1176 </widget>
16610
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1177 <widget class="QWidget" name="tab_workspace">
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1178 <attribute name="title">
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1179 <string>Workspace</string>
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1180 </attribute>
16742
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1181 <widget class="QWidget" name="verticalLayoutWidget_6">
16610
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1182 <property name="geometry">
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1183 <rect>
16743
f71998dda3da Modify the "Workspace" tab to prevent widgets from extending past the left edge.
Ben Abbott <bpabbott@mac.com>
parents: 16742
diff changeset
1184 <x>10</x>
16742
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1185 <y>8</y>
16743
f71998dda3da Modify the "Workspace" tab to prevent widgets from extending past the left edge.
Ben Abbott <bpabbott@mac.com>
parents: 16742
diff changeset
1186 <width>631</width>
f71998dda3da Modify the "Workspace" tab to prevent widgets from extending past the left edge.
Ben Abbott <bpabbott@mac.com>
parents: 16742
diff changeset
1187 <height>381</height>
16610
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1188 </rect>
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1189 </property>
16742
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1190 <layout class="QVBoxLayout" name="verticalLayout_13">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1191 <item>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1192 <widget class="QGroupBox" name="workspace_colors_box">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1193 <property name="enabled">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1194 <bool>true</bool>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1195 </property>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1196 <property name="sizePolicy">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1197 <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1198 <horstretch>0</horstretch>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1199 <verstretch>0</verstretch>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1200 </sizepolicy>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1201 </property>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1202 <property name="minimumSize">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1203 <size>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1204 <width>0</width>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1205 <height>81</height>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1206 </size>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1207 </property>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1208 <property name="title">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1209 <string>Storage Class Colors</string>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1210 </property>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1211 </widget>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1212 </item>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1213 <item>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1214 <widget class="Line" name="line_8">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1215 <property name="minimumSize">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1216 <size>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1217 <width>0</width>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1218 <height>1</height>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1219 </size>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1220 </property>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1221 <property name="orientation">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1222 <enum>Qt::Horizontal</enum>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1223 </property>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1224 </widget>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1225 </item>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1226 <item>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1227 <spacer name="verticalSpacer_6">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1228 <property name="orientation">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1229 <enum>Qt::Vertical</enum>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1230 </property>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1231 <property name="sizeHint" stdset="0">
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1232 <size>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1233 <width>20</width>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1234 <height>40</height>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1235 </size>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1236 </property>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1237 </spacer>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1238 </item>
e3c931e5b707 Modify the "Workspace" tab to properly display the work space colors on MacOS X.
Ben Abbott <bpabbott@mac.com>
parents: 16741
diff changeset
1239 </layout>
16610
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1240 </widget>
a1f613e5066d workspace view colors based upon variable scope (derived from Dan's patch #8013)
Torsten <ttl@justmail.de>
parents: 16525
diff changeset
1241 </widget>
17676
c060ad097056 add menu entries to the editor for directly accessing the editor's settings
Torsten <ttl@justmail.de>
parents: 16865
diff changeset
1242 <widget class="QWidget" name="tab_network">
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1243 <attribute name="title">
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1244 <string>Network</string>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1245 </attribute>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1246 <layout class="QVBoxLayout" name="verticalLayout_4">
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1247 <item>
17942
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1248 <layout class="QVBoxLayout" name="verticalLayout">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1249 <item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1250 <widget class="QCheckBox" name="checkbox_allow_web_connect">
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1251 <property name="text">
17942
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1252 <string>Allow Octave to connect to the Octave web site to display current news and information</string>
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1253 </property>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1254 </widget>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1255 </item>
17942
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1256 <item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1257 <layout class="QGridLayout" name="gridLayout_5">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1258 <item row="1" column="1">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1259 <widget class="QLabel" name="label_4">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1260 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1261 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1262 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1263 <property name="text">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1264 <string>Hostname:</string>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1265 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1266 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1267 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1268 <item row="0" column="2">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1269 <widget class="QComboBox" name="proxyType">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1270 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1271 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1272 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1273 <item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1274 <property name="text">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1275 <string>HttpProxy</string>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1276 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1277 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1278 <item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1279 <property name="text">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1280 <string>Socks5Proxy</string>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1281 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1282 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1283 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1284 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1285 <item row="3" column="1">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1286 <widget class="QLabel" name="label_6">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1287 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1288 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1289 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1290 <property name="text">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1291 <string>Username:</string>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1292 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1293 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1294 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1295 <item row="0" column="0">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1296 <widget class="QCheckBox" name="useProxyServer">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1297 <property name="text">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1298 <string>Use proxy server</string>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1299 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1300 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1301 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1302 <item row="0" column="1">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1303 <widget class="QLabel" name="label_3">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1304 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1305 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1306 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1307 <property name="text">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1308 <string>Proxy type:</string>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1309 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1310 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1311 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1312 <item row="2" column="1">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1313 <widget class="QLabel" name="label_5">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1314 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1315 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1316 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1317 <property name="text">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1318 <string>Port:</string>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1319 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1320 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1321 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1322 <item row="4" column="1">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1323 <widget class="QLabel" name="label_7">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1324 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1325 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1326 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1327 <property name="text">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1328 <string>Password:</string>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1329 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1330 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1331 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1332 <item row="1" column="2">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1333 <widget class="QLineEdit" name="proxyHostName">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1334 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1335 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1336 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1337 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1338 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1339 <item row="2" column="2">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1340 <widget class="QLineEdit" name="proxyPort">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1341 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1342 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1343 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1344 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1345 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1346 <item row="3" column="2">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1347 <widget class="QLineEdit" name="proxyUserName">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1348 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1349 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1350 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1351 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1352 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1353 <item row="4" column="2">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1354 <widget class="QLineEdit" name="proxyPassword">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1355 <property name="enabled">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1356 <bool>false</bool>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1357 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1358 <property name="echoMode">
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1359 <enum>QLineEdit::Password</enum>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1360 </property>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1361 </widget>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1362 </item>
0b71746689dc add preference for allowing connections to the octave web site
Torsten <ttl@justmail.de>
parents: 17935
diff changeset
1363 </layout>
13609
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1364 </item>
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1365 </layout>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1366 </item>
16703
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1367 <item>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1368 <spacer name="verticalSpacer_5">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1369 <property name="orientation">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1370 <enum>Qt::Vertical</enum>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1371 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1372 <property name="sizeHint" stdset="0">
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1373 <size>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1374 <width>20</width>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1375 <height>40</height>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1376 </size>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1377 </property>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1378 </spacer>
5cf19370011d add more settings concerning tabs and indentation to the editor settings
Torsten <ttl@justmail.de>
parents: 16702
diff changeset
1379 </item>
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1380 </layout>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1381 </widget>
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
1382 </widget>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
1383 </item>
15274
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1384 <item>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1385 <widget class="QDialogButtonBox" name="buttonBox">
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1386 <property name="standardButtons">
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1387 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1388 </property>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1389 </widget>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1390 </item>
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
1391 </layout>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
1392 </widget>
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
1393 <resources/>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1394 <connections>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1395 <connection>
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1396 <sender>useProxyServer</sender>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1397 <signal>toggled(bool)</signal>
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1398 <receiver>label_4</receiver>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1399 <slot>setEnabled(bool)</slot>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1400 <hints>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1401 <hint type="sourcelabel">
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1402 <x>249</x>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1403 <y>59</y>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1404 </hint>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1405 <hint type="destinationlabel">
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1406 <x>69</x>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1407 <y>122</y>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1408 </hint>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1409 </hints>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1410 </connection>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1411 <connection>
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1412 <sender>useProxyServer</sender>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1413 <signal>toggled(bool)</signal>
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1414 <receiver>label_3</receiver>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1415 <slot>setEnabled(bool)</slot>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1416 <hints>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1417 <hint type="sourcelabel">
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1418 <x>249</x>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1419 <y>59</y>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1420 </hint>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1421 <hint type="destinationlabel">
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1422 <x>59</x>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1423 <y>91</y>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1424 </hint>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1425 </hints>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1426 </connection>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1427 <connection>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1428 <sender>useProxyServer</sender>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1429 <signal>toggled(bool)</signal>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1430 <receiver>label_5</receiver>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1431 <slot>setEnabled(bool)</slot>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1432 <hints>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1433 <hint type="sourcelabel">
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1434 <x>249</x>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1435 <y>59</y>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1436 </hint>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1437 <hint type="destinationlabel">
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1438 <x>44</x>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1439 <y>152</y>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1440 </hint>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1441 </hints>
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1442 </connection>
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1443 <connection>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1444 <sender>useProxyServer</sender>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1445 <signal>toggled(bool)</signal>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1446 <receiver>proxyType</receiver>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1447 <slot>setEnabled(bool)</slot>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1448 <hints>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1449 <hint type="sourcelabel">
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1450 <x>249</x>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1451 <y>59</y>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1452 </hint>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1453 <hint type="destinationlabel">
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1454 <x>291</x>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1455 <y>91</y>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1456 </hint>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1457 </hints>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1458 </connection>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1459 <connection>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1460 <sender>useProxyServer</sender>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1461 <signal>toggled(bool)</signal>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1462 <receiver>proxyHostName</receiver>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1463 <slot>setEnabled(bool)</slot>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1464 <hints>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1465 <hint type="sourcelabel">
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1466 <x>249</x>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1467 <y>59</y>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1468 </hint>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1469 <hint type="destinationlabel">
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1470 <x>291</x>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1471 <y>124</y>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1472 </hint>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1473 </hints>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1474 </connection>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1475 <connection>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1476 <sender>useProxyServer</sender>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1477 <signal>toggled(bool)</signal>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1478 <receiver>proxyPort</receiver>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1479 <slot>setEnabled(bool)</slot>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1480 <hints>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1481 <hint type="sourcelabel">
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1482 <x>249</x>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1483 <y>59</y>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1484 </hint>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1485 <hint type="destinationlabel">
13659
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
1486 <x>364</x>
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
1487 <y>154</y>
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1488 </hint>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1489 </hints>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1490 </connection>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1491 <connection>
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1492 <sender>useCustomFileEditor</sender>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1493 <signal>toggled(bool)</signal>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1494 <receiver>customFileEditor</receiver>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1495 <slot>setEnabled(bool)</slot>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1496 <hints>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1497 <hint type="sourcelabel">
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1498 <x>111</x>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1499 <y>62</y>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1500 </hint>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1501 <hint type="destinationlabel">
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1502 <x>343</x>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1503 <y>63</y>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1504 </hint>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1505 </hints>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1506 </connection>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1507 <connection>
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1508 <sender>useProxyServer</sender>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1509 <signal>toggled(bool)</signal>
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1510 <receiver>label_7</receiver>
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1511 <slot>setEnabled(bool)</slot>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1512 <hints>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1513 <hint type="sourcelabel">
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1514 <x>249</x>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1515 <y>59</y>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1516 </hint>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1517 <hint type="destinationlabel">
14308
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1518 <x>67</x>
3b6177bd63b0 Removed chat and chat settings, instead made a separate menu entry in the community menu.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 14307
diff changeset
1519 <y>212</y>
13606
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1520 </hint>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1521 </hints>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1522 </connection>
ac9ef5a29460 Added proxy network settings tab and translators file.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13538
diff changeset
1523 <connection>
13609
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1524 <sender>useProxyServer</sender>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1525 <signal>toggled(bool)</signal>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1526 <receiver>proxyUserName</receiver>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1527 <slot>setEnabled(bool)</slot>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1528 <hints>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1529 <hint type="sourcelabel">
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1530 <x>249</x>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1531 <y>59</y>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1532 </hint>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1533 <hint type="destinationlabel">
13659
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
1534 <x>364</x>
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
1535 <y>184</y>
13609
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1536 </hint>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1537 </hints>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1538 </connection>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1539 <connection>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1540 <sender>useProxyServer</sender>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1541 <signal>toggled(bool)</signal>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1542 <receiver>proxyPassword</receiver>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1543 <slot>setEnabled(bool)</slot>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1544 <hints>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1545 <hint type="sourcelabel">
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1546 <x>249</x>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1547 <y>59</y>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1548 </hint>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1549 <hint type="destinationlabel">
13659
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
1550 <x>364</x>
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
1551 <y>214</y>
13609
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1552 </hint>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1553 </hints>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1554 </connection>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1555 <connection>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1556 <sender>useProxyServer</sender>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1557 <signal>toggled(bool)</signal>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1558 <receiver>label_6</receiver>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1559 <slot>setEnabled(bool)</slot>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1560 <hints>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1561 <hint type="sourcelabel">
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1562 <x>249</x>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1563 <y>59</y>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1564 </hint>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1565 <hint type="destinationlabel">
13659
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
1566 <x>68</x>
d98c6ef06dff included some editor setting into the setting dialog
ttl <ttl@justmail.de>
parents: 13609
diff changeset
1567 <y>182</y>
13609
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1568 </hint>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1569 </hints>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1570 </connection>
b355901aade4 Added username and password field to proxy settings.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13606
diff changeset
1571 <connection>
15274
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1572 <sender>buttonBox</sender>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1573 <signal>accepted()</signal>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1574 <receiver>settings_dialog</receiver>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1575 <slot>accept()</slot>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1576 <hints>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1577 <hint type="sourcelabel">
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1578 <x>299</x>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1579 <y>366</y>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1580 </hint>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1581 <hint type="destinationlabel">
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1582 <x>299</x>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1583 <y>199</y>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1584 </hint>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1585 </hints>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1586 </connection>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1587 <connection>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1588 <sender>buttonBox</sender>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1589 <signal>rejected()</signal>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1590 <receiver>settings_dialog</receiver>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1591 <slot>reject()</slot>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1592 <hints>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1593 <hint type="sourcelabel">
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1594 <x>299</x>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1595 <y>366</y>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1596 </hint>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1597 <hint type="destinationlabel">
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1598 <x>299</x>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1599 <y>199</y>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1600 </hint>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1601 </hints>
c5d09a57ceb2 provide buttons for the settings dialog (bug #36981)
Torsten <ttl@justmail.de>
parents: 15196
diff changeset
1602 </connection>
16407
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1603 <connection>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1604 <sender>useCustomFileEditor</sender>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1605 <signal>toggled(bool)</signal>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1606 <receiver>customEditorLabel</receiver>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1607 <slot>setEnabled(bool)</slot>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1608 <hints>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1609 <hint type="sourcelabel">
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1610 <x>349</x>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1611 <y>383</y>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1612 </hint>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1613 <hint type="destinationlabel">
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1614 <x>111</x>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1615 <y>413</y>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1616 </hint>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1617 </hints>
4d438dffbfac gui: call external editor when opening a file and custom editor is selected
Torsten <ttl@justmail.de>
parents: 16402
diff changeset
1618 </connection>
16679
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1619 <connection>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1620 <sender>editor_codeCompletion</sender>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1621 <signal>toggled(bool)</signal>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1622 <receiver>editor_label_ac_threshold</receiver>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1623 <slot>setEnabled(bool)</slot>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1624 <hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1625 <hint type="sourcelabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1626 <x>83</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1627 <y>223</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1628 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1629 <hint type="destinationlabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1630 <x>288</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1631 <y>223</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1632 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1633 </hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1634 </connection>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1635 <connection>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1636 <sender>editor_codeCompletion</sender>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1637 <signal>toggled(bool)</signal>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1638 <receiver>editor_spinbox_ac_threshold</receiver>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1639 <slot>setEnabled(bool)</slot>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1640 <hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1641 <hint type="sourcelabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1642 <x>83</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1643 <y>223</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1644 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1645 <hint type="destinationlabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1646 <x>412</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1647 <y>223</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1648 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1649 </hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1650 </connection>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1651 <connection>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1652 <sender>editor_codeCompletion</sender>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1653 <signal>toggled(bool)</signal>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1654 <receiver>editor_checkbox_ac_keywords</receiver>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1655 <slot>setEnabled(bool)</slot>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1656 <hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1657 <hint type="sourcelabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1658 <x>83</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1659 <y>170</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1660 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1661 <hint type="destinationlabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1662 <x>238</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1663 <y>201</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1664 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1665 </hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1666 </connection>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1667 <connection>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1668 <sender>editor_codeCompletion</sender>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1669 <signal>toggled(bool)</signal>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1670 <receiver>editor_checkbox_ac_document</receiver>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1671 <slot>setEnabled(bool)</slot>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1672 <hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1673 <hint type="sourcelabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1674 <x>83</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1675 <y>170</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1676 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1677 <hint type="destinationlabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1678 <x>390</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1679 <y>201</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1680 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1681 </hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1682 </connection>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1683 <connection>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1684 <sender>editor_codeCompletion</sender>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1685 <signal>toggled(bool)</signal>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1686 <receiver>editor_checkbox_ac_replace</receiver>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1687 <slot>setEnabled(bool)</slot>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1688 <hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1689 <hint type="sourcelabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1690 <x>83</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1691 <y>170</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1692 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1693 <hint type="destinationlabel">
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1694 <x>427</x>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1695 <y>229</y>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1696 </hint>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1697 </hints>
cf939872811c options for auto completion threshold, source and word replacement in settings
Torsten <ttl@justmail.de>
parents: 16620
diff changeset
1698 </connection>
16693
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1699 <connection>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1700 <sender>editor_highlightCurrentLine</sender>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1701 <signal>toggled(bool)</signal>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1702 <receiver>editor_label_cl_color</receiver>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1703 <slot>setEnabled(bool)</slot>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1704 <hints>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1705 <hint type="sourcelabel">
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1706 <x>184</x>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1707 <y>86</y>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1708 </hint>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1709 <hint type="destinationlabel">
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1710 <x>515</x>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1711 <y>86</y>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1712 </hint>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1713 </hints>
e9d0b8252a0a make color of current line marker in the editor configurable
Torsten <ttl@justmail.de>
parents: 16679
diff changeset
1714 </connection>
16701
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1715 <connection>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1716 <sender>editor_codeCompletion</sender>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1717 <signal>toggled(bool)</signal>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1718 <receiver>editor_checkbox_ac_case</receiver>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1719 <slot>setEnabled(bool)</slot>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1720 <hints>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1721 <hint type="sourcelabel">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1722 <x>83</x>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1723 <y>172</y>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1724 </hint>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1725 <hint type="destinationlabel">
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1726 <x>525</x>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1727 <y>203</y>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1728 </hint>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1729 </hints>
ccfbc767ff5a make case sensitivity of editors auto completion list configurable
Torsten <ttl@justmail.de>
parents: 16700
diff changeset
1730 </connection>
16702
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1731 <connection>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1732 <sender>editor_ws_checkbox</sender>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1733 <signal>toggled(bool)</signal>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1734 <receiver>editor_ws_indent_checkbox</receiver>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1735 <slot>setEnabled(bool)</slot>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1736 <hints>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1737 <hint type="sourcelabel">
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1738 <x>85</x>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1739 <y>119</y>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1740 </hint>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1741 <hint type="destinationlabel">
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1742 <x>282</x>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1743 <y>119</y>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1744 </hint>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1745 </hints>
553cfdd5d660 make white space visibility in the editor configurable
Torsten <ttl@justmail.de>
parents: 16701
diff changeset
1746 </connection>
18179
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1747 <connection>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1748 <sender>cb_widget_custom_style</sender>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1749 <signal>toggled(bool)</signal>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1750 <receiver>label_bgtitle</receiver>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1751 <slot>setEnabled(bool)</slot>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1752 <hints>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1753 <hint type="sourcelabel">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1754 <x>228</x>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1755 <y>156</y>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1756 </hint>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1757 <hint type="destinationlabel">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1758 <x>380</x>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1759 <y>156</y>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1760 </hint>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1761 </hints>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1762 </connection>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1763 <connection>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1764 <sender>cb_widget_custom_style</sender>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1765 <signal>toggled(bool)</signal>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1766 <receiver>label_fgtitle</receiver>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1767 <slot>setEnabled(bool)</slot>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1768 <hints>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1769 <hint type="sourcelabel">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1770 <x>228</x>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1771 <y>156</y>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1772 </hint>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1773 <hint type="destinationlabel">
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1774 <x>496</x>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1775 <y>156</y>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1776 </hint>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1777 </hints>
b3838cedfe04 redesign of dock widgets title bar with configurable colors
Torsten <ttl@justmail.de>
parents: 18155
diff changeset
1778 </connection>
13531
bb3676025b36 User can set a custom file editor instead of the built-in one.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1779 </connections>
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
1780 </ui>