GetDispRes.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*
  24. * (c) Copyright 1993, 1994 Hewlett-Packard Company *
  25. * (c) Copyright 1993, 1994 International Business Machines Corp. *
  26. * (c) Copyright 1993, 1994 Sun Microsystems, Inc. *
  27. * (c) Copyright 1993, 1994 Novell, Inc. *
  28. */
  29. /****************************<+>*************************************
  30. **
  31. ** File: EnvControl.h
  32. **
  33. ** RCS: $XConsortium: GetDispRes.h /main/4 1995/10/26 15:22:11 rswiston $
  34. ** Project: HP DT Runtime Library
  35. **
  36. ** Description: Defines structures, and parameters used
  37. ** for communication with the environment
  38. **
  39. ** (c) Copyright 1992 by Hewlett-Packard Company
  40. **
  41. ****************************<+>*************************************/
  42. /******** Function Declarations ********/
  43. int _DtGetDisplayResolution(
  44. Display *disp,
  45. int screen) ;
  46. /******** End Function Declarations ********/
  47. /**********************************************************************
  48. * Resolution threshold values (width of screen in pixels)
  49. **********************************************************************/
  50. #define _DT_HIGH_RES_MIN 1176
  51. #define _DT_MED_RES_MIN 851
  52. #define _DT_LOW_RES_MIN 512
  53. /**********************************************************************
  54. * Resolution types of a given screen
  55. **********************************************************************/
  56. #define NO_RES_DISPLAY 0
  57. #define LOW_RES_DISPLAY 1
  58. #define VGA_RES_DISPLAY 2
  59. #define MED_RES_DISPLAY 3
  60. #define HIGH_RES_DISPLAY 4
  61. #define ALL_RES_DISPLAY 5
  62. /**************************** eof **********************/