home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2233.zip / wxOS2-2_3_3.zip / wxWindows-2.3.3 / src / common / settcmn.cpp < prev    next >
C/C++ Source or Header  |  2002-06-04  |  2KB  |  80 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        common/settcmn.cpp
  3. // Purpose:     common (to all ports) wxWindow functions
  4. // Author:      Robert Roebling
  5. // RCS-ID:      $Id: settcmn.cpp,v 1.2 2002/05/19 22:44:26 VS Exp $
  6. // Copyright:   (c) wxWindows team
  7. // Licence:     wxWindows license
  8. /////////////////////////////////////////////////////////////////////////////
  9.  
  10. // ============================================================================
  11. // declarations
  12. // ============================================================================
  13.  
  14. // ----------------------------------------------------------------------------
  15. // headers
  16. // ----------------------------------------------------------------------------
  17.  
  18. #ifdef __GNUG__
  19.     #pragma implementation "settings.h"
  20. #endif
  21.  
  22. // For compilers that support precompilation, includes "wx.h".
  23. #include "wx/wxprec.h"
  24.  
  25. #ifdef __BORLANDC__
  26.     #pragma hdrstop
  27. #endif
  28.  
  29. #ifndef WX_PRECOMP
  30.     #include "wx/defs.h"
  31.     #include "wx/utils.h"
  32.     #include "wx/settings.h"
  33. #endif //WX_PRECOMP
  34.  
  35. // ----------------------------------------------------------------------------
  36. // static data
  37. // ----------------------------------------------------------------------------
  38.  
  39. wxSystemScreenType wxSystemSettings::ms_screen = wxSYS_SCREEN_NONE;
  40.  
  41. // ----------------------------------------------------------------------------
  42. // ----------------------------------------------------------------------------
  43.  
  44. wxSystemScreenType wxSystemSettings::GetScreenType()
  45. {
  46.     if (ms_screen == wxSYS_SCREEN_NONE)
  47. #ifndef __WXUNIV__
  48.     {
  49.         // As a start, all GUI are desktops.
  50.         ms_screen = wxSYS_SCREEN_DESKTOP;
  51.     }
  52. #else
  53.     {
  54.         // wxUniv will be used on small devices, too.
  55.         int x = 0;
  56.         int y = 0;
  57.         wxGetDisplaySize( &x, &y );
  58.  
  59.         ms_screen = wxSYS_SCREEN_DESKTOP;
  60.             
  61.         if (x < 800)
  62.             ms_screen = wxSYS_SCREEN_SMALL;
  63.             
  64.         if (x < 640)
  65.             ms_screen = wxSYS_SCREEN_PDA;
  66.             
  67.         if (x < 200)
  68.             ms_screen = wxSYS_SCREEN_TINY;
  69.     }
  70. #endif
  71.  
  72.     return ms_screen;
  73. }
  74.     
  75. void wxSystemSettings::SetScreenType( wxSystemScreenType screen )
  76. {
  77.     ms_screen = screen;
  78. }
  79.  
  80.