subwin.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:2k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1994. */
  2. /* This program is freely distributable without licensing fees 
  3.    and is provided without guarantee or warrantee expressed or 
  4.    implied. This program is -not- in the public domain. */
  5. #include <GL/glut.h>
  6. #include <stdio.h>
  7. #define GAP 10
  8. int main_w, w1, w2, w3, w4;
  9. void
  10. display(void)
  11. {
  12.   glClear(GL_COLOR_BUFFER_BIT);
  13.   glFlush();
  14. }
  15. void
  16. vis(int visState)
  17. {
  18.   printf("VIS: win=%d, v=%dn", glutGetWindow(), visState);
  19. }
  20. void
  21. reshape(int w, int h)
  22. {
  23.   int width = 50;
  24.   int height = 50;
  25.   glViewport(0, 0, w, h);
  26.   if (w > 50) {
  27.     width = (w - 3 * GAP) / 2;
  28.   } else {
  29.     width = 10;
  30.   }
  31.   if (h > 50) {
  32.     height = (h - 3 * GAP) / 2;
  33.   } else {
  34.     height = 10;
  35.   }
  36.   glutSetWindow(w1);
  37.   glutPositionWindow(GAP, GAP);
  38.   glutReshapeWindow(width, height);
  39.   glutSetWindow(w2);
  40.   glutPositionWindow(GAP + width + GAP, GAP);
  41.   glutReshapeWindow(width, height);
  42.   glutSetWindow(w3);
  43.   glutPositionWindow(GAP, GAP + height + GAP);
  44.   glutReshapeWindow(width, height);
  45.   glutSetWindow(w4);
  46.   glutPositionWindow(GAP + width + GAP, GAP + height + GAP);
  47.   glutReshapeWindow(width, height);
  48. }
  49. int
  50. main(int argc, char **argv)
  51. {
  52.   glutInit(&argc, argv);
  53.   glutInitDisplayMode(GLUT_RGB);
  54.   glutInitWindowSize(210, 210);
  55.   main_w = glutCreateWindow("4 subwindows");
  56.   glutDisplayFunc(display);
  57.   glutVisibilityFunc(vis);
  58.   glutReshapeFunc(reshape);
  59.   glClearColor(1.0, 1.0, 1.0, 1.0);
  60.   w1 = glutCreateSubWindow(main_w, 10, 10, 90, 90);
  61.   glutDisplayFunc(display);
  62.   glutVisibilityFunc(vis);
  63.   glClearColor(1.0, 0.0, 0.0, 1.0);
  64.   w2 = glutCreateSubWindow(main_w, 110, 10, 90, 90);
  65.   glutDisplayFunc(display);
  66.   glutVisibilityFunc(vis);
  67.   glClearColor(0.0, 1.0, 0.0, 1.0);
  68.   w3 = glutCreateSubWindow(main_w, 10, 110, 90, 90);
  69.   glutDisplayFunc(display);
  70.   glutVisibilityFunc(vis);
  71.   glClearColor(0.0, 0.0, 1.0, 1.0);
  72.   w4 = glutCreateSubWindow(main_w, 110, 110, 90, 90);
  73.   glutDisplayFunc(display);
  74.   glutVisibilityFunc(vis);
  75.   glClearColor(1.0, 1.0, 0.0, 1.0);
  76.   glutMainLoop();
  77.   return 0;             /* ANSI C requires main to return int. */
  78. }