You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/CSSFontFaceRule.java

41 lines
1.3 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
The <code>CSSFontFaceRule</code> interface represents a <a
href="http://www.w3.org/TR/REC-CSS2/fonts.html#font-descriptions">
<code>\@font-face</code> rule </a> in a CSS style sheet. The <code>\@font-face</code>
rule is used to hold a set of font descriptions.
@short The <code>CSSFontFaceRule</code> interface represents a <a href="http://www.
*/
public class CSSFontFaceRule extends CSSRule {
protected CSSFontFaceRule(Class dummy){super((Class) null);}
public CSSFontFaceRule() {
super((Class) null);
newCSSFontFaceRule();
}
private native void newCSSFontFaceRule();
public CSSFontFaceRule(CSSFontFaceRule other) {
super((Class) null);
newCSSFontFaceRule(other);
}
private native void newCSSFontFaceRule(CSSFontFaceRule other);
public CSSFontFaceRule(CSSRule other) {
super((Class) null);
newCSSFontFaceRule(other);
}
private native void newCSSFontFaceRule(CSSRule other);
// DOM::CSSFontFaceRule* CSSFontFaceRule(DOM::CSSFontFaceRuleImpl* arg1); >>>> NOT CONVERTED
/**
The <a href="http://www.w3.org/TR/REC-CSS2/syndata.html#q8">
declaration-block </a> of this rule.
@short The <a href="http://www.
*/
public native CSSStyleDeclaration style();
}