LameXP/src/Dialog_DropBox.cpp

222 lines
5.3 KiB
C++
Raw Normal View History

2010-12-22 01:01:01 +01:00
///////////////////////////////////////////////////////////////////////////////
// LameXP - Audio Encoder Front-End
2011-01-01 17:04:25 +01:00
// Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
2010-12-22 01:01:01 +01:00
//
// 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.
//
// http://www.gnu.org/licenses/gpl-2.0.txt
///////////////////////////////////////////////////////////////////////////////
#include "Dialog_DropBox.h"
#include "Global.h"
#include "Model_Settings.h"
#include <QThread>
#include <QMovie>
#include <QKeyEvent>
#include <QDesktopWidget>
2010-12-22 22:59:00 +01:00
#include <QToolTip>
#include <QTimer>
2010-12-22 01:01:01 +01:00
#include <Windows.h>
#define EPS (1.0E-5)
#define SET_FONT_BOLD(WIDGET,BOLD) { QFont _font = WIDGET.font(); _font.setBold(BOLD); WIDGET.setFont(_font); }
////////////////////////////////////////////////////////////
// Constructor
////////////////////////////////////////////////////////////
DropBox::DropBox(QWidget *parent, QAbstractItemModel *model, SettingsModel *settings)
:
QDialog(parent, Qt::CustomizeWindowHint | Qt::WindowStaysOnTopHint),
m_counterLabel(this),
m_model(model),
m_settings(settings),
2010-12-22 22:59:00 +01:00
m_moving(false),
2010-12-22 01:01:01 +01:00
m_firstShow(true)
{
//Init the dialog, from the .ui file
setupUi(this);
//Init counter
m_counterLabel.setParent(dropBoxLabel);
m_counterLabel.setText("0");
m_counterLabel.setAlignment(Qt::AlignHCenter | Qt::AlignTop);
SET_FONT_BOLD(m_counterLabel, true);
//Prevent close
m_canClose = false;
//Make transparent
setWindowOpacity(0.8);
//Translate UI
retranslateUi(this);
2010-12-22 01:01:01 +01:00
}
////////////////////////////////////////////////////////////
// Destructor
////////////////////////////////////////////////////////////
DropBox::~DropBox(void)
{
}
////////////////////////////////////////////////////////////
// PUBLIC SLOTS
////////////////////////////////////////////////////////////
void DropBox::doRetranslate(void)
{
retranslateUi(this);
}
2010-12-22 01:01:01 +01:00
void DropBox::modelChanged(void)
{
if(m_model)
{
m_counterLabel.setText(QString::number(m_model->rowCount()));
}
}
////////////////////////////////////////////////////////////
// EVENTS
////////////////////////////////////////////////////////////
/*
* Re-translate the UI
*/
void DropBox::changeEvent(QEvent *e)
{
if(e->type() == QEvent::LanguageChange)
{
Ui::DropBox::retranslateUi(this);
dropBoxLabel->setToolTip(QString("<b>%1</b><br><nobr>%2</nobr><br><nobr>%3</nobr>").arg(tr("LameXP DropBox"), tr("You can add files to LameXP via Drag&amp;Drop here!"), tr("(Right-click to close the DropBox)")));
}
}
2010-12-22 01:01:01 +01:00
void DropBox::showEvent(QShowEvent *event)
{
QRect screenGeometry = QApplication::desktop()->availableGeometry();
resize(dropBoxLabel->pixmap()->size());
setMaximumSize(dropBoxLabel->pixmap()->size());
m_counterLabel.setGeometry(0, dropBoxLabel->height() - 30, dropBoxLabel->width(), 25);
if(m_firstShow)
{
m_firstShow = false;
int max_x = screenGeometry.width() - frameGeometry().width();
int max_y = screenGeometry.height() - frameGeometry().height();
move(max_x, max_y);
2010-12-22 22:59:00 +01:00
QTimer::singleShot(333, this, SLOT(showToolTip()));
2010-12-22 01:01:01 +01:00
}
2010-12-22 22:59:00 +01:00
m_moving = false;
2010-12-22 01:01:01 +01:00
}
void DropBox::keyPressEvent(QKeyEvent *event)
{
event->ignore();
}
void DropBox::keyReleaseEvent(QKeyEvent *event)
{
event->ignore();
}
void DropBox::closeEvent(QCloseEvent *event)
{
if(!m_canClose) event->ignore();
}
void DropBox::mousePressEvent(QMouseEvent *event)
{
2010-12-22 22:59:00 +01:00
if(m_moving)
{
event->ignore();
return;
}
2010-12-22 01:01:01 +01:00
if(event->button() == Qt::RightButton)
{
hide();
if(m_settings) m_settings->dropBoxWidgetEnabled(false);
return;
}
QApplication::setOverrideCursor(Qt::SizeAllCursor);
2010-12-22 22:59:00 +01:00
m_moving = true;
2010-12-22 01:01:01 +01:00
m_windowReferencePoint = this->pos();
m_mouseReferencePoint = event->globalPos();
}
void DropBox::mouseReleaseEvent(QMouseEvent *event)
{
2010-12-22 22:59:00 +01:00
if(m_moving && event->button() != Qt::RightButton)
{
QApplication::restoreOverrideCursor();
m_moving = false;
}
2010-12-22 01:01:01 +01:00
}
void DropBox::mouseMoveEvent(QMouseEvent *event)
{
2010-12-22 22:59:00 +01:00
if(!m_moving)
{
return;
}
static const int magnetic = 22;
2010-12-22 01:01:01 +01:00
QRect screenGeometry = QApplication::desktop()->availableGeometry();
int delta_x = m_mouseReferencePoint.x() - event->globalX();
int delta_y = m_mouseReferencePoint.y() - event->globalY();
int max_x = screenGeometry.width() - frameGeometry().width();
int max_y = screenGeometry.height() - frameGeometry().height();
int new_x = min(max_x, max(0, m_windowReferencePoint.x() - delta_x));
int new_y = min(max_y, max(0, m_windowReferencePoint.y() - delta_y));
2010-12-22 22:59:00 +01:00
if(new_x < magnetic)
{
new_x = 0;
}
else if(max_x - new_x < magnetic)
{
new_x = max_x;
}
if(new_y < magnetic)
{
new_y = 0;
}
else if(max_y - new_y < magnetic)
{
new_y = max_y;
}
2010-12-22 01:01:01 +01:00
move(new_x, new_y);
}
2010-12-22 22:59:00 +01:00
void DropBox::showToolTip(void)
{
QToolTip::showText(dropBoxLabel->mapToGlobal(dropBoxLabel->pos()), dropBoxLabel->toolTip());
}