/*************************************************************************** * Copyright (C) 2007-2009 by Ilya Kotov * * forkotov02@hotmail.ru * * * * 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., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #include #include #include #include #include #include #include "dock.h" #include "button.h" #include "playlisttitlebar.h" #include "skin.h" // TODO {shademode, updateskin} -> do we have the shaded cursor PlayListTitleBar::PlayListTitleBar(QWidget *parent) : PixmapWidget(parent) { m_active = FALSE; m_resize = FALSE; m_shade2 = 0; m_model = 0; m_shaded = FALSE; m_align = FALSE; m_skin = Skin::instance(); m_ratio = m_skin->ratio(); connect(m_skin, SIGNAL(skinChanged()), this, SLOT(updateSkin())); m_pl = qobject_cast(parent); m_mw = qobject_cast(m_pl->parent()); m_close = new Button(this,Skin::PL_BT_CLOSE_N, Skin::PL_BT_CLOSE_P, Skin::CUR_PCLOSE); connect (m_close, SIGNAL(clicked()), m_pl, SIGNAL(closed())); m_shade = new Button(this, Skin::PL_BT_SHADE1_N, Skin::PL_BT_SHADE1_P, Skin::CUR_PWINBUT); connect(m_shade, SIGNAL(clicked()), SLOT(shade())); resize(275*m_ratio,20*m_ratio); setMinimumWidth(275*m_ratio); readSettings(); QSettings settings (Qmmp::configFile(), QSettings::IniFormat); m_pl->resize (settings.value ("PlayList/size", QSize (m_ratio*275, m_ratio*116)).toSize()); if (settings.value ("PlayList/shaded", FALSE).toBool()) shade(); resize(m_pl->width(),height()); m_align = TRUE; setCursor(m_skin->getCursor(Skin::CUR_PTBAR)); updatePositions(); } PlayListTitleBar::~PlayListTitleBar() { QSettings settings (Qmmp::configFile(), QSettings::IniFormat); settings.setValue ("PlayList/size", QSize (m_pl->width(), m_shaded ? m_height:m_pl->height())); settings.setValue ("PlayList/shaded", m_shaded); } void PlayListTitleBar::updatePositions() { int sx = (width()-275*m_ratio)/25; m_ratio = m_skin->ratio(); m_close->move(m_ratio*264+sx*25,m_ratio*3); m_shade->move(m_ratio*255+sx*25,m_ratio*3); if (m_shade2) m_shade2->move(m_ratio*255+sx*25,m_ratio*3); } void PlayListTitleBar::updatePixmap() { int sx = ((m_shaded ? m_pl->width() : width())-275*m_ratio)/25; QPixmap pixmap(275*m_ratio+sx*25,20*m_ratio); QPainter paint; paint.begin(&pixmap); if (m_shaded) { paint.drawPixmap(0,0,m_skin->getPlPart(Skin::PL_TITLEBAR_SHADED2)); for (int i = 1; igetPlPart(Skin::PL_TFILL_SHADED)); } } if (m_active) { if (m_shaded) paint.drawPixmap(225*m_ratio+sx*25,0,m_skin->getPlPart(Skin::PL_TITLEBAR_SHADED1_A)); else { paint.drawPixmap(0,0,m_skin->getPlPart(Skin::PL_CORNER_UL_A)); for (int i = 1; igetPlPart(Skin::PL_TFILL1_A)); } paint.drawPixmap((100-12)*m_ratio+12*sx,0,m_skin->getPlPart(Skin::PL_TITLEBAR_A)); paint.drawPixmap(250*m_ratio+sx*25,0,m_skin->getPlPart(Skin::PL_CORNER_UR_A)); } } else { if (m_shaded) paint.drawPixmap(225*m_ratio+sx*25,0,m_skin->getPlPart(Skin::PL_TITLEBAR_SHADED1_I)); else { paint.drawPixmap(0,0,m_skin->getPlPart(Skin::PL_CORNER_UL_I)); for (int i = 1; igetPlPart(Skin::PL_TFILL1_I)); } paint.drawPixmap((100-12)*m_ratio+12*sx,0,m_skin->getPlPart(Skin::PL_TITLEBAR_I)); paint.drawPixmap(250*m_ratio+sx*25,0,m_skin->getPlPart(Skin::PL_CORNER_UR_I)); } } if (m_shaded) { QColor col; col.setNamedColor(QString(m_skin->getPLValue("mbbg"))); paint.setBrush(QBrush(col)); paint.setPen(col); paint.drawRect(8*m_ratio, m_ratio, 235*m_ratio + sx*25, 11*m_ratio); //draw text paint.setFont(m_font); paint.setPen(QString(m_skin->getPLValue("mbfg"))); paint.drawText(9*m_ratio, 11*m_ratio, m_truncatedText); } paint.end(); setPixmap(pixmap); } void PlayListTitleBar::resizeEvent(QResizeEvent *) { QFontMetrics metrics(m_font); m_truncatedText = metrics.elidedText (m_text, Qt::ElideRight, width() - 35*m_ratio); updatePixmap(); updatePositions(); } void PlayListTitleBar::mousePressEvent(QMouseEvent* event) { switch ((int) event->button ()) { case Qt::LeftButton: pos = event->pos(); if (m_shaded && (width() - 30*m_ratio) < pos.x() && pos.x() < (width() - 22*m_ratio)) { m_resize = TRUE; setCursor (Qt::SizeHorCursor); } break; case Qt::RightButton: m_mw->menu()->exec(event->globalPos()); } } void PlayListTitleBar::mouseReleaseEvent(QMouseEvent*) { Dock::instance()->updateDock(); m_resize = FALSE; } void PlayListTitleBar::mouseMoveEvent(QMouseEvent* event) { QPoint npos = (event->globalPos()-pos); QPoint oldpos = npos; if (m_shaded && m_resize) { resize((event->x() + 25*m_ratio), height()); m_pl->resize((event->x() + 25*m_ratio), m_pl->height()); } else if (pos.x() < width() - 30*m_ratio) Dock::instance()->move(m_pl, npos); } void PlayListTitleBar::setActive(bool a) { m_active = a; updatePixmap(); } void PlayListTitleBar::setModel(PlayListModel *selected, PlayListModel *previous) { if(previous) disconnect(previous, 0, this, 0); //disconnect previous model m_model = selected; connect (m_model, SIGNAL(listChanged()), SLOT(showCurrent())); showCurrent(); } void PlayListTitleBar::readSettings() { QSettings settings (Qmmp::configFile(), QSettings::IniFormat); m_font.fromString(settings.value("PlayList/Font", QApplication::font().toString()).toString()); m_font.setPointSize(8); } void PlayListTitleBar::updateSkin() { setCursor(m_skin->getCursor(Skin::CUR_PTBAR)); if(m_ratio != m_skin->ratio()) { m_ratio = m_skin->ratio(); setMinimumWidth(275*m_ratio); updatePositions(); } updatePixmap(); } void PlayListTitleBar::shade() { m_shaded = !m_shaded; if (m_shaded) { m_height = m_pl->height(); m_shade->hide(); m_shade2 = new Button(this, Skin::PL_BT_SHADE2_N, Skin::PL_BT_SHADE2_P, Skin::CUR_PWSNORM); m_shade2->move(254,3); connect(m_shade2, SIGNAL(clicked()), SLOT(shade())); m_shade2->show(); } else { m_shade2->deleteLater(); m_shade2 = 0; m_shade->show(); } m_pl->setMinimalMode(m_shaded); showCurrent(); update(); if (m_align) Dock::instance()->align(m_pl, m_shaded? -m_height+14*m_ratio: m_height-14*m_ratio); updatePositions(); } void PlayListTitleBar::showCurrent() { if (m_model) { PlayListItem* info = m_model->currentItem(); if (info) { m_text = QString("%1. ").arg(m_model->currentRow()+1); m_text.append(info->text()); m_text.append(QString(" (%1:%2)").arg(info->length()/60) .arg(info->length()%60, 2, 10, QChar('0'))); } else m_text.clear(); } QFontMetrics metrics(m_font); m_truncatedText = metrics.elidedText (m_text, Qt::ElideRight, width() - 35*m_ratio); updatePixmap(); }