Go to the
documentation of this file.
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 namespace mudbox {
00028
00029
00030
00032
00034
00036
00038
00040
00042
00043 class MBDLL_DECL TrayAccessor : public Node
00044
00045 {
00046
00047 DECLARE_CLASS;
00048
00049 public:
00051 static TrayAccessor* GetInstance();
00052
00053
00054 void AddAndSelectTrayItem( const QString itemType, const QString itemName, const QString iconName);
00055
00056 private:
00057
00058 TrayAccessor() {}
00059
00060 static TrayAccessor *s_pThis;
00061
00062 };
00063
00064
00065
00066 };
00067