QGIS API Documentation  3.4.15-Madeira (e83d02e274)
Public Slots | Signals | Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
QgsMessageBar Class Reference

A bar for displaying non-blocking messages to the user. More...

#include <qgsmessagebar.h>

Inheritance diagram for QgsMessageBar:
Inheritance graph
[legend]

Public Slots

bool clearWidgets ()
 Remove all items from the bar's widget list. More...
 
bool popWidget ()
 Remove the currently displayed widget from the bar and display the next in the stack if any or hide the bar. More...
 
void pushCritical (const QString &title, const QString &message)
 Pushes a critical warning with default timeout to the message bar. More...
 
void pushInfo (const QString &title, const QString &message)
 Pushes a information message with default timeout to the message bar. More...
 
void pushSuccess (const QString &title, const QString &message)
 Pushes a success message with default timeout to the message bar. More...
 
void pushWarning (const QString &title, const QString &message)
 Pushes a warning with default timeout to the message bar. More...
 

Signals

void widgetAdded (QgsMessageBarItem *item)
 emitted when a message widget is added to the bar More...
 
void widgetRemoved (QgsMessageBarItem *item)
 emitted when a message widget was removed from the bar More...
 

Public Member Functions

 QgsMessageBar (QWidget *parent=nullptr)
 Constructor for QgsMessageBar. More...
 
QgsMessageBarItemcurrentItem ()
 
bool popWidget (QgsMessageBarItem *item)
 Remove the passed widget from the bar (if previously added), then display the next one in the stack if any or hide the bar. More...
 
void pushItem (QgsMessageBarItem *item)
 Display a message item on the bar after hiding the currently visible one and putting it in a stack. More...
 
void pushMessage (const QString &text, Qgis::MessageLevel level=Qgis::Info, int duration=5)
 convenience method for pushing a message to the bar More...
 
void pushMessage (const QString &title, const QString &text, Qgis::MessageLevel level=Qgis::Info, int duration=5)
 convenience method for pushing a message with title to the bar More...
 
void pushMessage (const QString &title, const QString &text, const QString &showMore, Qgis::MessageLevel level=Qgis::Info, int duration=5)
 convenience method for pushing a message to the bar with a detail text which be shown when pressing a "more" button More...
 
QgsMessageBarItempushWidget (QWidget *widget, Qgis::MessageLevel level=Qgis::Info, int duration=0)
 Display a widget as a message on the bar after hiding the currently visible one and putting it in a stack. More...
 

Static Public Member Functions

static QgsMessageBarItemcreateMessage (const QString &text, QWidget *parent=nullptr)
 make out a widget containing a message to be displayed on the bar More...
 
static QgsMessageBarItemcreateMessage (const QString &title, const QString &text, QWidget *parent=nullptr)
 make out a widget containing title and message to be displayed on the bar More...
 
static QgsMessageBarItemcreateMessage (QWidget *widget, QWidget *parent=nullptr)
 make out a widget containing title and message to be displayed on the bar More...
 

Protected Member Functions

void mousePressEvent (QMouseEvent *e) override
 

Detailed Description

A bar for displaying non-blocking messages to the user.

Definition at line 45 of file qgsmessagebar.h.

Constructor & Destructor Documentation

QgsMessageBar::QgsMessageBar ( QWidget *  parent = nullptr)

Constructor for QgsMessageBar.

Definition at line 35 of file qgsmessagebar.cpp.

Member Function Documentation

bool QgsMessageBar::clearWidgets ( )
slot

Remove all items from the bar's widget list.

Returns
true if all items were removed, false otherwise

Definition at line 200 of file qgsmessagebar.cpp.

QgsMessageBarItem * QgsMessageBar::createMessage ( const QString &  text,
QWidget *  parent = nullptr 
)
static

make out a widget containing a message to be displayed on the bar

Definition at line 348 of file qgsmessagebar.cpp.

QgsMessageBarItem * QgsMessageBar::createMessage ( const QString &  title,
const QString &  text,
QWidget *  parent = nullptr 
)
static

make out a widget containing title and message to be displayed on the bar

Definition at line 354 of file qgsmessagebar.cpp.

