summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXDefault.h
blob: 7327ec026670461f5fd7b5cde430cc89be961901 (plain)
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
/*
 * tkMacOSXDefault.h --
 *
 *	This file defines the defaults for all options for all of
 *	the Tk widgets.
 *
 * Copyright (c) 1991-1994 The Regents of the University of California.
 * Copyright (c) 1994-1997 Sun Microsystems, Inc.
 * Copyright 2001, Apple Computer, Inc.
 * Copyright (c) 2006-2007 Daniel A. Steffen <das@users.sourceforge.net>
 *
 * See the file "license.terms" for information on usage and redistribution
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 *
 * RCS: @(#) $Id: tkMacOSXDefault.h,v 1.2.2.7 2007/11/09 06:26:55 das Exp $
 */

#ifndef _TKMACDEFAULT
#define _TKMACDEFAULT

/*
 * The definitions below provide symbolic names for the default colors.
 * NORMAL_BG -		Normal background color.
 * ACTIVE_BG -		Background color when widget is active.
 * SELECT_BG -		Background color for selected text.
 * SELECT_FG -		Foreground color for selected text.
 * TROUGH -		Background color for troughs in scales and scrollbars.
 * INDICATOR -		Color for indicator when button is selected.
 * DISABLED -		Foreground color when widget is disabled.
 */

#define BLACK				"Black"
#define WHITE				"White"
#define NORMAL_BG			"systemWindowBody"
#define ACTIVE_BG			"systemButtonFacePressed"
#define ACTIVE_FG			"systemPushButtonPressedText"
#define SELECT_BG			"systemHighlight"
#define SELECT_FG			None
#define INACTIVE_SELECT_BG		"systemHighlightSecondary"
#define TROUGH				"#c3c3c3"
#define INDICATOR			"#b03060"
#define DISABLED			"#a3a3a3"

/*
 * Defaults for labels, buttons, checkbuttons, and radiobuttons:
 */

#define DEF_BUTTON_ANCHOR		"center"
#define DEF_BUTTON_ACTIVE_BG_COLOR	ACTIVE_BG
#define DEF_BUTTON_ACTIVE_BG_MONO	BLACK
#define DEF_BUTTON_ACTIVE_FG_COLOR	ACTIVE_FG
#define DEF_CHKRAD_ACTIVE_FG_COLOR	DEF_BUTTON_ACTIVE_FG_COLOR
#define DEF_BUTTON_ACTIVE_FG_MONO	WHITE
/* #define DEF_BUTTON_BG_COLOR	"systemButtonFace"*/
#define DEF_BUTTON_BG_COLOR		WHITE
#define DEF_BUTTON_BG_MONO		WHITE
#define DEF_BUTTON_BITMAP		""
#define DEF_BUTTON_BORDER_WIDTH		"2"
#define DEF_BUTTON_CURSOR		""
#define DEF_BUTTON_COMMAND		""
#define DEF_BUTTON_COMPOUND		"none"
#define DEF_BUTTON_DEFAULT		"disabled"
#define DEF_BUTTON_DISABLED_FG_COLOR	DISABLED
#define DEF_BUTTON_DISABLED_FG_MONO	""
#define DEF_BUTTON_FG			"systemButtonText"
#define DEF_CHKRAD_FG			DEF_BUTTON_FG
#define DEF_BUTTON_FONT			"system"
#define DEF_BUTTON_HEIGHT		"0"
#define DEF_BUTTON_HIGHLIGHT_BG_COLOR	DEF_BUTTON_BG_COLOR
#define DEF_BUTTON_HIGHLIGHT_BG_MONO	DEF_BUTTON_BG_MONO
#define DEF_BUTTON_HIGHLIGHT		"systemButtonFrame"
#define DEF_LABEL_HIGHLIGHT_WIDTH	"0"
#define DEF_BUTTON_HIGHLIGHT_WIDTH	"4"
#define DEF_BUTTON_IMAGE		(char *) NULL
#define DEF_BUTTON_INDICATOR		"1"
#define DEF_BUTTON_JUSTIFY		"center"
#define DEF_BUTTON_OFF_VALUE		"0"
#define DEF_BUTTON_ON_VALUE		"1"
#define DEF_BUTTON_OVER_RELIEF		""
#define DEF_BUTTON_PADX			"12"
#define DEF_LABCHKRAD_PADX		"1"
#define DEF_BUTTON_PADY			"3"
#define DEF_LABCHKRAD_PADY		"1"
#define DEF_BUTTON_RELIEF		"flat"
#define DEF_LABCHKRAD_RELIEF		"flat"
#define DEF_BUTTON_REPEAT_DELAY		"0"
#define DEF_BUTTON_REPEAT_INTERVAL	"0"
#define DEF_BUTTON_SELECT_COLOR		INDICATOR
#define DEF_BUTTON_SELECT_MONO		BLACK
#define DEF_BUTTON_SELECT_IMAGE		(char *) NULL
#define DEF_BUTTON_STATE		"normal"
#define DEF_LABEL_TAKE_FOCUS		"0"
#define DEF_BUTTON_TAKE_FOCUS		(char *) NULL
#define DEF_BUTTON_TEXT			""
#define DEF_BUTTON_TEXT_VARIABLE	""
#define DEF_BUTTON_UNDERLINE		"-1"
#define DEF_BUTTON_VALUE		""
#define DEF_BUTTON_WIDTH		"0"
#define DEF_BUTTON_WRAP_LENGTH		"0"
#define DEF_RADIOBUTTON_VARIABLE	"selectedButton"
#define DEF_CHECKBUTTON_VARIABLE	""

/*
 * Defaults for canvases:
 */

#define DEF_CANVAS_BG_COLOR		NORMAL_BG
#define DEF_CANVAS_BG_MONO		WHITE
#define DEF_CANVAS_BORDER_WIDTH		"0"
#define DEF_CANVAS_CLOSE_ENOUGH		"1"
#define DEF_CANVAS_CONFINE		"1"
#define DEF_CANVAS_CURSOR		""
#define DEF_CANVAS_HEIGHT		"7c"
#define DEF_CANVAS_HIGHLIGHT_BG		NORMAL_BG
#define DEF_CANVAS_HIGHLIGHT		BLACK
#define DEF_CANVAS_HIGHLIGHT_WIDTH	"3"
#define DEF_CANVAS_INSERT_BG		BLACK
#define DEF_CANVAS_INSERT_BD_COLOR	"0"
#define DEF_CANVAS_INSERT_BD_MONO	"0"
#define DEF_CANVAS_INSERT_OFF_TIME	"300"
#define DEF_CANVAS_INSERT_ON_TIME	"600"
#define DEF_CANVAS_INSERT_WIDTH		"2"
#define DEF_CANVAS_RELIEF		"flat"
#define DEF_CANVAS_SCROLL_REGION	""
#define DEF_CANVAS_SELECT_COLOR		SELECT_BG
#define DEF_CANVAS_SELECT_MONO		BLACK
#define DEF_CANVAS_SELECT_BD_COLOR	"1"
#define DEF_CANVAS_SELECT_BD_MONO	"0"
#define DEF_CANVAS_SELECT_FG_COLOR	SELECT_FG
#define DEF_CANVAS_SELECT_FG_MONO	WHITE
#define DEF_CANVAS_TAKE_FOCUS		(char *) NULL
#define DEF_CANVAS_WIDTH		"10c"
#define DEF_CANVAS_X_SCROLL_CMD		""
#define DEF_CANVAS_X_SCROLL_INCREMENT	"0"
#define DEF_CANVAS_Y_SCROLL_CMD		""
#define DEF_CANVAS_Y_SCROLL_INCREMENT	"0"

/*
 * Defaults for entries:
 */

/*
 * I test the following two values in TkpDrawEntryBorderAndFocus
 * to determine whether to use the native entry widget. So if
 * you change the defaults to be different from these, then you
 * won't get the native widget by default.
 */

#define MAC_OSX_FOCUS_WIDTH		3
#define MAC_OSX_ENTRY_BORDER		2
#define MAC_OSX_ENTRY_RELIEF		TK_RELIEF_SUNKEN
#define MAC_OSX_ENTRY_SELECT_RELIEF	TK_RELIEF_FLAT

