Specialized tag widget to display tags

Actually just a QListView but with support of the user's supplied
blacklist
This commit is contained in:
Luca Beltrame 2015-02-20 07:29:52 +01:00
parent 14e1aa63ab
commit cc100ad09a
3 changed files with 99 additions and 0 deletions

View file

@ -3,6 +3,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(danbooru_client_SRCS
danbooruconnectwidget.cpp
danboorusearchwidget.cpp
danboorutagwidget.cpp
model/danboorupostmodel.cpp
model/danboorupoolmodel.cpp
model/danboorutagmodel.cpp

50
src/danboorutagwidget.cpp Normal file
View file

@ -0,0 +1,50 @@
/*
* Copyright 2015 Luca Beltrame <lbeltrame@kde.org>
*
* This file is part of Danbooru Client.
*
* Danbooru Client 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.
*
* Danbooru Client 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 Danbooru Client. If not, see <http://www.gnu.org/licenses/>.
*/
#include "danboorutagwidget.h"
#include "model/danboorutagmodel.h"
#include "libdanbooru/danboorutag.h"
namespace Danbooru {
DanbooruTagWidget::DanbooruTagWidget(QWidget *parent): QListView(parent)
{
}
DanbooruTagWidget::~DanbooruTagWidget()
{
}
void DanbooruTagWidget::addTag(DanbooruTag *tag)
{
if (m_blacklist.contains(tag->name())) {
return;
}
qobject_cast<DanbooruTagModel*>(model())->addTag(tag);
}
void DanbooruTagWidget::setBlackList(const QStringList &blackList)
{
m_blacklist = blackList;
}
} // namespace Danbooru

48
src/danboorutagwidget.h Normal file
View file

@ -0,0 +1,48 @@
/*
* Copyright 2015 Luca Beltrame <lbeltrame@kde.org>
*
* This file is part of Danbooru Client.
*
* Danbooru Client 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.
*
* Danbooru Client 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 Danbooru Client. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DANBOORU_TAGWIDGET_H
#define DANBOORU_TAGWIDGET_H
#include <QListView>
#include <QStringList>
namespace Danbooru {
class DanbooruTag;
class DanbooruTagWidget: public QListView
{
Q_OBJECT
private:
QStringList m_blacklist;
public:
explicit DanbooruTagWidget(QWidget *parent=0);
~DanbooruTagWidget();
void setBlackList(const QStringList& blacklist);
public Q_SLOTS:
void addTag(DanbooruTag *tag);
};
} // namespace Danbooru
#endif