File indexing completed on 2024-12-22 04:17:25
0001 /*************************************************************************** 0002 * * 0003 * copyright : (C) 2007 The University of Toronto * 0004 * netterfield@astro.utoronto.ca * 0005 * * 0006 * This program is free software; you can redistribute it and/or modify * 0007 * it under the terms of the GNU General Public License as published by * 0008 * the Free Software Foundation; either version 2 of the License, or * 0009 * (at your option) any later version. * 0010 * * 0011 ***************************************************************************/ 0012 0013 #include "builtingraphics.h" 0014 #include "boxitem.h" 0015 #include "lineitem.h" 0016 #include "ellipseitem.h" 0017 #include "labelitem.h" 0018 #include "layoutboxitem.h" 0019 #include "pictureitem.h" 0020 #include "plotitem.h" 0021 #include "svgitem.h" 0022 #include "arrowitem.h" 0023 #include "circleitem.h" 0024 #include "sharedaxisboxitem.h" 0025 #include "buttonitem.h" 0026 0027 namespace Kst { 0028 namespace Builtins { 0029 void initGraphics() { 0030 new ArrowItemFactory; 0031 new BoxItemFactory; 0032 new CircleItemFactory; 0033 new EllipseItemFactory; 0034 new LabelItemFactory; 0035 new ButtonItemFactory; 0036 new LayoutBoxItemFactory; 0037 new LineItemFactory; 0038 new PictureItemFactory; 0039 new PlotItemFactory; 0040 #ifndef KST_NO_SVG 0041 new SvgItemFactory; 0042 #endif 0043 new SharedAxisBoxItemFactory; 0044 } 0045 } 0046 } 0047 0048 // vim: ts=2 sw=2 et