grouptips.h 516 B

1234567891011121314151617181920212223
  1. #ifndef __GROUPTIPS_H
  2. #define __GROUPTIPS_H
  3. #include <api/service/svcs/svc_tooltips.h>
  4. #include <bfc/ptrlist.h>
  5. #include <api/timer/timerclient.h>
  6. class ifc_window;
  7. int groupTipsTimerProc(int id, void *data1, void *data2);
  8. class GroupTips : public svc_toolTipsRendererI/*, public TimerClientI*/ {
  9. public:
  10. GroupTips();
  11. virtual ~GroupTips();
  12. static const char *getServiceName() { return "Group tooltip renderer"; }
  13. virtual int spawnTooltip(const wchar_t *text);
  14. private:
  15. ifc_window *tipwnd;
  16. };
  17. #endif