Commit e71e64c4 authored by Claes Sjofors's avatar Claes Sjofors

rt_rtt, show nodes, os and hw added

parent 384a0080
......@@ -1088,6 +1088,9 @@ int RTTSYS_SHOW_NODES( menu_ctx ctx,
case co_eOS_MacOS: strcpy( menu_ptr->value_ptr, "MacOS"); break;
case co_eOS_VMS: strcpy( menu_ptr->value_ptr, "VMS"); break;
case co_eOS_ELN: strcpy( menu_ptr->value_ptr, "ELN"); break;
case co_eOS_FreeBSD: strcpy( menu_ptr->value_ptr, "FreeBSD"); break;
case co_eOS_OpenBSD: strcpy( menu_ptr->value_ptr, "OpenBSD"); break;
case co_eOS_Cygwin: strcpy( menu_ptr->value_ptr, "Cygwin"); break;
default: strcpy( menu_ptr->value_ptr, "Unknwn");
}
menu_ptr++;
......@@ -1099,6 +1102,7 @@ int RTTSYS_SHOW_NODES( menu_ctx ctx,
case co_eHW_VAX: strcpy( menu_ptr->value_ptr, "VAX"); break;
case co_eHW_Alpha: strcpy( menu_ptr->value_ptr, "AXP"); break;
case co_eHW_PPC: strcpy( menu_ptr->value_ptr, "PPC"); break;
case co_eHW_ARM: strcpy( menu_ptr->value_ptr, "ARM"); break;
default: strcpy( menu_ptr->value_ptr, "Unknwn");
}
menu_ptr++;
......@@ -1254,6 +1258,9 @@ int RTTSYS_SHOW_NODES( menu_ctx ctx,
case co_eOS_MacOS: strcpy( menu_ptr->value_ptr, "MacOS"); break;
case co_eOS_VMS: strcpy( menu_ptr->value_ptr, "VMS"); break;
case co_eOS_ELN: strcpy( menu_ptr->value_ptr, "ELN"); break;
case co_eOS_FreeBSD: strcpy( menu_ptr->value_ptr, "FreeBSD"); break;
case co_eOS_OpenBSD: strcpy( menu_ptr->value_ptr, "OpenBSD"); break;
case co_eOS_Cygwin: strcpy( menu_ptr->value_ptr, "Cygwin"); break;
default: strcpy( menu_ptr->value_ptr, "Unknwn");
}
menu_ptr++;
......@@ -1265,6 +1272,7 @@ int RTTSYS_SHOW_NODES( menu_ctx ctx,
case co_eHW_VAX: strcpy( menu_ptr->value_ptr, "VAX"); break;
case co_eHW_Alpha: strcpy( menu_ptr->value_ptr, "AXP"); break;
case co_eHW_PPC: strcpy( menu_ptr->value_ptr, "PPC"); break;
case co_eHW_ARM: strcpy( menu_ptr->value_ptr, "ARM"); break;
default: strcpy( menu_ptr->value_ptr, "Unknwn");
}
menu_ptr++;
......@@ -11785,8 +11793,12 @@ int RTTSYS_QCOM_NODES( menu_ctx ctx,
switch ( np->os) {
case co_eOS_Lynx: strcpy( menu_ptr->value_ptr, "Lynx"); break;
case co_eOS_Linux: strcpy( menu_ptr->value_ptr, "Linux"); break;
case co_eOS_MacOS: strcpy( menu_ptr->value_ptr, "MacOS"); break;
case co_eOS_VMS: strcpy( menu_ptr->value_ptr, "VMS"); break;
case co_eOS_ELN: strcpy( menu_ptr->value_ptr, "ELN"); break;
case co_eOS_FreeBSD: strcpy( menu_ptr->value_ptr, "FreeBSD"); break;
case co_eOS_OpenBSD: strcpy( menu_ptr->value_ptr, "OpenBSD"); break;
case co_eOS_Cygwin: strcpy( menu_ptr->value_ptr, "Cygwin"); break;
default: strcpy( menu_ptr->value_ptr, "Unknwn");
}
menu_ptr++;
......@@ -11798,6 +11810,7 @@ int RTTSYS_QCOM_NODES( menu_ctx ctx,
case co_eHW_VAX: strcpy( menu_ptr->value_ptr, "VAX"); break;
case co_eHW_Alpha: strcpy( menu_ptr->value_ptr, "AXP"); break;
case co_eHW_PPC: strcpy( menu_ptr->value_ptr, "PPC"); break;
case co_eHW_ARM: strcpy( menu_ptr->value_ptr, "ARM"); break;
default: strcpy( menu_ptr->value_ptr, "Unknwn");
}
menu_ptr++;
......@@ -11948,6 +11961,9 @@ int RTTSYS_QCOM_NODES( menu_ctx ctx,
case co_eOS_MacOS: strcpy( menu_ptr->value_ptr, "MacOS"); break;
case co_eOS_VMS: strcpy( menu_ptr->value_ptr, "VMS"); break;
case co_eOS_ELN: strcpy( menu_ptr->value_ptr, "ELN"); break;
case co_eOS_FreeBSD: strcpy( menu_ptr->value_ptr, "FreeBSD"); break;
case co_eOS_OpenBSD: strcpy( menu_ptr->value_ptr, "OpenBSD"); break;
case co_eOS_Cygwin: strcpy( menu_ptr->value_ptr, "Cygwin"); break;
default: strcpy( menu_ptr->value_ptr, "Unknwn");
}
menu_ptr++;
......@@ -11959,6 +11975,7 @@ int RTTSYS_QCOM_NODES( menu_ctx ctx,
case co_eHW_VAX: strcpy( menu_ptr->value_ptr, "VAX"); break;
case co_eHW_Alpha: strcpy( menu_ptr->value_ptr, "AXP"); break;
case co_eHW_PPC: strcpy( menu_ptr->value_ptr, "PPC"); break;
case co_eHW_ARM: strcpy( menu_ptr->value_ptr, "ARM"); break;
default: strcpy( menu_ptr->value_ptr, "Unknwn");
}
menu_ptr++;
......
......@@ -2249,7 +2249,7 @@ GeGtk::GeGtk( void *x_parent_ctx,
GtkWidget *tools_circ = image_button( "$pwr_exe/ge_circ.png");
g_signal_connect(tools_circ, "clicked", G_CALLBACK(activate_circle), this);
gtk_toolbar_append_widget( tools, tools_circ, "Draw a circle or elipse", "");
gtk_toolbar_append_widget( tools, tools_circ, "Draw a circle or ellipse", "");
GtkWidget *tools_line = image_button( "$pwr_exe/ge_line.png");
g_signal_connect(tools_line, "clicked", G_CALLBACK(activate_line), this);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment