default.h 581 B

123456789101112131415161718192021222324252627
  1. /*
  2. * default.h --
  3. *
  4. * This file defines the defaults for all options for all of
  5. * the Tk widgets.
  6. *
  7. * Copyright (c) 1991-1994 The Regents of the University of California.
  8. * Copyright (c) 1994 Sun Microsystems, Inc.
  9. *
  10. * See the file "license.terms" for information on usage and redistribution
  11. * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12. */
  13. #ifndef _DEFAULT
  14. #define _DEFAULT
  15. #ifdef _WIN32
  16. # include "tkWinDefault.h"
  17. #else
  18. # if defined(MAC_OSX_TK)
  19. # include "tkMacOSXDefault.h"
  20. # else
  21. # include "tkUnixDefault.h"
  22. # endif
  23. #endif
  24. #endif /* _DEFAULT */