1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
#include <xmmsclient/xmmsclient++.h>
#include "xclient.h"
#include "browsemodel.h"
#include <QAbstractTableModel>
#include <QString>
#include <QIcon>
#include <QObject>
#include <QWidget>
bool
BrowseModelItem::itemCompare (BrowseModelItem *s1, BrowseModelItem *s2)
{
if (QString::localeAwareCompare (s1->m_vals["name"].toLower (),
s2->m_vals["name"].toLower ()) < 0) {
return true;
}
return false;
}
BrowseModel::BrowseModel (QObject *parent, XClient *client) : QAbstractTableModel ()
{
m_columns.append ("Name");
QWidget *w = dynamic_cast<QWidget*>(parent);
m_style = w->style ();
m_filter_dot = true;
m_client = client;
}
BrowseModelItem *
BrowseModel::itemByIndex (const QModelIndex &index)
{
return m_list.at (index.row ());
}
void
BrowseModel::setPath (const QModelIndex &index)
{
BrowseModelItem *item = m_list.at (index.row ());
m_client->xform.browse (item->data("path").toStdString (),
Xmms::bind (&BrowseModel::list_cb, this));
m_current_dir = item->data ("path");
}
void
BrowseModel::setPath (const QString &path)
{
if (path.isEmpty())
list_root ();
m_client->xform.browse (path.toStdString (),
Xmms::bind (&BrowseModel::list_cb, this),
Xmms::bind (&BrowseModel::list_err, this));
m_current_dir = path;
}
void
BrowseModel::list_root ()
{
while (!m_list.isEmpty ()) {
delete m_list.takeFirst ();
}
m_list.append (new BrowseModelItem ("file:///", "Files", true));
m_list.append (new BrowseModelItem ("daap://", "DAAP", true));
emit dirChanged ("");
reset ();
m_current_dir = "";
}
bool
BrowseModel::list_err (const std::string err)
{
list_root ();
return true;
}
bool
BrowseModel::list_cb (const Xmms::List< Xmms::Dict > &res)
{
while (!m_list.isEmpty ()) {
delete m_list.takeFirst ();
}
for (res.first (); res.isValid (); ++res) {
Xmms::Dict d = *res;
if (!d.contains ("path"))
continue;
QString path = QString::fromStdString (d.get<std::string> ("path"));
QString name;
if (d.contains ("name")) {
name = QString::fromStdString (d.get<std::string> ("name"));
} else {
if (d.contains ("title")) {
if (d.contains ("artist")) {
name += QString::fromStdString (d.get<std::string> ("artist"));
name += " - ";
}
if (d.contains ("album")) {
name += QString::fromStdString (d.get<std::string> ("album"));
name += " - ";
}
if (d.contains ("tracknr")) {
name += QString::number (d.get<uint32_t>
("tracknr")).rightJustified(2, '0');
name += " - ";
}
name += QString::fromStdString (d.get<std::string> ("title"));
} else {
const char *tmp;
QString tmp2 = path.mid (path.lastIndexOf ("/")+1);
tmp = xmmsc_result_decode_url (NULL, tmp2.toAscii ());
name = QString::fromUtf8 (tmp);
free ((char *)tmp);
}
}
bool isdir = d.get<int32_t> ("isdir");
if (m_filter_dot && name.startsWith ("."))
// skip these files
continue;
m_list.append (new BrowseModelItem (path, name, isdir));
}
qSort (m_list.begin (), m_list.end (), BrowseModelItem::itemCompare);
reset ();
emit dirChanged (m_current_dir);
return true;
}
/* QModel overrides */
int
BrowseModel::rowCount (const QModelIndex &parent) const
{
return m_list.size ();
}
int
BrowseModel::columnCount (const QModelIndex &parent) const
{
return m_columns.size ();
}
QVariant
BrowseModel::data (const QModelIndex &index,
int role) const
{
if (!index.isValid ())
return QVariant ();
if (index.column () == 0 && role == Qt::DecorationRole)
return fileIcon(index);
if (role != Qt::DisplayRole)
return QVariant ();
QString h = m_columns[index.column ()].toLower ();
return QVariant (m_list.at (index.row ())->data (h));
}
QVariant
BrowseModel::headerData (int section,
Qt::Orientation orientation,
int role) const
{
if (role == Qt::DisplayRole)
return QVariant (m_columns[section]);
return QVariant ();
}
QIcon
BrowseModel::fileIcon (const QModelIndex &index) const
{
if (!index.isValid())
return QIcon ();
BrowseModelItem *item = m_list.at (index.row ());
if (item && item->isDir ())
return QIcon (m_style->standardPixmap (QStyle::SP_DirClosedIcon));
return QIcon (m_style->standardPixmap (QStyle::SP_FileIcon));
}
|