~ubuntu-branches/debian/sid/kexi/sid

« back to all changes in this revision

Viewing changes to src/core/kexistaticpart.cpp

  • Committer: Package Import Robot
  • Author(s): Pino Toscano
  • Date: 2017-06-24 20:10:10 UTC
  • Revision ID: package-import@ubuntu.com-20170624201010-5lrzd5r2vwthwifp
Tags: upstream-3.0.1.1
Import upstream version 3.0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
   Copyright (C) 2003 Lucijan Busch <lucijan@kde.org>
 
3
   Copyright (C) 2003 Jarosław Staniek <staniek@kde.org>
 
4
 
 
5
   This library is free software; you can redistribute it and/or
 
6
   modify it under the terms of the GNU Library General Public
 
7
   License as published by the Free Software Foundation; either
 
8
   version 2 of the License, or (at your option) any later version.
 
9
 
 
10
   This library 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 GNU
 
13
   Library General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU Library General Public License
 
16
   along with this library; see the file COPYING.LIB.  If not, write to
 
17
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
18
 * Boston, MA 02110-1301, USA.
 
19
*/
 
20
 
 
21
#include "kexipartmanager.h"
 
22
#include "kexistaticpart.h"
 
23
#include "kexipartinfo_p.h"
 
24
#include "kexipartitem.h"
 
25
#include "kexi.h"
 
26
 
 
27
using namespace KexiPart;
 
28
 
 
29
//------------------------------
 
30
 
 
31
StaticPartInfo::StaticPartInfo(const QString& pluginId, const QString& itemIcon,
 
32
                               const QString& objectName)
 
33
        : Info(pluginId, itemIcon, objectName)
 
34
{
 
35
}
 
36
 
 
37
StaticPartInfo::~StaticPartInfo()
 
38
{
 
39
}
 
40
 
 
41
//------------------------------
 
42
 
 
43
StaticPart::StaticPart(const QString& pluginId, const QString& itemIcon,
 
44
                       const QString& objectName)
 
45
        : Part(&Kexi::partManager(), new StaticPartInfo(pluginId, itemIcon, objectName))
 
46
{
 
47
    Kexi::partManager().insertStaticPart(this);
 
48
}
 
49
 
 
50
StaticPart::~StaticPart()
 
51
{
 
52
}
 
53
 
 
54
KexiView* StaticPart::createView(QWidget *parent, KexiWindow* window,
 
55
                                 KexiPart::Item *item, Kexi::ViewMode viewMode)
 
56
{
 
57
    Q_UNUSED(parent);
 
58
    Q_UNUSED(window);
 
59
    Q_UNUSED(item);
 
60
    Q_UNUSED(viewMode);
 
61
    //unused
 
62
    return 0;
 
63
}