#define DEF_ENTRY_BG_COLOR		NORMAL_BG
#define DEF_ENTRY_BG_MONO		WHITE
#define DEF_ENTRY_BORDER_WIDTH		"2"
#define DEF_ENTRY_CURSOR		"xterm"
#define DEF_ENTRY_DISABLED_BG_COLOR	NORMAL_BG
#define DEF_ENTRY_DISABLED_BG_MONO	WHITE
#define DEF_ENTRY_DISABLED_FG		DISABLED
#define DEF_ENTRY_EXPORT_SELECTION	"1"
#define DEF_ENTRY_FONT			"Helvetica 12"
#define DEF_ENTRY_FG			BLACK
#define DEF_ENTRY_HIGHLIGHT_BG		NORMAL_BG
#define DEF_ENTRY_HIGHLIGHT		BLACK
/* #define DEF_ENTRY_HIGHLIGHT_WIDTH	"3" */
#define DEF_ENTRY_HIGHLIGHT_WIDTH	"3"
#define DEF_ENTRY_INSERT_BG		BLACK
#define DEF_ENTRY_INSERT_BD_COLOR	"0"
#define DEF_ENTRY_INSERT_BD_MONO	"0"
#define DEF_ENTRY_INSERT_OFF_TIME	"300"
#define DEF_ENTRY_INSERT_ON_TIME	"600"
/* #define DEF_ENTRY_INSERT_WIDTH		"2" */
#define DEF_ENTRY_INSERT_WIDTH		"1"
#define DEF_ENTRY_JUSTIFY		"left"
#define DEF_ENTRY_READONLY_BG_COLOR	NORMAL_BG
#define DEF_ENTRY_READONLY_BG_MONO	WHITE
#define DEF_ENTRY_RELIEF		"sunken"
/* #define DEF_ENTRY_RELIEF		"solid" */
#define DEF_ENTRY_SCROLL_COMMAND	""
#define DEF_ENTRY_SELECT_COLOR		SELECT_BG
#define DEF_ENTRY_SELECT_MONO		BLACK
#define DEF_ENTRY_SELECT_BD_COLOR	"1"
#define DEF_ENTRY_SELECT_BD_MONO	"0"
#define DEF_ENTRY_SELECT_FG_COLOR	SELECT_FG
#define DEF_ENTRY_SELECT_FG_MONO	WHITE
#define DEF_ENTRY_SHOW			(char *) NULL
#define DEF_ENTRY_STATE			"normal"
#define DEF_ENTRY_TAKE_FOCUS		(char *) NULL
#define DEF_ENTRY_TEXT_VARIABLE		""
#define DEF_ENTRY_WIDTH			"20"

/*
 * Defaults for frames:
 */

#define DEF_FRAME_BG_COLOR		NORMAL_BG
#define DEF_FRAME_BG_MONO		WHITE
#define DEF_FRAME_BORDER_WIDTH		"0"
#define DEF_FRAME_CLASS			"Frame"
#define DEF_FRAME_COLORMAP		""
#define DEF_FRAME_CONTAINER		"0"
#define DEF_FRAME_CURSOR		""
#define DEF_FRAME_HEIGHT		"0"
#define DEF_FRAME_HIGHLIGHT_BG		NORMAL_BG
#define DEF_FRAME_HIGHLIGHT		BLACK
#define DEF_FRAME_HIGHLIGHT_WIDTH	"0"
#define DEF_FRAME_PADX			"0"
#define DEF_FRAME_PADY			"0"
#define DEF_FRAME_RELIEF		"flat"
#define DEF_FRAME_TAKE_FOCUS		"0"
#define DEF_FRAME_VISUAL		""
#define DEF_FRAME_WIDTH			"0"

/*
 * Defaults for labelframes:
 */

#define DEF_LABELFRAME_BORDER_WIDTH	"2"
#define DEF_LABELFRAME_CLASS		"Labelframe"
#define DEF_LABELFRAME_RELIEF		"groove"
#define DEF_LABELFRAME_FG		"systemButtonText"
#define DEF_LABELFRAME_FONT		"system"
#define DEF_LABELFRAME_TEXT		""
#define DEF_LABELFRAME_LABELANCHOR	"nw"

/*
 * Defaults for listboxes:
 */

#define DEF_LISTBOX_ACTIVE_STYLE	"dotbox"
#define DEF_LISTBOX_BG_COLOR		WHITE
#define DEF_LISTBOX_BG_MONO		WHITE
#define DEF_LISTBOX_BORDER_WIDTH	"1"
#define DEF_LISTBOX_CURSOR		""
#define DEF_LISTBOX_DISABLED_FG		DISABLED
#define DEF_LISTBOX_EXPORT_SELECTION	"1"
#define DEF_LISTBOX_FONT		"application"
#define DEF_LISTBOX_FG			BLACK
#define DEF_LISTBOX_HEIGHT		"10"
#define DEF_LISTBOX_HIGHLIGHT_BG	NORMAL_BG
#define DEF_LISTBOX_HIGHLIGHT		BLACK
#define DEF_LISTBOX_HIGHLIGHT_WIDTH	"0"
#define DEF_LISTBOX_RELIEF		"solid"
#define DEF_LISTBOX_SCROLL_COMMAND	""
#define DEF_LISTBOX_LIST_VARIABLE	""
#define DEF_LISTBOX_SELECT_COLOR	SELECT_BG
#define DEF_LISTBOX_SELECT_MONO		BLACK
#define DEF_LISTBOX_SELECT_BD		"0"
#define DEF_LISTBOX_SELECT_FG_COLOR	SELECT_FG
#define DEF_LISTBOX_SELECT_FG_MONO	WHITE
#define DEF_LISTBOX_SELECT_MODE		"browse"
#define DEF_LISTBOX_SET_GRID		"0"
#define DEF_LISTBOX_STATE		"normal"
#define DEF_LISTBOX_TAKE_FOCUS		(char *) NULL
#define DEF_LISTBOX_WIDTH		"20"

/*
 * Defaults for individual entries of menus:
 */

#define DEF_MENU_ENTRY_ACTIVE_BG	(char *) NULL
#define DEF_MENU_ENTRY_ACTIVE_FG	(char *) NULL
#define DEF_MENU_ENTRY_ACCELERATOR	(char *) NULL
#define DEF_MENU_ENTRY_BG		(char *) NULL
#define DEF_MENU_ENTRY_BITMAP		None
#define DEF_MENU_ENTRY_COLUMN_BREAK	"0"
#define DEF_MENU_ENTRY_COMMAND		(char *) NULL
#define DEF_MENU_ENTRY_COMPOUND		"none"
#define DEF_MENU_ENTRY_FG		(char *) NULL
#define DEF_MENU_ENTRY_FONT		(char *) NULL
#define DEF_MENU_ENTRY_HIDE_MARGIN	"0"
#define DEF_MENU_ENTRY_IMAGE		(char *) NULL
#define DEF_MENU_ENTRY_INDICATOR	"1"
#define DEF_MENU_ENTRY_LABEL		(char *) NULL
#define DEF_MENU_ENTRY_MENU		(char *) NULL
#define DEF_MENU_ENTRY_OFF_VALUE	"0"
#define DEF_MENU_ENTRY_ON_VALUE		"1"
#define DEF_MENU_ENTRY_SELECT_IMAGE	(char *) NULL
#define DEF_MENU_ENTRY_STATE		"normal"
#define DEF_MENU_ENTRY_VALUE		(char *) NULL
#define DEF_MENU_ENTRY_CHECK_VARIABLE	(char *) NULL
#define DEF_MENU_ENTRY_RADIO_VARIABLE	"selectedButton"
#define DEF_MENU_ENTRY_SELECT	(char *) NULL
#define DEF_MENU_ENTRY_UNDERLINE	"-1"

/*
 * Defaults for menus overall:
 */

#define DEF_MENU_ACTIVE_BG_COLOR	"systemMenuActive"
#define DEF_MENU_ACTIVE_BG_MONO		BLACK
#define DEF_MENU_ACTIVE_BORDER_WIDTH	"0"
#define DEF_MENU_ACTIVE_FG_COLOR	"systemMenuActiveText"
#define DEF_MENU_ACTIVE_FG_MONO		WHITE
#define DEF_MENU_BG_COLOR		"systemMenu"
#define DEF_MENU_BG_MONO		WHITE
#define DEF_MENU_BORDER_WIDTH		"0"
#define DEF_MENU_CURSOR			"arrow"
#define DEF_MENU_DISABLED_FG_COLOR	"systemMenuDisabled"
#define DEF_MENU_DISABLED_FG_MONO	""
#define DEF_MENU_FONT			"menu" /* special: see tkMacOSXMenu.c */
#define DEF_MENU_FG			"systemMenuText"
#define DEF_MENU_POST_COMMAND		""
#define DEF_MENU_RELIEF			"flat"
#define DEF_MENU_SELECT_COLOR		"systemMenuActive"
#define DEF_MENU_SELECT_MONO		BLACK
#define DEF_MENU_TAKE_FOCUS		"0"

