AnacondaHubWindow

AnacondaHubWindow — Window for displaying a Hub

Synopsis

struct              AnacondaHubWindow;
struct              AnacondaHubWindowClass;
GtkWidget *         anaconda_hub_window_new             ();
GtkWidget *         anaconda_hub_window_get_spoke_area  (AnacondaHubWindow *win);

Object Hierarchy

  GObject
   +----GInitiallyUnowned
         +----GtkWidget
               +----GtkContainer
                     +----GtkBin
                           +----GtkWindow
                                 +----AnacondaBaseWindow
                                       +----AnacondaHubWindow

Implemented Interfaces

AnacondaHubWindow implements AtkImplementorIface and GtkBuildable.

Description

A AnacondaHubWindow is a top-level window that displays a hub on the entire screen. A Hub allows selection of multiple configuration spokes from a single interface, as well as a place to display current configuration selections.

The window consists of three areas:

  • A selection area in the middle of the screen, taking up a majority of the space. This is where spokes will be displayed and the user can decide what to do.

  • An action area on the bottom of the screen. This area is different for different kinds of hubs. It may have buttons, or it may have progress information.

AnacondaHubWindow as GtkBuildable

The AnacondaHubWindow implementation of the GtkBuildable interface exposes the action_area and scrolled_window as internal children with the names "action_area" and "scrolled_window". action_area, in this case, is largely there to give a box to contain both the scrolled_window and a GtkButtonBox.

Example 2. A AnacondaHubWindow UI definition fragment.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19