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

  1. //========================================================================
  2. //
  3. // LTKEmpty.cc
  4. //
  5. // Copyright 1996 Derek B. Noonburg
  6. //
  7. //========================================================================
  8.  
  9. #ifdef __GNUC__
  10. #pragma implementation
  11. #endif
  12.  
  13. #include <stdlib.h>
  14. #include <stdarg.h>
  15. #include <stddef.h>
  16. #include <X11/Xlib.h>
  17. #include <X11/Xutil.h>
  18. #include "LTKWindow.h"
  19. #include "LTKEmpty.h"
  20.  
  21. LTKEmpty::LTKEmpty():
  22.     LTKWidget(NULL, 0) {
  23. }
  24.  
  25. void LTKEmpty::layout1() {
  26.   width = 1;
  27.   height = 1;
  28. }
  29.  
  30. void LTKEmpty::redraw() {
  31. }
  32.