diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-06-21 01:34:55 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-06-21 01:34:55 +0200 |
commit | 27a1d6d45142134c849f40fd9662cff29f2b9645 (patch) | |
tree | 53a6243996e3681a89cc4f5149335cf11e334265 /src/mainwindow.h | |
parent | New notify system (diff) | |
download | rekonq-27a1d6d45142134c849f40fd9662cff29f2b9645.tar.xz |
Comments and Fixes
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index 51bea5e5..df2c183e 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -49,6 +49,23 @@ class SidePanel; class WebView; +namespace Rekonq +{ + /** + * @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 + }; +} + + /** * This class serves as the main window for rekonq. * It handles the menus, toolbars, and status bars. |