summaryrefslogtreecommitdiffstats
path: root/korundum/rubylib/korundum/lib/KDE/korundum.rb
blob: 3e4d9a8c3406cc38933094e922adcaa14a044c75 (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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
=begin
/***************************************************************************
                          Korundum.rb  -  KDE specific ruby runtime, dcop etc.
                             -------------------
    begin                : Sun Sep 28 2003
    copyright            : (C) 2003-2006 by Richard Dale
    email                : Richard_Dale@tipitina.demon.co.uk
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
=end

module KDE
	DCOPMeta = {}

	# An entry for each dcop signal or slot
	# Example 
	#  int foobar(TQString,bool)
	#  :name is 'foobar'
	#  :full_name is 'foobar(TQString,bool)'
	#  :arg_types is 'TQString,bool'
	#  :reply_type is 'int'
	DCOPMember = Struct.new :name, :full_name, :arg_types, :reply_type
	
	# If the class with the 'k_dcop' slots declaration is not a subclass of DCOPObject,
	# then 'dcop_object' holds a instance of DCOPObject for the class to use as a
	# proxy. For subclasses of DCOPObject, 'dcop_object' will always be nil
	class DCOPMetaInfo
		attr_accessor :dcop_object, :changed
		attr_reader :k_dcop_signals, :k_dcop
		
		def initialize(aClass)
			DCOPMeta[aClass.name] = self
			@dcop_object = nil
			@k_dcop_signals = {}
			@k_dcop = {}
			@changed = false
		end
		
		def add_signals(signal_list)
			signal_list.each do |signal|
				signal = DCOPClient.normalizeFunctionSignature(signal)
				if signal =~ /^([\w,<>:]*)\s+([^\s]*)\((.*)\)/
					args = DCOPClient.normalizeFunctionSignature($3)
					@k_dcop_signals[$2] = DCOPMember.new($2, $2 + "(" + args + ")", args, $1)
				else
					qWarning( "Invalid DCOP signal format: '#{signal}'" )
				end
			end
		end
		
		def add_slots(slot_list)
			slot_list.each do |slot|
				if slot =~ /^([\w,<>:]*)\s+([^\s]*)\((.*)\)/
					args = DCOPClient.normalizeFunctionSignature($3)
					@k_dcop[$2] = DCOPMember.new($2, $1 + ' ' + $2 + "(" + args + ")", args, $1)
				else
					qWarning( "Invalid DCOP slot format: '#{slot}'" )
				end
			end
		end
	end # DCOPMetaInfo

	def KDE.hasDCOPSignals(aClass)
		classname = aClass.name if aClass.is_a? Module
		meta = DCOPMeta[classname]
		return !meta.nil? && meta.k_dcop_signals.length > 0
	end

	def KDE.hasDCOPSlots(aClass)
		classname = aClass.name if aClass.is_a? Module
		meta = DCOPMeta[classname]
		return !meta.nil? && meta.k_dcop.length > 0
	end

	def KDE.getDCOPSignalNames(aClass)
		classname = aClass.name if aClass.is_a? Module
		signals = DCOPMeta[classname].k_dcop_signals
		return signals.keys
	end

	module Internal
		def Internal.fullSignalName(instance, signalName)
			classname = instance.class.name if instance.class.is_a? Module
			signals = DCOPMeta[classname].k_dcop_signals
			return signals[signalName].full_name
		end
	end

	class KDE::DCOPObject
		def initialize(*k)
			super
		end

		def process(fun, data, replyType, replyData)
			if fun == 'functions()' or fun == 'interfaces()'
				return super
			end
			
			slots = DCOPMeta[@client.class.name].k_dcop
			dcop_slot = slots[fun.sub(/\(.*/, '')]
			if dcop_slot.nil?
				# Can't find an entry for the slot being called? This shouldn't happen..
				return false
			end
			
			replyType << dcop_slot.reply_type
			KDE::dcop_process(	@client, 
								dcop_slot.name, 
								TQt::Internal::getMocArguments(fun), 
								data,
								replyType, 
								(replyType == 'void' or replyType == 'ASYNC') ? nil : TQt::Internal::getMocArguments(replyType), 
								replyData )
		end

		def interfaces()
			ifaces = super()
			return ifaces << @client.class.name
		end

		def functions()
			funcs = super()
			return funcs + @functions
		end
		
		def functions=(funcs)
			@functions = funcs
		end
		
		# If a ruby class has 'k_dcop' slots declarations, but isn't a 
		# subclass of DCOPObject, then keep an instance of it
		def client=(obj)
			@client = obj
		end
		
		def inspect
			str = super
			if @functions != nil
				str.sub(/>$/, " objId=%s, functions=Array (%d element(s))>" % [objId.inspect, functions.length])
			end
		end
		
		def pretty_print(pp)
			str = to_s
			if @functions != nil
				pp.text str.sub(/>$/, "\n objId=%s,\n functions=Array (%d element(s))>" % [objId.inspect, functions.length])
			end
		end
	end

	# If a class contains a k_dcop slots list declaration, then create a DCOPObject
	# associated with it	
	def KDE.createDCOPObject(instance)
		meta = DCOPMeta[instance.class.name]
		return nil if meta.nil?

		if meta.dcop_object.nil? or meta.changed
			funcs = []
			meta.k_dcop.each_value do |value| 
				sig = value.reply_type + ' ' + value.name + '(' + value.arg_types + ')'
				funcs << sig 
			end
			meta.changed = false
			if instance.kind_of? DCOPObject
				instance.functions = funcs
				instance.client = instance
				return nil
			else
				if meta.dcop_object.nil?
					# Only ever allocate a single instance of a DCOPObject if the
					# class isn't a subclass of DCOPObject
					meta.dcop_object = DCOPObject.new(instance.class.name)
					meta.dcop_object.client = instance
				end
				meta.dcop_object.functions = funcs
			end
		end

		return meta.dcop_object
	end
	
	class DCOPRef < TQt::Base
		def method_missing(*k)
			# Enables DCOPRef calls to be made like this:
			#
			# dcopRef = DCOPRef.new("dcopslot", "MyWidget")
			# result = dcopRef.getPoint("Hello from dcopcall")
			begin
				# First look for a method in the Smoke runtime.
				# If not found, then throw an exception and try dcop.
				super(*k)
			rescue
				dcopArgs = k[1, k.length-1]
				dcopArgs <<  NoEventLoop << -1
				method = k[0].id2name
				# Make 'parrot.age = 7' a synonym for 'parrot.setAge(7)'
				method = 'set' + method[0,1].upcase + method[1,method.length].sub("=", "") if method =~ /.*[^-+%\/|]=$/
				
				# If the method name contains underscores, convert to camel case
				while method =~ /([^_]*)_(.)(.*)/ 
					method = $1 + $2.upcase + $3
				end
				
				# Get the functions() for this dcop ref and 
				# cache method_name => full_type_signature in a hash
				if @functions.nil?
					@functions = {}
					funcs = call("functions()")
					if funcs.nil?
						return nil
					end
					funcs.each do |func|
						if func =~ /^([\w,<>:]*)\s+(.*)(\(.*\))/
							return_type = $1
							name = $2
							args = $3
							if args =~ / /
								# Remove any arg names
								args.gsub!(/ \w*/, "")
							end
							
							# Make thing? a synonym for isThing() or hasThing()
							if name =~ /^(is|has)(.)(.*)/
								predicate = $2.downcase + $3 + '?'
								if @functions[predicate].nil?
									@functions[predicate] = return_type + " " + name + args
								end
							end
							
							if @functions[name].nil?
								@functions[name] = return_type + " " + name + args
							else
								# If a function name is overloaded, just keep a single name entry in
								# the hash, not all the full type signatures. Then leave dcopTypeNames() 
								# to try and resolve the ambiguous call from the ruby arg types passed.
								@functions.delete(name)
								@functions[name] = name
							end
						end
					end
				end
				
				method = @functions[method]
				if method.nil?
					qWarning( "DCOPRef: call #{k[0].id2name}() not found" )
					return
				end

				return callExt(method, *dcopArgs)
			end
		end
		
		def dcopTypeNames(*k)
			typeNames = "("
			k.each do |arg|
				if arg.kind_of? Integer
					typeNames << "int,"
				elsif arg.kind_of? Float
					typeNames << "double,"
				elsif arg.kind_of? Array
					typeNames << "TQStringList,"
				elsif arg.kind_of? String
					typeNames << "TQString,"
				elsif arg.kind_of? TQt::Base
					typeNames << arg.class.name + ","
				elsif arg.instance_of? FalseClass or arg.instance_of? TrueClass
					typeNames << "bool,"
				end
			end
			typeNames.sub!(/,$/, '')
			typeNames.gsub!(/TQt::/, 'Q')
			typeNames.gsub!(/KDE::/, 'K')
			typeNames << ")"
			return typeNames
		end
		
		def call(fun, *k)
			k << NoEventLoop << -1
			callExt(fun, *k)
		end

		def callExt(fun, *k)
			if isNull
				qWarning( "DCOPRef: call #{fun} on null reference error" )
				return
			end
			sig = fun
			if fun.index('(') == nil
				sig << dcopTypeNames(*k[0, k.length - 2])
			end
			dc = dcopClient()
			if !dc || !dc.isAttached
				qWarning( "DCOPRef::call():  no DCOP client or client not attached error" )
				return
			end
			if sig =~ /([^\s]*)(\(.*\))/
				full_name = $1+$2
			else
				qWarning( "DCOPRef: call #{fun} invalid format, expecting '<function_name>(<args>)'" )
				return
			end
			return KDE::dcop_call(	self, 
									full_name, 
									TQt::Internal::getMocArguments(full_name),
									*k )
		end

		def send(fun, *k)
			if isNull
				qWarning( "DCOPRef: send #{fun} on null reference error" )
			end
			sig = fun
			if fun.index('(') == nil
				sig << dcopTypeNames(*k)
			end
			dc = dcopClient()
			if !dc || !dc.isAttached
				qWarning( "DCOPRef::send():  no DCOP client or client not attached error" )
				return
			end
			if !sig =~ /^([^\s]*)(\(.*\))/
				qWarning( "DCOPRef: send #{sig} invalid format, expecting '<function_name>(<args>)'" )
				return
			end
			return KDE::dcop_send(	self, 
									fun, 
									TQt::Internal::getMocArguments(sig),
									*k )
		end

		def methods
			if @functions.nil?
				functions()
			end

			result = super + @functions.keys.map {|k| k.sub(/^(set)([A-Z])(.*)/) { $2.downcase + $3 + '=' } }
			return result.uniq
		end

		def inspect
			str = super
			str.sub(/>$/, " app=%s, obj=%s>" % [app.inspect, obj.inspect])
		end
		
		def pretty_print(pp)
			str = to_s
			pp.text str.sub(/>$/, "\n app=%s,\n obj=%s>" % [app.inspect, obj.inspect])
		end

		def type(*args)
			method_missing(:type, *args)
		end
	end
	
	def CmdLineArgs::init(*k)
		if k.length > 0
			if k[0].kind_of? Array
				# If init() is passed an array as the first argument, assume it's ARGV.
				# Then convert to a pair of args 'ARGV.length+1, [$0]+ARGV'
				array = k.shift
				super(*([array.length+1] + [[$0] + array] + k))
			elsif k[0].kind_of? KDE::AboutData
				super(1, [$0], k[0])
			end
		else
			super
		end
	end
	
	# A sane alternative to the strange looking C++ template version,
	# this takes a variable number of ruby args as classes to restore
	def MainWindow::kRestoreMainWindows(*k)
		n = 1
		while MainWindow.canBeRestored(n)
			className = MainWindow.classNameOfToplevel(n)
			k.each do |klass|
				if klass.name == className
					klass.new.restore(n)
				end
			end
			n += 1
		end
	end

	class AboutData
		def inspect
			str = super
			str.sub!(/>$/, " appName=%s, copyrightStatement=%s, programName=%s, version=%s, shortDescription=%s, homepage=%s, bugAddress=%s>" %
							[appName.inspect, copyrightStatement.inspect, programName.inspect, version.inspect,
							shortDescription.inspect, homepage.inspect, bugAddress.inspect] )
			length = authors.length
			if length > 0
				str.sub!(/>$/, ", authors=Array (%d element(s))>" % length)
			end
			length = credits.length
			if length > 0
				str.sub!(/>$/, ", credits=Array (%d element(s))>" % length)
			end
			length = translators.length
			if length > 0
				str.sub!(/>$/, ", translators=Array (%d element(s))>" % length)
			end
			return str
		end
		
		def pretty_print(pp)
			str = to_s
			str.sub!(/>$/, "\n appName=%s,\n copyrightStatement=%s,\n programName=%s,\n version=%s,\n shortDescription=%s,\n homepage=%s,\n bugAddress=%s>" % 
							[appName.inspect, copyrightStatement.inspect, programName.inspect, version.inspect,
							shortDescription.inspect, homepage.inspect, bugAddress.inspect] )
			length = authors.length
			if length > 0
				str.sub!(/>$/, ",\n authors=Array (%d element(s))>" % length)
			end
			length = credits.length
			if length > 0
				str.sub!(/>$/, ",\n credits=Array (%d element(s))>" % length)
			end
			length = translators.length
			if length > 0
				str.sub!(/>$/, ",\n translators=Array (%d element(s))>" % length)
			end
			pp.text str
		end
	end
	
	class AboutPerson
		def inspect
			str = super
			str.sub(/>$/, " emailAddress=%s, name=%s, task=%s, webAddress=%s>" % 
						[emailAddress.inspect, name.inspect, task.inspect, webAddress.inspect] )
		end
		
		def pretty_print(pp)
			str = to_s
			pp.text str.sub(/>$/, "\n emailAddress=%s,\n name=%s,\n task=%s,\n webAddress=%s>" % 
						[emailAddress.inspect, name.inspect, task.inspect, webAddress.inspect] )
		end

		def name(*args)
			method_missing(:name, *args)
		end
	end
	
	class AboutTranslator
		def inspect
			str = super
			str.sub(/>$/, " emailAddress=%s, name=%s>" % 
						[emailAddress.inspect, name.inspect] )
		end
		
		def pretty_print(pp)
			str = to_s
			pp.text str.sub(/>$/, "\n emailAddress=%s,\n name=%s>" % 
						[emailAddress.inspect, name.inspect] )
		end

		def name(*args)
			method_missing(:name, *args)
		end
	end

	class AccelShortcutList
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class ActionPtrShortcutList
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class ActionShortcutList
		def name(*args)
			method_missing(:name, *args)
		end
	end
	
	class Application
		def initialize(*k)
			super
			$kapp = self
		end
		
		# Delete the underlying C++ instance after exec returns
		# Otherwise, rb_gc_call_finalizer_at_exit() can delete
		# stuff that KDE::Application still needs for its cleanup.
		def exec
			method_missing(:exec)
			self.dispose
			TQt::Internal.application_terminated = true
		end
	end

	class Archive
		def open(*args)
			method_missing(:open, *args)
		end
	end

	class ArchiveEntry
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class BookmarkDrag
		def format(*args)
			method_missing(:format, *args)
		end
	end

	class CModule
		def load(*args)
			method_missing(:load, *args)
		end
	end

	class Catalogue
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class ColorDrag
		def format(*args)
			method_missing(:format, *args)
		end
	end

	class CustomMenuEditor
		def load(*args)
			method_missing(:load, *args)
		end
	end

	class FileItem
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class FileMetaInfoGroup
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class FileMetaInfoItem
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class FileTreeBranch
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class FilterDev
		def open(*args)
			method_missing(:open, *args)
		end
	end

	class HTMLView
		def print(*args)
			method_missing(:print, *args)
		end
	end

	class Icon
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class ImageEffect
		def hash(*args)
			method_missing(:hash, *args)
		end
	end

	class ImageIO
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class ListView
		include Enumerable

		def each
			it = TQt::ListViewItemIterator.new(self)
			while it.current
				yield it.current
				it += 1
			end
		end

		def sort(*args)
			method_missing(:sort, *args)
		end
	end

	class ListViewItem
		include Enumerable

		def each
			it = TQt::ListViewItemIterator.new(self)
			while it.current
				yield it.current
				it += 1
			end
		end

		def sort(*args)
			method_missing(:sort, *args)
		end

		def inspect
			str = super
			str.sub!(/>$/, "")
			for i in 0..(listView.columns - 1)
				str << " text%d=%s," % [i, self.text(i)]
			end
			str.sub!(/,?$/, ">")
		end
		
		def pretty_print(pp)
			str = to_s
			str.sub!(/>$/, "")
			for i in 0..(listView.columns - 1)
				str << " text%d=%s," % [i, self.text(i)]
			end
			str.sub!(/,?$/, ">")
			pp.text str
		end
	end

	class MainWindowInterface
		def raise(*args)
			method_missing(:raise, *args)
		end
	end

	class MdiChildView
		def raise(*args)
			method_missing(:raise, *args)
		end
	end

	class MimeType
		def load(*args)
			method_missing(:load, *args)
		end
	end

	class MultiTabBarButton
		def id(*args)
			method_missing(:id, *args)
		end
	end

	class MultipleDrag
		def format(*args)
			method_missing(:format, *args)
		end
	end

	class NamedCommand
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class NewStuff
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class OCRDialog
		def id(*args)
			method_missing(:id, *args)
		end
	end

	class Palette
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class PanelApplet
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class PanelExtension
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class Pixmap
		def load(*args)
			method_missing(:load, *args)
		end
	end

	class PixmapEffect
		def hash(*args)
			method_missing(:hash, *args)
		end
	end

	class PluginInfo
		def load(*args)
			method_missing(:load, *args)
		end

		def name(*args)
			method_missing(:name, *args)
		end
	end

	class PluginSelector
		def load(*args)
			method_missing(:load, *args)
		end
	end

	class PopupFrame
		def exec(*args)
			method_missing(:exec, *args)
		end
	end

	class PrintAction
		def print(*args)
			method_missing(:print, *args)
		end
	end

	class Printer
		def abort(*args)
			method_missing(:abort, *args)
		end
	end

	class Progress
		def format(*args)
			method_missing(:format, *args)
		end
	end

	class ProtocolInfo
		def exec(*args)
			method_missing(:exec, *args)
		end

		def load(*args)
			method_missing(:load, *args)
		end

		def name(*args)
			method_missing(:name, *args)
		end
	end

	class Pty
		def open(*args)
			method_missing(:open, *args)
		end
	end

	class Run
		def abort(*args)
			method_missing(:abort, *args)
		end
	end

	class SSLCertDlgRet
		def send(*args)
			method_missing(:send, *args)
		end
	end

	class SSLPKCS12
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class SSLPKCS7
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class SSLSettings
		def load(*args)
			method_missing(:load, *args)
		end
	end

	class SaveFile
		def abort(*args)
			method_missing(:abort, *args)
		end

		def name(*args)
			method_missing(:name, *args)
		end
	end

	class ScanDialog
		def id(*args)
			method_missing(:id, *args)
		end
	end
	
	class Service
		def inspect
			str = super
			str.sub(/>$/, " library=%s, type=%s, name=%s>" % [library.inspect, type.inspect, name.inspect])
		end
		
		def pretty_print(pp)
			str = to_s
			pp.text str.sub(/>$/, "\n library=%s,\n type=%s,\n name=%s>" % [library.inspect, type.inspect, name.inspect])
		end

		def exec(*args)
			method_missing(:exec, *args)
		end

		def load(*args)
			method_missing(:load, *args)
		end

		def name(*args)
			method_missing(:name, *args)
		end

		def type(*args)
			method_missing(:type, *args)
		end
	end

	class ServiceGroup
		def load(*args)
			method_missing(:load, *args)
		end

		def name(*args)
			method_missing(:name, *args)
		end
	end

	class ServiceSeparator
		def load(*args)
			method_missing(:load, *args)
		end

		def name(*args)
			method_missing(:name, *args)
		end
	end

	class ServiceType
		def load(*args)
			method_missing(:load, *args)
		end

		def name(*args)
			method_missing(:name, *args)
		end
	end

	class Socks
		def select(*args)
			method_missing(:select, *args)
		end

		def send(*args)
			method_missing(:send, *args)
		end
	end

	class StdAccel
		def name(*args)
			method_missing(:name, *args)
		end

		def open(*args)
			method_missing(:open, *args)
		end

		def print(*args)
			method_missing(:print, *args)
		end
	end

	class StdAccel::ShortcutList
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class StdAction
		def name(*args)
			method_missing(:name, *args)
		end

		def open(*args)
			method_missing(:open, *args)
		end

		def print(*args)
			method_missing(:print, *args)
		end
	end

	class StdGuiItem
		def open(*args)
			method_missing(:open, *args)
		end

		def print(*args)
			method_missing(:print, *args)
		end

		def test(*args)
			method_missing(:test, *args)
		end
	end

	class TempDir
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class TempFile
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class ToolBarButton
		def id(*args)
			method_missing(:id, *args)
		end
	end

	class UniqueApplication
		def initialize(*k)
			super
			$kapp = self
		end
		
		# Delete the underlying C++ instance after exec returns
		# Otherwise, rb_gc_call_finalizer_at_exit() can delete
		# stuff that KDE::Application still needs for its cleanup.
		def exec
			method_missing(:exec)
			self.dispose
			TQt::Internal.application_terminated = true
		end
	end

	class URIFilterPlugin
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class URL
		def inspect
			str = super
			str.sub(/>$/, " url=%s, protocol=%s, host=%s, port=%d>" % [url.inspect, protocol.inspect, host.inspect, port])
		end
		
		def pretty_print(pp)
			str = to_s
			pp.text str.sub(/>$/, "\n url=%s,\n protocol=%s,\n host=%s,\n port=%d>" % [url.inspect, protocol.inspect, host.inspect, port])
		end

		def split(*args)
			method_missing(:split, *args)
		end
	end

	class URLDrag
		def format(*args)
			method_missing(:format, *args)
		end
	end

	class VMAllocator
		def allocate(*args)
			method_missing(:allocate, *args)
		end
	end

	class WindowInfo
		def display(*args)
			method_missing(:display, *args)
		end
	end

