Interface

Panel-1PanelFrameHeaderInterface

Interface for implementing FrameHeader. Contains only the virtual methods that need to be implemented.

interface Interface {
    vfunc_add_prefix(priority: number, child: Gtk.Widget): void;
    vfunc_add_suffix(priority: number, child: Gtk.Widget): void;
    vfunc_can_drop(widget: Panel.Widget): boolean;
    vfunc_page_changed(widget?: Panel.Widget): void;
}

Hierarchy (View Summary)

Index

Methods

  • Add a widget into a the prefix area with a priority. The highest the priority the closest to the start.

    Parameters

    Returns void

  • Add a widget into a the suffix area with a priority. The highest the priority the closest to the start.

    Parameters

    Returns void