Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
928 B

  1. //
  2. // mxToolKit (c) 1999 by Mete Ciragan
  3. //
  4. // file: mxToolTip.h
  5. // implementation: all
  6. // last modified: Mar 14 1999, Mete Ciragan
  7. // copyright: The programs and associated files contained in this
  8. // distribution were developed by Mete Ciragan. The programs
  9. // are not in the public domain, but they are freely
  10. // distributable without licensing fees. These programs are
  11. // provided without guarantee or warrantee expressed or
  12. // implied.
  13. //
  14. #ifndef INCLUDED_MXTOOLTIP
  15. #define INCLUDED_MXTOOLTIP
  16. class mxWidget;
  17. class mxToolTip
  18. {
  19. public:
  20. // NO CREATORS
  21. mxToolTip() {}
  22. virtual ~mxToolTip () {}
  23. // MANIPULATORS
  24. static void add (mxWidget *widget, const char *text);
  25. private:
  26. // NOT IMPLEMENTED
  27. mxToolTip (const mxToolTip&);
  28. mxToolTip& operator= (const mxToolTip&);
  29. };
  30. #endif // INCLUDED_MXTOOLTIP