2008-01-20 19:40:12 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Eliot
|
2012-10-07 16:25:41 +02:00
|
|
|
* Copyright (C) 2008-2012 Olivier Teulière
|
2008-01-20 19:40:12 +01:00
|
|
|
* Authors: Olivier Teulière <ipkiss @@ gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2008-01-27 00:03:32 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2008-09-03 19:28:27 +02:00
|
|
|
#include <QtGui/QApplication>
|
2008-01-20 19:40:12 +01:00
|
|
|
#include <QtGui/QAction>
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
#include <QtGui/QVBoxLayout>
|
2008-01-27 00:03:32 +01:00
|
|
|
#include <QtGui/QCloseEvent>
|
2012-11-06 22:02:53 +01:00
|
|
|
#include <QtGui/QDesktopWidget>
|
2008-01-27 00:03:32 +01:00
|
|
|
#include <QtCore/QSettings>
|
2008-01-20 19:40:12 +01:00
|
|
|
|
|
|
|
#include "aux_window.h"
|
2008-01-27 00:03:32 +01:00
|
|
|
#include "qtcommon.h"
|
2008-01-20 19:40:12 +01:00
|
|
|
|
|
|
|
|
2012-02-18 22:26:52 +01:00
|
|
|
INIT_LOGGER(qt, AuxWindow);
|
|
|
|
|
|
|
|
|
2008-01-27 00:03:32 +01:00
|
|
|
AuxWindow::AuxWindow(QWidget &iWidget, QString iWindowTitle,
|
|
|
|
QString iWindowName, QAction *iAction)
|
|
|
|
: m_widget(iWidget), m_windowName(iWindowName), m_action(iAction)
|
2008-01-20 19:40:12 +01:00
|
|
|
{
|
2008-01-27 00:03:32 +01:00
|
|
|
setWindowTitle(iWindowTitle);
|
2008-09-03 19:28:27 +02:00
|
|
|
setWindowIcon(qApp->windowIcon());
|
2008-01-20 19:40:12 +01:00
|
|
|
QVBoxLayout *layout = new QVBoxLayout;
|
|
|
|
layout->addWidget(&iWidget);
|
|
|
|
setLayout(layout);
|
2008-01-27 00:03:32 +01:00
|
|
|
|
|
|
|
readSettings();
|
2008-01-20 19:40:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AuxWindow::~AuxWindow()
|
|
|
|
{
|
|
|
|
delete &m_widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-27 00:03:32 +01:00
|
|
|
void AuxWindow::toggleVisibility()
|
|
|
|
{
|
|
|
|
if (isVisible())
|
|
|
|
hide();
|
|
|
|
else
|
|
|
|
show();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AuxWindow::showEvent(QShowEvent *event)
|
2008-01-20 19:40:12 +01:00
|
|
|
{
|
|
|
|
if (m_action)
|
|
|
|
m_action->setChecked(true);
|
|
|
|
QWidget::showEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-27 00:03:32 +01:00
|
|
|
void AuxWindow::hideEvent(QHideEvent *event)
|
2008-01-20 19:40:12 +01:00
|
|
|
{
|
|
|
|
if (m_action)
|
|
|
|
m_action->setChecked(false);
|
|
|
|
QWidget::hideEvent(event);
|
|
|
|
}
|
|
|
|
|
2008-01-27 00:03:32 +01:00
|
|
|
|
|
|
|
void AuxWindow::closeEvent(QCloseEvent *event)
|
|
|
|
{
|
|
|
|
writeSettings();
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AuxWindow::writeSettings() const
|
|
|
|
{
|
2012-05-05 19:45:04 +02:00
|
|
|
// For some reason, this method is called when the window is destroyed,
|
|
|
|
// even when it was already closed. So avoid saving an invalid position.
|
|
|
|
if (!isVisible())
|
|
|
|
return;
|
2012-02-02 09:02:20 +01:00
|
|
|
QSettings settings;
|
2008-01-27 00:03:32 +01:00
|
|
|
settings.beginGroup(m_windowName);
|
|
|
|
settings.setValue("size", size());
|
|
|
|
settings.setValue("pos", pos());
|
|
|
|
settings.endGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AuxWindow::readSettings()
|
|
|
|
{
|
2012-02-02 09:02:20 +01:00
|
|
|
QSettings settings;
|
2008-01-27 00:03:32 +01:00
|
|
|
settings.beginGroup(m_windowName);
|
|
|
|
QSize size = settings.value("size").toSize();
|
|
|
|
if (size.isValid())
|
|
|
|
resize(size);
|
2012-11-06 22:02:53 +01:00
|
|
|
const QRect &desktopRect = QApplication::desktop()->screenGeometry();
|
|
|
|
QPoint point = settings.value("pos", QPoint(20, 20)).toPoint();
|
|
|
|
// If the position was saved when an external monitor was plugged, and
|
|
|
|
// is restored when the monitor is not there anymore, the window could
|
|
|
|
// be off screen...
|
|
|
|
if (point.x() < 0 || point.x() > desktopRect.right())
|
|
|
|
point.setX(20);
|
|
|
|
if (point.y() < 0 || point.y() > desktopRect.bottom())
|
|
|
|
point.setY(20);
|
|
|
|
move(point);
|
2008-01-27 00:03:32 +01:00
|
|
|
settings.endGroup();
|
|
|
|
}
|
|
|
|
|