Documentation
[yamf.git] / yamf / model / itembuilder.h
blob1cd7103c0e58e244650373c5b23197e1611e1033
1 /***************************************************************************
2 * Copyright (C) 2007 David Cuadrado *
3 * krawek@gmail.com *
4 * *
5 * This library is free software; you can redistribute it and/or *
6 * modify it under the terms of the GNU Lesser General Public *
7 * License as published by the Free Software Foundation; either *
8 * version 2.1 of the License, or (at your option) any later version. *
9 * *
10 * This library is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
13 * Lesser General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU Lesser General Public *
16 * License along with this library; if not, write to the Free Software *
17 * Foundation, Inc., *
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
19 ***************************************************************************/
23 #ifndef YAMF_MODELITEMBUILDER_H
24 #define YAMF_MODELITEMBUILDER_H
26 #include <yamf/item/builder.h>
28 namespace YAMF {
30 namespace Model {
32 class Library;
34 /**
35 * @ingroup model
36 * @author David Cuadrado <krawek@gmail.com>
38 class ItemBuilder : public YAMF::Item::Builder
40 public:
41 ItemBuilder();
42 ~ItemBuilder();
44 void setLibrary(const Library *library);
46 virtual bool endTag(const QString& qname);
47 virtual bool startTag(const QString& qname, const QXmlAttributes& atts);
48 virtual void text(const QString& ch);
50 protected:
51 QGraphicsItem* createItem(const QString& root);
53 private:
54 struct Private;
55 Private *const d;
62 #endif