1998-10-20 17:25:25 +04:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
|
|
|
// Tiny OpenGL demo program for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2010-11-29 00:06:39 +03:00
|
|
|
// Copyright 1998-2010 by Bill Spitzak and others.
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// http://www.fltk.org/COPYING.php
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
2005-04-16 04:13:17 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2010-12-15 15:11:16 +03:00
|
|
|
#include <config.h>
|
1998-10-06 22:21:25 +04:00
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Window.H>
|
|
|
|
#include <FL/Fl_Hor_Slider.H>
|
|
|
|
#include <FL/math.h>
|
|
|
|
|
|
|
|
#if HAVE_GL
|
|
|
|
|
|
|
|
#include <FL/gl.h>
|
|
|
|
#include <FL/Fl_Gl_Window.H>
|
|
|
|
|
|
|
|
class shape_window : public Fl_Gl_Window {
|
|
|
|
void draw();
|
|
|
|
public:
|
|
|
|
int sides;
|
|
|
|
shape_window(int x,int y,int w,int h,const char *l=0);
|
|
|
|
};
|
|
|
|
|
|
|
|
shape_window::shape_window(int x,int y,int w,int h,const char *l) :
|
|
|
|
Fl_Gl_Window(x,y,w,h,l) {
|
|
|
|
sides = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
void shape_window::draw() {
|
|
|
|
// the valid() property may be used to avoid reinitializing your
|
|
|
|
// GL transformation for each redraw:
|
|
|
|
if (!valid()) {
|
|
|
|
valid(1);
|
|
|
|
glLoadIdentity();
|
Changed OpenGL support for the Mac OS X platform: use cocoa instead of deprecated AGL.
All changes are mac-specific, except a very minor change in file src/gl_draw.cxx
where string drawing wrongly claimed to support @symbol, not possible
because symbols are drawn using non-GL primitives.
Unchanged application code can use the new FLTK code.
In addition, the new code allows mac applications to draw OpenGL scenes
at high resolution on so-called 'retina' displays, but this requires some
support from app code. They must call, before opening GL windows,
Fl::use_high_resolution(1);
and change their glViewport() calls as follows
glViewport(0, 0, pxel_w(), pixel_h());
This uses 2 new member functions of the Fl_Gl_Window class,
pixel_w() and pixel_h() returning the window dimensions in pixel
units, that is, twice the w() and h() when the window is mapped
on a retina display.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10498 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2014-12-20 10:19:23 +03:00
|
|
|
glViewport(0, 0, pixel_w(), pixel_h());
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
// draw an amazing graphic:
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
glColor3f(.5,.6,.7);
|
|
|
|
glBegin(GL_POLYGON);
|
2007-05-20 04:01:06 +04:00
|
|
|
for (int j=0; j<sides; j++) {
|
|
|
|
double ang = j*2*M_PI/sides;
|
1998-10-06 22:21:25 +04:00
|
|
|
glVertex3f(cos(ang),sin(ang),0);
|
|
|
|
}
|
|
|
|
glEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <FL/Fl_Box.H>
|
|
|
|
class shape_window : public Fl_Box {
|
|
|
|
public:
|
|
|
|
int sides;
|
|
|
|
shape_window(int x,int y,int w,int h,const char *l=0)
|
|
|
|
:Fl_Box(FL_DOWN_BOX,x,y,w,h,l){
|
|
|
|
label("This demo does\nnot work without GL");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// when you change the data, as in this callback, you must call redraw():
|
|
|
|
void sides_cb(Fl_Widget *o, void *p) {
|
|
|
|
shape_window *sw = (shape_window *)p;
|
|
|
|
sw->sides = int(((Fl_Slider *)o)->value());
|
|
|
|
sw->redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
|
Changed OpenGL support for the Mac OS X platform: use cocoa instead of deprecated AGL.
All changes are mac-specific, except a very minor change in file src/gl_draw.cxx
where string drawing wrongly claimed to support @symbol, not possible
because symbols are drawn using non-GL primitives.
Unchanged application code can use the new FLTK code.
In addition, the new code allows mac applications to draw OpenGL scenes
at high resolution on so-called 'retina' displays, but this requires some
support from app code. They must call, before opening GL windows,
Fl::use_high_resolution(1);
and change their glViewport() calls as follows
glViewport(0, 0, pxel_w(), pixel_h());
This uses 2 new member functions of the Fl_Gl_Window class,
pixel_w() and pixel_h() returning the window dimensions in pixel
units, that is, twice the w() and h() when the window is mapped
on a retina display.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10498 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2014-12-20 10:19:23 +03:00
|
|
|
Fl::use_high_res_GL(1);
|
1998-10-06 22:21:25 +04:00
|
|
|
Fl_Window window(300, 330);
|
|
|
|
|
|
|
|
// the shape window could be it's own window, but here we make it
|
|
|
|
// a child window:
|
|
|
|
shape_window sw(10, 10, 280, 280);
|
|
|
|
// make it resize:
|
|
|
|
window.resizable(&sw);
|
|
|
|
// window.size_range(300,330,0,0,1,1,1);
|
|
|
|
// add a knob to control it:
|
|
|
|
Fl_Hor_Slider slider(50, 295, window.w()-60, 30, "Sides:");
|
|
|
|
slider.align(FL_ALIGN_LEFT);
|
|
|
|
slider.callback(sides_cb,&sw);
|
|
|
|
slider.value(sw.sides);
|
|
|
|
slider.step(1);
|
|
|
|
slider.bounds(3,40);
|
|
|
|
|
|
|
|
window.end();
|
|
|
|
window.show(argc,argv);
|
|
|
|
|
|
|
|
return Fl::run();
|
|
|
|
}
|
1998-10-20 17:25:25 +04:00
|
|
|
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$".
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|