1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/*
This file is part of KNode.
Copyright (c) 2003 Laurent Montel <montel@kde.org>,
Based on the work of Cornelius Schumacher <schumacher@kde.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
with any edition of Qt, and distribute the resulting executable,
without including the source code for Qt in the source distribution.
*/
#include "knode_part.h"
#include "knglobals.h"
#include "knmainwidget.h"
#include "aboutdata.h"
#include "kncollectionview.h"
#include "knwidgets.h"
#include "sidebarextension.h"
#include <kapplication.h>
#include <kparts/genericfactory.h>
#include <kparts/statusbarextension.h>
#include <knotifyclient.h>
#include <dcopclient.h>
#include <kiconloader.h>
#include <kdebug.h>
#include <kstatusbar.h>
#include <krsqueezedtextlabel.h>
#include <tqlayout.h>
typedef KParts::GenericFactory< KNodePart > KNodeFactory;
K_EXPORT_COMPONENT_FACTORY( libknodepart, KNodeFactory )
KNodePart::KNodePart(TQWidget *tqparentWidget, const char *widgetName,
TQObject *parent, const char *name, const TQStringList &)
: KParts::ReadOnlyPart(parent, name),
mParentWidget( tqparentWidget )
{
kdDebug(5003) << "KNodePart()" << endl;
kdDebug(5003) << " InstanceName: " << kapp->instanceName() << endl;
setInstance( KNodeFactory::instance() );
kdDebug(5003) << "KNodePart()..." << endl;
kdDebug(5003) << " InstanceName: " << kapp->instanceName() << endl;
KGlobal::locale()->insertCatalogue("libkdepim");
KGlobal::locale()->insertCatalogue("libkpgp");
kapp->dcopClient()->suspend(); // Don't handle DCOP requests yet
KGlobal::iconLoader()->addAppDir("knode");
knGlobals.instance = KNodeFactory::instance();
// create a canvas to insert our widget
TQWidget *canvas = new TQWidget(tqparentWidget, widgetName);
canvas->setFocusPolicy(TQWidget::ClickFocus);
setWidget(canvas);
mainWidget = new KNMainWidget( this, false, canvas, "knode_widget" );
TQVBoxLayout *topLayout = new TQVBoxLayout(canvas);
topLayout->addWidget(mainWidget);
mainWidget->setFocusPolicy(TQWidget::ClickFocus);
kapp->dcopClient()->resume(); // Ok. We are ready for DCOP requests.
new KParts::SideBarExtension( mainWidget->collectionView(),
this,
"KNodeSidebar" );
KParts::StatusBarExtension* statusBar = new KParts::StatusBarExtension(this);
statusBar->addStatusBarItem(mainWidget->statusBarLabelFilter(), 10, false);
statusBar->addStatusBarItem(mainWidget->statusBarLabelGroup(), 15, false);
setXMLFile( "knodeui.rc" );
}
KNodePart::~KNodePart()
{
mainWidget->prepareShutdown();
}
KAboutData *KNodePart::createAboutData()
{
return new KNode::AboutData();
}
bool KNodePart::openFile()
{
kdDebug(5003) << "KNodePart:openFile()" << endl;
mainWidget->show();
return true;
}
void KNodePart::guiActivateEvent(KParts::GUIActivateEvent *e)
{
kdDebug(5003) << "KNodePart::guiActivateEvent" << endl;
KParts::ReadOnlyPart::guiActivateEvent(e);
}
TQWidget* KNodePart::tqparentWidget() const
{
return mParentWidget;
}
#include "knode_part.moc"
|