--- a/filebrowser/ui/inc/notifications.h Fri May 14 15:53:02 2010 +0300
+++ b/filebrowser/ui/inc/notifications.h Thu May 13 20:59:38 2010 +0300
@@ -22,20 +22,33 @@
#include <hbmessagebox.h>
class Notifications
-{
+ {
public:
- static void showAboutNote();
+ /**
+ * shows about box
+ */
+ static void about();
static void showMessageBox(HbMessageBox::MessageBoxType type, const QString &text, const QString &label, int timeout = HbPopup::NoTimeout);
- static void showInformationNote(const QString &text, const QString &title = QString());
+ static void showInformationNote(const QString &text);
static void showErrorNote(const QString &text, bool noTimeout = false);
static void showConfirmationNote(const QString &text, bool noTimeout = false);
static bool showConfirmationQuery(const QString &aText);
-
+// /**
+// * shows progressbar
+// */
// static HbDeviceProgressDialog* showWaitDialog(const QString &text);
+
+private:
+
+// /**
+// * shows global HbGlobalCommonNote type note
+// */
+// static void showGlobalNote(const QString& text, HbCommonNote::NoteType type);
+
+ };
-private:
-};
+
#endif // NOTIFICATIONS_H_