more documentation; refs #115

This commit is contained in:
Marc Wäckerlin
2012-02-09 09:42:29 +00:00
parent ed718d7f04
commit 088163a14d
9 changed files with 60 additions and 0 deletions

View File

@@ -16,6 +16,9 @@
#define LOG qDebug()<<__PRETTY_FUNCTION__
#endif
//! @addtogroup qbrowserlib
//! @{
class PluginFactory: public QWebPluginFactory {
public:
PluginFactory(QObject* p=0): QWebPluginFactory(p) {
@@ -53,4 +56,5 @@ class PluginFactory: public QWebPluginFactory {
QList<Plugin> _plugins;
};
//! @}
#endif

View File

@@ -23,6 +23,9 @@
#define LOG qDebug()<<__PRETTY_FUNCTION__
#endif
//! @addtogroup qbrowserlib
//! @{
class SaveOrRun: public QWidget, public Ui::SaveOrRun {
Q_OBJECT;
@@ -206,4 +209,6 @@ class SaveOrRunDialog: public QDialog {
};
//! @}
#endif

View File

@@ -18,6 +18,9 @@
#define LOG qDebug()<<__PRETTY_FUNCTION__
#endif
//! @addtogroup qbrowserlib
//! @{
//! QWebPage with additional features and better default behaviour.
/*! SwissWebPage is designed to be used by SwissWebView.
@@ -65,4 +68,5 @@ class SwissWebPage: public QWebPage {
}
};
//! @}
#endif

View File

@@ -15,6 +15,9 @@
#include <memory>
//! @addtogroup qbrowserlib
//! @{
//! QWebViev class with additional features.
/*! This QWebView class contains a @ref SwissWebPage and adds a new
signal @refs newView that sends the view whenever the a new view
@@ -61,4 +64,5 @@ class QDESIGNER_WIDGET_EXPORT SwissWebView: public QWebView {
}
};
//! @}
#endif