summaryrefslogtreecommitdiff
path: root/src/rekonq_defines.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-12-09 15:29:56 +0100
committerAndrea Diamantini <adjam7@gmail.com>2011-12-12 16:40:29 +0100
commitc2bbd9066ae8b6902d51b8d9782702252eec5d95 (patch)
tree03b2d030bf08433f1fc346d7ef8b81adeee861c1 /src/rekonq_defines.h
parentRebase fix (diff)
downloadrekonq-c2bbd9066ae8b6902d51b8d9782702252eec5d95.tar.xz
Sync improvements, last bunch!
Improved code division (it will be super easy now adding a new handler) Added a new config UI (QWizard based)
Diffstat (limited to 'src/rekonq_defines.h')
-rw-r--r--src/rekonq_defines.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/rekonq_defines.h b/src/rekonq_defines.h
index bd11c24e..439ee8cc 100644
--- a/src/rekonq_defines.h
+++ b/src/rekonq_defines.h
@@ -64,11 +64,11 @@
namespace Rekonq
{
+
/**
* @short notifying message status
* Different message status
*/
-
enum Notify
{
Success, ///< url successfully (down)loaded
@@ -90,6 +90,18 @@ enum OpenType
NewBackTab, ///< open url in new tab in background
NewWindow ///< open url in new window
};
+
+/**
+* @short data to be synced
+* Different data we can sync
+*/
+enum SyncData
+{
+ Bookmarks,
+ History,
+ Passwords
+};
+
}