1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
/****************************************************************************
GLUI User Interface Toolkit
---------------------------
glui_button.cpp - GLUI_Button control class
--------------------------------------------------
Copyright (c) 1998 Paul Rademacher
This program is freely distributable without licensing fees and is
provided without guarantee or warrantee expressed or implied. This
program is -not- in the public domain.
*****************************************************************************/
#include "glui.h"
#include "stdinc.h"
/****************************** GLUI_Button::mouse_down_handler() **********/
int GLUI_Button::mouse_down_handler( int local_x, int local_y )
{
int_val = 1; /** A button always in unpressed before here, so
now we invariably set it to 'depressed' **/
(void)local_x;
(void)local_y;
currently_inside = true;
draw_pressed();
return false;
}
/****************************** GLUI_Button::mouse_up_handler() **********/
int GLUI_Button::mouse_up_handler( int local_x, int local_y, int inside )
{
(void)local_x;
(void)local_y;
set_int_val( 0 ); /** A button always turns off after you press it **/
draw_unpressed();
if ( NOT inside ) {
}
else {
/*** Invoke the callback ***/
execute_callback();
/** Tell the main gfx window to update itself **/
if( glui )
glui->post_update_main_gfx();
}
return false;
}
/****************************** GLUI_Button::mouse_held_down_handler() ******/
int GLUI_Button::mouse_held_down_handler( int local_x, int local_y,
int new_inside)
{
(void)local_x;
(void)local_y;
if ( NOT new_inside AND currently_inside == true ) {
draw_unpressed();
}
else if ( new_inside AND currently_inside == false ) {
draw_pressed();
}
currently_inside = new_inside;
return false;
}
/****************************** GLUI_Button::key_handler() **********/
int GLUI_Button::key_handler( unsigned char key,int modifiers )
{
(void)key;
(void)modifiers;
return false;
}
/************************************** GLUI_Button::draw_pressed() ******/
void GLUI_Button::draw_pressed( void )
{
int state, orig;
if ( NOT can_draw() )
return;
orig = set_to_glut_window();
state = glui->set_front_draw_buffer();
glColor3f( 0.0, 0.0, 0.0 );
glPushMatrix();
translate_to_origin();
draw_text( 1 );
glBegin( GL_LINE_LOOP );
glVertex2i( 0, 0 ); glVertex2i( w, 0 );
glVertex2i( w, h ); glVertex2i( 0, h );
glEnd();
glBegin( GL_LINE_LOOP );
glVertex2i( 1, 1 ); glVertex2i( w-1, 1 );
glVertex2i( w-1, h-1 ); glVertex2i( 1, h-1 );
glEnd();
glPopMatrix();
glui->restore_draw_buffer(state);
restore_window(orig);
}
/************************************** GLUI_Button::draw_unpressed() ******/
void GLUI_Button::draw_unpressed( void )
{
if ( NOT can_draw() )
return;
translate_and_draw_front();
}
/********************************************** GLUI_Button::draw() **********/
void GLUI_Button::draw( int x, int y )
{
(void)x;
(void)y;
if ( NOT can_draw() )
return;
if ( glui )
glui->draw_raised_box( 0, 0, w, h );
draw_text( 0 );
}
/**************************************** GLUI_Button::draw_text() **********/
void GLUI_Button::draw_text( int sunken )
{
int string_width, orig;
if ( NOT can_draw() )
return;
orig = set_to_glut_window();
glColor3ub( glui->bkgd_color.r, glui->bkgd_color.g, glui->bkgd_color.b );
glDisable( GL_CULL_FACE );
glBegin( GL_QUADS );
glVertex2i( 2, 2 ); glVertex2i( w-2, 2 );
glVertex2i( w-2, h-2 ); glVertex2i( 2, h-2 );
glEnd();
glColor3ub( 0,0,0 );
string_width = _glutBitmapWidthString( glui->font,
this->name );
if ( NOT sunken ) {
draw_name( MAX((w-string_width),0)/2, 13);
}
else {
draw_name( MAX((w-string_width),0)/2 + 1, 13 + 1);
}
if ( active ) {
glEnable( GL_LINE_STIPPLE );
glLineStipple( 1, 0x5555 );
glColor3f( 0., 0., 0. );
glBegin( GL_LINE_LOOP );
glVertex2i( 3, 3 ); glVertex2i( w-3, 3 );
glVertex2i( w-3, h-3 ); glVertex2i( 3, h-3 );
glEnd();
glDisable( GL_LINE_STIPPLE );
}
restore_window(orig);
}
/************************************** GLUI_Button::update_size() **********/
void GLUI_Button::update_size( void )
{
int text_size;
if ( NOT glui )
return;
text_size = string_width( name );
if ( w < text_size + 16 )
w = text_size + 16 ;
}
|