Click here to Skip to main content
15,867,308 members
Articles / Multimedia / OpenGL

GLUI Subwindow Template

Rate me:
Please Sign up or sign in to vote.
3.67/5 (12 votes)
1 Feb 2008CPOL7 min read 100.1K   2.8K   30   21
This article describes in detail how to set up an OpenGL window with controls laid out and organized into GLUI subwindow(s), and provides you with a template for your OpenGL applications.

Screenshot - GLUT_Subwindow_Template.jpg

Contents

Introduction

This article shows you how to create GUI controls for your OpenGL application and organize them into GLUI subwindows. In this article, we will take the source code from the previous article GLUI Window Template, and modify it so that our GLUI controls will be laid out inside two subwindows rather than in a single window.

This article can be used in the following ways:

  • Learn how to use GLUI subwindows
  • Understand the Viewport concept in OpenGL
  • Use the program as a template for your OpenGL applications that require GUI controls

If you don't know what is OpenGL, GLUT, GLUI, check the GLUT Window Template article first.

Why Have a GLUI Subwindow Template?

Having a separate window to contain our GLUI controls could be sometimes annoying for the user, as she or he will have to lose the focus on the OpenGL context window every time she or he wants to do an action. A nice way to avoid this is to place the GLUI controls directly into the GLUT OpenGL window by embedding them into a GLUI subwindow.

To avoid having to write the same code every time you want to create an OpenGL graphical application with controls inside GLUI subwindows, this program code can be used as a template to get you directly started.

The OpenGL GLUI subwindow template has the following properties:

  • Window Title: "GLUI Subwindow Template"
  • Two GLUI subwindows containing GLUI controls
    • The first subwindow would contain some of the controls and will be placed on the left of the window. It will be called the vertical GLUI subwindow as controls will be laid out vertically inside it
    • The second subwindow would contain the remaining controls and will be placed on the bottom of the window. It will be called the horizontal subwindow as controls will be laid out horizontally inside it
  • GLUI window where our graphics will be drawn and our two GLUI subwindows will be placed
  • Handling of events for our GLUT window and our GLUI controls
  • Showing when and where events occur and their meaning through the command prompt

Usage

Compiling & Running the Program

For information on how to compile and run the program, please check the Usage section in the GLUI Window Template article.

Using the Code

The source code is intended to be used as a template for your OpenGL applications. To use it in your new application, you can simply rename the CPP file and add it to your Visual Studio project.

Note

Please note that GLUI is a C++ library, and thus doesn't work with C. So if you're obtaining linkage errors while trying to build a GLUI program, just check that all file extensions are CPP and not C.

Explaining the Code

Since we have already gone through the details of creating a GLUI window with controls and event handling in the previous GLUI Window Template article, what we care for in this article is how to create subwindows and lay out the controls inside them.

1- Create GLUI Subwindows

We will be replacing the window in the previous article with two subwindows placed on the left and bottom of the main graphics window.

The image below shows how our controls were laid out into a single GLUI window in the previous article:

GLUI Window GLUT Window

The image below shows how our controls will be laid out into two separate subwindows placed on the left and the bottom of our main GLUT window:

GLUI Subwindows

The GLUI subwindows are created as follows:

C++
//  pointer to GLUI two subwindows (horizontal and vertical subwindows)
GLUI *glui_h_subwindow, *glui_v_subwindow;

//  Create GLUI horizontal subwindow (placed on bottom)
glui_h_subwindow = GLUI_Master.create_glui_subwindow 
        (main_window, GLUI_SUBWINDOW_BOTTOM);

//  Create GLUI vertical subwindow (placed on left)
glui_v_subwindow = GLUI_Master.create_glui_subwindow 
        (main_window, GLUI_SUBWINDOW_LEFT);

Here is the create_glui_subwindow function definition, as described in the GLUI manual:

C++
GLUI *GLUI_Master_Object::create_glui_subwindow( int window, int position );
Attribute Description
window ID of existing GLUT graphics window
position

Position of new subwindow, relative to the GLUT graphics window it is embedded in. This argument can take one of the following values:

