Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/bensch/orxonox_gui_video.c @ 1816

Last change on this file since 1816 was 1816, checked in by bensch, 21 years ago

orxonox/branches/bensch: added all necessary options

File size: 839 bytes
Line 
1#include "orxonox_gui.h"
2
3GtkWidget *orxonox_gui_video_frame (void)
4{
5  GtkWidget *frame;
6  GtkWidget *button;
7
8  frame = gtk_frame_new ( "Video-Options:");
9  {
10    GtkWidget *orxonox_gui_video_vbox;
11    orxonox_gui_video_vbox = gtk_vbox_new (FALSE, 0);
12    {
13        button = gtk_check_button_new_with_label ("Fullscreen-mode");
14        /*      gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), orxonox_gui_video_fullscreen);
15         */
16        gtk_box_pack_start(GTK_BOX (orxonox_gui_video_vbox), button, TRUE, TRUE, 0);
17
18        button = gtk_check_button_new_with_label ("Wireframe-mode");
19        /*      gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), orxonox_gui_video_Wireframe);
20         */
21        gtk_box_pack_start(GTK_BOX (orxonox_gui_video_vbox), button, TRUE, TRUE, 0);
22       
23    }
24    gtk_container_add(GTK_CONTAINER(frame), orxonox_gui_video_vbox);
25  }
26
27  return frame;
28
29}
30
Note: See TracBrowser for help on using the repository browser.