diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-11-22 09:31:31 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-11-22 09:45:59 +0100 |
commit | 60938d35f881b18355d6cc61cb9e6dca67ccdfa0 (patch) | |
tree | ad784fc910620708d84662f3cd7b3d237ad0aec4 /src/webview.h | |
parent | Merge branch 'urlBarOrdering' (diff) | |
download | rekonq-60938d35f881b18355d6cc61cb9e6dca67ccdfa0.tar.xz |
Clean up WebView::contextMenuEvent function
Diffstat (limited to 'src/webview.h')
-rw-r--r-- | src/webview.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/webview.h b/src/webview.h index 790fa23f..042f95c6 100644 --- a/src/webview.h +++ b/src/webview.h @@ -47,6 +47,15 @@ class REKONQ_TESTS_EXPORT WebView : public KWebView Q_OBJECT public: + + enum ContextType + { + EmptySelection = 0x00000000, + LinkSelection = 0x00000001, + ImageSelection = 0x00000010, + TextSelection = 0x00000100 + }; + explicit WebView(QWidget *parent); ~WebView(); |