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
|
/***************************************************************************
katefll_initplugin.cpp - description
-------------------
begin : FRE July 12th 2002
copyright : (C) 2002 by Joseph Wenninger
email : jowenn@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. *
* *
***************************************************************************/
#include "katefll_initplugin.h"
#include "katefll_initplugin.moc"
#include <kate/pluginmanager.h>
#include <tqfileinfo.h>
#include <kgenericfactory.h>
#include <kaction.h>
#include <klocale.h>
#include <kdebug.h>
#include <kurl.h>
#include <kio/netaccess.h>
K_EXPORT_COMPONENT_FACTORY( katefll_initplugin, KGenericFactory<InitPluginKateFileListLoader>( "katefll_loader" ) )
InitPluginKateFileListLoader::InitPluginKateFileListLoader (TQObject * parent, const char *name, const TQStringList datalist)
:InitPlugin((Kate::Application*)parent,name)
{
}
InitPluginKateFileListLoader:: ~InitPluginKateFileListLoader()
{
}
int InitPluginKateFileListLoader::actionsKateShouldNotPerformOnRealStartup()
{
return 0x1;
}
int InitPluginKateFileListLoader::initKate()
{
TQString tmpFile;
KURL tmpURL;
if( KIO::NetAccess::download( configScript(), tmpFile ) )
{
TQFile file(tmpFile);
file.open(IO_ReadOnly);
TQTextStream t(&file);
bool somethingOpened=false;
application()->documentManager()->closeAllDocuments();
while (!t.eof())
{
somethingOpened=true;
// application()->activeMainWindow()->viewManager()->openURL(KURL(t.readLine()));
application()->documentManager()->openURL(tmpURL=KURL(t.readLine()));
}
if (!somethingOpened) application()->documentManager()->openURL(KURL());
else if (application()->activeMainWindow())
application()->activeMainWindow()->viewManager()->openURL(tmpURL);
file.close();
KIO::NetAccess::removeTempFile( tmpFile );
} else application()->documentManager()->openURL(KURL());
Kate::Plugin *pl=application()->pluginManager()->plugin("katefll_plugin");
if (pl)
{
connect(this,TQT_SIGNAL(updateInit()),pl,TQT_SLOT(updateInit()));
updateInit();
disconnect(this,TQT_SIGNAL(updateInit()),pl,TQT_SLOT(updateInit()));
/* int id = pl->tqmetaObject()->findSlot( TQT_SLOT(updateInit()) );
if ( id != -1 )
{
kdDebug()<<"Action slot was found, it will be called now"<<endl;
TQUObject o[ 1 ];
mod->module->qt_invoke( id, o );
} */
}
return 0;
}
|