Test change - can I push OK?
[kdeedu-porting.git] / kalzium / src / tableinfowidget.cpp
blob1c21a205e2c66107627d9b94b29e464a49780219
1 /***************************************************************************
2 * Copyright (C) 2007 by Carsten Niehaus *
3 * cniehaus@kde.org *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program 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 *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
20 #include "tableinfowidget.h"
21 #include "prefs.h"
22 #include "kalziumschemetype.h"
23 #include "kalziumpainter.h"
24 #include "kalziumtabletype.h"
26 #include <kdebug.h>
27 #include <klocale.h>
28 #include <kglobalsettings.h>
30 #include <QLabel>
31 #include <QHBoxLayout>
33 TableInfoWidget::TableInfoWidget( QWidget *parent )
34 : QWidget( parent )
38 void TableInfoWidget::setTableType( KalziumTableType * type )
40 m_tableType = type;
41 updateContent();
44 void TableInfoWidget::updateContent()
46 QLabel * l = new QLabel( "test" , this );
47 if (m_tableType) {
48 l->setText(m_tableType->description() );
51 QHBoxLayout * la = new QHBoxLayout(this);
52 la->addWidget( l );
53 setLayout( la );
56 #include "tableinfowidget.moc"