summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KPrintAction.java
blob: 42c5c6863b13c11ea10d081af3b3c7c3954696ef (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
//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.TQIconSet;
import org.kde.qt.TQWidget;

/**
 See {@link KPrintActionSignals} for signals emitted by KPrintAction
*/
public class KPrintAction extends KActionMenu  {
	protected KPrintAction(Class dummy){super((Class) null);}
	public static final int All = 0;
	public static final int Regular = 1;
	public static final int Specials = 2;

	public native TQMetaObject metaObject();
	public native String className();
	public KPrintAction(String text, int type, TQWidget parentWidget, TQObject parent, String name) {
		super((Class) null);
		newKPrintAction(text,type,parentWidget,parent,name);
	}
	private native void newKPrintAction(String text, int type, TQWidget parentWidget, TQObject parent, String name);
	public KPrintAction(String text, int type, TQWidget parentWidget, TQObject parent) {
		super((Class) null);
		newKPrintAction(text,type,parentWidget,parent);
	}
	private native void newKPrintAction(String text, int type, TQWidget parentWidget, TQObject parent);
	public KPrintAction(String text, int type, TQWidget parentWidget) {
		super((Class) null);
		newKPrintAction(text,type,parentWidget);
	}
	private native void newKPrintAction(String text, int type, TQWidget parentWidget);
	public KPrintAction(String text, int type) {
		super((Class) null);
		newKPrintAction(text,type);
	}
	private native void newKPrintAction(String text, int type);
	public KPrintAction(String text) {
		super((Class) null);
		newKPrintAction(text);
	}
	private native void newKPrintAction(String text);
	public KPrintAction(String text, TQIconSet icon, int type, TQWidget parentWidget, TQObject parent, String name) {
		super((Class) null);
		newKPrintAction(text,icon,type,parentWidget,parent,name);
	}
	private native void newKPrintAction(String text, TQIconSet icon, int type, TQWidget parentWidget, TQObject parent, String name);
	public KPrintAction(String text, TQIconSet icon, int type, TQWidget parentWidget, TQObject parent) {
		super((Class) null);
		newKPrintAction(text,icon,type,parentWidget,parent);
	}
	private native void newKPrintAction(String text, TQIconSet icon, int type, TQWidget parentWidget, TQObject parent);
	public KPrintAction(String text, TQIconSet icon, int type, TQWidget parentWidget) {
		super((Class) null);
		newKPrintAction(text,icon,type,parentWidget);
	}
	private native void newKPrintAction(String text, TQIconSet icon, int type, TQWidget parentWidget);
	public KPrintAction(String text, TQIconSet icon, int type) {
		super((Class) null);
		newKPrintAction(text,icon,type);
	}
	private native void newKPrintAction(String text, TQIconSet icon, int type);
	public KPrintAction(String text, TQIconSet icon) {
		super((Class) null);
		newKPrintAction(text,icon);
	}
	private native void newKPrintAction(String text, TQIconSet icon);
	public KPrintAction(String text, String icon, int type, TQWidget parentWidget, TQObject parent, String name) {
		super((Class) null);
		newKPrintAction(text,icon,type,parentWidget,parent,name);
	}
	private native void newKPrintAction(String text, String icon, int type, TQWidget parentWidget, TQObject parent, String name);
	public KPrintAction(String text, String icon, int type, TQWidget parentWidget, TQObject parent) {
		super((Class) null);
		newKPrintAction(text,icon,type,parentWidget,parent);
	}
	private native void newKPrintAction(String text, String icon, int type, TQWidget parentWidget, TQObject parent);
	public KPrintAction(String text, String icon, int type, TQWidget parentWidget) {
		super((Class) null);
		newKPrintAction(text,icon,type,parentWidget);
	}
	private native void newKPrintAction(String text, String icon, int type, TQWidget parentWidget);
	public KPrintAction(String text, String icon, int type) {
		super((Class) null);
		newKPrintAction(text,icon,type);
	}
	private native void newKPrintAction(String text, String icon, int type);
	public KPrintAction(String text, String icon) {
		super((Class) null);
		newKPrintAction(text,icon);
	}
	private native void newKPrintAction(String text, String icon);
	public static native KPrintAction exportAll(TQWidget parentWidget, TQObject parent, String name);
	public static native KPrintAction exportAll(TQWidget parentWidget, TQObject parent);
	public static native KPrintAction exportAll(TQWidget parentWidget);
	public static native KPrintAction exportAll();
	public static native KPrintAction exportRegular(TQWidget parentWidget, TQObject parent, String name);
	public static native KPrintAction exportRegular(TQWidget parentWidget, TQObject parent);
	public static native KPrintAction exportRegular(TQWidget parentWidget);
	public static native KPrintAction exportRegular();
	public static native KPrintAction exportSpecial(TQWidget parentWidget, TQObject parent, String name);
	public static native KPrintAction exportSpecial(TQWidget parentWidget, TQObject parent);
	public static native KPrintAction exportSpecial(TQWidget parentWidget);
	public static native KPrintAction exportSpecial();
	protected native void initialize(int type, TQWidget parentWidget);
	protected native void slotAboutToShow();
	protected native void slotActivated(int arg1);
	/** 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();
}