workaround occasional read past buffer end in the scanner.
[kdelibs.git] / kfile / kfileplacesitem_p.h
blob9a1eebee647849b043b88daefd1cbd0145aca423
1 /* This file is part of the KDE project
2 Copyright (C) 2007 Kevin Ottens <ervin@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License version 2 as published by the Free Software Foundation.
8 This library is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 Library General Public License for more details.
13 You should have received a copy of the GNU Library General Public License
14 along with this library; see the file COPYING.LIB. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
19 #ifndef KFILEPLACESITEM_P_H
20 #define KFILEPLACESITEM_P_H
23 #include <QtCore/QObject>
24 #include <QtCore/QModelIndex>
25 #include <kbookmark.h>
26 #include <solid/device.h>
28 class KDirLister;
30 class KFilePlacesItem : public QObject
32 Q_OBJECT
33 public:
34 KFilePlacesItem(KBookmarkManager *manager,
35 const QString &address,
36 const QString &udi = QString());
37 ~KFilePlacesItem();
39 QString id() const;
41 bool isDevice() const;
42 KBookmark bookmark() const;
43 void setBookmark(const KBookmark &bookmark);
44 Solid::Device device() const;
45 QVariant data(int role) const;
47 static KBookmark createBookmark(KBookmarkManager *manager,
48 const QString &label,
49 const KUrl &url,
50 const QString &iconName);
51 static KBookmark createDeviceBookmark(KBookmarkManager *manager,
52 const QString &udi);
54 Q_SIGNALS:
55 void itemChanged(const QString &id);
57 private Q_SLOTS:
58 void onAccessibilityChanged();
59 void onListerCompleted();
61 private:
62 QVariant bookmarkData(int role) const;
63 QVariant deviceData(int role) const;
65 bool hasFullIcon(const KBookmark &bookmark) const;
66 QString iconNameForBookmark(const KBookmark &bookmark) const;
68 static QString generateNewId();
70 KBookmarkManager *m_manager;
71 KBookmark m_bookmark;
72 KDirLister *m_lister;
73 bool m_folderIsEmpty;
76 #endif