summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KApplication.java
blob: 1b76774ec8ffa5fe14b2382857cfb014a2566adc (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQObject;
import org.kde.qt.TQPixmap;
import org.kde.qt.TQSessionManager;
import java.util.ArrayList;
import org.kde.qt.TQEvent;
import org.kde.qt.TQWidget;
import org.kde.qt.TQPalette;
import org.kde.qt.TQApplication;

/**

 Controls and provides information to all KDE applications.
 Only one object of this class can be instantiated in a single app.
 This instance is always accessible via the 'kapp' global variable.
 See cut() for an example.
 This class provides the following services to all KDE applications.

	<li>
	It controls the event queue (see TQApplication ).
	</li>
	
	<li>
	It provides the application with KDE resources such as
	 accelerators, common menu entries, a KConfig object. session
	 management events, help invocation etc.
	</li>
	
	<li>
	Installs a signal handler for the SIGCHLD signal in order to
	 avoid zombie children. If you want to catch this signal yourself or
	 don't want it to be caught at all, you have set a new signal handler
	 (or SIG_IGN) after KApplication's constructor has run.
	</li>
	
	<li>
	Installs an empty signal handler for the SIGPIPE signal using
	 installSigpipeHandler(). If you want to catch this signal
	 yourself, you have set a new signal handler after KApplication's
	 constructor has run.
	</li>
	
	<li>
	It can start new services
	</li>
	 The way a service gets started depends on the 'X-DCOP-ServiceType'
 entry in the desktop file of the service:
 There are three possibilities:

	<li>
	X-DCOP-ServiceType=None (default)
	    Always start a new service,
	    don't wait till the service registers with dcop.
	</li>
	
	<li>
	X-DCOP-ServiceType=Multi
	    Always start a new service,
	    wait until the service has registered with dcop.
	</li>
	
	<li>
	X-DCOP-ServiceType=Unique
	    Only start the service if it isn't already running,
	    wait until the service has registered with dcop.
	</li>
	 See {@link KApplicationSignals} for signals emitted by KApplication
		@author Matthias Kalle Dalheimer <kalle@kde.org>

		@short Controls and provides information to all KDE applications.

*/
public class KApplication extends TQApplication implements KInstanceInterface {
	protected KApplication(Class dummy){super((Class) null);}
	public static final int ShiftModifier = 1<<0;
	public static final int LockModifier = 1<<1;
	public static final int ControlModifier = 1<<2;
	public static final int Modifier1 = 1<<3;
	public static final int Modifier2 = 1<<4;
	public static final int Modifier3 = 1<<5;
	public static final int Modifier4 = 1<<6;
	public static final int Modifier5 = 1<<7;

	/**	 @deprecated Same values as Button1Mask etc. in X.h 		@short   @deprecated Same values as Button1Mask etc.
	*/
	public static final int Button1Pressed = 1<<8;
	public static final int Button2Pressed = 1<<9;
	public static final int Button3Pressed = 1<<10;
	public static final int Button4Pressed = 1<<11;
	public static final int Button5Pressed = 1<<12;

	/**	 Position of the caption (presumably in the application window's
		   title bar). This enum appears to be unused.
			 @todo Find out if this is used anywhere.
		  		@short   Position of the caption (presumably in the application window's    title bar).
	*/
	public static final int CaptionAppLast = 1;
	public static final int CaptionAppFirst = 2;
	public static final int CaptionNoApp = 3;

	/**	
		 The possible values for the <code>confirm</code> parameter of requestShutDown().
		   		@short    The possible values for the <code>confirm</code> parameter of requestShutDown().
	*/
	public static final int ShutdownConfirmDefault = -1;
	public static final int ShutdownConfirmNo = 0;
	public static final int ShutdownConfirmYes = 1;

	/**	
		 The possible values for the <code>sdtype</code> parameter of requestShutDown().
		   		@short    The possible values for the <code>sdtype</code> parameter of requestShutDown().
	*/
	public static final int ShutdownTypeDefault = -1;
	public static final int ShutdownTypeNone = 0;
	public static final int ShutdownTypeReboot = 1;
	public static final int ShutdownTypeHalt = 2;

	/**	
		 The possible values for the <code>sdmode</code> parameter of requestShutDown().
		   		@short    The possible values for the <code>sdmode</code> parameter of requestShutDown().
	*/
	public static final int ShutdownModeDefault = -1;
	public static final int ShutdownModeSchedule = 0;
	public static final int ShutdownModeTryNow = 1;
	public static final int ShutdownModeForceNow = 2;
	public static final int ShutdownModeInteractive = 3;

	/**	
		 Valid values for the settingsChanged signal
		   		@short    Valid values for the settingsChanged signal
	*/
	public static final int SETTINGS_MOUSE = 0;
	public static final int SETTINGS_COMPLETION = 1;
	public static final int SETTINGS_PATHS = 2;
	public static final int SETTINGS_POPUPMENU = 3;
	public static final int SETTINGS_QT = 4;
	public static final int SETTINGS_SHORTCUTS = 5;

	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 This constructor takes aboutData and command line
		  arguments from KCmdLineArgs.
			@param allowStyles Set to false to disable the loading on plugin based
		 styles. This is only useful to applications that do not display a GUI
		 normally. If you do create an application with <code>allowStyles</code> set to false
		 it normally runs in the background but under special circumstances
		 displays widgets.  Call enableStyles() before displaying any widgets.
			@param GUIenabled Set to false to disable all GUI stuff. This implies
		 no styles either.
		   		@short    This constructor takes aboutData and command line   arguments from KCmdLineArgs.
	*/
	public KApplication(boolean allowStyles, boolean GUIenabled) {
		super((Class) null);
		newKApplication(allowStyles,GUIenabled);
	}
	private native void newKApplication(boolean allowStyles, boolean GUIenabled);
	public KApplication(boolean allowStyles) {
		super((Class) null);
		newKApplication(allowStyles);
	}
	private native void newKApplication(boolean allowStyles);
	public KApplication() {
		super((Class) null);
		newKApplication();
	}
	private native void newKApplication();
	/**	
		 Returns the application session config object.
				@return A pointer to the application's instance specific
 KConfig object.

		@short    Returns the application session config object.
		@see KConfig
	*/
	public native KConfig sessionConfig();
	/**	
		 Is the application restored from the session manager?
				@return If true, this application was restored by the session manager.
    Note that this may mean the config object returned by
 sessionConfig() contains data saved by a session closedown.

		@short    Is the application restored from the session manager? 
		@see #sessionConfig
	*/
	public native boolean isRestored();
	/**	
		 Disables session management for this application.
			 Useful in case  your application is started by the
		 initial "starttde" script.
		   		@short    Disables session management for this application.
	*/
	public native void disableSessionManagement();
	/**	
		 Enables again session management for this application, formerly
		 disabled by calling disableSessionManagement(). You usually
		 shouldn't call this function, as the session management is enabled
		 by default.
		   		@short    Enables again session management for this application, formerly  disabled by calling disableSessionManagement().
	*/
	public native void enableSessionManagement();
	/**	
		 Asks the session manager to shut the session down.
			 Using <code>confirm</code> == ShutdownConfirmYes or <code>sdtype</code> != ShutdownTypeDefault or
		 <code>sdmode</code> != ShutdownModeDefault causes the use of ksmserver's DCOP
		 interface. The remaining two combinations use the standard XSMP and
		 will work with any session manager compliant with it.
			@param confirm Whether to ask the user if he really wants to log out.
		 ShutdownConfirm
			@param sdtype The action to take after logging out. ShutdownType
			@param sdmode If/When the action should be taken. ShutdownMode
				@return true on success, false if the session manager could not be
 contacted.
   
		@short    Asks the session manager to shut the session down.
	*/
	public native boolean requestShutDown(int confirm, int sdtype, int sdmode);
	public native boolean requestShutDown(int confirm, int sdtype);
	public native boolean requestShutDown(int confirm);
	public native boolean requestShutDown();
	/**	
		 Propagates the network address of the session manager in the
		 SESSION_MANAGER environment variable so that child processes can
		 pick it up.
			 If SESSION_MANAGER isn't defined yet, the address is searched in
		 $HOME/.KSMserver.
			 This function is called by clients that are started outside the
		 session ( i.e. before ksmserver is started), but want to launch
		 other processes that should participate in the session.  Examples
		 are kdesktop or kicker.
		   		@short    Propagates the network address of the session manager in the  SESSION_MANAGER environment variable so that child processes can  pick it up.
	*/
	public native void propagateSessionManager();
	/**	
		 Reimplemented for internal purposes, mainly the highlevel
		  handling of session management with KSessionManaged.
			     		@short    Reimplemented for internal purposes, mainly the highlevel   handling of session management with KSessionManaged.
	*/
	public native void commitData(TQSessionManager sm);
	/**	
		 Reimplemented for internal purposes, mainly the highlevel
		  handling of session management with KSessionManaged.
			     		@short    Reimplemented for internal purposes, mainly the highlevel   handling of session management with KSessionManaged.
	*/
	public native void saveState(TQSessionManager sm);
	/**	
		 Returns true if the application is currently saving its session
		 data (most probably before KDE logout). This is intended for use
		 mainly in KMainWindow.queryClose() and KMainWindow.queryExit().
				@short    Returns true if the application is currently saving its session  data (most probably before KDE logout).
		@see KMainWindow#queryClose
		@see KMainWindow#queryExit
	*/
	public native boolean sessionSaving();
	/**	
		 Returns a TQPixmap with the application icon.
				@return the application icon
   
		@short    Returns a TQPixmap with the application icon.
	*/
	public native TQPixmap icon();
	/**	
		 Returns the name of the application icon.
				@return the icon's name
   
		@short    Returns the name of the application icon.
	*/
	public native String iconName();
	/**	
		 Returns the mini-icon for the application as a TQPixmap.
				@return the application's mini icon
   
		@short    Returns the mini-icon for the application as a TQPixmap.
	*/
	public native TQPixmap miniIcon();
	/**	
		 Returns the name of the mini-icon for the application.
				@return the mini icon's name
   
		@short    Returns the name of the mini-icon for the application.
	*/
	public native String miniIconName();
	/**	
		  Sets the top widget of the application.
		  This means basically applying the right window caption and
		  icon. An application may have several top widgets. You don't
		  need to call this function manually when using KMainWindow.
			@param topWidget A top widget of the application.
				@short     Sets the top widget of the application.
		@see #icon
		@see #caption
	*/
	public native void setTopWidget(TQWidget topWidget);
	/**	
		 Invokes the KHelpCenter HTML help viewer from docbook sources.
			@param anchor This has to be a defined anchor in your
		                    docbook sources. If empty the main index
		                    is loaded
			@param appname This allows you to show the help of another
		                    application. If empty the current name() is
		                    used
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
		   		@short    Invokes the KHelpCenter HTML help viewer from docbook sources.
	*/
	public native void invokeHelp(String anchor, String appname, String startup_id);
	public native void invokeHelp(String anchor, String appname);
	public native void invokeHelp(String anchor);
	public native void invokeHelp();
	/**	
		 Convenience method; invokes the standard email application.
			@param address The destination address
			@param subject Subject string. Can be null.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
		   		@short    Convenience method; invokes the standard email application.
	*/
	public native void invokeMailer(String address, String subject, String startup_id);
	public native void invokeMailer(String address, String subject);
	/**	
		 Invokes the standard email application.
			@param mailtoURL A mailto URL.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
			@param allowAttachments whether attachments specified in mailtoURL should be honoured.
		               The default is false; do not honour requests for attachments.
		   		@short    Invokes the standard email application.
	*/
	public native void invokeMailer(KURL mailtoURL, String startup_id, boolean allowAttachments);
	public native void invokeMailer(KURL mailtoURL, String startup_id);
	public native void invokeMailer(KURL mailtoURL);
	/**	
		 Convenience method; invokes the standard email application.
			 All parameters are optional.
			@param to The destination address.
			@param cc The Cc field
			@param bcc The Bcc field
			@param subject Subject string
			@param body A string containing the body of the mail (exclusive with messageFile)
			@param messageFile A file (URL) containing the body of the mail (exclusive with body) - currently unsupported
			@param attachURLs List of URLs to be attached to the mail.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
		   		@short    Convenience method; invokes the standard email application.
	*/
	public native void invokeMailer(String to, String cc, String bcc, String subject, String body, String messageFile, String[] attachURLs, String startup_id);
	public native void invokeMailer(String to, String cc, String bcc, String subject, String body, String messageFile, String[] attachURLs);
	public native void invokeMailer(String to, String cc, String bcc, String subject, String body, String messageFile);
	public native void invokeMailer(String to, String cc, String bcc, String subject, String body);
	/**	
		 Returns a text for the window caption.
			 This may be set by
		 "-caption", otherwise it will be equivalent to the name of the
		 executable.
				@return the text for the window caption
   
		@short    Returns a text for the window caption.
	*/
	public native String caption();
	/**	
		 Builds a caption that contains the application name along with the
		 userCaption using a standard layout.
			 To make a compliant caption
		 for your window, simply do: <code>setCaption</code>(kapp.makeStdCaption(yourCaption));
			@param userCaption The caption string you want to display in the
		 window caption area. Do not include the application name!
			@param withAppName Indicates that the method shall include or ignore
		 the application name when making the caption string. You are not
		 compliant if you set this to <code>false.</code>
			@param modified If true, a 'modified' sign will be included in the
		 returned string. This is useful when indicating that a file is
		 modified, i.e., it contains data that has not been saved.
				@return the created caption
   
		@short    Builds a caption that contains the application name along with the  userCaption using a standard layout.
	*/
	public native String makeStdCaption(String userCaption, boolean withAppName, boolean modified);
	public native String makeStdCaption(String userCaption, boolean withAppName);
	public native String makeStdCaption(String userCaption);
	/**	
		 Get a file name in order to make a temporary copy of your document.
			@param pFilename The full path to the current file of your
		 document.
				@return A new filename for auto-saving.
   
		@short    Get a file name in order to make a temporary copy of your document.
	*/
	public native String tempSaveName(String pFilename);
	/**	
		 Check whether  an auto-save file exists for the document you want to
		 open.
			@param pFilename The full path to the document you want to open.
			@param bRecover This gets set to true if there was a recover
		 file.
				@return The full path of the file to open.
   
		@short    Check whether  an auto-save file exists for the document you want to  open.
	*/
	public native String checkRecoverFile(String pFilename, boolean bRecover);
	/**	
		 Enables style plugins.
			 This is useful only to applications that normally
		 do not display a GUI and create the KApplication with
		 allowStyles set to false.
		   		@short    Enables style plugins.
	*/
	public native void enableStyles();
	/**	
		 Disables style plugins.
			 Current style plugins do not get unloaded.
			 This is only useful when used in combination with enableStyles().
		   		@short    Disables style plugins.
	*/
	public native void disableStyles();
	/**	
		  Installs widget filter as global X11 event filter.
			 The widget
		  filter receives XEvents in its standard TQWidget.x11Event() function.
			  Warning: Only do this when absolutely necessary. An installed X11 filter
		  can slow things down.
				@short     Installs widget filter as global X11 event filter.
	*/
	public native void installX11EventFilter(TQWidget filter);
	/**	
		 Removes global X11 event filter previously installed by
		 installX11EventFilter().
		   		@short    Removes global X11 event filter previously installed by  installX11EventFilter().
	*/
	public native void removeX11EventFilter(TQWidget filter);
	/**	
		 Adds a message type to the KIPC event mask. You can only add "system
		 messages" to the event mask. These are the messages with id < 32.
		 Messages with id >= 32 are user messages.
			@param id The message id. See KIPC.Message.
				@short    Adds a message type to the KIPC event mask.
		@see KIPC
		@see #removeKipcEventMask
		@see #kipcMessage
	*/
	public native void addKipcEventMask(int id);
	/**	
		 Removes a message type from the KIPC event mask. This message will
		 not be handled anymore.
			@param id The message id.
				@short    Removes a message type from the KIPC event mask.
		@see KIPC
		@see #addKipcEventMask
		@see #kipcMessage
	*/
	public native void removeKipcEventMask(int id);
	/**	
		 Returns the app startup notification identifier for this running
		 application.
				@return the startup notification identifier
   
		@short    Returns the app startup notification identifier for this running  application.
	*/
	public native String startupId();
	/**	
			 Sets a new value for the application startup notification window property for newly
		 created toplevel windows. 
			@param startup_id the startup notification identifier
				@short   
		@see KStartupInfo#setNewStartupId
	*/
	public native void setStartupId(String startup_id);
	/**	
		 Updates the last user action timestamp to the given time, or to the current time,
		 if 0 is given. Do not use unless you're really sure what you're doing.
		 Consult focus stealing prevention section in tdebase/twin/README.
				@short    Updates the last user action timestamp to the given time, or to the current time,  if 0 is given.
	*/
	public native void updateUserTimestamp(long time);
	public native void updateUserTimestamp();
	/**	
		 Returns the last user action timestamp or 0 if no user activity has taken place yet.
				@short    Returns the last user action timestamp or 0 if no user activity has taken place yet.
		@see #updateuserTimestamp
	*/
	public native long userTimestamp();
	/**	
		 Updates the last user action timestamp in the application registered to DCOP with dcopId
		 to the given time, or to this application's user time, if 0 is given.
		 Use before causing user interaction in the remote application, e.g. invoking a dialog
		 in the application using a DCOP call.
		 Consult focus stealing prevention section in tdebase/twin/README.
				@short    Updates the last user action timestamp in the application registered to DCOP with dcopId  to the given time, or to this application's user time, if 0 is given.
	*/
	public native void updateRemoteUserTimestamp(String dcopId, long time);
	public native void updateRemoteUserTimestamp(String dcopId);
	/**	
		 Returns the argument to --geometry if any, so the geometry can be set
		 wherever necessary
				@return the geometry argument, or null if there is none
    
		@short    Returns the argument to --geometry if any, so the geometry can be set  wherever necessary
	*/
	public native String geometryArgument();
	/**	
		 Install a Qt SQL property map with entries for all KDE widgets
		 Call this in any application using KDE widgets in TQSqlForm or TQDataView.
		   		@short    Install a Qt SQL property map with entries for all KDE widgets  Call this in any application using KDE widgets in TQSqlForm or TQDataView.
	*/
	public native void installKDEPropertyMap();
	/**	
		 Returns whether a certain action is authorized
			@param genericAction The name of a generic  action
				@return true if the action is authorized
   
		@short    Returns whether a certain action is authorized
	*/
	public native boolean authorize(String genericAction);
	/**	
		 Returns whether a certain KAction is authorized.
			@param action The name of a KAction action. The name is prepended
		 with "action/" before being passed to authorize()
				@return true if the KAction is authorized
   
		@short    Returns whether a certain KAction is authorized.
	*/
	public native boolean authorizeKAction(String action);
	/**	
		 Returns whether a certain URL related action is authorized.
			@param action The name of the action. Known actions are
		 list (may be listed (e.g. in file selection dialog)),
		 link (may be linked to),
		 open (may open) and
		 redirect (may be redirected to)
			@param baseURL The url where the action originates from
			@param destURL The object of the action
				@return true when the action is authorized, false otherwise.

		@short    Returns whether a certain URL related action is authorized.
	*/
	public native boolean authorizeURLAction(String action, KURL baseURL, KURL destURL);
	/**	
		 Allow a certain URL action. This can be useful if your application
		 needs to ensure access to an application specific directory that may 
		 otherwise be subject to KIOSK restrictions.
			@param action The name of the action.
			@param _baseURL The url where the action originates from
			@param _destURL The object of the action
				@short    Allow a certain URL action.
	*/
	public native void allowURLAction(String action, KURL _baseURL, KURL _destURL);
	/**	
		 Returns whether access to a certain control module is authorized.
			@param menuId identifying the control module, e.g. kde-mouse.desktop
				@return true if access to the module is authorized, false otherwise.

		@short    Returns whether access to a certain control module is authorized.
	*/
	public native boolean authorizeControlModule(String menuId);
	/**	
		 Returns whether access to a certain control modules is authorized.
			@param menuIds list of menu-ids of control module, 
		 an example of a menu-id is kde-mouse.desktop.
				@return Those control modules for which access has been authorized.

		@short    Returns whether access to a certain control modules is authorized.
	*/
	public native ArrayList authorizeControlModules(String[] menuIds);
	/**	
			   		@short
	*/
	public native boolean notify(TQObject receiver, TQEvent event);
	/**	
			    		@short
	*/
	// int xErrhandler(Display* arg1,void* arg2); >>>> NOT CONVERTED
	/**	
			    		@short
	*/
	// int xioErrhandler(Display* arg1); >>>> NOT CONVERTED
	/**	
			   		@short
	*/
	// void iceIOErrorHandler(_IceConn* arg1); >>>> NOT CONVERTED
	/**	
		 Invokes the standard browser.
		 Note that you should only do this when you know for sure that the browser can
		 handle the URL (i.e. its mimetype). In doubt, if the URL can point to an image
		 or anything else than directory or HTML, prefer to use new KRun( url ).
			@param url The destination address
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
		   		@short    Invokes the standard browser.
	*/
	public native void invokeBrowser(String url, String startup_id);
	/**	
		 Invoke the standard browser. Uses a <code>startup_id</code> of "" (empty)
		 and is otherwise the same as the above function.
		  		@short    Invoke the standard browser.
	*/
	public native void invokeBrowser(String url);
	/**	
		 If the widget with focus provides a cut() slot, call that slot.  Thus for a
		 simple application cut can be implemented as:
		 <pre>
		 KStdAction.cut( kapp, SLOT("cut()"), actionCollection() );
		 </pre>
		   		@short    If the widget with focus provides a cut() slot, call that slot.
	*/
	public native void cut();
	/**	
		 If the widget with focus provides a copy() slot, call that slot.  Thus for a
		 simple application copy can be implemented as:
		 <pre>
		 KStdAction.copy( kapp, SLOT("copy()"), actionCollection() );
		 </pre>
		   		@short    If the widget with focus provides a copy() slot, call that slot.
	*/
	public native void copy();
	/**	
		 If the widget with focus provides a paste() slot, call that slot.  Thus for a
		 simple application copy can be implemented as:
		 <pre>
		 KStdAction.paste( kapp, SLOT("paste()"), actionCollection() );
		 </pre>
		   		@short    If the widget with focus provides a paste() slot, call that slot.
	*/
	public native void paste();
	/**	
		 If the widget with focus provides a clear() slot, call that slot.  Thus for a
		 simple application clear() can be implemented as:
		 <pre>
		 new KAction( i18n( "Clear" ), "editclear", 0, kapp, SLOT("clear()"), actionCollection(), "clear" );
		 </pre>
			 Note that for some widgets, this may not provide the intended bahavior.  For
		 example if you make use of the code above and a KListView has the focus, clear()
		 will clear all of the items in the list.  If this is not the intened behavior
		 and you want to make use of this slot, you can subclass KListView and reimplement
		 this slot.  For example the following code would implement a KListView without this
		 behavior:
			 <pre>
		 public class MyListView implements KListView {
		    public    MyListView( TQWidget  parent = 0, String  name = 0, WFlags f = 0 ) {}
		   
		 public    void clear() {}
		 }
		 </pre>
		   		@short    If the widget with focus provides a clear() slot, call that slot.
	*/
	public native void clear();
	/**	
		 If the widget with focus provides a selectAll() slot, call that slot.  Thus for a
		 simple application select all can be implemented as:
		 <pre>
		 KStdAction.selectAll( kapp, SLOT("selectAll()"), actionCollection() );
		 </pre>
		   		@short    If the widget with focus provides a selectAll() slot, call that slot.
	*/
	public native void selectAll();
	/**	
		 Tells KApplication about one more operation that should be finished
		 before the application exits. The standard behavior is to exit on the
		 "last window closed" event, but some events should outlive the last window closed
		 (e.g. a file copy for a file manager, or 'compacting folders on exit' for a mail client).
		   		@short    Tells KApplication about one more operation that should be finished  before the application exits.
	*/
	public native void ref();
	/**	
		 Tells KApplication that one operation such as those described in ref() just finished.
		 The application exits if the counter is back to 0.
		   		@short    Tells KApplication that one operation such as those described in ref() just finished.
	*/
	public native void deref();
	/**	
		 Add Qt and KDE command line options to KCmdLineArgs.
		    		@short    Add Qt and KDE command line options to KCmdLineArgs.
	*/
	public static native void addCmdLineOptions();
	/**	
		 Returns the current application object.
			 This is similar to the global TQApplication pointer qApp. It
		 allows access to the single global KApplication object, since
		 more than one cannot be created in the same application. It
		 saves you the trouble of having to pass the pointer explicitly
		 to every function that may require it.
				@return the current application object
   
		@short    Returns the current application object.
	*/
	public static native KApplication kApplication();
	/**	
		 Returns a pointer to a DCOPClient for the application.
		 If a client does not exist yet, it is created when this
		 function is called.
				@return the DCOPClient for the application
   
		@short    Returns a pointer to a DCOPClient for the application.
	*/
	public static native DCOPClient dcopClient();
	/**	
		 Disable automatic dcop registration
		 Must be called before creating a KApplication instance to have an effect.
		   		@short    Disable automatic dcop registration  Must be called before creating a KApplication instance to have an effect.
	*/
	public static native void disableAutoDcopRegistration();
	/**	
		 Returns the DCOP name of the service launcher. This will be something like
		 klaucher_$host_$uid.
				@return the name of the service launcher
   
		@short    Returns the DCOP name of the service launcher.
	*/
	public static native String launcher();
	/**	
		 Starts a service based on the (translated) name of the service.
		 E.g. "Web Browser"
			@param _name the name of the service
			@param URL if not empty this URL is passed to the service
			@param error On failure, <code>error</code> contains a description of the error
		         that occurred. If the pointer is 0, the argument will be
		         ignored
			@param dcopService On success, <code>dcopService</code> contains the DCOP name
		         under which this service is available. If empty, the service does
		         not provide DCOP services. If the pointer is 0 the argument
		         will be ignored
			@param pid On success, the process id of the new service will be written
		        here. If the pointer is 0, the argument will be ignored.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
			@param noWait if set, the function does not wait till the service is running.
				@return an error code indicating success (== 0) or failure (> 0).
   
		@short    Starts a service based on the (translated) name of the service.
	*/
	public static native int startServiceByName(String _name, String URL, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id, boolean noWait);
	public static native int startServiceByName(String _name, String URL, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id);
	public static native int startServiceByName(String _name, String URL, StringBuffer error, StringBuffer dcopService, int[] pid);
	public static native int startServiceByName(String _name, String URL, StringBuffer error, StringBuffer dcopService);
	public static native int startServiceByName(String _name, String URL, StringBuffer error);
	public static native int startServiceByName(String _name, String URL);
	/**	
		 Starts a service based on the (translated) name of the service.
		 E.g. "Web Browser"
			@param _name the name of the service
			@param URLs if not empty these URLs will be passed to the service
			@param error On failure, <code>error</code> contains a description of the error
		         that occurred. If the pointer is 0, the argument will be
		         ignored
			@param dcopService On success, <code>dcopService</code> contains the DCOP name
		         under which this service is available. If empty, the service does
		         not provide DCOP services. If the pointer is 0 the argument
		         will be ignored
			@param pid On success, the process id of the new service will be written
		        here. If the pointer is 0, the argument will be ignored.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
			@param noWait if set, the function does not wait till the service is running.
				@return an error code indicating success (== 0) or failure (> 0).
   
		@short    Starts a service based on the (translated) name of the service.
	*/
	public static native int startServiceByName(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id, boolean noWait);
	public static native int startServiceByName(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id);
	public static native int startServiceByName(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService, int[] pid);
	public static native int startServiceByName(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService);
	public static native int startServiceByName(String _name, String[] URLs, StringBuffer error);
	public static native int startServiceByName(String _name, String[] URLs);
	public static native int startServiceByName(String _name);
	/**	
		 Starts a service based on the desktop path of the service.
		 E.g. "Applications/konqueror.desktop" or "/home/user/bla/myfile.desktop"
			@param _name the path of the desktop file
			@param URL if not empty this URL is passed to the service
			@param error On failure, <code>error</code> contains a description of the error
		         that occurred. If the pointer is 0, the argument will be
		         ignored
			@param dcopService On success, <code>dcopService</code> contains the DCOP name
		         under which this service is available. If empty, the service does
		         not provide DCOP services. If the pointer is 0 the argument
		         will be ignored
			@param pid On success, the process id of the new service will be written
		        here. If the pointer is 0, the argument will be ignored.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
			@param noWait if set, the function does not wait till the service is running.
				@return an error code indicating success (== 0) or failure (> 0).
   
		@short    Starts a service based on the desktop path of the service.
	*/
	public static native int startServiceByDesktopPath(String _name, String URL, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id, boolean noWait);
	public static native int startServiceByDesktopPath(String _name, String URL, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id);
	public static native int startServiceByDesktopPath(String _name, String URL, StringBuffer error, StringBuffer dcopService, int[] pid);
	public static native int startServiceByDesktopPath(String _name, String URL, StringBuffer error, StringBuffer dcopService);
	public static native int startServiceByDesktopPath(String _name, String URL, StringBuffer error);
	public static native int startServiceByDesktopPath(String _name, String URL);
	/**	
		 Starts a service based on the desktop path of the service.
		 E.g. "Applications/konqueror.desktop" or "/home/user/bla/myfile.desktop"
			@param _name the path of the desktop file
			@param URLs if not empty these URLs will be passed to the service
			@param error On failure, <code>error</code> contains a description of the error
		         that occurred. If the pointer is 0, the argument will be
		         ignored
			@param dcopService On success, <code>dcopService</code> contains the DCOP name
		         under which this service is available. If empty, the service does
		         not provide DCOP services. If the pointer is 0 the argument
		         will be ignored
			@param pid On success, the process id of the new service will be written
		        here. If the pointer is 0, the argument will be ignored.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
			@param noWait if set, the function does not wait till the service is running.
				@return an error code indicating success (== 0) or failure (> 0).
   
		@short    Starts a service based on the desktop path of the service.
	*/
	public static native int startServiceByDesktopPath(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id, boolean noWait);
	public static native int startServiceByDesktopPath(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id);
	public static native int startServiceByDesktopPath(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService, int[] pid);
	public static native int startServiceByDesktopPath(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService);
	public static native int startServiceByDesktopPath(String _name, String[] URLs, StringBuffer error);
	public static native int startServiceByDesktopPath(String _name, String[] URLs);
	public static native int startServiceByDesktopPath(String _name);
	/**	
		 Starts a service based on the desktop name of the service.
		 E.g. "konqueror"
			@param _name the desktop name of the service
			@param URL if not empty this URL is passed to the service
			@param error On failure, <code>error</code> contains a description of the error
		         that occurred. If the pointer is 0, the argument will be
		         ignored
			@param dcopService On success, <code>dcopService</code> contains the DCOP name
		         under which this service is available. If empty, the service does
		         not provide DCOP services. If the pointer is 0 the argument
		         will be ignored
			@param pid On success, the process id of the new service will be written
		        here. If the pointer is 0, the argument will be ignored.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
			@param noWait if set, the function does not wait till the service is running.
				@return an error code indicating success (== 0) or failure (> 0).
   
		@short    Starts a service based on the desktop name of the service.
	*/
	public static native int startServiceByDesktopName(String _name, String URL, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id, boolean noWait);
	public static native int startServiceByDesktopName(String _name, String URL, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id);
	public static native int startServiceByDesktopName(String _name, String URL, StringBuffer error, StringBuffer dcopService, int[] pid);
	public static native int startServiceByDesktopName(String _name, String URL, StringBuffer error, StringBuffer dcopService);
	public static native int startServiceByDesktopName(String _name, String URL, StringBuffer error);
	public static native int startServiceByDesktopName(String _name, String URL);
	/**	
		 Starts a service based on the desktop name of the service.
		 E.g. "konqueror"
			@param _name the desktop name of the service
			@param URLs if not empty these URLs will be passed to the service
			@param error On failure, <code>error</code> contains a description of the error
		         that occurred. If the pointer is 0, the argument will be
		         ignored
			@param dcopService On success, <code>dcopService</code> contains the DCOP name
		         under which this service is available. If empty, the service does
		         not provide DCOP services. If the pointer is 0 the argument
		         will be ignored
			@param pid On success, the process id of the new service will be written
		        here. If the pointer is 0, the argument will be ignored.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
			@param noWait if set, the function does not wait till the service is running.
				@return an error code indicating success (== 0) or failure (> 0).
   
		@short    Starts a service based on the desktop name of the service.
	*/
	public static native int startServiceByDesktopName(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id, boolean noWait);
	public static native int startServiceByDesktopName(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService, int[] pid, String startup_id);
	public static native int startServiceByDesktopName(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService, int[] pid);
	public static native int startServiceByDesktopName(String _name, String[] URLs, StringBuffer error, StringBuffer dcopService);
	public static native int startServiceByDesktopName(String _name, String[] URLs, StringBuffer error);
	public static native int startServiceByDesktopName(String _name, String[] URLs);
	public static native int startServiceByDesktopName(String _name);
	/**	
		 Starts a program via tdeinit.
			 program name and arguments are converted to according to the
		 local encoding and passed as is to tdeinit.
			@param name Name of the program to start
			@param args Arguments to pass to the program
			@param error On failure, <code>error</code> contains a description of the error
		         that occurred. If the pointer is 0, the argument will be
		         ignored
			@param pid On success, the process id of the new service will be written
		        here. If the pointer is 0, the argument will be ignored.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
				@return an error code indicating success (== 0) or failure (> 0).
   
		@short    Starts a program via tdeinit.
	*/
	public static native int tdeinitExec(String name, String[] args, StringBuffer error, int[] pid, String startup_id);
	public static native int tdeinitExec(String name, String[] args, StringBuffer error, int[] pid);
	public static native int tdeinitExec(String name, String[] args, StringBuffer error);
	public static native int tdeinitExec(String name, String[] args);
	public static native int tdeinitExec(String name);
	/**	
		 Starts a program via tdeinit and wait for it to finish.
			 Like tdeinitExec(), but it waits till the program is finished.
		 As such it behaves similar to the system(...) function.
			@param name Name of the program to start
			@param args Arguments to pass to the program
			@param error On failure, <code>error</code> contains a description of the error
		         that occurred. If the pointer is 0, the argument will be
		         ignored
			@param pid On success, the process id of the new service will be written
		        here. If the pointer is 0, the argument will be ignored.
			@param startup_id for app startup notification, "0" for none,
		           "" ( empty string ) is the default
				@return an error code indicating success (== 0) or failure (> 0).
   
		@short    Starts a program via tdeinit and wait for it to finish.
	*/
	public static native int tdeinitExecWait(String name, String[] args, StringBuffer error, int[] pid, String startup_id);
	public static native int tdeinitExecWait(String name, String[] args, StringBuffer error, int[] pid);
	public static native int tdeinitExecWait(String name, String[] args, StringBuffer error);
	public static native int tdeinitExecWait(String name, String[] args);
	public static native int tdeinitExecWait(String name);
	/**	
		 Generates a uniform random number.
				@return A truly unpredictable number in the range [0, RAND_MAX)
   
		@short    Generates a uniform random number.
	*/
	public static native int random();
	/**	
		 Generates a random string.  It operates in the range [A-Za-z0-9]
			@param length Generate a string of this length.
				@return the random string
   
		@short    Generates a random string.
	*/
	public static native String randomString(int length);
	/**	
		 Returns the state of the currently pressed keyboard modifiers (e.g. shift, control, etc.)
		 and mouse buttons, similarly to TQKeyEvent.state() and TQMouseEvent.state().
		 You usually should simply use the information provided by TQKeyEvent and TQMouseEvent,
		 but it can be useful to query for the status of the modifiers at another moment
		 (e.g. some KDE apps do that upon a drop event).
				@return the keyboard modifiers and mouse buttons state

		@short    Returns the state of the currently pressed keyboard modifiers (e.
	*/
	public static native int keyboardMouseState();
	/**	
			   		@short
	*/
	public static native void startKdeinit();
	/**	
		 Used to obtain the TQPalette that will be used to set the application palette.
			 This is only useful for configuration modules such as krdb and should not be
		 used in normal circumstances.
				@return the TQPalette

		@short    Used to obtain the TQPalette that will be used to set the application palette.
	*/
	public static native TQPalette createApplicationPalette();
	/**	
			 Raw access for use by KDM.
		   		@short
	*/
	public static native TQPalette createApplicationPalette(KConfig config, int contrast);
	/**	
		 Installs a handler for the SIGPIPE signal. It is thrown when you write to
		 a pipe or socket that has been closed.
		 The handler is installed automatically in the constructor, but you may
		 need it if your application or component does not have a KApplication
		 instance.
		   		@short    Installs a handler for the SIGPIPE signal.
	*/
	public static native void installSigpipeHandler();
	/**	
			 Whether widgets can be used. 
				@short
	*/
	public static native boolean guiEnabled();
	/**	
			   		@short
	*/
	public KApplication(boolean allowStyles, boolean GUIenabled, KInstanceInterface _instance) {
		super((Class) null);
		newKApplication(allowStyles,GUIenabled,_instance);
	}
	private native void newKApplication(boolean allowStyles, boolean GUIenabled, KInstanceInterface _instance);
	/**	
		 This method is used internally to determine which edit slots are implemented
		 by the widget that has the focus, and to invoke those slots if available.
			@param slot is the slot as returned using the SLOT() macro, for example SLOT("cut()")
			 This method can be used in KApplication subclasses to implement application wide
		 edit actions not supported by the KApplication class.  For example (in your subclass):
			 <pre>
		 void MyApplication.deselect()
		 {
		   invokeEditSlot( SLOT("deselect()") );
		 }
		 </pre>
			 Now in your application calls to MyApplication.deselect() will call this slot on the
		 focused widget if it provides this slot.  You can combine this with KAction with:
			 <pre>
		 KStdAction.deselect( (MyApplication)( kapp ), SLOT("cut()"), actionCollection() );
		 </pre>
				@short    This method is used internally to determine which edit slots are implemented  by the widget that has the focus, and to invoke those slots if available.
		@see #cut
		@see #copy
		@see #paste
		@see #clear
		@see #selectAll
	*/
	protected native void invokeEditSlot(String slot);
	/** Deletes the wrapped C++ instance */
	protected native void finalize() throws InternalError;
	/** Delete the wrapped C++ instance ahead of finalize() */
	public native void dispose();
	/** Has the wrapped C++ instance been deleted? */
	public native boolean isDisposed();
	/**	
		 Returns the application standard dirs object.
				@return The KStandardDirs of the application.
     
		@short    Returns the application standard dirs object.
	*/
	public native KStandardDirs dirs();
	/**	
		 Returns the general config object ("appnamerc").
				@return the KConfig object for the instance.
     
		@short    Returns the general config object ("appnamerc").
	*/
	public native KConfig config();
	/**	
		 Returns the general config object ("appnamerc").
				@return the KConfig object for the instance.
     
		@short    Returns the general config object ("appnamerc").
	*/
	public native KSharedConfig sharedConfig();
	/**	
		  Returns an iconloader object.
				@return the iconloader object.
     
		@short     Returns an iconloader object.
	*/
	public native KIconLoader iconLoader();
	/**	
		 Re-allocate the global iconloader.
		     		@short    Re-allocate the global iconloader.
	*/
	public native void newIconLoader();
	/**	
		  Returns the about data of this instance
		  Warning, can be null
				@return the about data of the instance, or 0 if it has 
         not been set yet
     
		@short     Returns the about data of this instance   Warning, can be 0L
	*/
	public native KAboutData aboutData();
	/**	
		 Returns the name of the instance
				@return the instance name, can be null if the KInstance has been 
         created with a null name
     
		@short    Returns the name of the instance
	*/
	public native String instanceName();
	/**	
		 Returns the KMimeSourceFactory of the instance.
		 Mainly added for API completeness and future extensibility.
				@return the KMimeSourceFactory set as default for this application.
     
		@short    Returns the KMimeSourceFactory of the instance.
	*/
	public native KMimeSourceFactory mimeSourceFactory();
	/**	
		 Set name of default config file.
			@param name the name of the default config file
				@short    Set name of default config file.
	*/
	protected native void setConfigName(String name);
	/**
		Used internally by the KDE Koala Java bindings runtime
	*/
	public static native void setJavaSlotFactory();
	
}