blob: cecc919089c7f8c840356fb336d38c669a736b3b (
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.qt;
import org.kde.qt.Qt;
public class TQStyleSheet extends TQObject {
protected TQStyleSheet(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
public TQStyleSheet(TQObject parent, String name) {
super((Class) null);
newTQStyleSheet(parent,name);
}
private native void newTQStyleSheet(TQObject parent, String name);
public TQStyleSheet(TQObject parent) {
super((Class) null);
newTQStyleSheet(parent);
}
private native void newTQStyleSheet(TQObject parent);
public TQStyleSheet() {
super((Class) null);
newTQStyleSheet();
}
private native void newTQStyleSheet();
public native TQStyleSheetItem item(String name);
public native void insert(TQStyleSheetItem item);
// TQTextCustomItem* tag(const TQString& arg1,const TQMap<TQString, TQString>& arg2,const TQString& arg3,const TQMimeSourceFactory& arg4,bool arg5,TQTextDocument* arg6); >>>> NOT CONVERTED
public native void scaleFont(TQFont font, int logicalSize);
public native void error(String arg1);
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
public static native TQStyleSheet defaultSheet();
public static native void setDefaultSheet(TQStyleSheet arg1);
public static native String escape(String arg1);
public static native String convertFromPlainText(String arg1, int mode);
public static native String convertFromPlainText(String arg1);
public static native boolean mightBeRichText(String 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();
}
|