QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsstatusbar.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsstatusbar.cpp
3  ----------------
4  begin : May 2017
5  copyright : (C) 2017 by Nyall Dawson
6  email : nyall dot dawson at gmail dot com
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #include "qgsstatusbar.h"
19 #include <QLayout>
20 #include <QLineEdit>
21 #include <QPalette>
22 #include <QTimer>
23 #include <QEvent>
24 #include <QStatusBar>
25 
26 QgsStatusBar::QgsStatusBar( QWidget *parent )
27  : QWidget( parent )
28 {
29  mLayout = new QHBoxLayout();
30  mLayout->setMargin( 0 );
31  mLayout->setContentsMargins( 2, 0, 2, 0 );
32  mLayout->setSpacing( 6 );
33 
34  mLineEdit = new QLineEdit( QString() );
35  mLineEdit->setDisabled( true );
36  mLineEdit->setFrame( false );
37  mLineEdit->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum );
38  QPalette palette = mLineEdit->palette();
39  palette.setColor( QPalette::Disabled, QPalette::Text, QPalette::WindowText );
40  mLineEdit->setPalette( palette );
41  mLineEdit->setStyleSheet( QStringLiteral( "* { border: 0; background-color: rgba(0, 0, 0, 0); }" ) );
42  mLayout->addWidget( mLineEdit, 10 );
43  setLayout( mLayout );
44 }
45 
46 void QgsStatusBar::addPermanentWidget( QWidget *widget, int stretch, Anchor anchor )
47 {
48  switch ( anchor )
49  {
50  case AnchorLeft:
51  mLayout->insertWidget( 0, widget, stretch, Qt::AlignLeft );
52  break;
53 
54  case AnchorRight:
55  mLayout->addWidget( widget, stretch, Qt::AlignLeft );
56  break;
57  }
58 }
59 
60 void QgsStatusBar::removeWidget( QWidget *widget )
61 {
62  mLayout->removeWidget( widget );
63 }
64 
66 {
67  return mLineEdit->text();
68 }
69 
70 void QgsStatusBar::showMessage( const QString &text, int timeout )
71 {
72  mLineEdit->setText( text );
73  mLineEdit->setCursorPosition( 0 );
74  if ( timeout > 0 )
75  {
76  if ( !mTempMessageTimer )
77  {
78  mTempMessageTimer = new QTimer( this );
79  connect( mTempMessageTimer, &QTimer::timeout, this, &QgsStatusBar::clearMessage );
80  }
81  mTempMessageTimer->start( timeout );
82  }
83  else if ( mTempMessageTimer )
84  {
85  delete mTempMessageTimer;
86  mTempMessageTimer = nullptr;
87  }
88 }
89 
91 {
92  mLineEdit->setText( QString() );
93 }
94 
95 void QgsStatusBar::setParentStatusBar( QStatusBar *statusBar )
96 {
97  if ( mParentStatusBar )
98  mParentStatusBar->disconnect( mShowMessageConnection );
99 
100  mParentStatusBar = statusBar;
101 
102  if ( mParentStatusBar )
103  mShowMessageConnection = connect( mParentStatusBar, &QStatusBar::messageChanged, this, [this]( const QString & message ) { showMessage( message ); } );
104 }
105 
106 void QgsStatusBar::changeEvent( QEvent *event )
107 {
108  QWidget::changeEvent( event );
109 
110  if ( event->type() == QEvent::FontChange )
111  {
112  mLineEdit->setFont( font() );
113  }
114 }
Anchor
Placement anchor for widgets.
Definition: qgsstatusbar.h:53
void clearMessage()
Removes any temporary message being shown.
QString currentMessage() const
Returns the current message shown in the status bar.
void addPermanentWidget(QWidget *widget, int stretch=0, Anchor anchor=AnchorRight)
Adds the given widget permanently to this status bar, reparenting the widget if it isn&#39;t already a ch...
void changeEvent(QEvent *event) override
Anchor widget to left of status bar.
Definition: qgsstatusbar.h:55
void setParentStatusBar(QStatusBar *statusBar)
Sets the parent status bar.
void showMessage(const QString &message, int timeout=0)
Displays the given message for the specified number of milli-seconds (timeout).
void removeWidget(QWidget *widget)
Removes a widget from the status bar.
Anchor widget to right of status bar.
Definition: qgsstatusbar.h:56
QgsStatusBar(QWidget *parent=nullptr)
Constructor for QgsStatusBar.