Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3147 in orxonox.OLD for orxonox/trunk/gui/orxonox_gui_gtk.h


Ignore:
Timestamp:
Dec 11, 2004, 3:08:34 PM (21 years ago)
Author:
bensch
Message:

orxonox/trunk/gui: typo, toDo and so on

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/gui/orxonox_gui_gtk.h

    r3146 r3147  
    22#ifndef _ORXONOX_GUI_GTK_H
    33#define _ORXONOX_GUI_GTK_H
     4
    45#include <gtk/gtkmain.h>
    56#include <gtk/gtkwindow.h>
     
    1718#include <gtk/gtkeventbox.h>
    1819
    19 
    2020//! This is the topmost object that can be displayed all others are derived from it.
    2121class Widget
     
    2828  GtkWidget* widget; //!< widget is the gtk_widget that the specific Object Contains.
    2929  void init(void);
    30   int is_option; //!< with this Paramenter one can set the option-type: -2:Container, -1: Box, 0: not an Option, 1: Bool-option, 2: int-option, 3:float option, 4:char option, 5: char* option
     30  int isOption; //!< with this Paramenter one can set the option-type: -2:Container, -1: Box, 0: not an Option, 1: Bool-option, 2: int-option, 3:float option, 4:char option, 5: char* option
    3131  /**
    32      \briefdefines is_option states
     32     \briefdefines isOption states
    3333  */
    3434  enum option { containerType = -2, boxType = -1, nothingType = 0, boolType = 1, intType = 2};
     
    9696  void setTitle (char* title);
    9797  void showall ();
     98  void open();
     99  void close();
    98100  static gint orxonox_gui_quit (GtkWidget *widget, GdkEvent *event, gpointer data);
    99101};
Note: See TracChangeset for help on using the changeset viewer.