Developer Documentation
StatusBar.cc
1 /*===========================================================================*\
2 * *
3 * OpenFlipper *
4  * Copyright (c) 2001-2015, RWTH-Aachen University *
5  * Department of Computer Graphics and Multimedia *
6  * All rights reserved. *
7  * www.openflipper.org *
8  * *
9  *---------------------------------------------------------------------------*
10  * This file is part of OpenFlipper. *
11  *---------------------------------------------------------------------------*
12  * *
13  * Redistribution and use in source and binary forms, with or without *
14  * modification, are permitted provided that the following conditions *
15  * are met: *
16  * *
17  * 1. Redistributions of source code must retain the above copyright notice, *
18  * this list of conditions and the following disclaimer. *
19  * *
20  * 2. Redistributions in binary form must reproduce the above copyright *
21  * notice, this list of conditions and the following disclaimer in the *
22  * documentation and/or other materials provided with the distribution. *
23  * *
24  * 3. Neither the name of the copyright holder nor the names of its *
25  * contributors may be used to endorse or promote products derived from *
26  * this software without specific prior written permission. *
27  * *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
31  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
32  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
33  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
34  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
35  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
36  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
37  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
38  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
39 * *
40 \*===========================================================================*/
41 
42 /*===========================================================================*\
43 * *
44 * $Revision$ *
45 * $LastChangedBy$ *
46 * $Date$ *
47 * *
48 \*===========================================================================*/
49 
50 
51 
52 //=============================================================================
53 //
54 // CLASS CoreWidget - IMPLEMENTATION
55 //
56 //=============================================================================
57 
58 
59 //== INCLUDES =================================================================
60 
61 // -------------------- mview
62 #include "CoreWidget.hh"
63 
64 //== IMPLEMENTATION ==========================================================
65 
66 
67 
68 void CoreWidget::statusMessage(QString _message, int _timeout) {
69  statusBar_->showMessage(_message,_timeout);
70 }
71 
72 
73 //=============================================================================
74 
75 
76 void CoreWidget::setupStatusBar()
77 {
78  statusBar_ = new ColorStatusBar();
79 
80  setStatusBar( statusBar_ );
81 
82  QPixmap pix;
83  pix.load(OpenFlipper::Options::iconDirStr() +
84  OpenFlipper::Options::dirSeparator() +
85  "status_green.png");
86 
87 
88  statusIcon_ = new QLabel();
89  statusIcon_->setPixmap(pix.scaled(12,12,Qt::KeepAspectRatio,Qt::SmoothTransformation));
90 
91  statusBar_->addPermanentWidget(statusIcon_);
92 
93  if ( ! OpenFlipperSettings().value("Core/Gui/StatusBar/hidden",false).toBool() )
94  statusBar()->show();
95  else
96  statusBar()->hide();
97 }
98 
99 //=============================================================================
100 
101 void CoreWidget::clearStatusMessage()
102 {
103  statusBar_->clearMessage();
104 }
105 
106 //=============================================================================
107 
108 void CoreWidget::setStatus( ApplicationStatus::applicationStatus _status)
109 {
110  QPixmap pix;
111 
112  switch (_status) {
114  pix.load(OpenFlipper::Options::iconDirStr() +
115  OpenFlipper::Options::dirSeparator() +
116  "status_green.png");
117  break;
119  pix.load(OpenFlipper::Options::iconDirStr() +
120  OpenFlipper::Options::dirSeparator() +
121  "status_yellow.png");
122  break;
124  pix.load(OpenFlipper::Options::iconDirStr() +
125  OpenFlipper::Options::dirSeparator() +
126  "status_red.png");
127  break;
128  }
129 
130  statusIcon_->setPixmap(pix.scaled(12,12,Qt::KeepAspectRatio,Qt::SmoothTransformation));
131 
132 }
133 
134 void CoreWidget::addWidgetToStatusbar(QWidget* _widget){
135 
136  statusBar_->addPermanentWidget(_widget);
137 
138  statusBar_->removeWidget(statusIcon_);
139  statusBar_->addPermanentWidget(statusIcon_);
140  statusIcon_->show();
141 
142 
143 }
144 
145 //-----------------------------------------------------------------------------
146 
149 void
151 
152  //toggle
153  showStatusBar( OpenFlipperSettings().value("Core/Gui/StatusBar/hidden",false).toBool() );
154 }
155 
156 //-----------------------------------------------------------------------------
157 
160 void
162 
163  //toggle
164  OpenFlipperSettings().setValue("Core/Gui/StatusBar/hidden",!_state);
165 
166  if ( OpenFlipperSettings().value("Core/Gui/StatusBar/hidden",false).toBool() ){
167  statusBar_->setVisible(false);
168  }else{
169  statusBar_->setVisible(true);
170  }
171  emit statusBarVisChanged(_state);
172 }
173 
174 //=============================================================================
Status is ready (green light)
void statusBarVisChanged(bool _state)
will be emitted if the visibility of the statusbar is changed
DLLEXPORT OpenFlipperQSettings & OpenFlipperSettings()
QSettings object containing all program settings of OpenFlipper.
void setValue(const QString &key, const QVariant &value)
Wrapper function which makes it possible to enable Debugging output with -DOPENFLIPPER_SETTINGS_DEBUG...
void showStatusBar(bool _state)
Show or hide status bar.
Definition: StatusBar.cc:161
Status is processing but system will allow interaction (yellow light)
Status is processing and blocked system will not allow interaction (red light)
applicationStatus
Enum for the statusBar Status Icon.
void toggleStatusBar()
Change visibility of the Status Bar.
Definition: StatusBar.cc:150