RBStatusbar

RBStatusbar — status bar widget

Synopsis

struct              RBStatusbar;
struct              RBStatusbarClass;
RBStatusbar *		     rb_statusbar_new                    (RhythmDB *db,
                                                         GtkUIManager *ui_manager,
                                                         RBTrackTransferQueue *transfer_queue);

Object Hierarchy

  GObject
   +----GInitiallyUnowned
         +----GtkObject
               +----GtkWidget
                     +----GtkContainer
                           +----GtkBox
                                 +----GtkHBox
                                       +----GtkStatusbar
                                             +----RBStatusbar

Implemented Interfaces

RBStatusbar implements AtkImplementorIface, GtkBuildable and GtkOrientable.

Properties

  "db"                       RhythmDB*             : Read / Write
  "page"                     RBDisplayPage*        : Read / Write
  "transfer-queue"           RBTrackTransferQueue*  : Read / Write / Construct Only
  "ui-manager"               GtkUIManager*         : Read / Write / Construct Only

Description

The status bar is displayed at the bottom of the main window. It consists of some status text and a progress bar.

The status text usually comes from the selected page, and typically shows the number of songs, the total duration and the total file size. When a menu is open, however, the status text shows the description of the currently selected menu item.

The progress bar shows progress information from a variety of sources. The page that is currently selected in the display page tree can provide progress information, such as buffering feedback, track transfer status, or progress for updating a song catalog. If the page does not provide status information and the database is busy (loading the database from disk, processing a query, etc.) the progress bar will be pulsed periodically.

Details

struct RBStatusbar

struct RBStatusbar;


struct RBStatusbarClass

struct RBStatusbarClass {
	GtkStatusbarClass parent_class;
};


rb_statusbar_new ()

RBStatusbar *		     rb_statusbar_new                    (RhythmDB *db,
                                                         GtkUIManager *ui_manager,
                                                         RBTrackTransferQueue *transfer_queue);

Creates the status bar widget.

db :

the RhythmDB instance

ui_manager :

the GtkUIManager

transfer_queue :

the RBTrackTransferQueue

Returns :

the status bar widget

Property Details

The "db" property

  "db"                       RhythmDB*             : Read / Write

The RhythmDB instance


The "page" property

  "page"                     RBDisplayPage*        : Read / Write

The currently selected RBDisplayPage


The "transfer-queue" property

  "transfer-queue"           RBTrackTransferQueue*  : Read / Write / Construct Only

RBTrackTransferQueue instance.


The "ui-manager" property

  "ui-manager"               GtkUIManager*         : Read / Write / Construct Only

The GtkUIManager instance