~ubuntu-branches/ubuntu/precise/kalzium/precise

« back to all changes in this revision

Viewing changes to src/tableinfowidget.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Philip Muškovac
  • Date: 2011-07-03 12:28:58 UTC
  • Revision ID: james.westby@ubuntu.com-20110703122858-q1yyxncs89e4w0hs
Tags: upstream-4.6.90+repack
Import upstream version 4.6.90+repack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
24
#include <kdebug.h>
 
25
#include <klocale.h>
 
26
#include <kglobalsettings.h>
 
27
 
 
28
#include "psetables.h"
 
29
 
 
30
#include <QHBoxLayout>
 
31
 
 
32
TableInfoWidget::TableInfoWidget( QWidget *parent )
 
33
  : QWidget( parent )
 
34
{
 
35
    m_tableType = new QLabel( "test" , this );
 
36
 
 
37
    QHBoxLayout * la = new QHBoxLayout(this);
 
38
    la->addWidget( m_tableType );
 
39
    setLayout( la );
 
40
}
 
41
 
 
42
void TableInfoWidget::setTableType( int type )
 
43
{
 
44
    m_tableType->setText( pseTables::instance()->getTabletype(type)->description() );
 
45
}
 
46
 
 
47
 
 
48
#include "tableinfowidget.moc"
 
49