~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to kexi/core/kexipartinfo_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-04-20 21:38:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060420213853-j5lxluqvymxt2zny
Tags: 1:1.5.0-0ubuntu2
UbuntuĀ uploadĀ 

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 Jaroslaw Staniek <js@iidea.pl>
 
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
#ifndef KEXIPROJECTPARTITEM_P_H
 
22
#define KEXIPROJECTPARTITEM_P_H
 
23
 
 
24
#include "kexipartinfo.h"
 
25
#include <kservice.h>
 
26
 
 
27
namespace KexiPart
 
28
{
 
29
//! @internal
 
30
class Info::Private
 
31
{
 
32
        public:
 
33
                Private(const KService::Ptr& aPtr);
 
34
 
 
35
                //! used in StaticItem class
 
36
                Private();
 
37
 
 
38
                KService::Ptr ptr;
 
39
                QString errorMessage;
 
40
                QString groupName;
 
41
                QCString mimeType;
 
42
                QString itemIcon;
 
43
                QString objectName;
 
44
                int projectPartID;
 
45
                bool broken : 1;
 
46
                bool isVisibleInNavigator : 1;
 
47
                bool idStoredInPartDatabase : 1;
 
48
};
 
49
}
 
50
 
 
51
#endif