EtchedBorder.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __javax_swing_border_EtchedBorder__
  3. #define __javax_swing_border_EtchedBorder__
  4. #pragma interface
  5. #include <javax/swing/border/AbstractBorder.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace awt
  11. {
  12. class Color;
  13. class Component;
  14. class Graphics;
  15. class Insets;
  16. }
  17. }
  18. namespace javax
  19. {
  20. namespace swing
  21. {
  22. namespace border
  23. {
  24. class EtchedBorder;
  25. }
  26. }
  27. }
  28. }
  29. class javax::swing::border::EtchedBorder : public ::javax::swing::border::AbstractBorder
  30. {
  31. public:
  32. EtchedBorder();
  33. EtchedBorder(jint);
  34. EtchedBorder(::java::awt::Color *, ::java::awt::Color *);
  35. EtchedBorder(jint, ::java::awt::Color *, ::java::awt::Color *);
  36. virtual void paintBorder(::java::awt::Component *, ::java::awt::Graphics *, jint, jint, jint, jint);
  37. virtual ::java::awt::Insets * getBorderInsets(::java::awt::Component *);
  38. virtual ::java::awt::Insets * getBorderInsets(::java::awt::Component *, ::java::awt::Insets *);
  39. virtual jboolean isBorderOpaque();
  40. virtual jint getEtchType();
  41. virtual ::java::awt::Color * getHighlightColor(::java::awt::Component *);
  42. virtual ::java::awt::Color * getHighlightColor();
  43. virtual ::java::awt::Color * getShadowColor(::java::awt::Component *);
  44. virtual ::java::awt::Color * getShadowColor();
  45. private:
  46. static void paintEtchedBorder(::java::awt::Graphics *, jint, jint, jint, jint, ::java::awt::Color *, ::java::awt::Color *);
  47. public: // actually package-private
  48. static const jlong serialVersionUID = 4001244046866360638LL;
  49. public:
  50. static const jint RAISED = 0;
  51. static const jint LOWERED = 1;
  52. public: // actually protected
  53. jint __attribute__((aligned(__alignof__( ::javax::swing::border::AbstractBorder)))) etchType;
  54. ::java::awt::Color * highlight;
  55. ::java::awt::Color * shadow;
  56. public:
  57. static ::java::lang::Class class$;
  58. };
  59. #endif // __javax_swing_border_EtchedBorder__