summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KAboutWidget.java
blob: 23d476807a215d4af08e017332307b7eddcb9c68 (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
//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.TQPixmap;
import org.kde.qt.TQWidget;
import org.kde.qt.TQResizeEvent;
import org.kde.qt.TQWidget;

/**

 KAboutWidget is the main widget for KAboutDialog.
 It has a minimum size set.
  See {@link KAboutWidgetSignals} for signals emitted by KAboutWidget
		@short    KAboutWidget is the main widget for KAboutDialog.

*/
public class KAboutWidget extends TQWidget  {
	protected KAboutWidget(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 The Qt constructor.
		   		@short    The Qt constructor.
	*/
	public KAboutWidget(TQWidget parent, String name) {
		super((Class) null);
		newKAboutWidget(parent,name);
	}
	private native void newKAboutWidget(TQWidget parent, String name);
	public KAboutWidget(TQWidget parent) {
		super((Class) null);
		newKAboutWidget(parent);
	}
	private native void newKAboutWidget(TQWidget parent);
	public KAboutWidget() {
		super((Class) null);
		newKAboutWidget();
	}
	private native void newKAboutWidget();
	/**	
		 Adjust the minimum size (after setting the properties of the image and
		 the labels.
		   		@short    Adjust the minimum size (after setting the properties of the image and  the labels.
	*/
	public native void adjust();
	/**	
		 Sets the image as the application logo.
		   		@short    Sets the image as the application logo.
	*/
	public native void setLogo(TQPixmap arg1);
	/**	
		 Sets the author's name and email address.
		   		@short    Sets the author's name and email address.
	*/
	public native void setAuthor(String name, String email, String url, String work);
	/**	
		 Sets the maintainers name and email address.
		   		@short    Sets the maintainers name and email address.
	*/
	public native void setMaintainer(String name, String email, String url, String work);
	/**	
		 Shows this person as one of the major contributors.
		   		@short    Shows this person as one of the major contributors.
	*/
	public native void addContributor(String name, String email, String url, String work);
	/**	
		 Sets the text describing the version.
		   		@short    Sets the text describing the version.
	*/
	public native void setVersion(String name);
	/**	
		 The resize event.
		   		@short    The resize event.
	*/
	protected native void resizeEvent(TQResizeEvent arg1);
	/**	
		 Catches the signals from the contributors elements.
		   		@short    Catches the signals from the contributors elements.
	*/
	protected native void sendEmailSlot(String name, String email);
	/**	
		 Catches the clicked URLs.
		   		@short    Catches the clicked URLs.
	*/
	protected native void openURLSlot(String url);
	/** 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();
}