1 /************************************************************************
3 * Copyright 2012 Jakob Leben (jakob.leben@gmail.com)
5 * This file is part of SuperCollider Qt GUI.
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 ************************************************************************/
22 #include "QcObjectFactory.h"
24 namespace QtCollider
{
26 void loadFactories () {
27 QC_ADD_FACTORY( QcDefaultWidget
);
28 QC_ADD_FACTORY( QcHLayoutWidget
);
29 QC_ADD_FACTORY( QcVLayoutWidget
);
30 QC_ADD_FACTORY( QLabel
);
31 QC_ADD_FACTORY( QcTextField
);
32 QC_ADD_FACTORY( QcCheckBox
);
33 QC_ADD_FACTORY( QcListWidget
);
34 QC_ADD_FACTORY( QcPopUpMenu
);
35 QC_ADD_FACTORY( QcButton
);
36 QC_ADD_FACTORY( QcCustomPainted
);
37 QC_ADD_FACTORY( QcFileDialog
);
38 QC_ADD_FACTORY( QcGraph
);
39 QC_ADD_FACTORY( QcKnob
);
40 QC_ADD_FACTORY( QcLevelIndicator
);
41 QC_ADD_FACTORY( QcMultiSlider
);
42 QC_ADD_FACTORY( QcNumberBox
);
43 QC_ADD_FACTORY( QcPenPrinter
);
44 QC_ADD_FACTORY( QcRangeSlider
);
45 QC_ADD_FACTORY( QcScope
);
46 QC_ADD_FACTORY( QcScopeShm
);
47 QC_ADD_FACTORY( QcScrollWidget
);
48 QC_ADD_FACTORY( QcScrollArea
);
49 QC_ADD_FACTORY( QcSlider
);
50 QC_ADD_FACTORY( QcSlider2D
);
51 QC_ADD_FACTORY( QcWaveform
);
52 QC_ADD_FACTORY( QcTextEdit
);
53 QC_ADD_FACTORY( QcTreeWidget
);
54 QC_ADD_FACTORY( WebView
);
55 QC_ADD_FACTORY( QcWindow
);
56 QC_ADD_FACTORY( QcScrollWindow
);
57 QC_ADD_FACTORY( QcHBoxLayout
);
58 QC_ADD_FACTORY( QcVBoxLayout
);
59 QC_ADD_FACTORY( QcGridLayout
);
60 QC_ADD_FACTORY( QcStackLayout
);
63 } // namespace QtCollider