QgsMessageBarItem * QgsMessageBar::createMessage ( QWidget *  widget,
QWidget *  parent = nullptr 
)
static

make out a widget containing title and message to be displayed on the bar

Definition at line 359 of file qgsmessagebar.cpp.

QgsMessageBarItem* QgsMessageBar::currentItem ( )
inline

Definition at line 95 of file qgsmessagebar.h.

void QgsMessageBar::mousePressEvent ( QMouseEvent *  e)
overrideprotected

Definition at line 110 of file qgsmessagebar.cpp.

bool QgsMessageBar::popWidget ( QgsMessageBarItem item)

Remove the passed widget from the bar (if previously added), then display the next one in the stack if any or hide the bar.

Parameters
itemitem to remove
Returns
true if the widget was removed, false otherwise

Definition at line 163 of file qgsmessagebar.cpp.

bool QgsMessageBar::popWidget ( )
slot

Remove the currently displayed widget from the bar and display the next in the stack if any or hide the bar.

Returns
true if the widget was removed, false otherwise

Definition at line 187 of file qgsmessagebar.cpp.

void QgsMessageBar::pushCritical ( const QString &  title,
const QString &  message 
)
slot

Pushes a critical warning with default timeout to the message bar.

Parameters
titletitle string for message
messageThe message to be displayed
Since
QGIS 2.8

Definition at line 229 of file qgsmessagebar.cpp.

void QgsMessageBar::pushInfo ( const QString &  title,
const QString &  message 
)
slot

Pushes a information message with default timeout to the message bar.

Parameters
titletitle string for message
messageThe message to be displayed
Since
QGIS 2.8

Definition at line 219 of file qgsmessagebar.cpp.

void QgsMessageBar::pushItem ( QgsMessageBarItem item)

Display a message item on the bar after hiding the currently visible one and putting it in a stack.

The message bar will take ownership of the item.

Parameters
itemItem to display

Definition at line 273 of file qgsmessagebar.cpp.

void QgsMessageBar::pushMessage ( const QString &  text,
Qgis::MessageLevel  level = Qgis::Info,
int  duration = 5 
)
inline

convenience method for pushing a message to the bar

Definition at line 88 of file qgsmessagebar.h.

void QgsMessageBar::pushMessage ( const QString &  title,
const QString &  text,
Qgis::MessageLevel  level = Qgis::Info,
int  duration = 5 
)

convenience method for pushing a message with title to the bar

Definition at line 305 of file qgsmessagebar.cpp.

void QgsMessageBar::pushMessage ( const QString &  title,
const QString &  text,
const QString &  showMore,
Qgis::MessageLevel  level = Qgis::Info,
int  duration = 5 
)

convenience method for pushing a message to the bar with a detail text which be shown when pressing a "more" button

Definition at line 322 of file qgsmessagebar.cpp.

void QgsMessageBar::pushSuccess ( const QString &  title,
const QString &  message 
)
slot

Pushes a success message with default timeout to the message bar.

Parameters
titletitle string for message
messageThe message to be displayed
Since
QGIS 2.8

Definition at line 214 of file qgsmessagebar.cpp.

void QgsMessageBar::pushWarning ( const QString &  title,
const QString &  message 
)
slot

Pushes a warning with default timeout to the message bar.

Parameters
titletitle string for message
messageThe message to be displayed
Since
QGIS 2.8

Definition at line 224 of file qgsmessagebar.cpp.

QgsMessageBarItem * QgsMessageBar::pushWidget ( QWidget *  widget,
Qgis::MessageLevel  level = Qgis::Info,
int  duration = 0 
)

Display a widget as a message on the bar after hiding the currently visible one and putting it in a stack.

Parameters
widgetmessage widget to display
levelis Qgis::Info, Warning, Critical or Success
durationtimeout duration of message in seconds, 0 value indicates no timeout

Definition at line 289 of file qgsmessagebar.cpp.

void QgsMessageBar::widgetAdded ( QgsMessageBarItem item)
signal

emitted when a message widget is added to the bar

void QgsMessageBar::widgetRemoved ( QgsMessageBarItem item)
signal

emitted when a message widget was removed from the bar


The documentation for this class was generated from the following files: