This file is indexed.

/usr/share/kde4/config.kcfg/kopeteappearancesettings.kcfg is in kopete 4:4.14.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<?xml version="1.0" encoding="UTF-8"?>
<!-- Author: Michal Larouche-->
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
      http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
	<kcfgfile name="kopeterc"/>
	<include>kstandarddirs.h</include>
	<include>kglobalsettings.h</include>
	<include>kcolorscheme.h</include>

	<!-- Define the available signals to emit -->
	<signal name="appearanceChanged">
		<label>Emitted when the font and colors settings have changed.</label>
	</signal>
	<signal name="messageOverridesChanged">
		<label>Emitted when the message overrides settings have changed.</label>
	</signal>
	<signal name="contactListAppearanceChanged">
		<label>Emitted when the contact list appearance has changed.</label>
	</signal>

	<group name="Appearance">
		<!-- Emoticon config -->
		<entry key="useEmoticons" type="Bool"> 
			<label>Enable emoticon support in Kopete.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
			<emit signal="messageOverridesChanged" />
		</entry>
		
	
		<!-- Hightlight preferences -->
		<entry key="highlightForegroundColor" type="Color">
			<label>Text color used when highlighting.</label>
			<default code="true">KColorScheme(QPalette::Active, KColorScheme::Selection).foreground().color()</default>
			<emit signal="appearanceChanged" />
		</entry>
		<entry key="highlightBackgroundColor" type="Color">
			<label>Background color used when highlighting.</label>
			<default code="true">KColorScheme(QPalette::Active, KColorScheme::Selection).background().color()</default>
			<emit signal="appearanceChanged" />
		</entry>
		
		<!-- Overrides preferences -->
		<entry key="chatFmtOverride" type="Bool">
			<label>Disable custom formatting set by users.</label>
			<default>false</default>
			<emit signal="messageOverridesChanged" />
		</entry>
		
		<!-- Color and fonts preferences -->
		<entry key="chatTextColor" type="Color">
			<label>Chat text color.</label>
			<default code="true">KColorScheme(QPalette::Active, KColorScheme::View).foreground().color()</default>
			<emit signal="appearanceChanged" />
		</entry>
		<entry key="chatBackgroundColor" type="Color">
			<label>Chat background color.</label>
			<default code="true">KColorScheme(QPalette::Active, KColorScheme::View).background().color()</default>
			<emit signal="appearanceChanged" />
		</entry>
		<entry key="chatLinkColor" type="Color">
			<label>Chat link color.</label>
			<default code="true">KColorScheme(QPalette::Active, KColorScheme::Window).foreground(KColorScheme::LinkText).color()</default>
			<emit signal="appearanceChanged" />
		</entry>
		<entry key="chatFontSelection" type="Int">
			<label>Whether using the system font for the chat window.</label>
			<default>0</default>
			<emit signal="appearanceChanged" />
		</entry>
		<entry key="chatFont" type="Font">
			<label>Chat font.</label>
			<default code="true">KGlobalSettings::generalFont()</default>
			<emit signal="appearanceChanged" />
		</entry>
		
		<!-- Idle contact preferences -->
		<entry key="idleContactColor" type="Color">
			<label>Color used to identify idle contacts.</label>
			<default code="true">Qt::darkGray</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="greyIdleMetaContacts" type="Bool">
			<label>Whether to use a different color for idle contacts.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>

		<!-- Tooltip content -->
		<entry key="toolTipContents" type="StringList">
			<label>Contact properties that contact tooltip will show.</label>
			<default>FormattedName,userInfo,server,channels,idleTime,channelMembers,channelTopic,emailAddress,homePage,onlineSince,lastOnline,statusTitle,statusMessage</default>
		</entry>
	</group>
	
	<group name="ContactList">
		<!-- Contact list display preferences -->
		<entry key="contactListGroupSorting" type="Enum">
			<label>Contact list group sorting</label>
			<choices>
				<choice name="Manual"/>
				<choice name="Name"/>
			</choices>
			<default>Name</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListMetaContactSorting" type="Enum">
			<label>Contact list group sorting</label>
			<choices>
				<choice name="Manual"/>
				<choice name="Name"/>
				<choice name="Status"/>
			</choices>
			<default>Status</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListIconMode" type="Enum">
			<label>Contact list icon display mode. Either the protocol icon or the contact photo.</label>
			<choices>
				<choice name="IconPic" />
				<choice name="IconPhoto" />
			</choices>
			<default>IconPic</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListIconBorders" type="Bool">
			<label>Enable borders on the contact's photo.</label>
			<default>false</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListIconRounded" type="Bool">
			<label>Round contact photo corners.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListTreeView" type="Bool">
			<label>Show contact list as a tree view.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListIndentContact" type="Bool">
			<label>Indent contacts if you do not show tree lines.</label>
			<default>false</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListHideVerticalScrollBar" type="Bool">
			<label>Hide the vertical scroll bar.</label>
			<default>false</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="groupContactByGroup" type="Bool">
			<label>Group contacts by group.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListUseCustomFont" type="Bool">
			<label>Use custom fonts for contact list.</label>
			<default>false</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListAutoResize" type="Bool">
			<label>Automatically resize the main window.</label>
			<default>false</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListResizeAnchor" type="Enum">
			<label>Corner at which to anchor main window when auto-resizing.</label>
			<choices>
				<choice name="Top"/> <!-- order is significant! -->
				<choice name="Bottom"/>
			</choices>
			<default>Bottom</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<!-- Contact list font preferences -->
		<entry key="contactListNormalFont" type="Font">
			<!-- TODO: 
			     QFont font = KGlobalSettings::generalFont();
			     mContactListNormalFont = config->readFontEntry("NormalFont", &font);
			if ( font.pixelSize() != -1 )
			font.setPixelSize( (font.pixelSize() * 3) / 4 );
			else
		font.setPointSizeFloat( font.pointSizeFloat() * 0.75 );
			 -->
			<label>Normal font for contact list</label>
			<default code="true">KGlobalSettings::generalFont()</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListSmallFont" type="Font">
			<label>Small font for contact list (for status message)</label>
			<default code="true">KGlobalSettings::generalFont()</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="groupNameColor" type="Color">
			<label>Color for group name.</label>
			<default code="true">Qt::darkRed</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListAnimateChange" type="Bool">
			<label>Animate contact list on contact list changes.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListFading" type="Bool">
			<label>Fade-in/Fade-out on contact status changes.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListFolding" type="Bool">
			<label>Fold-in/Fold-out on contact status changes.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListAutoHide" type="Bool">
			<label>Auto-hide contact list after a while.</label>
			<default>false</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListAutoHideVScroll" type="Bool">
			<label>Auto-hide vertical scrollbar in contact list after a while.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="contactListAutoHideTimeout" type="UInt">
			<label>Auto-hide timeout</label>
			<default>30</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>

		<!-- Contact list appearance config -->
		<entry key="showOfflineUsers" type="Bool">
			<label>Show offline users in contact list.</label>
			<default>true</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="showEmptyGroups" type="Bool">
			<label>Show empty groups in contact list.</label>
			<default>false</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
		<entry key="showIdentityIcons" type="Bool">
			<label>Show identities in status bar instead of accounts.</label>
			<default>true</default>
		</entry>
		<entry key="showOfflineGrouped" type="Bool">
			<label>Show offline users in a separate group.</label>
			<default>false</default>
			<emit signal="contactListAppearanceChanged" />
		</entry>
	</group>
</kcfg>