GLUI_SUBWINDOW_RIGHT
GLUI_SUBWINDOW_LEFT
GLUI_SUBWINDOW_TOP
GLUI_SUBWINDOW_BOTTOM

You can place any number of subwindows at the same relative position; in this case, multiple subwindows will simply be stacked on top of one another. For example, if two subwindows are created inside the same GLUT window, and both use GLUI_SUBWINDOW_TOP, then the two are placed at the top of the window, although the first subwindow will be above the second.

2- Add GUI Controls

Fortunately, adding controls to GLUI subwindows is exactly the same as adding controls to a GLUI window. Thus, for example, to add the Object Properties panel to the GLUI vertical subwindow instead of adding it to the GLUI window, we can simply change the following code fragment:

From

C++
//  Add the 'Object Properties' Panel to the GLUI window
GLUI_Panel *op_panel = glui_window->add_panel ("Object Properties");

To

C++
//  Add the 'Object Properties' Panel to the GLUI vertical subwindow
GLUI_Panel *op_panel = glui_v_subwindow->add_panel ("Object Properties");

Thus, for all the controls that we need to place into the GLUI vertical subwindow, we can simply replace glui_window with glui_v_subwindow, and for all the controls that we want to place into the GLUI horizontal subwindow, we need to replace glui_window with glui_h_subwindow.

3- Merge GLUT and GLUI

After creating our two GLUI subwindows, we need to let each of them know where its main graphics window is:

C++
//  Let the GLUI horizontal subwindow know where its main graphics window is
glui_h_subwindow->set_main_gfx_window( main_window );

//  Let the GLUI vertical subwindow know where its main graphics window is
glui_v_subwindow->set_main_gfx_window( main_window );

When a control in a GLUI subwindow changes value, a redisplay request will be sent to this main graphics window.

4- Handle Main Window Resizing

When the main window is resized, we need to change the viewport size, where our OpenGL graphics are drawn. However, this time, we can't simply set the viewport width and height to be equal to the width and height of the main window due to the GLUI subwindows that we have added into the main window. Thus, we need to take the following into consideration:

  • Viewport X Position = Width of GLUI subwindow placed on left
  • Viewport Width = GLUI Window Width - Width of GLUI subwindow placed on left - Width of GLUI subwindow placed on right
  • Viewport Y Position = Height of GLUI subwindow placed on top
  • Viewport Height = Height of main GLUI window - Height of GLUI subwindow placed on top - Height of GLUI subwindow placed on bottom

Thankfully, the GLUI library supports us with a method to automatically determine the x, y, width, and height of the viewport drawing area. This would be done through the following code snippet that will be placed in the reshape function:

C++
//  Represents the  drawing area x, y, width, and height
int vx, vy, vw, vh;

//  Get the drawing area viewport characteristics
GLUI_Master.get_viewport_area( &vx, &vy, &vw, &vh );

//  Set the viewport
glViewport(vx, vy, vw, vh);

The GLUI library also supports us with a function that can even make things easier. Thus, the above code snippet can be replaced with the following code:

C++
GLUI_Master.auto_set_viewport();

Below is the specification of each of the get_viewport_area and auto_set_viewport functions as they appear in the GLUI manual:

get_viewport_area

Determines the position and dimensions of the drawable area of the current window. This function is needed when GLUI subwindows are used, since the subwindows will occupy some of the area of a window, which the graphics app should not overwrite. This function should be called within the GLUT reshape callback function.

C++
void GLUI_Master_Object::get_viewport_area(int *x, int *y, int *w, int *h );
Attribute Description
x, y, w, h When the function returns, these variables will hold the x, y, width, and height of the drawable area of the current window. These values should then be passed into the OpenGL viewport command, glViewport().

auto_set_viewport

Automatically sets the viewport for the current window. This single function is equivalent to the following series of commands:

C++
int x, y, w, h;
GLUI_Master.get_viewport_area( &x, &y, &w, &h );
glViewport( x, y, w, h );

The function prototype is as follows, and it does not take any parameters:

C++
void GLUI_Master_Object::auto_set_viewport( void );

Note

The mouse passive motion and display events will not be logged so that we can clearly see other events on the command prompt log.

