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

GIS编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1990,1997, Silicon Graphics, Inc.
  3.  * ALL RIGHTS RESERVED 
  4.  * Permission to use, copy, modify, and distribute this software for 
  5.  * any purpose and without fee is hereby granted, provided that the above
  6.  * copyright notice appear in all copies and that both the copyright notice
  7.  * and this permission notice appear in supporting documentation, and that 
  8.  * the name of Silicon Graphics, Inc. not be used in advertising
  9.  * or publicity pertaining to distribution of the software without specific,
  10.  * written prior permission. 
  11.  *
  12.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  13.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  14.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  15.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  16.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  17.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  18.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  19.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  20.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  21.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  22.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  23.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  24.  * 
  25.  * US Government Users Restricted Rights 
  26.  * Use, duplication, or disclosure by the Government is subject to
  27.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  28.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  29.  * clause at DFARS 252.227-7013 and/or in similar or successor
  30.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  31.  * Unpublished-- rights reserved under the copyright laws of the
  32.  * United States.  Contractor/manufacturer is Silicon Graphics,
  33.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  34.  *
  35.  * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
  36.  */
  37. #include <GL/glut.h>
  38. #include <mui/displaylist.h>
  39. #include <mui/uicolor.h>
  40. #include <mui/gizmo.h>
  41. extern int mui_xsize, mui_ysize;
  42. short sharefont1 = 0;
  43. short sharefont2 = 0;
  44. void drawedges(int xmin,int xmax,int ymin,int ymax,
  45.   void (*topleft)(void), void (*bottomright)(void))
  46. {
  47.     (*topleft)();
  48.         uimove2i(xmin,ymin);
  49.         uidraw2i(xmin,ymax);
  50.         uidraw2i(xmax,ymax);
  51. uiendline();
  52.     (*bottomright)();
  53.         uimove2i(xmax,ymax-1);
  54.         uidraw2i(xmax,ymin);
  55.         uidraw2i(xmin+1,ymin);
  56. uiendline();
  57. }
  58. static short called = 0;
  59. void drawsetup(void)
  60. {
  61.     if (called) return;
  62.     else called = 1;
  63. }
  64. void drawrestore(void)
  65. {
  66.     called = 0;
  67. }
  68. void backgrounddraw(int xmin, int ymin, int xmax, int ymax)
  69. {
  70.     drawsetup();
  71.     uiBackground();
  72.         uirectfi(xmin, ymin, xmax, ymax);
  73.     drawrestore();
  74. }
  75. void muiBackgroundClear(void)
  76. {
  77.     drawsetup();
  78.     uiBackground();
  79.         uiclear();
  80.     drawrestore();
  81. }
  82. #if 0
  83. void windowborderdraw(void)
  84. {
  85.     int sxsize, sysize;
  86.     sxsize = mui_xsize-1;  sysize = mui_ysize-1;
  87.     drawsetup();
  88.     uiBlack();
  89.      uirecti(0,0,sxsize,sysize);
  90.     uiWhite();
  91.      uirecti(0+1,0+1,sxsize-1,sysize-1);
  92.      uirecti(0+2,0+2,sxsize-2,sysize-2);
  93.     uiLtGray();
  94.      uirecti(0+3,0+3,sxsize-3,sysize-3);
  95.      uirecti(0+4,0+4,sxsize-4,sysize-4);
  96.      uirecti(0+5,0+5,sxsize-5,sysize-5);
  97.      uirecti(0+6,0+6,sxsize-6,sysize-6);
  98.     uiBlack();
  99.      uirecti(0+7,0+7,sxsize-7,sysize-7);
  100.     uiDkGray();
  101.      uimove2i(0+1,0+1);  uidraw2i(sxsize-1,0+1); uiendline();
  102.      uimove2i(0+2,0+2);  uidraw2i(sxsize-2,0+2); uiendline();
  103.      uimove2i(0+3,0+3);  uidraw2i(sxsize-3,0+3); uiendline();
  104.     drawrestore();
  105. }
  106. #endif