2010-10-07 22:18:37 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-10-07 22:18:37 +02:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2010-10-16 16:11:23 +02:00
|
|
|
#ifndef SONGINFOTEXTVIEW_H
|
|
|
|
#define SONGINFOTEXTVIEW_H
|
2010-10-07 22:18:37 +02:00
|
|
|
|
2010-10-16 15:04:59 +02:00
|
|
|
#include <QTextBrowser>
|
2010-10-07 22:18:37 +02:00
|
|
|
|
2010-10-16 16:11:23 +02:00
|
|
|
class SongInfoTextView : public QTextBrowser {
|
2010-10-07 22:18:37 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2010-10-16 16:11:23 +02:00
|
|
|
SongInfoTextView(QWidget* parent = 0);
|
2010-10-07 22:18:37 +02:00
|
|
|
|
2010-10-16 15:56:49 +02:00
|
|
|
static const qreal kDefaultFontSize;
|
|
|
|
static const char* kSettingsGroup;
|
|
|
|
|
2010-10-07 22:18:37 +02:00
|
|
|
QSize sizeHint() const;
|
|
|
|
|
2010-10-16 15:56:49 +02:00
|
|
|
public slots:
|
|
|
|
void ReloadSettings();
|
2010-10-16 18:16:22 +02:00
|
|
|
void SetHtml(const QString& html);
|
2010-10-16 15:56:49 +02:00
|
|
|
|
2010-10-16 16:45:23 +02:00
|
|
|
signals:
|
|
|
|
void ShowSettingsDialog();
|
|
|
|
|
2010-10-07 22:18:37 +02:00
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent* e);
|
2010-10-09 14:39:49 +02:00
|
|
|
void wheelEvent(QWheelEvent* e);
|
2010-10-16 16:45:23 +02:00
|
|
|
void contextMenuEvent(QContextMenuEvent* e);
|
2010-10-09 15:34:28 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
int last_width_;
|
2010-10-07 22:18:37 +02:00
|
|
|
};
|
|
|
|
|
2010-10-16 16:11:23 +02:00
|
|
|
#endif // SONGINFOTEXTVIEW_H
|