X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;ds=sidebyside;f=progs%2Fdemos%2FResizer%2FResizer.cpp;h=58c055247b6cdcc8a408b22071ae46999b9704cb;hb=2272bd5a70b8bac63e1535fee6257cc4595f36e7;hp=8252d7deaabc16346b41dea39cf79151f826c8ac;hpb=793dce4091f5a4a609a6ed4b1b3afe229cad5ddb;p=freeglut diff --git a/progs/demos/Resizer/Resizer.cpp b/progs/demos/Resizer/Resizer.cpp index 8252d7d..58c0552 100644 --- a/progs/demos/Resizer/Resizer.cpp +++ b/progs/demos/Resizer/Resizer.cpp @@ -2,21 +2,26 @@ #include -int nWindow; +int nWindow, nChildWindow = -1; int nLoopMain = 0; int nPosX, nPosY; int nWidth, nHeight; +GLboolean bChildPosDone = GL_FALSE, bChildSizeDone = GL_FALSE; + void SampleKeyboard( unsigned char cChar, int nMouseX, int nMouseY ); void Redisplay(); - +void Reshape(int x, int y); void DrawQuad() { + nWidth = glutGet(GLUT_WINDOW_WIDTH); + nHeight = glutGet(GLUT_WINDOW_HEIGHT); + glBegin(GL_QUADS); glVertex2d(nWidth*.25, nHeight*.75); glVertex2d(nWidth*.75, nHeight*.75); @@ -27,36 +32,107 @@ void DrawQuad() void SampleKeyboard( unsigned char cChar, int nMouseX, int nMouseY ) { - if (cChar == 27) + switch (cChar) + { + case 27: glutLeaveMainLoop(); - else if (cChar=='f') - { - printf("main window toggle fullscreen\n"); + break; + + case 'f': + case 'F': + printf("main window toggle fullscreen\n"); glutFullScreenToggle(); - } - else if (cChar=='r') - { - printf("main window resize\n"); - if (nWidth<400) - glutReshapeWindow(600,300); + break; + + + case 'r': + case 'R': + if (nChildWindow!=-1) + { + glutSetWindow(nChildWindow); + printf("child window resize\n"); + if (!bChildSizeDone) + glutReshapeWindow(glutGet(GLUT_WINDOW_WIDTH)+50,glutGet(GLUT_WINDOW_HEIGHT)+50); + else + glutReshapeWindow(glutGet(GLUT_WINDOW_WIDTH)-50,glutGet(GLUT_WINDOW_HEIGHT)-50); + bChildSizeDone = !bChildSizeDone; + } else - glutReshapeWindow(300,300); - } - else if (cChar=='m') - { - printf("main window position\n"); + { + printf("main window resize\n"); + if (nWidth<400) + glutReshapeWindow(600,300); + else + glutReshapeWindow(300,300); + } - /* The window position you request is the outer top-left of the window, - * the client area is at a different position if the window has borders - * and/or a title bar. - */ - if (nPosX<400) - glutPositionWindow(600,300); + break; + + + case 'm': + case 'M': + if (nChildWindow!=-1) + { + glutSetWindow(nChildWindow); + + /* The window position you request is relative to the top-left + * corner of the client area of the parent window. + */ + if (!bChildPosDone) + glutPositionWindow(glutGet(GLUT_WINDOW_X)+50,glutGet(GLUT_WINDOW_Y)+50); + else + glutPositionWindow(glutGet(GLUT_WINDOW_X)-50,glutGet(GLUT_WINDOW_Y)-50); + bChildPosDone = !bChildPosDone; + } else - glutPositionWindow(300,300); + { + printf("main window position\n"); + + /* The window position you request is the outer top-left of the window, + * the client area is at a different position if the window has borders + * and/or a title bar. + */ + if (nPosX<400) + glutPositionWindow(600,300); + else + glutPositionWindow(300,300); + } + + break; + + + case 'c': + case 'C': + if (nChildWindow==-1) + { + /* open child window */ + printf("open child window\n"); + nWidth = glutGet(GLUT_WINDOW_WIDTH); + nHeight = glutGet(GLUT_WINDOW_HEIGHT); + + nChildWindow = glutCreateSubWindow(nWindow,(int)(nWidth*.35),(int)(nHeight*.35),(int)(nWidth*.3),(int)(nHeight*.3)); + glutKeyboardFunc( SampleKeyboard ); + glutDisplayFunc( Redisplay ); + glutReshapeFunc( Reshape ); + } + else + { + /* close child window */ + printf("close child window\n"); + glutSetWindow(nWindow); + glutDestroyWindow(nChildWindow); + nChildWindow = -1; + bChildSizeDone = GL_FALSE; + bChildPosDone = GL_FALSE; + } + break; + + + default: + break; } } @@ -65,20 +141,40 @@ void Idle(void) glutPostRedisplay(); } -void Reshape(int x, int y) +void Reshape(int width, int height) { - nWidth = glutGet(GLUT_WINDOW_WIDTH); - nHeight = glutGet(GLUT_WINDOW_HEIGHT); + int win = glutGetWindow(); + + printf("reshape %s, %dx%d\n",win==nWindow?"main":"child", + width, height); - glViewport(0,0,nWidth,nHeight); + glViewport(0,0,width,height); glMatrixMode(GL_PROJECTION); glLoadIdentity(); - gluOrtho2D(0,nWidth,0,nHeight); + gluOrtho2D(0,width,0,height); + + if (win==nWindow && nChildWindow!=-1) + { + glutSetWindow(nChildWindow); + glutPositionWindow((int)(width*.35),(int)(height*.35)); + glutReshapeWindow((int)(width*.3),(int)(height*.3)); + glutSetWindow(nWindow); + } +} + +void Position(int x, int y) +{ + int win = glutGetWindow(); + + printf("position %s, %dx%d\n",win==nWindow?"main":"child", + x, y); } void Redisplay(void) { - if (nLoopMain++%6==0) + int win = glutGetWindow(); + + if (nLoopMain++%20==0) { int border, caption; @@ -95,33 +191,57 @@ void Redisplay(void) * when the window is on a monitor to the left of the primary monitor * or simply when maximized--try pressing the maximize button). * the returned size is the size of the client area + * Note that the top-left of a child window is relative to the + * top-left of the client area of the parent. */ - printf("window now %dx%d, top-left of client at: (%d,%d), of window at: (%d,%d)\n", + /* printf("window border: %dpx, caption: %dpx\n",border,caption); */ + if (win==nWindow) + printf("main window %dx%d, top-left of client at: (%d,%d), of window at: (%d,%d)\n", + nWidth, nHeight, + nPosX ,nPosY, + nPosX-border, + nPosY-border-caption); + else + printf("child window %dx%d, top-left of client at: (%d,%d), relative to parent\n", nWidth, nHeight, - nPosX ,nPosY, - nPosX-border, - nPosY-border-caption); + nPosX ,nPosY); } - glClearColor(.2f,0.f,0.f,0.f); + if (win==nWindow) + { + glClearColor(.2f,0.f,0.f,0.f); + glColor3f(1,1,1); + } + else + { + /* child window */ + glClearColor(.0f,.2f,0.f,0.f); + glColor3f(.5,.5,.5); + glutPostWindowRedisplay(nWindow); + } glClear(GL_COLOR_BUFFER_BIT); - glColor3f(1,1,1); DrawQuad(); glutSwapBuffers(); - glutPostRedisplay(); + glutPostWindowRedisplay(win); } int main(int argc, char* argv[]) { + int border, caption; glutInit( &argc, argv ); glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE /*| GLUT_BORDERLESS*/); // do try as well with GLUT_BORDERLESS and GLUT_CAPTIONLESS glutSetOption(GLUT_ACTION_ON_WINDOW_CLOSE,GLUT_ACTION_GLUTMAINLOOP_RETURNS); + + /* Get border and caption size of default window style */ + border = glutGet(GLUT_WINDOW_BORDER_WIDTH); + caption = glutGet(GLUT_WINDOW_HEADER_HEIGHT); + printf("default window style border: %dpx, caption: %dpx\n",border,caption); - /* The window position you request is the outer top-left of the window, - * the client area is at a different position if the window has borders - * and/or a title bar. + /* NB: The window position you request is the outer top-left of the + * window, the client area is at a different position if the window has + * borders and/or a title bar. */ glutInitWindowPosition(150,250); glutInitWindowSize(200,200); @@ -132,9 +252,10 @@ int main(int argc, char* argv[]) glutKeyboardFunc( SampleKeyboard ); glutDisplayFunc( Redisplay ); glutReshapeFunc( Reshape ); + glutPositionFunc( Position ); glutMainLoop(); printf("glutMainLoop returned\n"); - return 1; + return EXIT_SUCCESS; } \ No newline at end of file