part.h
1/*
2 This file is part of the KOrganizer interfaces.
3
4 Copyright (c) 2001,2003 Cornelius Schumacher <schumacher@kde.org>
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
15
16 You should have received a copy of the GNU Library General Public License
17 along with this library; see the file COPYING.LIB. If not, write to
18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA.
20*/
21#ifndef KORG_PART_H
22#define KORG_PART_H
23
24#include <tqstring.h>
25
26#include <klibloader.h>
27#include <tdeparts/part.h>
28
29#include <korganizer/mainwindow.h>
30
31namespace KOrg {
32
33class Part : public KParts::Part
34{
35 public:
36 static int interfaceVersion() { return 2; }
37 static TQString serviceType() { return "KOrganizer/Part"; }
38
39 typedef TQPtrList<Part> List;
40
41 Part( MainWindow *parent, const char *name )
42 : KParts::Part( parent?(parent->topLevelWidget()):0, name ), mMainWindow( parent ) {}
43
44 virtual ~Part() {}
45
46 virtual TQString info() = 0;
48 virtual TQString shortInfo() = 0;
49
50 MainWindow *mainWindow() { return mMainWindow; }
51
52 private:
53 MainWindow *mMainWindow;
54};
55
56class PartFactory : public KLibFactory
57{
58 public:
59 virtual Part *create( MainWindow *parent, const char *name = 0 ) = 0;
60
61 protected:
62 virtual TQObject *createObject( TQObject *, const char *,const char *,
63 const TQStringList & )
64 {
65 return 0;
66 }
67};
68
69}
70
71#endif