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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/************************************************************************
*
* Copyright 2012 Jakob Leben (jakob.leben@gmail.com)
*
* 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 2 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"
#include "QcWidgetFactory.h"
#include <QLabel>
QC_DECLARE_QWIDGET_FACTORY( QLabel );
static void doLoadFactories ()
{
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( QcWaveform );
QC_ADD_FACTORY( QcTextEdit );
QC_ADD_FACTORY( QcTreeWidget );
QC_ADD_FACTORY( QcMenu );
QC_ADD_FACTORY( QcToolBar );
QC_ADD_FACTORY( QcAction );
QC_ADD_FACTORY( QcWidgetAction );
QC_ADD_FACTORY( QcCallback );
QC_ADD_FACTORY( WebView );
QC_ADD_FACTORY( QcWindow );
QC_ADD_FACTORY( QcScrollWindow );
QC_ADD_FACTORY( QcHBoxLayout );
QC_ADD_FACTORY( QcVBoxLayout );
QC_ADD_FACTORY( QcGridLayout );
QC_ADD_FACTORY( QcStackLayout );
QC_ADD_FACTORY( QtDownload );
#ifdef __APPLE__
QC_ADD_FACTORY( QcQuartzComposerView );
#endif
}
namespace QtCollider {
void loadFactories()
{
doLoadFactories();
}
} // namespace QtCollider
|