diff options
author | Björn Hagemeister | 2014-09-17 14:59:44 +0200 |
---|---|---|
committer | Björn Hagemeister | 2014-09-17 14:59:44 +0200 |
commit | 6e2cd17c9bb575fe7cedcd9e352757691ffd642c (patch) | |
tree | cfc4f61d030840beab7630b33a7476cebfab710a /src/client | |
parent | Forgotten icon of button reload room. Set MainWindow frameless. (diff) | |
download | pvs2-6e2cd17c9bb575fe7cedcd9e352757691ffd642c.tar.gz pvs2-6e2cd17c9bb575fe7cedcd9e352757691ffd642c.tar.xz pvs2-6e2cd17c9bb575fe7cedcd9e352757691ffd642c.zip |
Removed irritating cam - icon in toolbar of client. Plus added some translations in client.
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/toolbar/toolbar.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/client/toolbar/toolbar.cpp b/src/client/toolbar/toolbar.cpp index 4b64b62..e3859fd 100644 --- a/src/client/toolbar/toolbar.cpp +++ b/src/client/toolbar/toolbar.cpp @@ -67,7 +67,7 @@ Toolbar::Toolbar(const bool autoConnect, QWidget *parent) : Toolbar(parent) */ Toolbar::Toolbar(QWidget *parent) : QWidget(parent), _ui(new Ui::Toolbar), _hideTimer(this), _connection(NULL), - _blinkTimer(this),_cam32(":cam32.svg"), _beWatchedEye(":eye") + _blinkTimer(this),_cam32(QPixmap()), _beWatchedEye(":eye") { /* Initialize the GUI */ _ui->setupUi(this); @@ -98,6 +98,7 @@ Toolbar::Toolbar(QWidget *parent) : _menu->addSeparator(); _menu->addAction(_acnQuit); _ui->cmdMenu->setMenu(_menu); + // Connect the signals connect(_menu, SIGNAL(aboutToHide()), this, SLOT(hideBar())); connect(_acnDisconnect, SIGNAL(triggered()), _connectWindow, SLOT(show())); @@ -253,7 +254,7 @@ void Toolbar::onVncServerIsRunning(int port) showBar(); } else { _blinkTimer.stop(); - _ui->icon_cam->setPixmap(_cam32); + _ui->icon_cam->setPixmap(QPixmap()); _ui->lblStatus->setStyleSheet("color:green"); _ui->lblStatus->setText(tr("Online")); hideBar(); @@ -328,12 +329,11 @@ void Toolbar::showAboutDialog() { QMessageBox msgBox( QMessageBox::NoIcon, - tr("Über PVS Client"), - tr("Der PVS Client ist Teil eines Softwaresystems zur Verwaltung "\ - "des visuellen Datenverkehrs innerhalb der Poolräume zwischen "\ - "Dozenten und Studenten-PCs und wurde zur Vereinfachung des "\ - "Informationsflusses in Seminaren und allgemeinem eLearning "\ - "entwickelt."), + tr("About PVS Client"), + tr("The PVS - client is part of a software system for managing the "\ + "virtual data traffic within the computer pools, between the tutor's "\ + "and student's PCs. It has been developed to simplify the information "\ + "traffic in seminars and general eLearning."), QMessageBox::NoButton, this, Qt::Dialog|Qt::MSWindowsFixedSizeDialogHint|Qt::WindowStaysOnTopHint); |