AnjutaDockPane
AnjutaDockPane — Wrapper class for AnjutaDock panes
|
|
Object Hierarchy
GObject
╰── AnjutaDockPane
Includes
#include <libanjuta/anjuta-dock-pane.h>
Description
AnjutaDockPane is an abstract wrapper class for panes in an
AnjutaDock.
Using AnjutaDockPane is especially helpful for those panes that show data
from extenal sources that must be refreshed frequently, or panes that are
exceptionally complex.
Functions
anjuta_dock_pane_refresh ()
void
anjuta_dock_pane_refresh (AnjutaDockPane *self
);
Refreshes the given pane. Subclasses only need to override this method if
needed.
anjuta_dock_pane_get_widget ()
GtkWidget *
anjuta_dock_pane_get_widget (AnjutaDockPane *self
);
Returns
The widget associated with the given pane. The returned widget is
owned by the pane and should not be destroyed or modified.
anjuta_dock_pane_get_plugin ()
AnjutaPlugin *
anjuta_dock_pane_get_plugin (AnjutaDockPane *self
);
Returns
The plugin object associated with this pane.
anjuta_dock_pane_notify_single_selection_changed ()
void
anjuta_dock_pane_notify_single_selection_changed
(AnjutaDockPane *self
);
Emits the single-selection-changed signal.
anjuta_dock_pane_notify_multiple_selection_changed ()
void
anjuta_dock_pane_notify_multiple_selection_changed
(AnjutaDockPane *self
);
Emits the multiple-selection-changed signal.
Types and Values
AnjutaDockPanePriv
typedef struct _AnjutaDockPanePriv AnjutaDockPanePriv;
Property Details
The “plugin”
property
“plugin” AnjutaPlugin *
Plugin object associated with this pane.
Owner: AnjutaDockPane
Flags: Read / Write
Signal Details
The “multiple-selection-changed”
signal
void
user_function (AnjutaDockPane *pane,
gpointer user_data)
This signal is emitted by pane subclasses to notify clients that the set
of selected items in the pane has changed.
Flags: Run First
The “single-selection-changed”
signal
void
user_function (AnjutaDockPane *pane,
gpointer user_data)
This signal is emitted by pane subclasses to notify clients that
the user has selected an item. This signal should be used when users are
expected to only select one item at a time.
Flags: Run First