diff options
Diffstat (limited to 'src/rekonq_defines.h')
-rw-r--r-- | src/rekonq_defines.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/rekonq_defines.h b/src/rekonq_defines.h index c0560a9c..c25d22d2 100644 --- a/src/rekonq_defines.h +++ b/src/rekonq_defines.h @@ -60,6 +60,40 @@ #endif //ASSERT_NOT_REACHED +// -------------------------------------------------------------------------------------- +// ENUMS + + +namespace Rekonq +{ + + /** + * @short Open link options + * Different modes of opening new tab + */ + enum OpenType + { + CurrentTab, ///< open url in current tab + NewTab, ///< open url according to users settings + NewFocusedTab, ///< open url in new tab and focus it + NewBackGroundTab, ///< open url in new background tab + NewWindow ///< open url in new window + }; + + /** + * @short data to be synced + * Different data we can sync + */ + enum SyncData + { + Bookmarks, + History, + Passwords + }; + +} + + // ---------------------------------------------------------------------------------------------------- // INCLUDES |