Exemplo n.º 1
0
 public KHTMLPart(KHTMLView view)
     : this((Type) null)
 {
     CreateProxy();
     interceptor.Invoke("KHTMLPart#", "KHTMLPart(KHTMLView*)", typeof(void), typeof(KHTMLView), view);
 }
Exemplo n.º 2
0
 public KHTMLPart(KHTMLView view, QObject parent)
     : this((Type) null)
 {
     CreateProxy();
     interceptor.Invoke("KHTMLPart##", "KHTMLPart(KHTMLView*, QObject*)", typeof(void), typeof(KHTMLView), view, typeof(QObject), parent);
 }
Exemplo n.º 3
0
 /// <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);
 }
Exemplo n.º 4
0
 /// <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);
 }
Exemplo n.º 5
0
 protected void SetSmoothScrollingModeDefault(KHTMLView.SmoothScrollingMode m)
 {
     interceptor.Invoke("setSmoothScrollingModeDefault$", "setSmoothScrollingModeDefault(KHTMLView::SmoothScrollingMode)", typeof(void), typeof(KHTMLView.SmoothScrollingMode), m);
 }
Exemplo n.º 6
0
 /// <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);
 }