/*
 * FIXME: Turn the default back to 1 when we make tearoff menus work again.
 */

#define DEF_MENU_TEAROFF		"0"
#define DEF_MENU_TEAROFF_CMD		(char *) NULL
#define DEF_MENU_TITLE			""
#define DEF_MENU_TYPE			"normal"

/*
 * Defaults for menubuttons:
 */

#define DEF_MENUBUTTON_ANCHOR		"center"
#define DEF_MENUBUTTON_ACTIVE_BG_COLOR	ACTIVE_BG
#define DEF_MENUBUTTON_ACTIVE_BG_MONO	BLACK
#define DEF_MENUBUTTON_ACTIVE_FG_COLOR	ACTIVE_FG
#define DEF_MENUBUTTON_ACTIVE_FG_MONO	WHITE
#define DEF_MENUBUTTON_BG_COLOR		NORMAL_BG
#define DEF_MENUBUTTON_BG_MONO		WHITE
#define DEF_MENUBUTTON_BITMAP		""
#define DEF_MENUBUTTON_BORDER_WIDTH	"2"
#define DEF_MENUBUTTON_CURSOR		""
#define DEF_MENUBUTTON_DIRECTION	"below"
#define DEF_MENUBUTTON_DISABLED_FG_COLOR DISABLED
#define DEF_MENUBUTTON_DISABLED_FG_MONO	""
#define DEF_MENUBUTTON_FONT		"system"
#define DEF_MENUBUTTON_FG		BLACK
#define DEF_MENUBUTTON_HEIGHT		"0"
#define DEF_MENUBUTTON_HIGHLIGHT_BG_COLOR DEF_MENUBUTTON_BG_COLOR
#define DEF_MENUBUTTON_HIGHLIGHT_BG_MONO  DEF_MENUBUTTON_BG_MONO
#define DEF_MENUBUTTON_HIGHLIGHT	BLACK
#define DEF_MENUBUTTON_HIGHLIGHT_WIDTH	"0"
#define DEF_MENUBUTTON_IMAGE		(char *) NULL
#define DEF_MENUBUTTON_INDICATOR	"0"
/* #define DEF_MENUBUTTON_JUSTIFY		"center" */
#define DEF_MENUBUTTON_JUSTIFY		"left"
#define DEF_MENUBUTTON_MENU		""
#define DEF_MENUBUTTON_PADX		"4p"
#define DEF_MENUBUTTON_PADY		"3p"
#define DEF_MENUBUTTON_RELIEF		"flat"
#define DEF_MENUBUTTON_STATE		"normal"
#define DEF_MENUBUTTON_TAKE_FOCUS	"0"
#define DEF_MENUBUTTON_TEXT		""
#define DEF_MENUBUTTON_TEXT_VARIABLE	""
#define DEF_MENUBUTTON_UNDERLINE	"-1"
#define DEF_MENUBUTTON_WIDTH		"0"
#define DEF_MENUBUTTON_WRAP_LENGTH	"0"

/*
 * Defaults for messages:
 */

#define DEF_MESSAGE_ANCHOR		"center"
#define DEF_MESSAGE_ASPECT		"150"
#define DEF_MESSAGE_BG_COLOR		NORMAL_BG
#define DEF_MESSAGE_BG_MONO		WHITE
#define DEF_MESSAGE_BORDER_WIDTH	"1"
#define DEF_MESSAGE_CURSOR		""
#define DEF_MESSAGE_FG			BLACK
#define DEF_MESSAGE_FONT		"system"
#define DEF_MESSAGE_HIGHLIGHT_BG	NORMAL_BG
#define DEF_MESSAGE_HIGHLIGHT		BLACK
#define DEF_MESSAGE_HIGHLIGHT_WIDTH	"0"
#define DEF_MESSAGE_JUSTIFY		"left"
#define DEF_MESSAGE_PADX		"-1"
#define DEF_MESSAGE_PADY		"-1"
#define DEF_MESSAGE_RELIEF		"flat"
#define DEF_MESSAGE_TAKE_FOCUS		"0"
#define DEF_MESSAGE_TEXT		""
#define DEF_MESSAGE_TEXT_VARIABLE	""
#define DEF_MESSAGE_WIDTH		"0"
/*
 * Defaults for panedwindows
 */

#define DEF_PANEDWINDOW_BG_COLOR	NORMAL_BG
#define DEF_PANEDWINDOW_BG_MONO		WHITE
#define DEF_PANEDWINDOW_BORDERWIDTH	"1"
#define DEF_PANEDWINDOW_CURSOR		""
#define DEF_PANEDWINDOW_HANDLEPAD	"8"
#define DEF_PANEDWINDOW_HANDLESIZE	"8"
#define DEF_PANEDWINDOW_HEIGHT		""
#define DEF_PANEDWINDOW_OPAQUERESIZE	"1"
#define DEF_PANEDWINDOW_ORIENT		"horizontal"
#define DEF_PANEDWINDOW_RELIEF		"flat"
#define DEF_PANEDWINDOW_SASHCURSOR	""
#define DEF_PANEDWINDOW_SASHPAD		"0"
#define DEF_PANEDWINDOW_SASHRELIEF	"flat"
#define DEF_PANEDWINDOW_SASHWIDTH	"3"
#define DEF_PANEDWINDOW_SHOWHANDLE	"0"
#define DEF_PANEDWINDOW_WIDTH		""

/*
 * Defaults for panedwindow panes
 */

#define DEF_PANEDWINDOW_PANE_AFTER	""
#define DEF_PANEDWINDOW_PANE_BEFORE	""
#define DEF_PANEDWINDOW_PANE_HEIGHT	""
#define DEF_PANEDWINDOW_PANE_MINSIZE	"0"
#define DEF_PANEDWINDOW_PANE_PADX	"0"
#define DEF_PANEDWINDOW_PANE_PADY	"0"
#define DEF_PANEDWINDOW_PANE_STICKY	"nsew"
#define DEF_PANEDWINDOW_PANE_WIDTH	""

/*
 * Defaults for scales:
 */

#define DEF_SCALE_ACTIVE_BG_COLOR	ACTIVE_BG
#define DEF_SCALE_ACTIVE_BG_MONO	BLACK
#define DEF_SCALE_BG_COLOR		NORMAL_BG
#define DEF_SCALE_BG_MONO		WHITE
#define DEF_SCALE_BIG_INCREMENT		"0"
#define DEF_SCALE_BORDER_WIDTH		"1"
#define DEF_SCALE_COMMAND		""
#define DEF_SCALE_CURSOR		""
#define DEF_SCALE_DIGITS		"0"
#define DEF_SCALE_FONT			"system"
#define DEF_SCALE_FG_COLOR		BLACK
#define DEF_SCALE_FG_MONO		BLACK
#define DEF_SCALE_FROM			"0"
#define DEF_SCALE_HIGHLIGHT_BG_COLOR	DEF_SCALE_BG_COLOR
#define DEF_SCALE_HIGHLIGHT_BG_MONO	DEF_SCALE_BG_MONO
#define DEF_SCALE_HIGHLIGHT		BLACK
#define DEF_SCALE_HIGHLIGHT_WIDTH	"0"
#define DEF_SCALE_LABEL			""
#define DEF_SCALE_LENGTH		"100"
#define DEF_SCALE_ORIENT		"vertical"
#define DEF_SCALE_RELIEF		"flat"
#define DEF_SCALE_REPEAT_DELAY	"300"
#define DEF_SCALE_REPEAT_INTERVAL	"100"
#define DEF_SCALE_RESOLUTION		"1"
#define DEF_SCALE_TROUGH_COLOR		TROUGH
#define DEF_SCALE_TROUGH_MONO		WHITE
#define DEF_SCALE_SHOW_VALUE		"1"
#define DEF_SCALE_SLIDER_LENGTH		"30"
#define DEF_SCALE_SLIDER_RELIEF		"raised"
#define DEF_SCALE_STATE			"normal"
#define DEF_SCALE_TAKE_FOCUS		(char *) NULL
#define DEF_SCALE_TICK_INTERVAL		"0"
#define DEF_SCALE_TO			"100"
#define DEF_SCALE_VARIABLE		""
#define DEF_SCALE_WIDTH			"15"