Conclusion

The purpose of this article is to teach you how to set up a GLUT window with multiple GLUI subwindows with controls inside them, along with event handling. At the same time, the template can be used to save lots of copy and paste from old projects or the Internet.

In case you find this template useful or have any suggestions, please let me know.

References

Revision History

  • 25/09/2007: Original article posted

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
https://open-gl.com

Comments and Discussions

 
GeneralFull project source Pin
jemmyell16-Jun-08 6:19
jemmyell16-Jun-08 6:19 
GeneralRe: Full project source Pin
Ali BaderEddin16-Jun-08 7:49
Ali BaderEddin16-Jun-08 7:49 
GeneralReset the view Pin
Gagnon Claude3-Apr-08 14:04
Gagnon Claude3-Apr-08 14:04 
Questiondoes it require any change with the libraries files to use with newer versions of C++ Pin
spectrum81920-Feb-08 16:09
spectrum81920-Feb-08 16:09 
GeneralRe: does it require any change with the libraries files to use with newer versions of C++ [modified] Pin
Ali BaderEddin20-Feb-08 19:14
Ali BaderEddin20-Feb-08 19:14 
Generalimplement mspaint in opengl Pin
Nitin Gopi19-Feb-08 7:53
Nitin Gopi19-Feb-08 7:53 
GeneralRe: implement mspaint in opengl Pin
Ali BaderEddin19-Feb-08 8:12
Ali BaderEddin19-Feb-08 8:12 
GeneralAnother problem Pin
Tariq Yousef18-Feb-08 8:43
Tariq Yousef18-Feb-08 8:43 
GeneralRe: Another problem Pin
Ali BaderEddin18-Feb-08 9:09
Ali BaderEddin18-Feb-08 9:09 
GeneralRe: Another problem Pin
Tariq Yousef18-Feb-08 12:38
Tariq Yousef18-Feb-08 12:38 
GeneralRe: Another problem Pin
Ali BaderEddin18-Feb-08 15:49
Ali BaderEddin18-Feb-08 15:49 
GeneralI'm still having this problem!!!! Pin
Tariq Yousef17-Feb-08 9:22
Tariq Yousef17-Feb-08 9:22 
Hello...
Thank you very much....realy it is a very useful article.

I'm asking you for a help..
I'm still having this problem when I use glui.h library
the error messages are:
Linking...
LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library
My Application.obj : error LNK2019: unresolved external symbol __imp____glutInitWithExit@12 referenced in function _glutInit_ATEXIT_HACK@8
My Application.obj : error LNK2019: unresolved external symbol __imp____glutCreateWindowWithExit@8 referenced in function _glutCreateWindow_ATEXIT_HACK@4
glui32.lib(glui.obj) : error LNK2001: unresolved external symbol __imp____glutCreateWindowWithExit@8

please... help me.

Tariq Yousef
GeneralRe: I'm still having this problem!!!! Pin
Ali BaderEddin17-Feb-08 12:49
Ali BaderEddin17-Feb-08 12:49 
Questionproblem with glui.h Pin
taniux17-Nov-07 8:13
taniux17-Nov-07 8:13 
AnswerRe: problem with glui.h Pin
Ali BaderEddin17-Nov-07 16:37
Ali BaderEddin17-Nov-07 16:37 
GeneralRe: problem with glui.h Pin
Ali BaderEddin17-Nov-07 16:39
Ali BaderEddin17-Nov-07 16:39 
Generalgood artical Pin
twzhen4-Oct-07 21:38
twzhen4-Oct-07 21:38 
GeneralRe: good artical Pin
Ali BaderEddin5-Oct-07 17:47
Ali BaderEddin5-Oct-07 17:47 
GeneralNo Project Source Pin
David Roh1-Oct-07 12:23
David Roh1-Oct-07 12:23 
GeneralRe: No Project Source Pin
Ali BaderEddin2-Oct-07 3:15
Ali BaderEddin2-Oct-07 3:15 
GeneralRe: No Project Source Pin
David Roh2-Oct-07 4:15
David Roh2-Oct-07 4:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.