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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
|
// Copyright (C) 2005 Werner Smekal
//
// This file is part of PLplot.
//
// PLplot is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as published
// by the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// PLplot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public License
// along with PLplot; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
//
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#ifdef __WXMAC__
#include <Carbon/Carbon.h>
extern "C" { void CPSEnableForegroundOperation( ProcessSerialNumber* psn ); }
#endif
#include "wxPLplotwindow.h"
#include <cmath>
#define MAX( a, b ) ( ( a ) < ( b ) ? ( b ) : ( a ) )
#define MIN( a, b ) ( ( a ) < ( b ) ? ( a ) : ( b ) )
// Application icon as XPM
// This free icon was taken from http://2pt3.com/news/twotone-icons-for-free/
static const char *graph[] = {
// columns rows colors chars-per-pixel
"16 16 4 2",
" c black",
". c #BA1825",
"X c gray100",
"UX c None",
// pixels
"UX. . . . . . . . . . . . . . UX",
". . . . . . . . . . . . . . . . ",
". . . . . . . . . . . . . . . . ",
". . . . . . . . . . . X X . . . ",
". . . . . . . . . . . X X . . . ",
". . . . . . . . . . . X X . . . ",
". . . . . X X . . . . X X . . . ",
". . . . . X X . . . . X X . . . ",
". . . . . X X . X X . X X . . . ",
". . . . . X X . X X . X X . . . ",
". . . . . X X . X X . X X . . . ",
". . . . . X X . X X . X X . . . ",
". . . X X X X X X X X X X . . . ",
". . . . . . . . . . . . . . . . ",
". . . . . . . . . . . . . . . . ",
"UX. . . . . . . . . . . . . . UX"
};
template< class WXWINDOW >
void Plot( wxPLplotwindow<WXWINDOW> *plotwindow );
class wxPlDemoFrame : public wxPLplotwindow<wxFrame>
{
public:
wxPlDemoFrame( const wxString &title );
private:
virtual void OnLocate( const PLGraphicsIn &graphicsIn );
void OnIdle( wxIdleEvent &event );
virtual void plot();
bool m_plotted;
};
wxPlDemoFrame::wxPlDemoFrame( const wxString &title )
{
Create( NULL, wxID_ANY, title );
//give our frame a nice icon
SetIcon( wxIcon( graph ) );
Connect( wxEVT_IDLE, wxIdleEventHandler( wxPlDemoFrame::OnIdle ) );
m_plotted = false;
}
void wxPlDemoFrame::OnIdle( wxIdleEvent &event )
{
//We do our plotting in here, but only the first time it is called
//This allows us to keep checking if the window is ready and only
//plot if it is.
if ( !m_plotted && IsReady() )
{
m_plotted = true;
plot();
}
}
void wxPlDemoFrame::plot()
{
if ( !IsReady() )
{
wxMessageBox( wxT( "Somehow we attempted to plot before the wxPLplotwindow was ready. The plot will not be drawn." ) );
return;
}
wxPLplotstream* pls = GetStream();
PLPLOT_wxLogDebug( "wxPlDemoFrame::plot()" );
assert( pls );
const size_t np = 500;
PLFLT x[np], y[np];
PLFLT xmin, xmax;
PLFLT ymin = 1e30, ymax = 1e-30;
xmin = 0.0;
xmax = 100.0;
for ( size_t i = 0; i < np; i++ )
{
x[i] = ( xmax - xmin ) * i / np + xmin;
y[i] = 1.0;
y[i] = sin( x[i] ) * sin( x[i] / 13.0 );
ymin = -1.05;
ymax = -ymin;
}
pls->scolbg( 255, 255, 255 );
pls->scol0( 1, 0, 0, 0 );
pls->scol0( 2, 0, 130, 130 );
pls->adv( 0 );
pls->col0( 1 );
pls->env( xmin, xmax, ymin, ymax, 0, 0 );
pls->lab( "x", "y", "sin(x) * sin(x/13)" );
pls->col0( 2 );
pls->width( 2 );
pls->line( np, x, y );
RenewPlot();
}
void wxPlDemoFrame::OnLocate( const PLGraphicsIn &graphicsIn )
{
if ( graphicsIn.button == 0 )
return; //Do nothing for motion, only respond to clicks
wxString message;
if ( ( graphicsIn.state & PL_MASK_SHIFT ) != 0 )
message << "Shift-";
if ( ( graphicsIn.state & PL_MASK_CAPS ) != 0 )
message << "Caps Lock-";
if ( ( graphicsIn.state & PL_MASK_CONTROL ) != 0 )
message << "Ctrl-";
if ( ( graphicsIn.state & PL_MASK_ALT ) != 0 )
message << "Alt-";
if ( ( graphicsIn.state & PL_MASK_NUM ) != 0 )
message << "Num Lock-";
if ( ( graphicsIn.state & PL_MASK_ALTGR ) != 0 )
message << "Alt Gr-";
if ( ( graphicsIn.state & PL_MASK_WIN ) != 0 )
message << "Win-";
if ( ( graphicsIn.state & PL_MASK_SCROLL ) != 0 )
message << "Scroll Lock-";
if ( graphicsIn.button == 1 )
message << "Left click.\n";
else if ( graphicsIn.button == 2 )
message << "Middle click.\n";
else if ( graphicsIn.button == 3 )
message << "Right click.\n";
message << "Pixels: x = " << graphicsIn.pX << " y = " << graphicsIn.pY << ".\n";
if ( graphicsIn.subwindow >= 0 )
{
message << "World: x = " << graphicsIn.wX << " y = " << graphicsIn.wY << ".\n";
message << "Window = " << graphicsIn.subwindow << ".\n";
}
else
{
message << "Point is not in a Window.\n";
}
wxMessageBox( message, "Mouse capture demo" );
}
class MyApp : public wxApp
{
public:
virtual bool OnInit();
};
IMPLEMENT_APP( MyApp )
//! This method is called right at the beginning and opens a frame for us.
//
bool MyApp::OnInit()
{
#ifdef __WXMAC__
// this hack enables to have a GUI on Mac OSX even if the
// program was called from the command line (and isn't a bundle)
ProcessSerialNumber psn;
GetCurrentProcess( &psn );
CPSEnableForegroundOperation( &psn );
SetFrontProcess( &psn );
#endif
//In this example we will create two frames. The first uses the wxPlDemoFrame class
//above which inherits from wxPLwindow<wxFrame>. The majority of the code for this
//frame is in the class above and this frame also overrides the virtual OnLocate
//method to capture mouse clicks.
//The second example shows how you can create a wxPLwindow<wxFrame> directly without
//creating a child class. The code is similar, just in a different location and
//obviously there is no use of the virtual OnLocate method.
//You should note however that in both cases we do not try to grab the wxPLplotstream
//until the frame is ready. On some systems (certainly on Windows with wxWidgets 3.0)
//this happens immediately after the Create function is called. However on some other
//systems (noteably Linux systems using some remote X11 servers) frame creation does
//not occur until after the Show() method is called. Then we must still wait for the
//wxEVT_CREATE event to be processed. Up until this point calls to GetStream will
//return NULL.
//*******The first method using the child class defined above******
wxPlDemoFrame *inheritedFrame = new wxPlDemoFrame( wxT( "wxPLplotDemo - Interactive Frame With Inheritance" ) );
inheritedFrame->Show();
//*******The second method using no inheritance*******
//Use two stage window creation to first construct the frame using the wxPLplotwindow
//constructor, then pass in the appropriate wxFrame parameters
wxPLplotwindow<wxFrame> *frame = new wxPLplotwindow<wxFrame>();
frame->Create( NULL, wxID_ANY, wxT( "wxPLplotDemo - Non-interactive Directly Created Frame" ) );
PLPLOT_wxLogDebug( "frame->Create" );
//give our frame a nice icon
frame->SetIcon( wxIcon( graph ) );
//Make sure we call Show() before we try to do any plotting
frame->Show();
//We must wait for the wxEVT_CREATE event to be processed and the
//wxPLplotstream to be prepared.
while ( !frame->IsReady() )
{
PLPLOT_wxLogDebug( "Plot() Yielding" );
wxGetApp().Yield();
}
//Now we can set up our frame and do the plotting
Plot( frame );
return true;
}
template< class WXWINDOW >
void Plot( wxPLplotwindow<WXWINDOW> *plotwindow )
{
if ( !plotwindow->IsReady() )
{
wxMessageBox( wxT( "Somehow we attempted to plot before the wxPLplotwindow was ready. The plot will not be drawn." ) );
return;
}
wxPLplotstream* pls = plotwindow->GetStream();
PLPLOT_wxLogDebug( "Plot()" );
assert( pls );
const size_t np = 500;
PLFLT x[np], y[np];
PLFLT xmin, xmax;
PLFLT ymin = 1e30, ymax = 1e-30;
xmin = -2.0;
xmax = 10.0;
for ( size_t i = 0; i < np; i++ )
{
x[i] = ( xmax - xmin ) * i / np + xmin;
y[i] = 1.0;
if ( x[i] != 0.0 )
y[i] = sin( x[i] ) / x[i];
ymin = MIN( ymin, y[i] );
ymax = MAX( ymax, y[i] );
}
pls->adv( 0 );
pls->col0( 1 );
pls->env( xmin, xmax, ymin, ymax, 0, 0 );
pls->col0( 2 );
pls->lab( "x", "y", "sin(x)/x" );
pls->col0( 3 );
pls->width( 2 );
pls->line( np, x, y );
plotwindow->RenewPlot();
}
//
//class MyPlotwindow : public wxPLplotwindow
//{
//public:
// MyPlotwindow( wxFrame* frame, wxWindow* parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition,
// const wxSize& size = wxDefaultSize, long style = 0,
// int pl_style = wxPLPLOT_NONE );
//
// void OnChar( wxKeyEvent& event );
//
//private:
// wxFrame* mframe;
//};
//
//
//// Define a new frame type: this is going to be our main frame
//class MyFrame : public wxFrame
//{
//public:
// MyFrame( const wxString& title );
// void Plot();
//
//private:
// void OnQuit( wxCommandEvent& event );
// void OnAbout( wxCommandEvent& event );
// void OnBackgroundColor( wxCommandEvent& event );
//
//private:
// MyPlotwindow* plotwindow;
// bool bgcolor;
// int m_backend;
//
// DECLARE_EVENT_TABLE()
//};
//
//
//--------------------------------------------------------------------------
//// constants
//--------------------------------------------------------------------------
//enum { wxPLplotDemo_Quit = wxID_EXIT, wxPLplotDemo_About = wxID_ABOUT,
// wxPLplotDemo_BGColor = 10000 };
//
//--------------------------------------------------------------------------
//// event tables and other macros for wxWidgets
//--------------------------------------------------------------------------
//BEGIN_EVENT_TABLE( MyFrame, wxFrame )
//EVT_MENU( wxPLplotDemo_Quit, MyFrame::OnQuit )
//EVT_MENU( wxPLplotDemo_About, MyFrame::OnAbout )
//EVT_MENU( wxPLplotDemo_BGColor, MyFrame::OnBackgroundColor )
//END_EVENT_TABLE()
//
//
//--------------------------------------------------------------------------
//// implementation
//--------------------------------------------------------------------------
//
//
//
//MyPlotwindow::MyPlotwindow( wxFrame* frame, wxWindow* parent, wxWindowID id, const wxPoint& pos,
// const wxSize& size, long style, int pl_style ) :
// wxPLplotwindow( parent, id, pos, size, style, pl_style )
//{
// mframe = frame;
//}
//
//
//void MyPlotwindow::OnChar( wxKeyEvent& event )
//{
// int keycode = event.GetKeyCode();
//
// if ( keycode == WXK_RETURN ||
// keycode == WXK_SPACE ||
// keycode == WXK_RIGHT ||
// keycode == WXK_ESCAPE )
// mframe->Close( true );
// else
// event.Skip();
//}
//
//
////! Constructor of our custom frame, where the Menu is created and a
//// a wxPLplotwindow is inserted into the frame. We plot some easy functions
//// just to show how it works. wxPLplotwindow takes care of all the setup
//// for the use of PLplot library.
////
//MyFrame::MyFrame( const wxString& title ) : wxFrame( NULL, wxID_ANY, title )
//{
// bgcolor = false;
//
// // add menu
// wxMenu *fileMenu = new wxMenu;
// fileMenu->Append( wxPLplotDemo_BGColor, _T( "&Change background color...\tAlt-C" ), _T( "Change background color" ) );
// fileMenu->Append( wxPLplotDemo_About, _T( "&About...\tF1" ), _T( "Show about dialog" ) );
// fileMenu->Append( wxPLplotDemo_Quit, _T( "E&xit\tAlt-X" ), _T( "Quit this program" ) );
//
// wxMenuBar *menuBar = new wxMenuBar();
// menuBar->Append( fileMenu, _T( "&File" ) );
// SetMenuBar( menuBar );
// SetIcon( wxIcon( graph ) );
//
// // add the wxPLplot
// wxPanel * panel = new wxPanel( this );
// wxBoxSizer* box = new wxBoxSizer( wxVERTICAL );
// plotwindow = new MyPlotwindow( this, panel, -1, wxDefaultPosition, wxDefaultSize, wxWANTS_CHARS,
//#if wxUSE_GRAPHICS_CONTEXT
// wxPLPLOT_BACKEND_GC | wxPLPLOT_DRAW_TEXT );
//#else
// wxPLPLOT_BACKEND_AGG | wxPLPLOT_DRAW_TEXT );
//#endif
// plotwindow->Connect( wxEVT_CHAR, wxKeyEventHandler( MyPlotwindow::OnChar ) );
// box->Add( plotwindow, 1, wxALL | wxEXPAND, 0 );
// panel->SetSizer( box );
// SetSize( 640, 500 ); // set frame size
// SetSizeHints( 220, 150 ); // set minimum frame size
//
// wxString m_title = title;
// switch ( plotwindow->getBackend() )
// {
// case wxPLPLOT_BACKEND_DC:
// m_title += wxT( " (basic)" );
// break;
// case wxPLPLOT_BACKEND_GC:
// m_title += wxT( " (wxGC)" );
// break;
// case wxPLPLOT_BACKEND_AGG:
// m_title += wxT( " (AGG)" );
// break;
// default:
// break;
// }
// SetTitle( m_title );
//
// Plot();
//}
//
//void MyFrame::Plot()
//{
// wxPLplotstream* pls = plotwindow->GetStream();
//
// const size_t np = 500;
// PLFLT x[np], y[np];
// PLFLT xmin, xmax;
// PLFLT ymin = 1e30, ymax = 1e-30;
//
// xmin = -2.0;
// xmax = 10.0;
// for ( size_t i = 0; i < np; i++ )
// {
// x[i] = ( xmax - xmin ) * i / np + xmin;
// y[i] = 1.0;
// if ( x[i] != 0.0 )
// y[i] = sin( x[i] ) / x[i];
// ymin = MIN( ymin, y[i] );
// ymax = MAX( ymax, y[i] );
// }
//
// pls->adv( 0 );
// if ( bgcolor )
// {
// pls->scol0( 0, 255, 255, 255 );
// pls->scol0( 15, 0, 0, 0 );
// }
// else
// {
// pls->scol0( 15, 255, 255, 255 );
// pls->scol0( 0, 0, 0, 0 );
// }
// pls->col0( 1 );
// pls->env( xmin, xmax, ymin, ymax, 0, 0 );
// pls->col0( 2 );
// pls->lab( "x", "y", "sin(x)/x" );
//
// pls->col0( 3 );
// pls->width( 2 );
// pls->line( np, x, y );
//
// plotwindow->RenewPlot();
//}
//
//
//void MyFrame::OnQuit( wxCommandEvent& WXUNUSED( event ) )
//{
// Close( true );
//}
//
//
//void MyFrame::OnBackgroundColor( wxCommandEvent& WXUNUSED( event ) )
//{
// bgcolor = !bgcolor;
// Plot();
//}
//
//
////! Show information if Menu entry About was choosen.
////
//void MyFrame::OnAbout( wxCommandEvent& WXUNUSED( event ) )
//{
// wxMessageBox( _T( "This is the About dialog of the wxPLplot demo.\n" ), _T( "About wxPLplot" ),
// wxOK | wxICON_INFORMATION, this );
//}
|