DisplayMode.h 851 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_awt_DisplayMode__
  3. #define __java_awt_DisplayMode__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace awt
  11. {
  12. class DisplayMode;
  13. }
  14. }
  15. }
  16. class java::awt::DisplayMode : public ::java::lang::Object
  17. {
  18. public:
  19. DisplayMode(jint, jint, jint, jint);
  20. jint getHeight();
  21. jint getWidth();
  22. jint getBitDepth();
  23. jint getRefreshRate();
  24. jboolean equals(::java::awt::DisplayMode *);
  25. jint hashCode();
  26. static const jint BIT_DEPTH_MULTI = -1;
  27. static const jint REFRESH_RATE_UNKNOWN = 0;
  28. private:
  29. jint __attribute__((aligned(__alignof__( ::java::lang::Object)))) width;
  30. jint height;
  31. jint bitDepth;
  32. jint refreshRate;
  33. public:
  34. static ::java::lang::Class class$;
  35. };
  36. #endif // __java_awt_DisplayMode__