home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 12 / MA_Cover_12.iso / source / xpdf-0.80 / ltk / ltkempty.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-11-27  |  750 b   |  43 lines

  1. //========================================================================
  2. //
  3. // LTKEmpty.h
  4. //
  5. // Copyright 1996 Derek B. Noonburg
  6. //
  7. //========================================================================
  8.  
  9. #ifndef LTK_H
  10. #define LTK_H
  11.  
  12. #ifdef __GNUC__
  13. #pragma interface
  14. #endif
  15.  
  16. #include <stddef.h>
  17. #include <X11/Xlib.h>
  18. #include "LTKWidget.h"
  19.  
  20. //------------------------------------------------------------------------
  21. // LTKEmpty
  22. //------------------------------------------------------------------------
  23.  
  24. class LTKEmpty: public LTKWidget {
  25. public:
  26.  
  27.   //---------- constructor ----------
  28.  
  29.   LTKEmpty();
  30.  
  31.   //---------- layout ----------
  32.  
  33.   virtual void layout1();
  34.  
  35.   //---------- drawing ----------
  36.  
  37.   virtual void redraw();
  38.  
  39. private:
  40. };
  41.  
  42. #endif
  43.