diff -r a180113055cb -r 83d6a149c755 Tests/DemoGUI/ToolBar.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Tests/DemoGUI/ToolBar.h Mon Oct 11 21:59:54 2010 +0530 @@ -0,0 +1,37 @@ +#ifndef TOOLBAR_H +#define TOOLBAR_H + +#include +#include +#include +#include +#include +#include "WidgetConstants.h" + +//FaceBook AuthApp UID +const TUint32 KFBUid3 = { 0xEFE2FD23 }; +const TUint32 KFlickUid3 = { 0xE1D8C7D7 }; + +class ToolBar : public QObject +{ + Q_OBJECT +public: + ToolBar(); + void GetToolBar(QMainWindow *Mainwindow,QStringList aListOfActions); + void launchFB(); + void launchFlickr(); + ~ToolBar(); +public slots: + void post(); + void reply(); + void exitApp(); + void homeView(); + void msg(); + void call(); + void authApp_Fb(); + void authApp_Flkr(); +private: + QMainWindow *iMainWindow; +}; + +#endif // TOOLBAR_H