WnckSelector

WnckSelector — a window selector widget, showing the list of windows as a menu.

Stability Level

Unstable, unless otherwise indicated

Synopsis

#include <libwnck/libwnck.h>

struct              WnckSelector;
GtkWidget *         wnck_selector_new                   (void);

Description

The WnckSelector represents client windows on a screen as a menu, where menu items are labelled with the window titles and icons. Activating a menu item activates the represented window.

The WnckSelector will automatically detect the screen it is on, and will represent windows of this screen only.

Details

struct WnckSelector

struct WnckSelector {
  GtkMenuBar parent_instance;
  WnckSelectorPrivate *priv;
};

The WnckSelector struct contains only private fields and should not be directly accessed.


wnck_selector_new ()

GtkWidget *         wnck_selector_new                   (void);

Creates a new WnckSelector. The WnckSelector will list WnckWindow of the WnckScreen it is on.

Returns :

a newly created WnckSelector.

Since 2.10

See Also

WnckTasklist