/*
 * Defaults for scrollbars:
 */

#define DEF_SCROLLBAR_ACTIVE_BG_COLOR	ACTIVE_BG
#define DEF_SCROLLBAR_ACTIVE_BG_MONO	BLACK
#define DEF_SCROLLBAR_ACTIVE_RELIEF	"raised"
#define DEF_SCROLLBAR_BG_COLOR		NORMAL_BG
#define DEF_SCROLLBAR_BG_MONO		WHITE
#define DEF_SCROLLBAR_BORDER_WIDTH	"0"
#define DEF_SCROLLBAR_COMMAND		""
#define DEF_SCROLLBAR_CURSOR		""
#define DEF_SCROLLBAR_EL_BORDER_WIDTH	"-1"
#define DEF_SCROLLBAR_HIGHLIGHT_BG	NORMAL_BG
#define DEF_SCROLLBAR_HIGHLIGHT		BLACK
#define DEF_SCROLLBAR_HIGHLIGHT_WIDTH	"0"
#define DEF_SCROLLBAR_JUMP		"0"
#define DEF_SCROLLBAR_ORIENT		"vertical"
#define DEF_SCROLLBAR_RELIEF		"flat"
#define DEF_SCROLLBAR_REPEAT_DELAY	"300"
#define DEF_SCROLLBAR_REPEAT_INTERVAL	"100"
#define DEF_SCROLLBAR_TAKE_FOCUS	(char *) NULL
#define DEF_SCROLLBAR_TROUGH_COLOR	TROUGH
#define DEF_SCROLLBAR_TROUGH_MONO	WHITE
#define DEF_SCROLLBAR_WIDTH		"15"

/*
 * Defaults for texts:
 */

#define DEF_TEXT_AUTO_SEPARATORS	"1"
#define DEF_TEXT_BG_COLOR		NORMAL_BG
#define DEF_TEXT_BG_MONO		WHITE
#define DEF_TEXT_BORDER_WIDTH		"0"
#define DEF_TEXT_CURSOR			"xterm"
#define DEF_TEXT_FG			BLACK
#define DEF_TEXT_EXPORT_SELECTION	"1"
#define DEF_TEXT_FONT			"Courier 12"
#define DEF_TEXT_HEIGHT			"24"
#define DEF_TEXT_HIGHLIGHT_BG		NORMAL_BG
#define DEF_TEXT_HIGHLIGHT		BLACK
#define DEF_TEXT_HIGHLIGHT_WIDTH	"3"
#define DEF_TEXT_INSERT_BG		BLACK
#define DEF_TEXT_INSERT_BD_COLOR	"0"
#define DEF_TEXT_INSERT_BD_MONO		"0"
#define DEF_TEXT_INSERT_OFF_TIME	"300"
#define DEF_TEXT_INSERT_ON_TIME		"600"
#define DEF_TEXT_INSERT_WIDTH		"1"
#define DEF_TEXT_MAX_UNDO		"0"
#define DEF_TEXT_PADX			"1"
#define DEF_TEXT_PADY			"1"
#define DEF_TEXT_RELIEF			"flat"
#define DEF_TEXT_SELECT_COLOR		SELECT_BG
#define DEF_TEXT_SELECT_MONO		BLACK
#define DEF_TEXT_SELECT_BD_COLOR	"1"
#define DEF_TEXT_SELECT_BD_MONO		"0"
#define DEF_TEXT_SELECT_FG_COLOR	SELECT_FG
#define DEF_TEXT_SELECT_FG_MONO		WHITE
#define DEF_TEXT_SELECT_RELIEF		"flat"
#define DEF_TEXT_SET_GRID		"0"
#define DEF_TEXT_SPACING1		"0"
#define DEF_TEXT_SPACING2		"0"
#define DEF_TEXT_SPACING3		"0"
#define DEF_TEXT_STATE			"normal"
#define DEF_TEXT_TABS			""
#define DEF_TEXT_TAKE_FOCUS		(char *) NULL
#define DEF_TEXT_UNDO			"0"
#define DEF_TEXT_WIDTH			"80"
#define DEF_TEXT_WRAP			"char"
#define DEF_TEXT_XSCROLL_COMMAND	""
#define DEF_TEXT_YSCROLL_COMMAND	""

/*
 * Defaults for canvas text:
 */

#define DEF_CANVTEXT_FONT		"Helvetica 12"

/*
 * Defaults for toplevels (most of the defaults for frames also apply
 * to toplevels):
 */

#define DEF_TOPLEVEL_CLASS		"Toplevel"
#define DEF_TOPLEVEL_MENU		""
#define DEF_TOPLEVEL_SCREEN		""
#define DEF_TOPLEVEL_USE		""