end

module DOM
	class Attr
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class DOMString
		def split(*args)
			method_missing(:split, *args)
		end
	end

	class DocumentType
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class Event
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLAnchorElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLAnchorElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLAppletElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLButtonElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLButtonElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLElement
		def id(*args)
			method_missing(:id, *args)
		end
	end

	class HTMLFormElement
		def method(*args)
			method_missing(:method, *args)
		end
	end

	class HTMLFormElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLFrameElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLIFrameElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLImageElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLInputElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLInputElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLLIElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLLinkElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLMapElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLMetaElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLOListElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLObjectElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLObjectElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLParamElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLParamElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLScriptElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLSelectElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLSelectElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLStyleElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLTextAreaElement
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class HTMLTextAreaElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class HTMLUListElement
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class StyleSheet
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class CSSRule
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class Document
		def abort(*args)
			method_missing(:abort, *args)
		end
	end

	class Document
		def load(*args)
			method_missing(:load, *args)
		end
	end

	class HTMLDocument
		def open(*args)
			method_missing(:open, *args)
		end
	end

	class HTMLInputElement
		def select(*args)
			method_missing(:select, *args)
		end
	end

	class HTMLTextAreaElement
		def select(*args)
			method_missing(:select, *args)
		end
	end
