diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-06-21 22:11:39 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-06-21 22:11:39 +0200 |
commit | 9501cf849628c5aeef669f12db87d43ed03c357a (patch) | |
tree | ceb5c24d0c17feb94414fb66b40eb0694fdbc1e7 /src/application.h | |
parent | Deleting popup in empty msg (diff) | |
download | rekonq-9501cf849628c5aeef669f12db87d43ed03c357a.tar.xz |
New notifying system. Perhaps this should be default for
rekonq 0.2. Anyway, there are a lot of improvements needed.
We'll see..
Diffstat (limited to 'src/application.h')
-rw-r--r-- | src/application.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/application.h b/src/application.h index a5658703..d2e66d3f 100644 --- a/src/application.h +++ b/src/application.h @@ -58,6 +58,19 @@ namespace Rekonq New, ///< open url in new tab and make it current Background ///< open url in new tab in background }; + + /** + * @short notifying message status + * Different message status + */ + + enum Notify + { + Success, ///< url successfully (down)loaded + Error, ///< url failed to (down)load + Download, ///< downloading url + Info ///< information, (default) + }; } |