#endif /* _TKMACDEFAULT */
E _ZN19QDeclarativeAnchors10classBeginEv @ 287 NONAME _ZN19QDeclarativeAnchors10resetRightEv @ 288 NONAME _ZN19QDeclarativeAnchors10setMarginsEf @ 289 NONAME _ZN19QDeclarativeAnchors10topChangedEv @ 290 NONAME _ZN19QDeclarativeAnchors11fillChangedEv @ 291 NONAME _ZN19QDeclarativeAnchors11leftChangedEv @ 292 NONAME _ZN19QDeclarativeAnchors11qt_metacallEN11QMetaObject4CallEiPPv @ 293 NONAME _ZN19QDeclarativeAnchors11qt_metacastEPKc @ 294 NONAME _ZN19QDeclarativeAnchors11resetBottomEv @ 295 NONAME _ZN19QDeclarativeAnchors11setBaselineERK22QDeclarativeAnchorLine @ 296 NONAME _ZN19QDeclarativeAnchors11setCenterInEP15QGraphicsObject @ 297 NONAME _ZN19QDeclarativeAnchors12rightChangedEv @ 298 NONAME _ZN19QDeclarativeAnchors12setTopMarginEf @ 299 NONAME _ZN19QDeclarativeAnchors13bottomChangedEv @ 300 NONAME _ZN19QDeclarativeAnchors13resetBaselineEv @ 301 NONAME _ZN19QDeclarativeAnchors13resetCenterInEv @ 302 NONAME _ZN19QDeclarativeAnchors13setLeftMarginEf @ 303 NONAME _ZN19QDeclarativeAnchors14marginsChangedEv @ 304 NONAME _ZN19QDeclarativeAnchors14setRightMarginEf @ 305 NONAME _ZN19QDeclarativeAnchors15baselineChangedEv @ 306 NONAME _ZN19QDeclarativeAnchors15centerInChangedEv @ 307 NONAME _ZN19QDeclarativeAnchors15setBottomMarginEf @ 308 NONAME _ZN19QDeclarativeAnchors16staticMetaObjectE @ 309 NONAME DATA 16 _ZN19QDeclarativeAnchors16topMarginChangedEv @ 310 NONAME _ZN19QDeclarativeAnchors17componentCompleteEv @ 311 NONAME _ZN19QDeclarativeAnchors17leftMarginChangedEv @ 312 NONAME _ZN19QDeclarativeAnchors17setBaselineOffsetEf @ 313 NONAME _ZN19QDeclarativeAnchors17setVerticalCenterERK22QDeclarativeAnchorLine @ 314 NONAME _ZN19QDeclarativeAnchors18rightMarginChangedEv @ 315 NONAME _ZN19QDeclarativeAnchors19bottomMarginChangedEv @ 316 NONAME _ZN19QDeclarativeAnchors19getStaticMetaObjectEv @ 317 NONAME _ZN19QDeclarativeAnchors19resetVerticalCenterEv @ 318 NONAME _ZN19QDeclarativeAnchors19setHorizontalCenterERK22QDeclarativeAnchorLine @ 319 NONAME _ZN19QDeclarativeAnchors21baselineOffsetChangedEv @ 320 NONAME _ZN19QDeclarativeAnchors21resetHorizontalCenterEv @ 321 NONAME _ZN19QDeclarativeAnchors21verticalCenterChangedEv @ 322 NONAME _ZN19QDeclarativeAnchors23horizontalCenterChangedEv @ 323 NONAME _ZN19QDeclarativeAnchors23setVerticalCenterOffsetEf @ 324 NONAME _ZN19QDeclarativeAnchors25setHorizontalCenterOffsetEf @ 325 NONAME _ZN19QDeclarativeAnchors27verticalCenterOffsetChangedEv @ 326 NONAME _ZN19QDeclarativeAnchors29horizontalCenterOffsetChangedEv @ 327 NONAME _ZN19QDeclarativeAnchors6setTopERK22QDeclarativeAnchorLine @ 328 NONAME _ZN19QDeclarativeAnchors7setFillEP15QGraphicsObject @ 329 NONAME _ZN19QDeclarativeAnchors7setLeftERK22QDeclarativeAnchorLine @ 330 NONAME _ZN19QDeclarativeAnchors8resetTopEv @ 331 NONAME _ZN19QDeclarativeAnchors8setRightERK22QDeclarativeAnchorLine @ 332 NONAME _ZN19QDeclarativeAnchors9resetFillEv @ 333 NONAME _ZN19QDeclarativeAnchors9resetLeftEv @ 334 NONAME _ZN19QDeclarativeAnchors9setBottomERK22QDeclarativeAnchorLine @ 335 NONAME _ZN19QDeclarativeAnchorsC1EP15QGraphicsObjectP7QObject @ 336 NONAME _ZN19QDeclarativeAnchorsC1EP7QObject @ 337 NONAME _ZN19QDeclarativeAnchorsC2EP15QGraphicsObjectP7QObject @ 338 NONAME _ZN19QDeclarativeAnchorsC2EP7QObject @ 339 NONAME _ZN19QDeclarativeAnchorsD0Ev @ 340 NONAME _ZN19QDeclarativeAnchorsD1Ev @ 341 NONAME _ZN19QDeclarativeAnchorsD2Ev @ 342 NONAME _ZN19QDeclarativeBinding10setEnabledEb6QFlagsIN27QDeclarativePropertyPrivate9WriteFlagEE @ 343 NONAME _ZN19QDeclarativeBinding11qt_metacallEN11QMetaObject4CallEiPPv @ 344 NONAME _ZN19QDeclarativeBinding11qt_metacastEPKc @ 345 NONAME _ZN19QDeclarativeBinding13propertyIndexEv @ 346 NONAME _ZN19QDeclarativeBinding16staticMetaObjectE @ 347 NONAME DATA 16 _ZN19QDeclarativeBinding19getStaticMetaObjectEv @ 348 NONAME _ZN19QDeclarativeBinding6updateE6QFlagsIN27QDeclarativePropertyPrivate9WriteFlagEE @ 349 NONAME _ZN19QDeclarativeBinding9setTargetERK20QDeclarativeProperty @ 350 NONAME _ZN19QDeclarativeBindingC1EPvP20QDeclarativeRefCountP7QObjectP23QDeclarativeContextDataRK7QStringiS4_ @ 351 NONAME _ZN19QDeclarativeBindingC1ERK7QStringP7QObjectP19QDeclarativeContextS4_ @ 352 NONAME _ZN19QDeclarativeBindingC1ERK7QStringP7QObjectP23QDeclarativeContextDataS4_ @ 353 NONAME _ZN19QDeclarativeBindingC2EPvP20QDeclarativeRefCountP7QObjectP23QDeclarativeContextDataRK7QStringiS4_ @ 354 NONAME _ZN19QDeclarativeBindingC2ERK7QStringP7QObjectP19QDeclarativeContextS4_ @ 355 NONAME _ZN19QDeclarativeBindingC2ERK7QStringP7QObjectP23QDeclarativeContextDataS4_ @ 356 NONAME _ZN19QDeclarativeBindingD0Ev @ 357 NONAME _ZN19QDeclarativeBindingD1Ev @ 358 NONAME _ZN19QDeclarativeBindingD2Ev @ 359 NONAME _ZN19QDeclarativeContext10setBaseUrlERK4QUrl @ 360 NONAME _ZN19QDeclarativeContext11qt_metacallEN11QMetaObject4CallEiPPv @ 361 NONAME _ZN19QDeclarativeContext11qt_metacastEPKc @ 362 NONAME _ZN19QDeclarativeContext11resolvedUrlERK4QUrl @ 363 NONAME _ZN19QDeclarativeContext16setContextObjectEP7QObject @ 364 NONAME _ZN19QDeclarativeContext16staticMetaObjectE @ 365 NONAME DATA 16 _ZN19QDeclarativeContext18setContextPropertyERK7QStringP7QObject @ 366 NONAME _ZN19QDeclarativeContext18setContextPropertyERK7QStringRK8QVariant @ 367 NONAME _ZN19QDeclarativeContext19getStaticMetaObjectEv @ 368 NONAME _ZN19QDeclarativeContextC1EP18QDeclarativeEngineP7QObject @ 369 NONAME _ZN19QDeclarativeContextC1EP18QDeclarativeEngineb @ 370 NONAME _ZN19QDeclarativeContextC1EP23QDeclarativeContextData @ 371 NONAME _ZN19QDeclarativeContextC1EPS_P7QObject @ 372 NONAME _ZN19QDeclarativeContextC2EP18QDeclarativeEngineP7QObject @ 373 NONAME _ZN19QDeclarativeContextC2EP18QDeclarativeEngineb @ 374 NONAME _ZN19QDeclarativeContextC2EP23QDeclarativeContextData @ 375 NONAME _ZN19QDeclarativeContextC2EPS_P7QObject @ 376 NONAME _ZN19QDeclarativeContextD0Ev @ 377 NONAME _ZN19QDeclarativeContextD1Ev @ 378 NONAME _ZN19QDeclarativeContextD2Ev @ 379 NONAME _ZN19QDeclarativeDomListC1ERKS_ @ 380 NONAME _ZN19QDeclarativeDomListC1Ev @ 381 NONAME _ZN19QDeclarativeDomListC2ERKS_ @ 382 NONAME _ZN19QDeclarativeDomListC2Ev @ 383 NONAME _ZN19QDeclarativeDomListD1Ev @ 384 NONAME _ZN19QDeclarativeDomListD2Ev @ 385 NONAME _ZN19QDeclarativeDomListaSERKS_ @ 386 NONAME _ZN19QDeclarativePrivate12registerTypeERKNS_12RegisterTypeE @ 387 NONAME ABSENT _ZN19QDeclarativePrivate12registerTypeERKNS_17RegisterInterfaceE @ 388 NONAME ABSENT _ZN19QDeclarativePrivate26registerAutoParentFunctionEPFNS_16AutoParentResultEP7QObjectS2_E @ 389 NONAME ABSENT _ZN19QDeclarativePrivate30qdeclarativeelement_destructorEP7QObject @ 390 NONAME _ZN19QListModelInterface10itemsMovedEiii @ 391 NONAME _ZN19QListModelInterface11qt_metacallEN11QMetaObject4CallEiPPv @ 392 NONAME _ZN19QListModelInterface11qt_metacastEPKc @ 393 NONAME _ZN19QListModelInterface12itemsChangedEiiRK5QListIiE @ 394 NONAME _ZN19QListModelInterface12itemsRemovedEii @ 395 NONAME _ZN19QListModelInterface13itemsInsertedEii @ 396 NONAME _ZN19QListModelInterface16staticMetaObjectE @ 397 NONAME DATA 16 _ZN19QListModelInterface19getStaticMetaObjectEv @ 398 NONAME _ZN20QDeclarativeBehavior10setEnabledEb @ 399 NONAME _ZN20QDeclarativeBehavior11qt_metacallEN11QMetaObject4CallEiPPv @ 400 NONAME _ZN20QDeclarativeBehavior11qt_metacastEPKc @ 401 NONAME _ZN20QDeclarativeBehavior12setAnimationEP29QDeclarativeAbstractAnimation @ 402 NONAME _ZN20QDeclarativeBehavior14enabledChangedEv @ 403 NONAME _ZN20QDeclarativeBehavior16staticMetaObjectE @ 404 NONAME DATA 16 _ZN20QDeclarativeBehavior18componentFinalizedEv @ 405 NONAME _ZN20QDeclarativeBehavior19getStaticMetaObjectEv @ 406 NONAME _ZN20QDeclarativeBehavior5writeERK8QVariant @ 407 NONAME _ZN20QDeclarativeBehavior9animationEv @ 408 NONAME _ZN20QDeclarativeBehavior9setTargetERK20QDeclarativeProperty @ 409 NONAME _ZN20QDeclarativeBehaviorC1EP7QObject @ 410 NONAME _ZN20QDeclarativeBehaviorC2EP7QObject @ 411 NONAME _ZN20QDeclarativeBehaviorD0Ev @ 412 NONAME _ZN20QDeclarativeBehaviorD1Ev @ 413 NONAME _ZN20QDeclarativeBehaviorD2Ev @ 414 NONAME _ZN20QDeclarativeDomValueC1ERKS_ @ 415 NONAME _ZN20QDeclarativeDomValueC1Ev @ 416 NONAME _ZN20QDeclarativeDomValueC2ERKS_ @ 417 NONAME _ZN20QDeclarativeDomValueC2Ev @ 418 NONAME _ZN20QDeclarativeDomValueD1Ev @ 419 NONAME _ZN20QDeclarativeDomValueD2Ev @ 420 NONAME _ZN20QDeclarativeDomValueaSERKS_ @ 421 NONAME _ZN20QDeclarativeMetaType11isInterfaceEi @ 422 NONAME _ZN20QDeclarativeMetaType12interfaceIIdEi @ 423 NONAME _ZN20QDeclarativeMetaType12qmlTypeNamesEv @ 424 NONAME _ZN20QDeclarativeMetaType12typeCategoryEi @ 425 NONAME _ZN20QDeclarativeMetaType13defaultMethodEP7QObject @ 426 NONAME _ZN20QDeclarativeMetaType13defaultMethodEPK11QMetaObject @ 427 NONAME _ZN20QDeclarativeMetaType15defaultPropertyEP7QObject @ 428 NONAME _ZN20QDeclarativeMetaType15defaultPropertyEPK11QMetaObject @ 429 NONAME _ZN20QDeclarativeMetaType15parentFunctionsEv @ 430 NONAME _ZN20QDeclarativeMetaType21customStringConverterEi @ 431 NONAME _ZN20QDeclarativeMetaType24attachedPropertiesFuncIdEPK11QMetaObject @ 432 NONAME _ZN20QDeclarativeMetaType26attachedPropertiesFuncByIdEi @ 433 NONAME _ZN20QDeclarativeMetaType29registerCustomStringConverterEiPF8QVariantRK7QStringE @ 434 NONAME _ZN20QDeclarativeMetaType4copyEiPvPKv @ 435 NONAME _ZN20QDeclarativeMetaType6isListEi @ 436 NONAME _ZN20QDeclarativeMetaType7qmlTypeEPK11QMetaObject @ 437 NONAME _ZN20QDeclarativeMetaType7qmlTypeERK10QByteArrayii @ 438 NONAME _ZN20QDeclarativeMetaType7qmlTypeEi @ 439 NONAME _ZN20QDeclarativeMetaType8isModuleERK10QByteArrayii @ 440 NONAME _ZN20QDeclarativeMetaType8listTypeEi @ 441 NONAME _ZN20QDeclarativeMetaType8qmlTypesEv @ 442 NONAME _ZN20QDeclarativeMetaType9isQObjectEi @ 443 NONAME _ZN20QDeclarativeMetaType9toQObjectERK8QVariantPb @ 444 NONAME _ZN20QDeclarativeProperty4readEP7QObjectRK7QString @ 445 NONAME _ZN20QDeclarativeProperty4readEP7QObjectRK7QStringP18QDeclarativeEngine @ 446 NONAME _ZN20QDeclarativeProperty4readEP7QObjectRK7QStringP19QDeclarativeContext @ 447 NONAME _ZN20QDeclarativeProperty5writeEP7QObjectRK7QStringRK8QVariant @ 448 NONAME _ZN20QDeclarativeProperty5writeEP7QObjectRK7QStringRK8QVariantP18QDeclarativeEngine @ 449 NONAME _ZN20QDeclarativeProperty5writeEP7QObjectRK7QStringRK8QVariantP19QDeclarativeContext @ 450 NONAME _ZN20QDeclarativePropertyC1EP7QObject @ 451 NONAME _ZN20QDeclarativePropertyC1EP7QObjectP18QDeclarativeEngine @ 452 NONAME _ZN20QDeclarativePropertyC1EP7QObjectP19QDeclarativeContext @ 453 NONAME _ZN20QDeclarativePropertyC1EP7QObjectRK7QString @ 454 NONAME _ZN20QDeclarativePropertyC1EP7QObjectRK7QStringP18QDeclarativeEngine @ 455 NONAME _ZN20QDeclarativePropertyC1EP7QObjectRK7QStringP19QDeclarativeContext @ 456 NONAME _ZN20QDeclarativePropertyC1ERKS_ @ 457 NONAME _ZN20QDeclarativePropertyC1Ev @ 458 NONAME _ZN20QDeclarativePropertyC2EP7QObject @ 459 NONAME _ZN20QDeclarativePropertyC2EP7QObjectP18QDeclarativeEngine @ 460 NONAME _ZN20QDeclarativePropertyC2EP7QObjectP19QDeclarativeContext @ 461 NONAME _ZN20QDeclarativePropertyC2EP7QObjectRK7QString @ 462 NONAME _ZN20QDeclarativePropertyC2EP7QObjectRK7QStringP18QDeclarativeEngine @ 463 NONAME _ZN20QDeclarativePropertyC2EP7QObjectRK7QStringP19QDeclarativeContext @ 464 NONAME _ZN20QDeclarativePropertyC2ERKS_ @ 465 NONAME _ZN20QDeclarativePropertyC2Ev @ 466 NONAME _ZN20QDeclarativePropertyD1Ev @ 467 NONAME _ZN20QDeclarativePropertyD2Ev @ 468 NONAME _ZN20QDeclarativePropertyaSERKS_ @ 469 NONAME _ZN20QMetaPropertyBuilder10setDynamicEb @ 470 NONAME _ZN20QMetaPropertyBuilder11setEditableEb @ 471 NONAME _ZN20QMetaPropertyBuilder11setReadableEb @ 472 NONAME _ZN20QMetaPropertyBuilder11setWritableEb @ 473 NONAME _ZN20QMetaPropertyBuilder12setStdCppSetEb @ 474 NONAME _ZN20QMetaPropertyBuilder13setDesignableEb @ 475 NONAME _ZN20QMetaPropertyBuilder13setEnumOrFlagEb @ 476 NONAME _ZN20QMetaPropertyBuilder13setResettableEb @ 477 NONAME _ZN20QMetaPropertyBuilder13setScriptableEb @ 478 NONAME _ZN20QMetaPropertyBuilder15setNotifySignalERK18QMetaMethodBuilder @ 479 NONAME _ZN20QMetaPropertyBuilder18removeNotifySignalEv @ 480 NONAME _ZN20QMetaPropertyBuilder7setUserEb @ 481 NONAME _ZN20QMetaPropertyBuilder9setStoredEb @ 482 NONAME _ZN21QDeclarativeComponent11beginCreateEP19QDeclarativeContext @ 483 NONAME _ZN21QDeclarativeComponent11qt_metacallEN11QMetaObject4CallEiPPv @ 484 NONAME _ZN21QDeclarativeComponent11qt_metacastEPKc @ 485 NONAME _ZN21QDeclarativeComponent12createObjectEP7QObject @ 486 NONAME _ZN21QDeclarativeComponent13statusChangedENS_6StatusE @ 487 NONAME _ZN21QDeclarativeComponent14completeCreateEv @ 488 NONAME _ZN21QDeclarativeComponent15progressChangedEf @ 489 NONAME _ZN21QDeclarativeComponent16staticMetaObjectE @ 490 NONAME DATA 16 _ZN21QDeclarativeComponent19getStaticMetaObjectEv @ 491 NONAME _ZN21QDeclarativeComponent21qmlAttachedPropertiesEP7QObject @ 492 NONAME _ZN21QDeclarativeComponent6createEP19QDeclarativeContext @ 493 NONAME _ZN21QDeclarativeComponent7loadUrlERK4QUrl @ 494 NONAME _ZN21QDeclarativeComponent7setDataERK10QByteArrayRK4QUrl @ 495 NONAME _ZN21QDeclarativeComponentC1EP18QDeclarativeEngineP24QDeclarativeCompiledDataiiP7QObject @ 496 NONAME _ZN21QDeclarativeComponentC1EP18QDeclarativeEngineP7QObject @ 497 NONAME _ZN21QDeclarativeComponentC1EP18QDeclarativeEngineRK4QUrlP7QObject @ 498 NONAME _ZN21QDeclarativeComponentC1EP18QDeclarativeEngineRK7QStringP7QObject @ 499 NONAME _ZN21QDeclarativeComponentC1EP7QObject @ 500 NONAME _ZN21QDeclarativeComponentC1ER28QDeclarativeComponentPrivateP7QObject @ 501 NONAME _ZN21QDeclarativeComponentC2EP18QDeclarativeEngineP24QDeclarativeCompiledDataiiP7QObject @ 502 NONAME _ZN21QDeclarativeComponentC2EP18QDeclarativeEngineP7QObject @ 503 NONAME _ZN21QDeclarativeComponentC2EP18QDeclarativeEngineRK4QUrlP7QObject @ 504 NONAME _ZN21QDeclarativeComponentC2EP18QDeclarativeEngineRK7QStringP7QObject @ 505 NONAME _ZN21QDeclarativeComponentC2EP7QObject @ 506 NONAME _ZN21QDeclarativeComponentC2ER28QDeclarativeComponentPrivateP7QObject @ 507 NONAME _ZN21QDeclarativeComponentD0Ev @ 508 NONAME _ZN21QDeclarativeComponentD1Ev @ 509 NONAME _ZN21QDeclarativeComponentD2Ev @ 510 NONAME _ZN21QDeclarativeDomImportC1ERKS_ @ 511 NONAME _ZN21QDeclarativeDomImportC1Ev @ 512 NONAME _ZN21QDeclarativeDomImportC2ERKS_ @ 513 NONAME _ZN21QDeclarativeDomImportC2Ev @ 514 NONAME _ZN21QDeclarativeDomImportD1Ev @ 515 NONAME _ZN21QDeclarativeDomImportD2Ev @ 516 NONAME _ZN21QDeclarativeDomImportaSERKS_ @ 517 NONAME _ZN21QDeclarativeDomObjectC1ERKS_ @ 518 NONAME _ZN21QDeclarativeDomObjectC1Ev @ 519 NONAME _ZN21QDeclarativeDomObjectC2ERKS_ @ 520 NONAME _ZN21QDeclarativeDomObjectC2Ev @ 521 NONAME _ZN21QDeclarativeDomObjectD1Ev @ 522 NONAME _ZN21QDeclarativeDomObjectD2Ev @ 523 NONAME _ZN21QDeclarativeDomObjectaSERKS_ @ 524 NONAME _ZN21QDeclarativeListModel11qt_metacallEN11QMetaObject4CallEiPPv @ 525 NONAME _ZN21QDeclarativeListModel11qt_metacastEPKc @ 526 NONAME _ZN21QDeclarativeListModel11setPropertyEiRK7QStringRK8QVariant @ 527 NONAME _ZN21QDeclarativeListModel12countChangedEv @ 528 NONAME _ZN21QDeclarativeListModel16staticMetaObjectE @ 529 NONAME DATA 16 _ZN21QDeclarativeListModel19getStaticMetaObjectEv @ 530 NONAME _ZN21QDeclarativeListModel3setEiRK12QScriptValue @ 531 NONAME _ZN21QDeclarativeListModel4moveEiii @ 532 NONAME _ZN21QDeclarativeListModel4syncEv @ 533 NONAME _ZN21QDeclarativeListModel5agentEv @ 534 NONAME _ZN21QDeclarativeListModel5clearEv @ 535 NONAME _ZN21QDeclarativeListModel6appendERK12QScriptValue @ 536 NONAME _ZN21QDeclarativeListModel6insertEiRK12QScriptValue @ 537 NONAME _ZN21QDeclarativeListModel6removeEi @ 538 NONAME _ZN21QDeclarativeListModel7flattenEv @ 539 NONAME _ZN21QDeclarativeListModelC1EP7QObject @ 540 NONAME _ZN21QDeclarativeListModelC1EbP7QObject @ 541 NONAME _ZN21QDeclarativeListModelC2EP7QObject @ 542 NONAME _ZN21QDeclarativeListModelC2EbP7QObject @ 543 NONAME _ZN21QDeclarativeListModelD0Ev @ 544 NONAME _ZN21QDeclarativeListModelD1Ev @ 545 NONAME _ZN21QDeclarativeListModelD2Ev @ 546 NONAME _ZN21QDeclarativeRectangle11qt_metacallEN11QMetaObject4CallEiPPv @ 547 NONAME _ZN21QDeclarativeRectangle11qt_metacastEPKc @ 548 NONAME _ZN21QDeclarativeRectangle11setGradientEP20QDeclarativeGradient @ 549 NONAME _ZN21QDeclarativeRectangle12colorChangedEv @ 550 NONAME _ZN21QDeclarativeRectangle13radiusChangedEv @ 551 NONAME _ZN21QDeclarativeRectangle16staticMetaObjectE @ 552 NONAME DATA 16 _ZN21QDeclarativeRectangle19generateRoundedRectEv @ 553 NONAME _ZN21QDeclarativeRectangle19getStaticMetaObjectEv @ 554 NONAME _ZN21QDeclarativeRectangle20generateBorderedRectEv @ 555 NONAME _ZN21QDeclarativeRectangle5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget @ 556 NONAME _ZN21QDeclarativeRectangle6borderEv @ 557 NONAME _ZN21QDeclarativeRectangle8doUpdateEv @ 558 NONAME _ZN21QDeclarativeRectangle8drawRectER8QPainter @ 559 NONAME _ZN21QDeclarativeRectangle8setColorERK6QColor @ 560 NONAME _ZN21QDeclarativeRectangle9setRadiusEf @ 561 NONAME _ZN21QDeclarativeRectangleC1EP16QDeclarativeItem @ 562 NONAME _ZN21QDeclarativeRectangleC2EP16QDeclarativeItem @ 563 NONAME _ZN21QDeclarativeScaleGrid11qt_metacallEN11QMetaObject4CallEiPPv @ 564 NONAME _ZN21QDeclarativeScaleGrid11qt_metacastEPKc @ 565 NONAME _ZN21QDeclarativeScaleGrid13borderChangedEv @ 566 NONAME _ZN21QDeclarativeScaleGrid16staticMetaObjectE @ 567 NONAME DATA 16 _ZN21QDeclarativeScaleGrid19getStaticMetaObjectEv @ 568 NONAME _ZN21QDeclarativeScaleGrid6setTopEi @ 569 NONAME _ZN21QDeclarativeScaleGrid7setLeftEi @ 570 NONAME _ZN21QDeclarativeScaleGrid8setRightEi @ 571 NONAME _ZN21QDeclarativeScaleGrid9setBottomEi @ 572 NONAME _ZN21QDeclarativeScaleGridC1EP7QObject @ 573 NONAME _ZN21QDeclarativeScaleGridC2EP7QObject @ 574 NONAME _ZN21QDeclarativeScaleGridD0Ev @ 575 NONAME _ZN21QDeclarativeScaleGridD1Ev @ 576 NONAME _ZN21QDeclarativeScaleGridD2Ev @ 577 NONAME _ZN21QDeclarativeValueType11qt_metacallEN11QMetaObject4CallEiPPv @ 578 NONAME _ZN21QDeclarativeValueType11qt_metacastEPKc @ 579 NONAME _ZN21QDeclarativeValueType16staticMetaObjectE @ 580 NONAME DATA 16 _ZN21QDeclarativeValueType19getStaticMetaObjectEv @ 581 NONAME _ZN21QDeclarativeValueTypeC2EP7QObject @ 582 NONAME _ZN22QDeclarativeDebugQuery11qt_metacallEN11QMetaObject4CallEiPPv @ 583 NONAME _ZN22QDeclarativeDebugQuery11qt_metacastEPKc @ 584 NONAME _ZN22QDeclarativeDebugQuery12stateChangedENS_5StateE @ 585 NONAME _ZN22QDeclarativeDebugQuery16staticMetaObjectE @ 586 NONAME DATA 16 _ZN22QDeclarativeDebugQuery19getStaticMetaObjectEv @ 587 NONAME _ZN22QDeclarativeDebugQuery8setStateENS_5StateE @ 588 NONAME _ZN22QDeclarativeDebugQueryC1EP7QObject @ 589 NONAME _ZN22QDeclarativeDebugQueryC2EP7QObject @ 590 NONAME _ZN22QDeclarativeDebugWatch11qt_metacallEN11QMetaObject4CallEiPPv @ 591 NONAME _ZN22QDeclarativeDebugWatch11qt_metacastEPKc @ 592 NONAME _ZN22QDeclarativeDebugWatch12stateChangedENS_5StateE @ 593 NONAME _ZN22QDeclarativeDebugWatch12valueChangedERK10QByteArrayRK8QVariant @ 594 NONAME _ZN22QDeclarativeDebugWatch16staticMetaObjectE @ 595 NONAME DATA 16 _ZN22QDeclarativeDebugWatch19getStaticMetaObjectEv @ 596 NONAME _ZN22QDeclarativeDebugWatch8setStateENS_5StateE @ 597 NONAME _ZN22QDeclarativeDebugWatchC1EP7QObject @ 598 NONAME _ZN22QDeclarativeDebugWatchC2EP7QObject @ 599 NONAME _ZN22QDeclarativeDebugWatchD0Ev @ 600 NONAME _ZN22QDeclarativeDebugWatchD1Ev @ 601 NONAME _ZN22QDeclarativeDebugWatchD2Ev @ 602 NONAME _ZN22QDeclarativeExpression10clearErrorEv @ 603 NONAME _ZN22QDeclarativeExpression11qt_metacallEN11QMetaObject4CallEiPPv @ 604 NONAME _ZN22QDeclarativeExpression11qt_metacastEPKc @ 605 NONAME _ZN22QDeclarativeExpression12valueChangedEv @ 606 NONAME _ZN22QDeclarativeExpression13setExpressionERK7QString @ 607 NONAME _ZN22QDeclarativeExpression16staticMetaObjectE @ 608 NONAME DATA 16 _ZN22QDeclarativeExpression17setSourceLocationERK7QStringi @ 609 NONAME _ZN22QDeclarativeExpression19getStaticMetaObjectEv @ 610 NONAME _ZN22QDeclarativeExpression23setNotifyOnValueChangedEb @ 611 NONAME _ZN22QDeclarativeExpression8evaluateEPb @ 612 NONAME _ZN22QDeclarativeExpressionC1EP19QDeclarativeContextP7QObjectRK7QStringS3_ @ 613 NONAME _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataP7QObjectRK7QString @ 614 NONAME _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataP7QObjectRK7QStringR29QDeclarativeExpressionPrivate @ 615 NONAME _ZN22QDeclarativeExpressionC1EP23QDeclarativeContextDataPvP20QDeclarativeRefCountP7QObjectRK7QStringiR29QDeclarativeExpressionPrivate @ 616 NONAME _ZN22QDeclarativeExpressionC1Ev @ 617 NONAME _ZN22QDeclarativeExpressionC2EP19QDeclarativeContextP7QObjectRK7QStringS3_ @ 618 NONAME _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataP7QObjectRK7QString @ 619 NONAME _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataP7QObjectRK7QStringR29QDeclarativeExpressionPrivate @ 620 NONAME _ZN22QDeclarativeExpressionC2EP23QDeclarativeContextDataPvP20QDeclarativeRefCountP7QObjectRK7QStringiR29QDeclarativeExpressionPrivate @ 621 NONAME _ZN22QDeclarativeExpressionC2Ev @ 622 NONAME _ZN22QDeclarativeExpressionD0Ev @ 623 NONAME _ZN22QDeclarativeExpressionD1Ev @ 624 NONAME _ZN22QDeclarativeExpressionD2Ev @ 625 NONAME _ZN22QDeclarativeStateGroup10classBeginEv @ 626 NONAME _ZN22QDeclarativeStateGroup11qt_metacallEN11QMetaObject4CallEiPPv @ 627 NONAME _ZN22QDeclarativeStateGroup11qt_metacastEPKc @ 628 NONAME _ZN22QDeclarativeStateGroup11removeStateEP17QDeclarativeState @ 629 NONAME _ZN22QDeclarativeStateGroup12stateChangedERK7QString @ 630 NONAME _ZN22QDeclarativeStateGroup14statesPropertyEv @ 631 NONAME _ZN22QDeclarativeStateGroup15updateAutoStateEv @ 632 NONAME _ZN22QDeclarativeStateGroup16staticMetaObjectE @ 633 NONAME DATA 16 _ZN22QDeclarativeStateGroup17componentCompleteEv @ 634 NONAME _ZN22QDeclarativeStateGroup19getStaticMetaObjectEv @ 635 NONAME _ZN22QDeclarativeStateGroup19transitionsPropertyEv @ 636 NONAME _ZN22QDeclarativeStateGroup8setStateERK7QString @ 637 NONAME _ZN22QDeclarativeStateGroupC1EP7QObject @ 638 NONAME _ZN22QDeclarativeStateGroupC2EP7QObject @ 639 NONAME _ZN22QDeclarativeStateGroupD0Ev @ 640 NONAME _ZN22QDeclarativeStateGroupD1Ev @ 641 NONAME _ZN22QDeclarativeStateGroupD2Ev @ 642 NONAME _ZN22QDeclarativeTransition10animationsEv @ 643 NONAME _ZN22QDeclarativeTransition10setToStateERK7QString @ 644 NONAME _ZN22QDeclarativeTransition11fromChangedEv @ 645 NONAME _ZN22QDeclarativeTransition11qt_metacallEN11QMetaObject4CallEiPPv @ 646 NONAME _ZN22QDeclarativeTransition11qt_metacastEPKc @ 647 NONAME _ZN22QDeclarativeTransition11setReversedEb @ 648 NONAME _ZN22QDeclarativeTransition12setFromStateERK7QString @ 649 NONAME _ZN22QDeclarativeTransition13setReversibleEb @ 650 NONAME _ZN22QDeclarativeTransition16staticMetaObjectE @ 651 NONAME DATA 16 _ZN22QDeclarativeTransition17reversibleChangedEv @ 652 NONAME _ZN22QDeclarativeTransition19getStaticMetaObjectEv @ 653 NONAME _ZN22QDeclarativeTransition4stopEv @ 654 NONAME _ZN22QDeclarativeTransition7prepareER5QListI18QDeclarativeActionERS0_I20QDeclarativePropertyEP29QDeclarativeTransitionManager @ 655 NONAME _ZN22QDeclarativeTransition9toChangedEv @ 656 NONAME _ZN22QDeclarativeTransitionC1EP7QObject @ 657 NONAME _ZN22QDeclarativeTransitionC2EP7QObject @ 658 NONAME _ZN22QDeclarativeTransitionD0Ev @ 659 NONAME _ZN22QDeclarativeTransitionD1Ev @ 660 NONAME _ZN22QDeclarativeTransitionD2Ev @ 661 NONAME _ZN23QDeclarativeDebugClient10setEnabledEb @ 662 NONAME _ZN23QDeclarativeDebugClient11qt_metacallEN11QMetaObject4CallEiPPv @ 663 NONAME _ZN23QDeclarativeDebugClient11qt_metacastEPKc @ 664 NONAME _ZN23QDeclarativeDebugClient11sendMessageERK10QByteArray @ 665 NONAME _ZN23QDeclarativeDebugClient15messageReceivedERK10QByteArray @ 666 NONAME _ZN23QDeclarativeDebugClient16staticMetaObjectE @ 667 NONAME DATA 16 _ZN23QDeclarativeDebugClient19getStaticMetaObjectEv @ 668 NONAME _ZN23QDeclarativeDebugClientC1ERK7QStringP27QDeclarativeDebugConnection @ 669 NONAME _ZN23QDeclarativeDebugClientC2ERK7QStringP27QDeclarativeDebugConnection @ 670 NONAME _ZN23QDeclarativeDomDocument4loadEP18QDeclarativeEngineRK10QByteArrayRK4QUrl @ 671 NONAME _ZN23QDeclarativeDomDocumentC1ERKS_ @ 672 NONAME _ZN23QDeclarativeDomDocumentC1Ev @ 673 NONAME _ZN23QDeclarativeDomDocumentC2ERKS_ @ 674 NONAME _ZN23QDeclarativeDomDocumentC2Ev @ 675 NONAME _ZN23QDeclarativeDomDocumentD1Ev @ 676 NONAME _ZN23QDeclarativeDomDocumentD2Ev @ 677 NONAME _ZN23QDeclarativeDomDocumentaSERKS_ @ 678 NONAME _ZN23QDeclarativeDomPropertyC1ERKS_ @ 679 NONAME _ZN23QDeclarativeDomPropertyC1Ev @ 680 NONAME _ZN23QDeclarativeDomPropertyC2ERKS_ @ 681 NONAME _ZN23QDeclarativeDomPropertyC2Ev @ 682 NONAME _ZN23QDeclarativeDomPropertyD1Ev @ 683 NONAME