Virtual Method

GtkCellRendererget_preferred_height_for_width

deprecated: 4.10 

Declaration [src]

void
get_preferred_height_for_width (
  GtkCellRenderer* cell,
  GtkWidget* widget,
  int width,
  int* minimum_height,
  int* natural_height
)

Description [src]

Retrieves a cell renderers’s minimum and natural height if it were rendered to widget with the specified width.

Deprecated since: 4.10

Please do not use it in newly written code.

Parameters

widget

Type: GtkWidget

The GtkWidget this cell will be rendering to.

The data is owned by the caller of the method.
width

Type: int

The size which is available for allocation.

minimum_height

Type: int*

Location for storing the minimum size.

The argument will be set by the function.
The argument can be NULL.
natural_height

Type: int*

Location for storing the preferred size.

The argument will be set by the function.
The argument can be NULL.