Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

qnpwidget(3qt) [centos man page]

QNPWidget(3qt)															    QNPWidget(3qt)

NAME
QNPWidget - QWidget that is a web browser plugin window SYNOPSIS
This class is part of the Qt Netscape Extension. #include <qnp.h> Inherits QWidget. Public Members QNPWidget () ~QNPWidget () virtual void enterInstance () virtual void leaveInstance () QNPInstance * instance () DESCRIPTION
This class is defined in the Qt Netscape Extension, which can be found in the qt/extensions directory. It is not included in the main Qt API. The QNPWidget class provides a QWidget that is a web browser plugin window. Derive from QNPWidget to create a widget that can be used as a web browser plugin window, or create one and add child widgets. Instances of QNPWidget may only be created when QNPInstance::newWindow() is called by the browser. A common way to develop a plugin widget is to develop it as a stand-alone application window, then make it a child of a plugin widget to use it as a browser plugin. The technique is: class MyPluginWindow : public QNPWidget { QWidget* child; public: MyPluginWindow() { // Some widget that is normally used as a top-level widget child = new MyIndependentlyDevelopedWidget(); // Use the background color of the web page child->setBackgroundColor( backgroundColor() ); // Fill the plugin widget child->setGeometry( 0, 0, width(), height() ); } void resizeEvent(QResizeEvent*) { // Fill the plugin widget child->resize(size()); } }; The default implementation is an empty window. MEMBER FUNCTION DOCUMENTATION
QNPWidget::QNPWidget () Creates a QNPWidget. QNPWidget::~QNPWidget () Destroys the window. This will be called by the plugin binding code when the window is no longer required. The web browser will delete windows when they leave the page. The bindings will change the QWidget::winId() of the window when the window is resized, but this should not affect normal widget behavior. void QNPWidget::enterInstance () [virtual] Called when the mouse enters the plugin window. Does nothing by default. Example: grapher/grapher.cpp. QNPInstance * QNPWidget::instance () Returns the instance for which this widget is the plugin window. void QNPWidget::leaveInstance () [virtual] Called when the mouse leaves the plugin window. Does nothing by default. Example: grapher/grapher.cpp. SEE ALSO
http://doc.trolltech.com/qnpwidget.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qnpwidget.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QNPWidget(3qt)

Check Out this Related Man Page

QSizeGrip(3qt)															    QSizeGrip(3qt)

NAME
QSizeGrip - Corner-grip for resizing a top-level window SYNOPSIS
#include <qsizegrip.h> Inherits QWidget. Public Members QSizeGrip ( QWidget * parent, const char * name = 0 ) ~QSizeGrip () virtual QSize sizeHint () const Protected Members virtual void paintEvent ( QPaintEvent * e ) virtual void mousePressEvent ( QMouseEvent * e ) virtual void mouseMoveEvent ( QMouseEvent * e ) DESCRIPTION
The QSizeGrip class provides a corner-grip for resizing a top-level window. This widget works like the standard Windows resize handle. In the X11 version this resize handle generally works differently from the one provided by the system; we hope to reduce this difference in the future. Put this widget anywhere in a widget tree and the user can use it to resize the top-level window. Generally, this should be in the lower right-hand corner. Note that QStatusBar already uses this widget, so if you have a status bar (e.g. you are using QMainWindow), then you don't need to use this widget explicitly. [Image Omitted] [Image Omitted] See also QStatusBar, Widget Appearance and Style, Main Window and Related Classes, and Basic Widgets. MEMBER FUNCTION DOCUMENTATION
QSizeGrip::QSizeGrip ( QWidget * parent, const char * name = 0 ) Constructs a resize corner called name, as a child widget of parent. QSizeGrip::~QSizeGrip () Destroys the size grip. void QSizeGrip::mouseMoveEvent ( QMouseEvent * e ) [virtual protected] Resizes the top-level widget containing this widget. The event is in e. Reimplemented from QWidget. void QSizeGrip::mousePressEvent ( QMouseEvent * e ) [virtual protected] Primes the resize operation. The event is in e. Reimplemented from QWidget. void QSizeGrip::paintEvent ( QPaintEvent * e ) [virtual protected] Paints the resize grip. Resize grips are usually rendered as small diagonal textured lines in the lower-right corner. The event is in e. Reimplemented from QWidget. QSize QSizeGrip::sizeHint () const [virtual] Returns the size grip's size hint; this is a small size. Reimplemented from QWidget. SEE ALSO
http://doc.trolltech.com/qsizegrip.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qsizegrip.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QSizeGrip(3qt)
Man Page