2010-06-17 00:00:39 +02:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nowplayingwidget.h"
|
|
|
|
#include "core/albumcoverloader.h"
|
|
|
|
#include "core/networkaccessmanager.h"
|
|
|
|
|
2010-06-17 23:38:03 +02:00
|
|
|
#include <QMenu>
|
Fixes issu...
,'``.._ ,'``.
:,--._:)\,:,._,.: All Glory to
:`--,'' :`...';\ the HYPNO TOAD!
`,' `---' `.
/ :
/ \
,' :\.___,-.
`...,---'``````-..._ |: \
( ) ;: ) \ _,-.
`. ( // `' \
: `.// ) ) , ;
,-|`. _,'/ ) ) ,' ,'
( :`.`-..____..=:.-': . _,' ,'
`,'\ ``--....-)=' `._, \ ,') _ '``._
_.-/ _ `. (_) / )' ; / \ \`-.'
`--( `-:`. `' ___..' _,-' |/ `.)
`-. `.`.``-----``--, .'
|/`.\`' ,','); SSt
` (/ (/
2010-07-12 21:51:23 +02:00
|
|
|
#include <QMovie>
|
2010-06-17 00:00:39 +02:00
|
|
|
#include <QPainter>
|
|
|
|
#include <QPaintEvent>
|
2010-06-18 00:31:22 +02:00
|
|
|
#include <QSettings>
|
2010-06-17 23:38:03 +02:00
|
|
|
#include <QSignalMapper>
|
2010-06-17 00:00:39 +02:00
|
|
|
#include <QTextDocument>
|
|
|
|
#include <QTimeLine>
|
|
|
|
#include <QtDebug>
|
|
|
|
|
2010-06-18 00:31:22 +02:00
|
|
|
const char* NowPlayingWidget::kSettingsGroup = "NowPlayingWidget";
|
|
|
|
|
Fixes issu...
,'``.._ ,'``.
:,--._:)\,:,._,.: All Glory to
:`--,'' :`...';\ the HYPNO TOAD!
`,' `---' `.
/ :
/ \
,' :\.___,-.
`...,---'``````-..._ |: \
( ) ;: ) \ _,-.
`. ( // `' \
: `.// ) ) , ;
,-|`. _,'/ ) ) ,' ,'
( :`.`-..____..=:.-': . _,' ,'
`,'\ ``--....-)=' `._, \ ,') _ '``._
_.-/ _ `. (_) / )' ; / \ \`-.'
`--( `-:`. `' ___..' _,-' |/ `.)
`-. `.`.``-----``--, .'
|/`.\`' ,','); SSt
` (/ (/
2010-07-12 21:51:23 +02:00
|
|
|
const char* NowPlayingWidget::kHypnotoadPath = ":/hypnotoad.gif";
|
|
|
|
|
2010-06-18 00:31:22 +02:00
|
|
|
// Space between the cover and the details in small mode
|
2010-06-18 02:24:09 +02:00
|
|
|
const int NowPlayingWidget::kPadding = 2;
|
2010-06-17 00:00:39 +02:00
|
|
|
|
2010-06-18 00:31:22 +02:00
|
|
|
// Width of the transparent to black gradient above and below the text in large
|
|
|
|
// mode
|
2010-06-17 23:38:03 +02:00
|
|
|
const int NowPlayingWidget::kGradientHead = 40;
|
|
|
|
const int NowPlayingWidget::kGradientTail = 20;
|
|
|
|
|
2010-06-18 00:31:22 +02:00
|
|
|
// Maximum height of the cover in large mode, and offset between the
|
2010-06-17 23:38:03 +02:00
|
|
|
// bottom of the cover and bottom of the widget
|
|
|
|
const int NowPlayingWidget::kMaxCoverSize = 260;
|
|
|
|
const int NowPlayingWidget::kBottomOffset = 0;
|
|
|
|
|
2010-06-18 02:24:09 +02:00
|
|
|
// Border for large mode
|
|
|
|
const int NowPlayingWidget::kTopBorder = 4;
|
|
|
|
|
2010-06-18 00:31:22 +02:00
|
|
|
|
2010-06-17 00:00:39 +02:00
|
|
|
NowPlayingWidget::NowPlayingWidget(QWidget *parent)
|
|
|
|
: QWidget(parent),
|
|
|
|
cover_loader_(new BackgroundThreadImplementation<AlbumCoverLoader, AlbumCoverLoader>(this)),
|
|
|
|
network_(NULL),
|
2010-06-17 23:38:03 +02:00
|
|
|
mode_(SmallSongDetails),
|
|
|
|
menu_(new QMenu(this)),
|
2010-06-18 02:06:59 +02:00
|
|
|
above_statusbar_action_(NULL),
|
2010-06-17 00:00:39 +02:00
|
|
|
visible_(false),
|
2010-06-17 23:38:03 +02:00
|
|
|
small_ideal_height_(0),
|
|
|
|
cover_height_(0),
|
2010-06-17 00:00:39 +02:00
|
|
|
show_hide_animation_(new QTimeLine(500, this)),
|
|
|
|
fade_animation_(new QTimeLine(1000, this)),
|
|
|
|
load_cover_id_(0),
|
|
|
|
details_(new QTextDocument(this)),
|
Fixes issu...
,'``.._ ,'``.
:,--._:)\,:,._,.: All Glory to
:`--,'' :`...';\ the HYPNO TOAD!
`,' `---' `.
/ :
/ \
,' :\.___,-.
`...,---'``````-..._ |: \
( ) ;: ) \ _,-.
`. ( // `' \
: `.// ) ) , ;
,-|`. _,'/ ) ) ,' ,'
( :`.`-..____..=:.-': . _,' ,'
`,'\ ``--....-)=' `._, \ ,') _ '``._
_.-/ _ `. (_) / )' ; / \ \`-.'
`--( `-:`. `' ___..' _,-' |/ `.)
`-. `.`.``-----``--, .'
|/`.\`' ,','); SSt
` (/ (/
2010-07-12 21:51:23 +02:00
|
|
|
previous_track_opacity_(0.0),
|
|
|
|
hypnotoad_(NULL)
|
2010-06-17 00:00:39 +02:00
|
|
|
{
|
2010-06-18 00:31:22 +02:00
|
|
|
// Load settings
|
|
|
|
QSettings s;
|
|
|
|
s.beginGroup(kSettingsGroup);
|
|
|
|
mode_ = Mode(s.value("mode", SmallSongDetails).toInt());
|
|
|
|
|
|
|
|
// Context menu
|
2010-06-17 23:38:03 +02:00
|
|
|
QActionGroup* mode_group = new QActionGroup(this);
|
|
|
|
QSignalMapper* mode_mapper = new QSignalMapper(this);
|
2010-06-18 02:06:59 +02:00
|
|
|
connect(mode_mapper, SIGNAL(mapped(int)), SLOT(SetMode(int)));
|
2010-06-17 23:38:03 +02:00
|
|
|
CreateModeAction(SmallSongDetails, tr("Small album cover"), mode_group, mode_mapper);
|
|
|
|
CreateModeAction(LargeSongDetails, tr("Large album cover"), mode_group, mode_mapper);
|
2010-06-18 02:06:59 +02:00
|
|
|
|
2010-06-17 23:38:03 +02:00
|
|
|
menu_->addActions(mode_group->actions());
|
2010-06-18 02:06:59 +02:00
|
|
|
menu_->addSeparator();
|
|
|
|
above_statusbar_action_ = menu_->addAction(tr("Show above status bar"));
|
|
|
|
above_statusbar_action_->setCheckable(true);
|
|
|
|
connect(above_statusbar_action_, SIGNAL(toggled(bool)), SLOT(ShowAboveStatusBar(bool)));
|
|
|
|
above_statusbar_action_->setChecked(s.value("above_status_bar", false).toBool());
|
2010-06-17 23:38:03 +02:00
|
|
|
|
2010-06-18 00:31:22 +02:00
|
|
|
// Animations
|
2010-06-17 00:00:39 +02:00
|
|
|
connect(show_hide_animation_, SIGNAL(frameChanged(int)), SLOT(SetHeight(int)));
|
|
|
|
setMaximumHeight(0);
|
|
|
|
|
|
|
|
connect(fade_animation_, SIGNAL(valueChanged(qreal)), SLOT(FadePreviousTrack(qreal)));
|
|
|
|
fade_animation_->setDirection(QTimeLine::Backward); // 1.0 -> 0.0
|
|
|
|
|
2010-06-18 00:31:22 +02:00
|
|
|
// Start loading the cover loader thread
|
2010-06-17 00:00:39 +02:00
|
|
|
cover_loader_->Start();
|
|
|
|
connect(cover_loader_, SIGNAL(Initialised()), SLOT(CoverLoaderInitialised()));
|
|
|
|
}
|
|
|
|
|
2010-06-17 23:38:03 +02:00
|
|
|
void NowPlayingWidget::CreateModeAction(Mode mode, const QString &text, QActionGroup *group, QSignalMapper* mapper) {
|
|
|
|
QAction* action = new QAction(text, group);
|
|
|
|
action->setCheckable(true);
|
|
|
|
mapper->setMapping(action, mode);
|
|
|
|
connect(action, SIGNAL(triggered()), mapper, SLOT(map()));
|
|
|
|
|
|
|
|
if (mode == mode_)
|
|
|
|
action->setChecked(true);
|
|
|
|
}
|
|
|
|
|
2010-06-17 00:00:39 +02:00
|
|
|
void NowPlayingWidget::set_ideal_height(int height) {
|
2010-06-17 23:38:03 +02:00
|
|
|
small_ideal_height_ = height;
|
|
|
|
UpdateHeight();
|
2010-06-17 00:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QSize NowPlayingWidget::sizeHint() const {
|
2010-06-17 23:38:03 +02:00
|
|
|
return QSize(cover_height_, total_height_);
|
2010-06-17 00:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void NowPlayingWidget::CoverLoaderInitialised() {
|
2010-06-17 23:38:03 +02:00
|
|
|
UpdateHeight();
|
2010-06-17 00:00:39 +02:00
|
|
|
cover_loader_->Worker()->SetNetwork(network_);
|
|
|
|
cover_loader_->Worker()->SetPadOutputImage(true);
|
|
|
|
connect(cover_loader_->Worker().get(), SIGNAL(ImageLoaded(quint64,QImage)),
|
|
|
|
SLOT(AlbumArtLoaded(quint64,QImage)));
|
|
|
|
}
|
|
|
|
|
2010-06-17 23:38:03 +02:00
|
|
|
void NowPlayingWidget::UpdateHeight() {
|
|
|
|
switch (mode_) {
|
|
|
|
case SmallSongDetails:
|
|
|
|
cover_height_ = small_ideal_height_;
|
|
|
|
total_height_ = small_ideal_height_;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LargeSongDetails:
|
|
|
|
cover_height_ = qMin(kMaxCoverSize, width());
|
2010-06-18 02:24:09 +02:00
|
|
|
total_height_ = kTopBorder + cover_height_ + kBottomOffset;
|
2010-06-17 23:38:03 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the animation settings and resize the widget now if we're visible
|
|
|
|
show_hide_animation_->setFrameRange(0, total_height_);
|
|
|
|
if (visible_ && show_hide_animation_->state() != QTimeLine::Running)
|
|
|
|
setMaximumHeight(total_height_);
|
|
|
|
|
|
|
|
// Tell the cover loader what size we want the images in
|
|
|
|
cover_loader_->Worker()->SetDesiredHeight(cover_height_);
|
2010-06-18 00:47:25 +02:00
|
|
|
cover_loader_->Worker()->SetDefaultOutputImage(QImage(":nocover.png"));
|
2010-06-17 23:38:03 +02:00
|
|
|
|
|
|
|
// Re-fetch the current image
|
2010-07-19 19:55:02 +02:00
|
|
|
load_cover_id_ = cover_loader_->Worker()->LoadImageAsync(metadata_);
|
2010-06-17 23:38:03 +02:00
|
|
|
|
|
|
|
// Tell Qt we've changed size
|
|
|
|
updateGeometry();
|
|
|
|
}
|
|
|
|
|
2010-06-17 00:00:39 +02:00
|
|
|
void NowPlayingWidget::NowPlaying(const Song& metadata) {
|
|
|
|
if (visible_) {
|
|
|
|
// Cache the current pixmap so we can fade between them
|
|
|
|
previous_track_ = QPixmap(size());
|
|
|
|
previous_track_.fill(palette().background().color());
|
|
|
|
previous_track_opacity_ = 1.0;
|
|
|
|
QPainter p(&previous_track_);
|
|
|
|
DrawContents(&p);
|
|
|
|
p.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
metadata_ = metadata;
|
|
|
|
cover_ = QPixmap();
|
|
|
|
|
2010-06-18 00:31:22 +02:00
|
|
|
UpdateHeight(); // Loads the cover too
|
2010-06-17 23:38:03 +02:00
|
|
|
UpdateDetailsText();
|
2010-06-17 00:00:39 +02:00
|
|
|
|
|
|
|
SetVisible(true);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NowPlayingWidget::Stopped() {
|
|
|
|
SetVisible(false);
|
|
|
|
}
|
|
|
|
|
2010-06-17 23:38:03 +02:00
|
|
|
void NowPlayingWidget::UpdateDetailsText() {
|
|
|
|
QString html;
|
|
|
|
|
|
|
|
switch (mode_) {
|
|
|
|
case SmallSongDetails:
|
|
|
|
details_->setTextWidth(-1);
|
|
|
|
details_->setDefaultStyleSheet("");
|
|
|
|
html += "<p>";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LargeSongDetails:
|
|
|
|
details_->setTextWidth(cover_height_);
|
|
|
|
details_->setDefaultStyleSheet("p {"
|
|
|
|
" font-size: small;"
|
|
|
|
" color: white;"
|
|
|
|
"}");
|
|
|
|
html += "<p align=center>";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Make this configurable
|
|
|
|
html += QString("<i>%1</i><br/>%2<br/>%3").arg(
|
2010-08-06 16:15:14 +02:00
|
|
|
Qt::escape(metadata_.PrettyTitle()), Qt::escape(metadata_.artist()),
|
2010-06-17 23:38:03 +02:00
|
|
|
Qt::escape(metadata_.album()));
|
|
|
|
|
|
|
|
html += "</p>";
|
|
|
|
details_->setHtml(html);
|
|
|
|
}
|
|
|
|
|
2010-06-17 00:00:39 +02:00
|
|
|
void NowPlayingWidget::AlbumArtLoaded(quint64 id, const QImage& image) {
|
|
|
|
if (id != load_cover_id_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cover_ = QPixmap::fromImage(image);
|
|
|
|
update();
|
|
|
|
|
|
|
|
// Were we waiting for this cover to load before we started fading?
|
|
|
|
if (!previous_track_.isNull()) {
|
|
|
|
fade_animation_->start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NowPlayingWidget::SetHeight(int height) {
|
|
|
|
setMaximumHeight(height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NowPlayingWidget::SetVisible(bool visible) {
|
|
|
|
if (visible == visible_)
|
|
|
|
return;
|
|
|
|
visible_ = visible;
|
|
|
|
|
|
|
|
show_hide_animation_->setDirection(visible ? QTimeLine::Forward : QTimeLine::Backward);
|
|
|
|
show_hide_animation_->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NowPlayingWidget::paintEvent(QPaintEvent *e) {
|
|
|
|
QPainter p(this);
|
|
|
|
|
|
|
|
DrawContents(&p);
|
|
|
|
|
|
|
|
// Draw the previous track's image if we're fading
|
|
|
|
if (!previous_track_.isNull()) {
|
|
|
|
p.setOpacity(previous_track_opacity_);
|
|
|
|
p.drawPixmap(0, 0, previous_track_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NowPlayingWidget::DrawContents(QPainter *p) {
|
2010-06-17 23:38:03 +02:00
|
|
|
switch (mode_) {
|
|
|
|
case SmallSongDetails:
|
2010-07-14 13:16:56 +02:00
|
|
|
if (hypnotoad_) {
|
|
|
|
p->drawPixmap(0, 0, small_ideal_height_, small_ideal_height_, hypnotoad_->currentPixmap());
|
2010-07-14 15:44:45 +02:00
|
|
|
} else {
|
|
|
|
// Draw the cover
|
|
|
|
p->drawPixmap(0, 0, small_ideal_height_, small_ideal_height_, cover_);
|
2010-07-14 13:16:56 +02:00
|
|
|
}
|
2010-06-17 23:38:03 +02:00
|
|
|
|
|
|
|
// Draw the details
|
|
|
|
p->translate(small_ideal_height_ + kPadding, 0);
|
|
|
|
details_->drawContents(p);
|
|
|
|
p->translate(-small_ideal_height_ - kPadding, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LargeSongDetails:
|
2010-07-14 13:16:56 +02:00
|
|
|
const int total_size = qMin(kMaxCoverSize, width());
|
2010-06-18 00:31:22 +02:00
|
|
|
const int x_offset = (width() - cover_height_) / 2;
|
|
|
|
|
|
|
|
// Draw the black background
|
2010-06-18 02:24:09 +02:00
|
|
|
p->fillRect(QRect(0, kTopBorder, width(), height() - kTopBorder), Qt::black);
|
2010-06-17 23:38:03 +02:00
|
|
|
|
|
|
|
// Draw the cover
|
2010-07-14 15:44:45 +02:00
|
|
|
if (hypnotoad_) {
|
|
|
|
p->drawPixmap(x_offset, kTopBorder, total_size, total_size, hypnotoad_->currentPixmap());
|
|
|
|
} else {
|
|
|
|
p->drawPixmap(x_offset, kTopBorder, total_size, total_size, cover_);
|
|
|
|
}
|
2010-06-17 23:38:03 +02:00
|
|
|
|
|
|
|
// Work out how high the text is going to be
|
2010-06-18 00:31:22 +02:00
|
|
|
const int text_height = details_->size().height();
|
|
|
|
const int gradient_mid = height() - qMax(text_height, kBottomOffset);
|
2010-06-17 23:38:03 +02:00
|
|
|
|
|
|
|
// Draw the black fade
|
|
|
|
QLinearGradient gradient(0, gradient_mid - kGradientHead,
|
|
|
|
0, gradient_mid + kGradientTail);
|
|
|
|
gradient.setColorAt(0, QColor(0, 0, 0, 0));
|
|
|
|
gradient.setColorAt(1, QColor(0, 0, 0, 255));
|
|
|
|
|
|
|
|
p->fillRect(0, gradient_mid - kGradientHead,
|
|
|
|
width(), height() - (gradient_mid - kGradientHead), gradient);
|
2010-06-17 00:00:39 +02:00
|
|
|
|
2010-06-17 23:38:03 +02:00
|
|
|
// Draw the text on top
|
2010-06-18 00:31:22 +02:00
|
|
|
p->translate(x_offset, height() - text_height);
|
2010-06-17 23:38:03 +02:00
|
|
|
details_->drawContents(p);
|
2010-06-18 00:31:22 +02:00
|
|
|
p->translate(-x_offset, -height() + text_height);
|
2010-06-17 23:38:03 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-06-17 00:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void NowPlayingWidget::FadePreviousTrack(qreal value) {
|
|
|
|
previous_track_opacity_ = value;
|
|
|
|
if (qFuzzyCompare(previous_track_opacity_, 0.0)) {
|
|
|
|
previous_track_ = QPixmap();
|
|
|
|
}
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
2010-06-17 23:38:03 +02:00
|
|
|
|
|
|
|
void NowPlayingWidget::SetMode(int mode) {
|
|
|
|
mode_ = Mode(mode);
|
|
|
|
UpdateHeight();
|
|
|
|
UpdateDetailsText();
|
|
|
|
update();
|
2010-06-18 00:31:22 +02:00
|
|
|
|
|
|
|
QSettings s;
|
|
|
|
s.beginGroup(kSettingsGroup);
|
|
|
|
s.setValue("mode", mode_);
|
2010-06-17 23:38:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void NowPlayingWidget::resizeEvent(QResizeEvent* e) {
|
|
|
|
if (visible_ && mode_ == LargeSongDetails && e->oldSize().width() != e->size().width()) {
|
|
|
|
UpdateHeight();
|
|
|
|
UpdateDetailsText();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NowPlayingWidget::contextMenuEvent(QContextMenuEvent* e) {
|
|
|
|
menu_->popup(mapToGlobal(e->pos()));
|
|
|
|
}
|
2010-06-18 02:06:59 +02:00
|
|
|
|
|
|
|
void NowPlayingWidget::ShowAboveStatusBar(bool above) {
|
|
|
|
QSettings s;
|
|
|
|
s.beginGroup(kSettingsGroup);
|
|
|
|
s.setValue("above_status_bar", above);
|
|
|
|
|
|
|
|
emit ShowAboveStatusBarChanged(above);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NowPlayingWidget::show_above_status_bar() const {
|
|
|
|
return above_statusbar_action_->isChecked();
|
|
|
|
}
|
Fixes issu...
,'``.._ ,'``.
:,--._:)\,:,._,.: All Glory to
:`--,'' :`...';\ the HYPNO TOAD!
`,' `---' `.
/ :
/ \
,' :\.___,-.
`...,---'``````-..._ |: \
( ) ;: ) \ _,-.
`. ( // `' \
: `.// ) ) , ;
,-|`. _,'/ ) ) ,' ,'
( :`.`-..____..=:.-': . _,' ,'
`,'\ ``--....-)=' `._, \ ,') _ '``._
_.-/ _ `. (_) / )' ; / \ \`-.'
`--( `-:`. `' ___..' _,-' |/ `.)
`-. `.`.``-----``--, .'
|/`.\`' ,','); SSt
` (/ (/
2010-07-12 21:51:23 +02:00
|
|
|
|
|
|
|
void NowPlayingWidget::AllHail(bool hypnotoad) {
|
2010-07-12 21:58:47 +02:00
|
|
|
if (hypnotoad) {
|
|
|
|
hypnotoad_ = new QMovie(kHypnotoadPath, QByteArray(), this);
|
2010-07-12 22:00:42 +02:00
|
|
|
connect(hypnotoad_, SIGNAL(updated(const QRect&)), SLOT(update()));
|
2010-07-12 21:58:47 +02:00
|
|
|
hypnotoad_->start();
|
|
|
|
update();
|
|
|
|
} else {
|
|
|
|
delete hypnotoad_;
|
|
|
|
hypnotoad_ = NULL;
|
|
|
|
update();
|
|
|
|
}
|
Fixes issu...
,'``.._ ,'``.
:,--._:)\,:,._,.: All Glory to
:`--,'' :`...';\ the HYPNO TOAD!
`,' `---' `.
/ :
/ \
,' :\.___,-.
`...,---'``````-..._ |: \
( ) ;: ) \ _,-.
`. ( // `' \
: `.// ) ) , ;
,-|`. _,'/ ) ) ,' ,'
( :`.`-..____..=:.-': . _,' ,'
`,'\ ``--....-)=' `._, \ ,') _ '``._
_.-/ _ `. (_) / )' ; / \ \`-.'
`--( `-:`. `' ___..' _,-' |/ `.)
`-. `.`.``-----``--, .'
|/`.\`' ,','); SSt
` (/ (/
2010-07-12 21:51:23 +02:00
|
|
|
}
|