xbel.h
上传用户:huahtool
上传日期:2015-12-10
资源大小:1089k
文件大小:3k
源码类别:

浏览器

开发平台:

Visual C++

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the demonstration applications of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef XBEL_H
  38. #define XBEL_H
  39. #include <QtCore/QXmlStreamReader>
  40. #include <QtCore/QDateTime>
  41. class BookmarkNode
  42. {
  43. public:
  44.     enum Type {
  45.         Root,
  46.         Folder,
  47.         Bookmark,
  48.         Separator
  49.     };
  50.     BookmarkNode(Type type = Root, BookmarkNode *parent = 0);
  51.     ~BookmarkNode();
  52.     bool operator==(const BookmarkNode &other);
  53.     Type type() const;
  54.     void setType(Type type);
  55.     QList<BookmarkNode *> children() const;
  56.     BookmarkNode *parent() const;
  57.     void add(BookmarkNode *child, int offset = -1);
  58.     void remove(BookmarkNode *child);
  59.     QString url;
  60.     QString title;
  61.     QString desc;
  62.     bool expanded;
  63. private:
  64.     BookmarkNode *m_parent;
  65.     Type m_type;
  66.     QList<BookmarkNode *> m_children;
  67. };
  68. class XbelReader : public QXmlStreamReader
  69. {
  70. public:
  71.     XbelReader();
  72.     BookmarkNode *read(const QString &fileName);
  73.     BookmarkNode *read(QIODevice *device);
  74. private:
  75.     void skipUnknownElement();
  76.     void readXBEL(BookmarkNode *parent);
  77.     void readTitle(BookmarkNode *parent);
  78.     void readDescription(BookmarkNode *parent);
  79.     void readSeparator(BookmarkNode *parent);
  80.     void readFolder(BookmarkNode *parent);
  81.     void readBookmarkNode(BookmarkNode *parent);
  82. };
  83. #include <QtCore/QXmlStreamWriter>
  84. class XbelWriter : public QXmlStreamWriter
  85. {
  86. public:
  87.     XbelWriter();
  88.     bool write(const QString &fileName, const BookmarkNode *root);
  89.     bool write(QIODevice *device, const BookmarkNode *root);
  90. private:
  91.     void writeItem(const BookmarkNode *parent);
  92. };
  93. #endif // XBEL_H