mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
483118daec
-MainWindow uses now RWindow for storing size and position -added stringlist header for GeneralDialog git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@688 b45a01b8-16f6-495d-af2f-9b41ad6348cc
135 lines
3.7 KiB
C++
135 lines
3.7 KiB
C++
/****************************************************************
|
|
* This file is distributed under the following license:
|
|
*
|
|
* Copyright (c) 2006-2007, crypton
|
|
* Copyright (c) 2006, Matt Edman, Justin Hipple
|
|
*
|
|
* 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 Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
|
|
#include <QPoint>
|
|
#include <QSize>
|
|
#include <QShortcut>
|
|
#include <QByteArray>
|
|
#include <QKeySequence>
|
|
#include <QDesktopWidget>
|
|
#include <rshare.h>
|
|
#include "rwindow.h"
|
|
|
|
|
|
/** Default constructor. */
|
|
RWindow::RWindow(QString name, QWidget *parent, Qt::WFlags flags)
|
|
: QMainWindow(parent, flags)
|
|
{
|
|
_name = name;
|
|
_settings = new RSettings(name);
|
|
}
|
|
|
|
/** Destructor. */
|
|
RWindow::~RWindow()
|
|
{
|
|
saveWindowState();
|
|
delete _settings;
|
|
}
|
|
|
|
/** Associates a shortcut key sequence with a slot. */
|
|
void
|
|
RWindow::setShortcut(QString shortcut, const char *slot)
|
|
{
|
|
rApp->createShortcut(QKeySequence(shortcut), this, this, slot);
|
|
}
|
|
|
|
/** Saves the size and location of the window. */
|
|
void
|
|
RWindow::saveWindowState()
|
|
{
|
|
#if QT_VERSION >= 0x040200
|
|
saveSetting("Geometry", saveGeometry());
|
|
#else
|
|
saveSetting("Size", size());
|
|
saveSetting("Position", pos());
|
|
#endif
|
|
}
|
|
|
|
/** Restores the last size and location of the window. */
|
|
void
|
|
RWindow::restoreWindowState()
|
|
{
|
|
#if QT_VERSION >= 0x040200
|
|
QByteArray geometry = getSetting("Geometry", QByteArray()).toByteArray();
|
|
if (geometry.isEmpty())
|
|
adjustSize();
|
|
else
|
|
restoreGeometry(geometry);
|
|
#else
|
|
QRect screen = QDesktopWidget().availableGeometry();
|
|
|
|
/* Restore the window size. */
|
|
QSize size = getSetting("Size", QSize()).toSize();
|
|
if (!size.isEmpty()) {
|
|
size = size.boundedTo(screen.size());
|
|
resize(size);
|
|
}
|
|
|
|
/* Restore the window position. */
|
|
QPoint pos = getSetting("Position", QPoint()).toPoint();
|
|
if (!pos.isNull() && screen.contains(pos)) {
|
|
move(pos);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
/** Gets the saved value of a property associated with this window object.
|
|
* If no value was saved, the default value is returned. */
|
|
QVariant
|
|
RWindow::getSetting(QString setting, QVariant defaultValue)
|
|
{
|
|
return _settings->value(setting, defaultValue);
|
|
}
|
|
|
|
/** Saves a value associated with a property name for this window object. */
|
|
void
|
|
RWindow::saveSetting(QString prop, QVariant value)
|
|
{
|
|
_settings->setValue(prop, value);
|
|
}
|
|
|
|
/** Overloaded QWidget::setVisible(). If this window is already visible and
|
|
* <b>visible</b> is true, this window will be brought to the top and given
|
|
* focus. If <b>visible</b> is false, then the window state will be saved and
|
|
* this window will be hidden. */
|
|
void
|
|
RWindow::setVisible(bool visible)
|
|
{
|
|
if (visible) {
|
|
/* Bring the window to the top, if it's already open. Otherwise, make the
|
|
* window visible. */
|
|
if (isVisible()) {
|
|
activateWindow();
|
|
setWindowState(windowState() & ~Qt::WindowMinimized | Qt::WindowActive);
|
|
raise();
|
|
} else {
|
|
restoreWindowState();
|
|
}
|
|
} else {
|
|
/* Save the last size and position of this window. */
|
|
saveWindowState();
|
|
}
|
|
QMainWindow::setVisible(visible);
|
|
}
|
|
|