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