Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/branches/bensch: filtered some warnings out

File size: 601 bytes
Line 
1#include "orxonox_gui.h"
2
3GtkWidget *orxonox_gui_video_frame (GtkWidget *box )
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
14        button = gtk_check_button_new_with_label ("Fullscreen-mode");
15        /*      gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), orxonox_fullscreen);
16         */
17        gtk_box_pack_start(GTK_BOX (orxonox_gui_video_vbox), button, TRUE, TRUE, 0);
18    }
19    gtk_container_add(GTK_CONTAINER(frame), orxonox_gui_video_vbox);
20  }
21
22  return frame;
23
24}
25
Note: See TracBrowser for help on using the repository browser.