public KHTMLPart(KHTMLView view) : this((Type) null) { CreateProxy(); interceptor.Invoke("KHTMLPart#", "KHTMLPart(KHTMLView*)", typeof(void), typeof(KHTMLView), view); }
public KHTMLPart(KHTMLView view, QObject parent) : this((Type) null) { CreateProxy(); interceptor.Invoke("KHTMLPart##", "KHTMLPart(KHTMLView*, QObject*)", typeof(void), typeof(KHTMLView), view, typeof(QObject), parent); }
/// <remarks> /// Constructs a new KHTMLPart. /// This constructor is useful if you wish to subclass KHTMLView. /// If the <code>view</code> passed as first argument to the constructor was built with a /// null KHTMLPart pointer, then the newly created KHTMLPart will be assigned as the view's part. /// Therefore, you might either initialize the view as part of the initialization list of /// your derived KHTMLPart class constructor: /// <pre> /// MyKHTMLPart(), ... /// </pre> /// Or separately build the KHTMLView beforehand: /// <pre> /// KHTMLView v = KHTMLView( null, parentWidget()); /// KHTMLPart p = KHTMLPart( v ); // p will be assigned to v, so that v.Part() == p /// </pre> /// </remarks> <short> Constructs a new KHTMLPart.</short> public KHTMLPart(KHTMLView view, QObject parent, KHTMLPart.GUIProfile prof) : this((Type) null) { CreateProxy(); interceptor.Invoke("KHTMLPart##$", "KHTMLPart(KHTMLView*, QObject*, KHTMLPart::GUIProfile)", typeof(void), typeof(KHTMLView), view, typeof(QObject), parent, typeof(KHTMLPart.GUIProfile), prof); }
/// <remarks> /// The parent is the widget the document should render itself in. /// Rendering information (like sizes, etc...) is only created if /// parent != 0 /// </remarks> <short> The parent is the widget the document should render itself in.</short> public HTMLDocument(KHTMLView parent) : this((Type) null) { CreateProxy(); interceptor.Invoke("HTMLDocument#", "HTMLDocument(KHTMLView*)", typeof(void), typeof(KHTMLView), parent); }
protected void SetSmoothScrollingModeDefault(KHTMLView.SmoothScrollingMode m) { interceptor.Invoke("setSmoothScrollingModeDefault$", "setSmoothScrollingModeDefault(KHTMLView::SmoothScrollingMode)", typeof(void), typeof(KHTMLView.SmoothScrollingMode), m); }
/// <remarks> /// Set the smooth scrolling mode. /// Smooth scrolling mode is normally controlled by the configuration file's SmoothScrolling key. /// Using this setter will override the configuration file's settings. /// </remarks> <short> Set the smooth scrolling mode.</short> public void SetSmoothScrollingMode(KHTMLView.SmoothScrollingMode m) { interceptor.Invoke("setSmoothScrollingMode$", "setSmoothScrollingMode(KHTMLView::SmoothScrollingMode)", typeof(void), typeof(KHTMLView.SmoothScrollingMode), m); }