
Moved positions and sizes of close and shade buttons to Skin changed buttons to use PixmapButton moved buttons from PlaylistWindow to PlaylistWidget and PlaylistShade removed now unused Button fixed position of shadebutton (was off by 1) fixed icon of shade button in shaded mode
144 lines
2.8 KiB
C++
144 lines
2.8 KiB
C++
/**
|
|
* This file is a part of Promoe, an XMMS2 Client.
|
|
*
|
|
* Copyright (C) 2005-2008 XMMS2 Team
|
|
*
|
|
* 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; version 2 of the License.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "XMMSHandler.h"
|
|
|
|
#include "playlistwindow.h"
|
|
|
|
#include <QMoveEvent>
|
|
#include <QResizeEvent>
|
|
#include <QPoint>
|
|
|
|
#include "playlistwidget.h"
|
|
#include "playlistshade.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
PlaylistWindow::PlaylistWindow (QWidget *parent) : BaseWindow (parent)
|
|
{
|
|
QSettings s;
|
|
#ifndef _WIN32
|
|
setWindowIcon (QIcon (":icon.png"));
|
|
#endif
|
|
|
|
setWindowFlags (Qt::Dialog | Qt::FramelessWindowHint);
|
|
setAttribute (Qt::WA_DeleteOnClose);
|
|
|
|
s.beginGroup ("playlist");
|
|
if (!s.contains ("size")) {
|
|
s.setValue ("size", QSize (275, 350));
|
|
}
|
|
resize (s.value ("size").toSize ());
|
|
|
|
m_playlist = new PlaylistWidget (this);
|
|
setCentralWidget (m_playlist);
|
|
m_shaded = new PlaylistShade (this);
|
|
|
|
if (!s.contains ("shaded"))
|
|
s.setValue ("shaded", false);
|
|
else
|
|
s.setValue ("shaded", !s.value("shaded").toBool ());
|
|
|
|
switchDisplay ();
|
|
|
|
s.endGroup ();
|
|
|
|
// FIXME: flickering
|
|
//setSizeIncrement (25, 29);
|
|
}
|
|
|
|
void
|
|
PlaylistWindow::hideEvent (QHideEvent *event)
|
|
{
|
|
QSettings s;
|
|
s.setValue ("playlist/visible", false);
|
|
|
|
emit visibilityChanged (false);
|
|
}
|
|
|
|
void
|
|
PlaylistWindow::showEvent (QShowEvent *event)
|
|
{
|
|
QSettings s;
|
|
s.setValue ("playlist/visible", true);
|
|
mw ()->attachWidgets ();
|
|
|
|
emit visibilityChanged (true);
|
|
}
|
|
|
|
|
|
void
|
|
PlaylistWindow::switchDisplay (void)
|
|
{
|
|
QSettings s;
|
|
|
|
s.beginGroup ("playlist");
|
|
|
|
if (!s.value("shaded").toBool ()) {
|
|
m_shaded->hide ();
|
|
|
|
m_playlist->show ();
|
|
s.setValue ("shaded", true);
|
|
m_playlist->resize (s.value("size").toSize ());
|
|
resize (s.value("size").toSize ());
|
|
|
|
} else {
|
|
m_playlist->hide ();
|
|
|
|
m_shaded->show ();
|
|
s.setValue ("shaded", false);
|
|
m_shaded->resize (s.value("size").toSize ().width(), 14);
|
|
resize (s.value("size").toSize ().width(), 14);
|
|
}
|
|
|
|
s.endGroup ();
|
|
|
|
update ();
|
|
|
|
}
|
|
|
|
void
|
|
PlaylistWindow::resizeEvent (QResizeEvent *event)
|
|
{
|
|
QSettings s;
|
|
|
|
if (s.value("playlist/shaded").toBool ()) {
|
|
s.setValue ("playlist/size", size ());
|
|
}
|
|
mw ()->attachWidgets ();
|
|
}
|
|
|
|
void
|
|
PlaylistWindow::moveEvent (QMoveEvent *event)
|
|
{
|
|
QSettings s;
|
|
s.setValue ("playlist/pos", pos ());
|
|
}
|
|
|
|
void
|
|
PlaylistWindow::enterEvent (QEvent *event)
|
|
{
|
|
m_playlist->setActive (true);
|
|
m_shaded->setActive (true);
|
|
}
|
|
|
|
|
|
void
|
|
PlaylistWindow::leaveEvent (QEvent *event)
|
|
{
|
|
m_playlist->setActive (false);
|
|
m_shaded->setActive (false);
|
|
}
|
|
|