PopupFactory.h 873 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __javax_swing_PopupFactory__
  3. #define __javax_swing_PopupFactory__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace awt
  11. {
  12. class Component;
  13. }
  14. }
  15. namespace javax
  16. {
  17. namespace swing
  18. {
  19. class Popup;
  20. class PopupFactory;
  21. }
  22. }
  23. }
  24. class javax::swing::PopupFactory : public ::java::lang::Object
  25. {
  26. public:
  27. PopupFactory();
  28. static void setSharedInstance(::javax::swing::PopupFactory *);
  29. static ::javax::swing::PopupFactory * getSharedInstance();
  30. virtual ::javax::swing::Popup * getPopup(::java::awt::Component *, ::java::awt::Component *, jint, jint);
  31. private:
  32. static ::javax::swing::PopupFactory * sharedFactory;
  33. public:
  34. static ::java::lang::Class class$;
  35. };
  36. #endif // __javax_swing_PopupFactory__