summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KStatusBarLabel.java
blob: 760c8016801d58d3b3af8bcf38b761ab5c05ce12 (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
//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.TQMouseEvent;
import org.kde.qt.TQLabel;

/**

  Internal label class for use in KStatusBar
  See {@link KStatusBarLabelSignals} for signals emitted by KStatusBarLabel
		@short     Internal label class for use in KStatusBar

*/
public class KStatusBarLabel extends TQLabel  {
	protected KStatusBarLabel(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public KStatusBarLabel(String text, int _id, KStatusBar parent, String name) {
		super((Class) null);
		newKStatusBarLabel(text,_id,parent,name);
	}
	private native void newKStatusBarLabel(String text, int _id, KStatusBar parent, String name);
	public KStatusBarLabel(String text, int _id, KStatusBar parent) {
		super((Class) null);
		newKStatusBarLabel(text,_id,parent);
	}
	private native void newKStatusBarLabel(String text, int _id, KStatusBar parent);
	public KStatusBarLabel(String text, int _id) {
		super((Class) null);
		newKStatusBarLabel(text,_id);
	}
	private native void newKStatusBarLabel(String text, int _id);
	protected native void mousePressEvent(TQMouseEvent _event);
	protected native void mouseReleaseEvent(TQMouseEvent _event);
	/** 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();
}