Class Index Cross Index Namespace Index

Class Gtk::Fixed

A container which supports fixed sizes and positions of its children.
Contained in: Gtk
Derived from: Gtk::Container
Derived by: none

#include <gtk--/fixed.h>


public function member index:

Fixed();
GtkFixed* gtkobj();
const GtkFixed* gtkobj() const;
static bool isA(Object* object);
void move(Gtk::Widget& widget, gint16 x, gint16 y);
void put(Gtk::Widget& widget, gint16 x, gint16 y);
virtual ~Fixed();
 

Description:

The GtkFixed widget is a container which can place child widgets at fixed positions and with fixed sizes, given in pixels.


Function Member Descriptions:

Gtk::Fixed::gtkobj - Returns the underlaying gtk+ object.

GtkFixed* gtkobj();

Gtk::Fixed::isA - Returns true if object is this type.

static bool isA(Object* object);

Gtk::Fixed::move - Moves a child of a GtkFixed container to the given position.

void move(Gtk::Widget& widget, gint16 x, gint16 y);
widget : the child widget.

x: The horizontal position to move the widget to.

y: The vertical position to move the widget to.



Gtk::Fixed::put - Adds a widget to a GtkFixed container at the given position.

void put(Gtk::Widget& widget, gint16 x, gint16 y);
widget: The widget to add.

x: The horizontal position to place the widget at.

y: The vertical position to place the widget at.