#include <gnuplot_SIM.h>
Inherits GnuplotText< T >.
Inheritance diagram for Gnuplot_SIM:
you have to extend the file user.c
Example:
global:
Gnuplot<std::string> gp(100); Gnuplot_SIM<std::string> textdlg(&gp);
void UserCommand (struct Robot *robot, char *text){ if (text) { switch (*text) { . . . case 'G': textdlg.command(text+1); break; . . . } } }
void DrawUserInfo (struct Robot *robot, u_char info, u_char page){ switch (info){ . . . case 2: switch (page){ case 1: textdlg.info(); } break; . . . } }
#define NUMBER_OF_INFO 2 #define PAGES_INFO_2 2 #define TITLE_INFO_2 "Gnuplot"
Definition at line 62 of file gnuplot_SIM.h.
Public Member Functions | |
Gnuplot_SIM (Gnuplot< T > *gp) | |
void | list () |
list all channels on user display | |
void | info () |
show a list of user commands |
|
Definition at line 65 of file gnuplot_SIM.h. |
|
show a list of user commands Definition at line 103 of file gnuplot_SIM.h. |
|
list all channels on user display
Implements GnuplotText. Definition at line 69 of file gnuplot_SIM.h. |