end # DOM

module KIO
	class Connection
		def send(*args)
			method_missing(:send, *args)
		end
	end

	class NetRC::AutoLogin
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class Slave
		def send(*args)
			method_missing(:send, *args)
		end
	end

	class SlaveBase
		def exit(*args)
			method_missing(:exit, *args)
		end
	end
end # KIO

module KNS
	class Engine
		def type(*args)
			method_missing(:type, *args)
		end
	end

	class Entry
		def name(*args)
			method_missing(:name, *args)
		end

		def type(*args)
			method_missing(:type, *args)
		end
	end

	class Provider
		def name(*args)
			method_missing(:name, *args)
		end
	end

	class ProviderLoader
		def load(*args)
			method_missing(:load, *args)
		end
	end
end # KNS

module KParts
	class Event
		def test(*args)
			method_missing(:test, *args)
		end
	end

	class GUIActivateEvent
		def test(*args)
			method_missing(:test, *args)
		end
	end

	class OpenURLEvent
		def test(*args)
			method_missing(:test, *args)
		end
	end

	class PartActivateEvent
		def test(*args)
			method_missing(:test, *args)
		end
	end

	class PartSelectEvent
		def test(*args)
			method_missing(:test, *args)
		end
	end
end # KParts

module Win
	class Win::WindowInfo
		def name(*args)
			method_missing(:name, *args)
		end
	end
end

class Object
	def RESTORE(klass)
		n = 1
		while MainWindow.canBeRestored(n)
			klass.new.restore(n)
			n += 1
		end
	end

	def I18N_NOOP(x) x end
	def I18N_NOOP2(comment, x) x end
end

class TQt::Base
	def self.k_dcop_signals(*signal_list)
		meta = KDE::DCOPMeta[self.name] || KDE::DCOPMetaInfo.new(self)
		meta.add_signals(signal_list)
		meta.changed = true
	end

	def self.k_dcop(*slot_list)
		meta = KDE::DCOPMeta[self.name] || KDE::DCOPMetaInfo.new(self)
		meta.add_slots(slot_list)
		meta.changed = true
	end
end