Rename a number of libraries and executables to avoid conflicts with KDE4

pull/1/head
Timothy Pearson 12 years ago
parent 9d4971a2ff
commit 545706afdc

@ -261,7 +261,7 @@
2003-11-29 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2003-11-29 Richard Dale <Richard_Dale@tipitina.demon.co.uk>
* Fixed parsing of casts inside enums in kfileitem.h: * Fixed parsing of casts inside enums in tdefileitem.h:
enum { Unknown = (mode_t) - 1 }; enum { Unknown = (mode_t) - 1 };
Hmm, not sure what that's up to anyway.. Hmm, not sure what that's up to anyway..
* Added a special Source property to method nodes in TQGlobalSpace. * Added a special Source property to method nodes in TQGlobalSpace.

@ -51,7 +51,7 @@ Remove any TQ_OVERRIDE macros from the Qt headers, and remove EXPORT_DOCKCLASS f
KDE headers KDE headers
# Generate Java and C++ sources. Copy all the target headers to directory 'test/tmp' # Generate Java and C++ sources. Copy all the target headers to directory 'test/tmp'
kalyptus -fjava test/tmp/*.h test/tmp/dom/*.h test/tmp/kio/*.h test/tmp/tdeprint/*.h \ kalyptus -fjava test/tmp/*.h test/tmp/dom/*.h test/tmp/tdeio/*.h test/tmp/tdeprint/*.h \
test/tmp/kjs/*.h test/tmp/tdeparts/*.h test/tmp/tdesu/*.h test/ktextedit/*.h test/tmp/libtdemid/*.h test/tmp/kjs/*.h test/tmp/tdeparts/*.h test/tmp/tdesu/*.h test/ktextedit/*.h test/tmp/libtdemid/*.h
# Shorten generated filenames # Shorten generated filenames

@ -1683,7 +1683,7 @@ sub makeParamList($$$)
} }
if (defined $defaultparam && $isEnum) { if (defined $defaultparam && $isEnum) {
# Remove any casts in enum values, for example this in kfileitem.h: # Remove any casts in enum values, for example this in tdefileitem.h:
# 'enum { Unknown = (mode_t) - 1 };' # 'enum { Unknown = (mode_t) - 1 };'
$defaultparam =~ s/\([^\)]+\)(.*[0-9].*)/$1/; $defaultparam =~ s/\([^\)]+\)(.*[0-9].*)/$1/;
} }

@ -3113,11 +3113,11 @@ sub writeClassDoc
if ($javaClassName eq 'KIO') { if ($javaClassName eq 'KIO') {
# Hack: namespaces can be defined in several source files, which doesn't work, so this.. # Hack: namespaces can be defined in several source files, which doesn't work, so this..
print JNISOURCE "#include <kio/job.h>\n"; print JNISOURCE "#include <tdeio/job.h>\n";
print JNISOURCE "#include <kio/davjob.h>\n"; print JNISOURCE "#include <tdeio/davjob.h>\n";
print JNISOURCE "#include <kio/metainfojob.h>\n"; print JNISOURCE "#include <tdeio/metainfojob.h>\n";
print JNISOURCE "#include <kio/previewjob.h>\n"; print JNISOURCE "#include <tdeio/previewjob.h>\n";
print JNISOURCE "#include <kio/paste.h>\n"; print JNISOURCE "#include <tdeio/paste.h>\n";
} }
print JNISOURCE "\n"; print JNISOURCE "\n";
@ -3355,7 +3355,7 @@ sub addIncludeForClass($$$)
{ {
my ( $node, $addInclude, $debugMe ) = @_; my ( $node, $addInclude, $debugMe ) = @_;
my $sourcename = $node->{Source}->{astNodeName}; my $sourcename = $node->{Source}->{astNodeName};
if ( $sourcename !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { if ( $sourcename !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
$sourcename =~ s!.*/(.*)!$1!m; $sourcename =~ s!.*/(.*)!$1!m;
} }
# die "Empty source name for $node->{astNodeName}" if ( $sourcename eq '' ); # die "Empty source name for $node->{astNodeName}" if ( $sourcename eq '' );
@ -3624,7 +3624,7 @@ sub generateMethod($$$$$$$$$)
return; return;
} }
if ( $sourcename !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { if ( $sourcename !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
$sourcename =~ s!.*/(.*)!$1!m; $sourcename =~ s!.*/(.*)!$1!m;
} }
if ( $sourcename eq '' ) { if ( $sourcename eq '' ) {
@ -4155,7 +4155,7 @@ sub generateAllMethods($$$$$$$$)
my $sourcename = $classNode->{Source}->{astNodeName}; my $sourcename = $classNode->{Source}->{astNodeName};
if ( $sourcename !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { if ( $sourcename !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
$sourcename =~ s!.*/(.*)!$1!m; $sourcename =~ s!.*/(.*)!$1!m;
} }
# die "Empty source name for $classNode->{astNodeName} $classNode->{Source}->{astNodeName}" if ( $sourcename eq '' ); # die "Empty source name for $classNode->{astNodeName} $classNode->{Source}->{astNodeName}" if ( $sourcename eq '' );
@ -4164,7 +4164,7 @@ sub generateAllMethods($$$$$$$$)
$addInclude->{$sourcename} = 1; $addInclude->{$sourcename} = 1;
# my $s; # my $s;
# for my $sn( @{$classNode->{Sources}} ) { # for my $sn( @{$classNode->{Sources}} ) {
# if ( ($s = $sn->{astNodeName}) !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { # if ( ($s = $sn->{astNodeName}) !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
# $s =~ s!.*/(.*)!$1!m; # $s =~ s!.*/(.*)!$1!m;
# } # }
# $addInclude->{$s} = 1; # $addInclude->{$s} = 1;

@ -1732,7 +1732,7 @@ sub generateMethod($$$$$$$)
return; return;
} }
if ( $sourcename !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { if ( $sourcename !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
$sourcename =~ s!.*/(.*)!$1!m; $sourcename =~ s!.*/(.*)!$1!m;
} }
if ( $sourcename eq '' ) { if ( $sourcename eq '' ) {
@ -2124,7 +2124,7 @@ sub generateAllMethods($$$$$$)
my $sourcename = $classNode->{Source}->{astNodeName}; my $sourcename = $classNode->{Source}->{astNodeName};
if ( $sourcename !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { if ( $sourcename !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
$sourcename =~ s!.*/(.*)!$1!m; $sourcename =~ s!.*/(.*)!$1!m;
} }
die "Empty source name for $classNode->{astNodeName}" if ( $sourcename eq '' ); die "Empty source name for $classNode->{astNodeName}" if ( $sourcename eq '' );
@ -2148,7 +2148,7 @@ sub generateAllMethods($$$$$$)
if ($classNode->{astNodeName} ne $main::globalSpaceClassName) { if ($classNode->{astNodeName} ne $main::globalSpaceClassName) {
# my $s; # my $s;
# for my $sn( @{$classNode->{Sources}} ) { # for my $sn( @{$classNode->{Sources}} ) {
# if ( ($s = $sn->{astNodeName}) !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { # if ( ($s = $sn->{astNodeName}) !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
# $s =~ s!.*/(.*)!$1!m; # $s =~ s!.*/(.*)!$1!m;
# } # }
# $addInclude->{$s} = 1; # $addInclude->{$s} = 1;

@ -1777,7 +1777,7 @@ sub generateMethod($$$$$$$)
return; return;
} }
if ( $sourcename !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { if ( $sourcename !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
$sourcename =~ s!.*/(.*)!$1!m; $sourcename =~ s!.*/(.*)!$1!m;
} }
if ( $sourcename eq '' ) { if ( $sourcename eq '' ) {
@ -2317,7 +2317,7 @@ sub generateAllMethods($$$$$$)
my $sourcename = $classNode->{Source}->{astNodeName}; my $sourcename = $classNode->{Source}->{astNodeName};
if ( $sourcename !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { if ( $sourcename !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
$sourcename =~ s!.*/(.*)!$1!m; $sourcename =~ s!.*/(.*)!$1!m;
} }
die "Empty source name for $classNode->{astNodeName}" if ( $sourcename eq '' ); die "Empty source name for $classNode->{astNodeName}" if ( $sourcename eq '' );
@ -2339,7 +2339,7 @@ sub generateAllMethods($$$$$$)
if ($classNode->{astNodeName} ne $main::globalSpaceClassName) { if ($classNode->{astNodeName} ne $main::globalSpaceClassName) {
# my $s; # my $s;
# for my $sn( @{$classNode->{Sources}} ) { # for my $sn( @{$classNode->{Sources}} ) {
# if ( ($s = $sn->{astNodeName}) !~ s!.*(kio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) { # if ( ($s = $sn->{astNodeName}) !~ s!.*(tdeio/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/)(.*)!$1$2!m ) {
# $s =~ s!.*/(.*)!$1!m; # $s =~ s!.*/(.*)!$1!m;
# } # }
# $addInclude->{$s} = 1; # $addInclude->{$s} = 1;

@ -230,7 +230,7 @@ BEGIN
'TQStyle::SubControls' => 'int', 'TQStyle::SubControls' => 'int',
); );
$headerSubdirectories = "kio/|tdevelop/|kinterfacedesigner/|kontact/|kate/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/|knewstuff/" $headerSubdirectories = "tdeio/|tdevelop/|kinterfacedesigner/|kontact/|kate/|tdeparts/|dom/|kabc/|ksettings/|kjs/|tdetexteditor/|tdeprint/|tdesu/|knewstuff/"
} }
@ -932,9 +932,9 @@ my $fhn =1; # static
delete $includes{"kshortcut.h"}; delete $includes{"kshortcut.h"};
} }
if (defined $includes{"kshortcutlist.h"}) { if (defined $includes{"kshortcutlist.h"}) {
print $fh "#include <kconfigbase.h>\n"; print $fh "#include <tdeconfigbase.h>\n";
print $fh "#include <kshortcutlist.h>\n"; print $fh "#include <kshortcutlist.h>\n";
delete $includes{"kconfigbase.h"}; delete $includes{"tdeconfigbase.h"};
delete $includes{"kshortcutlist.h"}; delete $includes{"kshortcutlist.h"};
} }
if (defined $includes{"kaction.h"}) { if (defined $includes{"kaction.h"}) {

@ -74,7 +74,7 @@
AuthInfo and Observer classes AuthInfo and Observer classes
* Converted '\c' tags in comments to pairs <code> tags * Converted '\c' tags in comments to pairs <code> tags
* Improved conversion of C++ code snippets to java * Improved conversion of C++ code snippets to java
* Fixed bug in KIO Scheduler.connect(), and the example in test/kioslave now works * Fixed bug in KIO Scheduler.connect(), and the example in test/tdeioslave now works
correctly correctly
* Added some long long types, converted to java longs (both 64 bit) * Added some long long types, converted to java longs (both 64 bit)
@ -152,7 +152,7 @@
2002-03-22 Richard Dale <duke@tipitina.demon.co.uk> 2002-03-22 Richard Dale <duke@tipitina.demon.co.uk>
* Added missing KMainWindow constructor * Added missing KMainWindow constructor
* Added KIO slot/signal types for writing as well as reading. * Added KIO slot/signal types for writing as well as reading.
* Added missing kioslave classes * Added missing tdeioslave classes
* Added new KIO classes Scheduler, KIO, ProgressBase and StatusbarProgress * Added new KIO classes Scheduler, KIO, ProgressBase and StatusbarProgress
* Fixed various method linking problems * Fixed various method linking problems
2002-03-19 Richard Dale <duke@tipitina.demon.co.uk> 2002-03-19 Richard Dale <duke@tipitina.demon.co.uk>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/authinfo.h> #include <tdeio/authinfo.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/connection.h> #include <tdeio/connection.h>
#include <tqcstring.h> #include <tqcstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/davjob.h> #include <tdeio/davjob.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqdom.h> #include <tqdom.h>
#include <kurl.h> #include <kurl.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/global.h> #include <tdeio/global.h>
#include <kio/defaultprogress.h> #include <tdeio/defaultprogress.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kurl.h> #include <kurl.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>

@ -2,10 +2,10 @@
#include <tqdir.h> #include <tqdir.h>
#include <kcombiview.h> #include <kcombiview.h>
#include <tqstring.h> #include <tqstring.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kfileview.h> #include <tdefileview.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <kfile.h> #include <tdefile.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -2,21 +2,21 @@
#include <ksslcertificatecache.h> #include <ksslcertificatecache.h>
#include <tqregion.h> #include <tqregion.h>
#include <ksslpemcallback.h> #include <ksslpemcallback.h>
#include <kio/slaveinterface.h> #include <tdeio/slaveinterface.h>
#include <tqdatetime.h> #include <tqdatetime.h>
#include <tqrect.h> #include <tqrect.h>
#include <ksslcertificate.h> #include <ksslcertificate.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kfilemetainfo.h> #include <tdefilemetainfo.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <dcopref.h> #include <dcopref.h>
#include <kdatastream.h> #include <kdatastream.h>
#include <tqdatastream.h> #include <tqdatastream.h>
#include <tqpixmap.h> #include <tqpixmap.h>
#include <ksslcertdlg.h> #include <ksslcertdlg.h>
#include <kfileitem.h> #include <tdefileitem.h>
#include <kapplication.h> #include <kapplication.h>
#include <kconfigdata.h> #include <tdeconfigdata.h>
#include <tqiconset.h> #include <tqiconset.h>
#include <tdeversion.h> #include <tdeversion.h>
#include <kicontheme.h> #include <kicontheme.h>

@ -6,7 +6,7 @@
#include <tqstring.h> #include <tqstring.h>
#include <ksimpleconfig.h> #include <ksimpleconfig.h>
#include <kurl.h> #include <kurl.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -31,18 +31,18 @@
#include <kcompletion.h> #include <kcompletion.h>
#include <kdockwidget.h> #include <kdockwidget.h>
#include <kdualcolorbtn.h> #include <kdualcolorbtn.h>
#include <kfileview.h> #include <tdefileview.h>
#include <kglobalsettings.h> #include <kglobalsettings.h>
#include <klistview.h> #include <klistview.h>
#include <kprocio.h> #include <kprocio.h>
#include <kprocess.h> #include <kprocess.h>
#include <tdeparts/part.h> #include <tdeparts/part.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <kio/slave.h> #include <tdeio/slave.h>
#include <kio/skipdlg.h> #include <tdeio/skipdlg.h>
#include <kbookmark.h> #include <kbookmark.h>
#include <kdatatool.h> #include <kdatatool.h>
#include <kfiletreeviewitem.h> #include <tdefiletreeviewitem.h>
#include <tdemdichildfrm.h> #include <tdemdichildfrm.h>
class KDEJavaSlotFactory; class KDEJavaSlotFactory;

@ -23,8 +23,8 @@
#include <tqptrlist.h> #include <tqptrlist.h>
#include <ktrader.h> #include <ktrader.h>
#include <kmainwindow.h> #include <kmainwindow.h>
#include <kfile.h> #include <tdefile.h>
#include <kfileview.h> #include <tdefileview.h>
#include <kurl.h> #include <kurl.h>
#include <kcmdlineargs.h> #include <kcmdlineargs.h>
#include <dom/dom_string.h> #include <dom/dom_string.h>

@ -4,7 +4,7 @@
#include <tqpixmap.h> #include <tqpixmap.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <kguiitem.h> #include <kguiitem.h>
#include <tqnamespace.h> #include <tqnamespace.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/global.h> #include <tdeio/global.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <kdirlister.h> #include <kdirlister.h>
#include <tqstring.h> #include <tqstring.h>

@ -7,7 +7,7 @@
#include <tqpoint.h> #include <tqpoint.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <kurl.h> #include <kurl.h>
#include <kfile.h> #include <tdefile.h>
#include <tqnamespace.h> #include <tqnamespace.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/global.h> #include <tdeio/global.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <kdirsize.h> #include <kdirsize.h>
#include <kurl.h> #include <kurl.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kconfigdata.h> #include <tdeconfigdata.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kconfigdata.h> #include <tdeconfigdata.h>
#include <tqcstring.h> #include <tqcstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqdir.h> #include <tqdir.h>
#include <kfile.h> #include <tdefile.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,12 +1,12 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqdir.h> #include <tqdir.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kfileview.h> #include <tdefileview.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <tqstring.h> #include <tqstring.h>
#include <kfiledetailview.h> #include <tdefiledetailview.h>
#include <kurl.h> #include <kurl.h>
#include <kfile.h> #include <tdefile.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,10 +1,10 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfiledialog.h> #include <tdefiledialog.h>
#include <kmimetype.h> #include <kmimetype.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <kurl.h> #include <kurl.h>
#include <kfile.h> #include <tdefile.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfilefilter.h> #include <tdefilefilter.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,7 +1,7 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <kfilefiltercombo.h> #include <tdefilefiltercombo.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,12 +1,12 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqdir.h> #include <tqdir.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kfileview.h> #include <tdefileview.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <kfileiconview.h> #include <tdefileiconview.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>
#include <kfile.h> #include <tdefile.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqpixmap.h> #include <tqpixmap.h>
#include <kfileiconview.h> #include <tdefileiconview.h>
#include <tqstring.h> #include <tqstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,8 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/global.h> #include <tdeio/global.h>
#include <kfilemetainfo.h> #include <tdefilemetainfo.h>
#include <tqpixmap.h> #include <tqpixmap.h>
#include <kfileitem.h> #include <tdefileitem.h>
#include <kmimetype.h> #include <kmimetype.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -2,7 +2,7 @@
#include <tqrect.h> #include <tqrect.h>
#include <tqpixmap.h> #include <tqpixmap.h>
#include <tqstring.h> #include <tqstring.h>
#include <kfiledetailview.h> #include <tdefiledetailview.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfilemetainfo.h> #include <tdefilemetainfo.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqvariant.h> #include <tqvariant.h>
#include <tqstringlist.h> #include <tqstringlist.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfilemetainfo.h> #include <tdefilemetainfo.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <tqvariant.h> #include <tqvariant.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfilemetainfo.h> #include <tdefilemetainfo.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqvariant.h> #include <tqvariant.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfilemetainfo.h> #include <tdefilemetainfo.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>

@ -1,12 +1,12 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqdir.h> #include <tqdir.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kfileview.h> #include <tdefileview.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <kfilepreview.h> #include <tdefilepreview.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>
#include <kfile.h> #include <tdefile.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfileshare.h> #include <tdefileshare.h>
#include <tqstring.h> #include <tqstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfiletreebranch.h> #include <tdefiletreebranch.h>
#include <kfiletreeviewitem.h> #include <tdefiletreeviewitem.h>
#include <tqpixmap.h> #include <tqpixmap.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -1,7 +1,7 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfiletreebranch.h> #include <tdefiletreebranch.h>
#include <kfiletreeview.h> #include <tdefiletreeview.h>
#include <kfiletreeviewitem.h> #include <tdefiletreeviewitem.h>
#include <tqpixmap.h> #include <tqpixmap.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfiletreeviewitem.h> #include <tdefiletreeviewitem.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfiletreeview.h> #include <tdefiletreeview.h>
#include <tqpoint.h> #include <tqpoint.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,10 +1,10 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqdir.h> #include <tqdir.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kfileview.h> #include <tdefileview.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <tqstring.h> #include <tqstring.h>
#include <kfile.h> #include <tdefile.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqdir.h> #include <tqdir.h>
#include <kfileview.h> #include <tdefileview.h>
#include <tqpoint.h> #include <tqpoint.h>
#include <kurl.h> #include <kurl.h>

@ -1,7 +1,7 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kpanelapplet.h> #include <kpanelapplet.h>
#include <tqstring.h> #include <tqstring.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <tqnamespace.h> #include <tqnamespace.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kprotocolmanager.h> #include <kprotocolmanager.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqstring.h> #include <tqstring.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kshred.h> #include <kshred.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kfilefilter.h> #include <tdefilefilter.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurlcompletion.h> #include <kurlcompletion.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/metainfojob.h> #include <tdeio/metainfojob.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <tqstringlist.h> #include <tqstringlist.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -1,13 +1,13 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/renamedlg.h> #include <tdeio/renamedlg.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kio/observer.h> #include <tdeio/observer.h>
#include <dcopclient.h> #include <dcopclient.h>
#include <kio/authinfo.h> #include <tdeio/authinfo.h>
#include <tqstring.h> #include <tqstring.h>
#include <dcopobject.h> #include <dcopobject.h>
#include <kurl.h> #include <kurl.h>
#include <kio/skipdlg.h> #include <tdeio/skipdlg.h>
#include <tqcstring.h> #include <tqcstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/passdlg.h> #include <tdeio/passdlg.h>
#include <tqstring.h> #include <tqstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -3,7 +3,7 @@
#include <tqpixmap.h> #include <tqpixmap.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <kio/previewjob.h> #include <tdeio/previewjob.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/global.h> #include <tdeio/global.h>
#include <kio/progressbase.h> #include <tdeio/progressbase.h>
#include <kurl.h> #include <kurl.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/renamedlg.h> #include <tdeio/renamedlg.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/global.h> #include <tdeio/global.h>
#include <kio/scheduler.h> #include <tdeio/scheduler.h>
#include <dcopclient.h> #include <dcopclient.h>
#include <tqstring.h> #include <tqstring.h>
#include <dcopobject.h> #include <dcopobject.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/sessiondata.h> #include <tdeio/sessiondata.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqstring.h> #include <tqstring.h>
#include <kio/skipdlg.h> #include <tdeio/skipdlg.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/slave.h> #include <tdeio/slave.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,7 +1,7 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/global.h> #include <tdeio/global.h>
#include <kio/authinfo.h> #include <tdeio/authinfo.h>
#include <kio/slavebase.h> #include <tdeio/slavebase.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/slaveinterface.h> #include <tdeio/slaveinterface.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/statusbarprogress.h> #include <tdeio/statusbarprogress.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -1,8 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kconfigdata.h> #include <tdeconfigdata.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <tqcstring.h> #include <tqcstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,8 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqstring.h> #include <tqstring.h>
#include <kconfigbase.h> #include <tdeconfigbase.h>
#include <tqcstring.h> #include <tqcstring.h>
#include <kconfigbackend.h> #include <tdeconfigbackend.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -6,7 +6,7 @@
#include <tqglobal.h> #include <tqglobal.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqstrlist.h> #include <tqstrlist.h>
#include <kconfigbase.h> #include <tdeconfigbase.h>
#include <tqpoint.h> #include <tqpoint.h>
#include <tqvariant.h> #include <tqvariant.h>
#include <tqstringlist.h> #include <tqstringlist.h>

@ -1,7 +1,7 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kconfigdata.h> #include <tdeconfigdata.h>
#include <tqstring.h> #include <tqstring.h>
#include <kconfigbase.h> #include <tdeconfigbase.h>
#include <tqcstring.h> #include <tqcstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqstring.h> #include <tqstring.h>
#include <kconfigbase.h> #include <tdeconfigbase.h>
#include <tqcstring.h> #include <tqcstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>

@ -1,8 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <tqfile.h> #include <tqfile.h>
#include <kconfigdata.h> #include <tdeconfigdata.h>
#include <tqstring.h> #include <tqstring.h>
#include <kconfigbackend.h> #include <tdeconfigbackend.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>

@ -1,24 +1,24 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/renamedlg.h> #include <tdeio/renamedlg.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <tqdatastream.h> #include <tqdatastream.h>
#include <kio/authinfo.h> #include <tdeio/authinfo.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqdom.h> #include <tqdom.h>
#include <tdeparts/part.h> #include <tdeparts/part.h>
#include <kurl.h> #include <kurl.h>
#include <kio/skipdlg.h> #include <tdeio/skipdlg.h>
#include <tqcstring.h> #include <tqcstring.h>
#include <qtjava/QtSupport.h> #include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h> #include <kdejava/KDESupport.h>
#include <kdejava/KIO.h> #include <kdejava/KIO.h>
#include <kio/job.h> #include <tdeio/job.h>
#include <kio/davjob.h> #include <tdeio/davjob.h>
#include <kio/metainfojob.h> #include <tdeio/metainfojob.h>
#include <kio/previewjob.h> #include <tdeio/previewjob.h>
#include <kio/paste.h> #include <tdeio/paste.h>
JNIEXPORT jstring JNICALL JNIEXPORT jstring JNICALL
Java_org_kde_koala_KIO_buildErrorString(JNIEnv* env, jclass cls, jint errorCode, jstring errorText) Java_org_kde_koala_KIO_buildErrorString(JNIEnv* env, jclass cls, jint errorCode, jstring errorText)

@ -1,6 +1,6 @@
//Auto-generated by kalyptus. DO NOT EDIT. //Auto-generated by kalyptus. DO NOT EDIT.
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <kio/global.h> #include <tdeio/global.h>
#include <tqstring.h> #include <tqstring.h>
#include <kurl.h> #include <kurl.h>
#include <tqcstring.h> #include <tqcstring.h>

@ -37,7 +37,7 @@ public class Job extends TQObject {
Abort this job. Abort this job.
This kills all subjobs and deletes the job. This kills all subjobs and deletes the job.
@param tquietly if false, Job will emit signal result @param tquietly if false, Job will emit signal result
and ask kio_uiserver to close the progress window. and ask tdeio_uiserver to close the progress window.
<code>tquietly</code> is set to true for subjobs. Whether applications <code>tquietly</code> is set to true for subjobs. Whether applications
should call with true or false depends on whether they rely should call with true or false depends on whether they rely
on result being emitted or not. on result being emitted or not.

@ -64,8 +64,8 @@ public class KBugReport extends KDialogBase {
*/ */
protected native boolean sendBugReport(); protected native boolean sendBugReport();
/** /**
"Configure email" has been clicked - this calls kcmshell System/email "Configure email" has been clicked - this calls tdecmshell System/email
@short "Configure email" has been clicked - this calls kcmshell System/email @short "Configure email" has been clicked - this calls tdecmshell System/email
*/ */
protected native void slotConfigureEmail(); protected native void slotConfigureEmail();
/** /**

@ -7,9 +7,9 @@ import org.kde.qt.QtSupport;
/** /**
KFile is a class which provides a namespace for some enumerated KFile is a class which provides a namespace for some enumerated
values associated with the kfile library. You will never need to values associated with the tdefile library. You will never need to
construct a KFile object itself. construct a KFile object itself.
@short KFile is a class which provides a namespace for some enumerated values associated with the kfile library. @short KFile is a class which provides a namespace for some enumerated values associated with the tdefile library.
*/ */
public class KFile implements QtSupport { public class KFile implements QtSupport {

@ -20,7 +20,7 @@ import org.kde.qt.TQWidget;
The dialog has been designed to allow applications to customise it The dialog has been designed to allow applications to customise it
by subclassing. It uses geometry management to ensure that subclasses by subclassing. It uses geometry management to ensure that subclasses
can easily add children that will be incorporated into the layout. can easily add children that will be incorporated into the layout.
\image html kfiledialog.png "KDE File Dialog" \image html tdefiledialog.png "KDE File Dialog"
See {@link KFileDialogSignals} for signals emitted by KFileDialog See {@link KFileDialogSignals} for signals emitted by KFileDialog
@author Richard J. Moore <rich@kde.org>, Carsten Pfeiffer <pfeiffer@kde.org> @author Richard J. Moore <rich@kde.org>, Carsten Pfeiffer <pfeiffer@kde.org>
@ -225,11 +225,11 @@ public class KFileDialog extends KDialogBase {
If no | is found in the expression, just the namefilter is If no | is found in the expression, just the namefilter is
shown. Examples: shown. Examples:
<pre> <pre>
kfile.setFilter("*.cpp|C++ Source Files\n.h|Header files"); tdefile.setFilter("*.cpp|C++ Source Files\n.h|Header files");
kfile.setFilter("*.cpp"); tdefile.setFilter("*.cpp");
kfile.setFilter("*.cpp|Sources (.cpp)"); tdefile.setFilter("*.cpp|Sources (.cpp)");
kfile.setFilter("*.cpp|" + i18n("Sources (.cpp)")); tdefile.setFilter("*.cpp|" + i18n("Sources (.cpp)"));
kfile.setFilter("*.cpp .cc .C|C++ Source Files\n.h .H|Header files"); tdefile.setFilter("*.cpp .cc .C|C++ Source Files\n.h .H|Header files");
</pre> </pre>
Note: The text to display is not parsed in any way. So, if you Note: The text to display is not parsed in any way. So, if you
want to show the suffix to select by a specific filter, you must want to show the suffix to select by a specific filter, you must
@ -239,8 +239,8 @@ public class KFileDialog extends KDialogBase {
a '\'. You can specify multiple mimetypes like this (separated with a '\'. You can specify multiple mimetypes like this (separated with
space): space):
<pre> <pre>
kfile.setFilter( "image/png text/html text/plain" ); tdefile.setFilter( "image/png text/html text/plain" );
kfile.setFilter( "*.cue|CUE\\/BIN Files (.cue)" ); tdefile.setFilter( "*.cue|CUE\\/BIN Files (.cue)" );
</pre> </pre>
@short Sets the filter to be used to <code>filter.</code> @short Sets the filter to be used to <code>filter.</code>
@see #filterChanged @see #filterChanged
@ -326,7 +326,7 @@ public class KFileDialog extends KDialogBase {
yourAction = new KAction( i18n("Your Action"), 0, yourAction = new KAction( i18n("Your Action"), 0,
this, SLOT("yourSlot()"), this, SLOT("yourSlot()"),
this, "action name" ); this, "action name" );
yourAction.plug( kfileDialog.toolBar() ); yourAction.plug( tdefileDialog.toolBar() );
</pre> </pre>
@short Returns a pointer to the toolbar. @short Returns a pointer to the toolbar.
*/ */

@ -447,11 +447,11 @@ public class KFileItem implements QtSupport {
I.e. a KFileIconView that associates a KFileIconViewItem (an item suitable I.e. a KFileIconView that associates a KFileIconViewItem (an item suitable
for use with TQIconView) does for use with TQIconView) does
<pre> <pre>
kfileItem.setExtraData( this, iconViewItem ); tdefileItem.setExtraData( this, iconViewItem );
</pre> </pre>
and can later access the iconViewItem by doing and can later access the iconViewItem by doing
<pre> <pre>
KFileIconViewItem iconViewItem = (KFileIconViewItem)( kfileItem.extraData( this )); KFileIconViewItem iconViewItem = (KFileIconViewItem)( tdefileItem.extraData( this ));
</pre> </pre>
This is usually more efficient then having every view associate data to This is usually more efficient then having every view associate data to
items by using a separate TQDict or TQMap. items by using a separate TQDict or TQMap.

@ -92,7 +92,7 @@ import org.kde.qt.TQObject;
Example: Example:
@code @code
typedef KGenericFactory<FooPlugin> FooFactory; typedef KGenericFactory<FooPlugin> FooFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_foo, FooFactory("kfile_foo")); K_EXPORT_COMPONENT_FACTORY(tdefile_foo, FooFactory("tdefile_foo"));
@endcode @endcode
To make your plugin available within KDE, you also need to provide a To make your plugin available within KDE, you also need to provide a
<code>.desktop</code> file which describes your plugin. The required fields in the <code>.desktop</code> file which describes your plugin. The required fields in the
@ -115,7 +115,7 @@ import org.kde.qt.TQObject;
Type=Service Type=Service
Name=Foo Info Name=Foo Info
ServiceTypes=KFilePlugin ServiceTypes=KFilePlugin
X-TDE-Library=kfile_foo X-TDE-Library=tdefile_foo
MimeType=application/x-foo MimeType=application/x-foo
PreferredGroups=FooInfo PreferredGroups=FooInfo
PreferredItems=Items,Size PreferredItems=Items,Size

@ -147,7 +147,7 @@ public class KHistoryCombo extends KComboBox {
KPixmapProvider is just an abstract class with the one pure virtual KPixmapProvider is just an abstract class with the one pure virtual
method KPixmapProvider.pixmapFor(). This method is called whenever method KPixmapProvider.pixmapFor(). This method is called whenever
an item is added to the KHistoryComboBox. Implement it to return your an item is added to the KHistoryComboBox. Implement it to return your
own custom pixmaps, or use the KURLPixmapProvider from libkio, own custom pixmaps, or use the KURLPixmapProvider from libtdeio,
which uses KMimeType.pixmapForURL to resolve icons. which uses KMimeType.pixmapForURL to resolve icons.
Set <code>prov</code> to null if you want to disable pixmaps. Default no pixmaps. Set <code>prov</code> to null if you want to disable pixmaps. Default no pixmaps.
@short Sets a pixmap provider, so that items in the combobox can have a pixmap. @short Sets a pixmap provider, so that items in the combobox can have a pixmap.

@ -680,7 +680,7 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
Save your instance-specific properties. The function is Save your instance-specific properties. The function is
invoked when the session manager requests your application invoked when the session manager requests your application
to save its state. to save its state.
You <b>must</b> <b>not</b> change the group of the <code>kconfig</code> object, since You <b>must</b> <b>not</b> change the group of the <code>tdeconfig</code> object, since
KMainWindow uses one group for each window. Please KMainWindow uses one group for each window. Please
reimplement these function in childclasses. reimplement these function in childclasses.
Note: No user interaction is allowed Note: No user interaction is allowed

@ -13,7 +13,7 @@ import java.util.ArrayList;
KDE supports. In addition you can find out lots of information KDE supports. In addition you can find out lots of information
about a certain protocol. A KProtocolInfo instance represents a about a certain protocol. A KProtocolInfo instance represents a
single protocol. Most of the functionality is provided by the static single protocol. Most of the functionality is provided by the static
methods that scan the .protocol files of all installed kioslaves to get methods that scan the .protocol files of all installed tdeioslaves to get
this information. this information.
.protocol files are installed in the "services" resource. .protocol files are installed in the "services" resource.
@author Torben Weis <weis@kde.org> @author Torben Weis <weis@kde.org>
@ -483,7 +483,7 @@ public class KProtocolInfo extends KSycocaEntry {
*/ */
public static native int uriParseMode(String protocol); public static native int uriParseMode(String protocol);
/** /**
Returns the list of capabilities provided by the kioslave implementing Returns the list of capabilities provided by the tdeioslave implementing
this protocol. this protocol.
This corresponds to the "Capabilities=" field in the protocol description file. This corresponds to the "Capabilities=" field in the protocol description file.
The capability names are not defined globally, they are up to each The capability names are not defined globally, they are up to each
@ -491,11 +491,11 @@ public class KProtocolInfo extends KSycocaEntry {
special command for mounting, one would add the string "Mount" to the special command for mounting, one would add the string "Mount" to the
capabilities list, and applications could check for that string capabilities list, and applications could check for that string
before sending a special() command that would otherwise do nothing before sending a special() command that would otherwise do nothing
on older kioslave implementations. on older tdeioslave implementations.
@param protocol the protocol to check @param protocol the protocol to check
@return the list of capabilities. @return the list of capabilities.
@short Returns the list of capabilities provided by the kioslave implementing this protocol. @short Returns the list of capabilities provided by the tdeioslave implementing this protocol.
*/ */
public static native ArrayList capabilities(String protocol); public static native ArrayList capabilities(String protocol);
/** /**

@ -337,8 +337,8 @@ public class KProtocolManager implements QtSupport {
public static native boolean persistentConnections(); public static native boolean persistentConnections();
/** /**
Force a reload of the general config file of Force a reload of the general config file of
io-slaves ( kioslaverc). io-slaves ( tdeioslaverc).
@short Force a reload of the general config file of io-slaves ( kioslaverc). @short Force a reload of the general config file of io-slaves ( tdeioslaverc).
*/ */
public static native void reparseConfiguration(); public static native void reparseConfiguration();
/** /**

@ -80,8 +80,8 @@ public class KSycoca extends TQObject implements DCOPObjectInterface {
*/ */
public native void disableAutoRebuild(); public native void disableAutoRebuild();
/** /**
internal function for receiving kded/kbuildsycoca's signal, when the sycoca file changes internal function for receiving kded/tdebuildsycoca's signal, when the sycoca file changes
@short internal function for receiving kded/kbuildsycoca's signal, when the sycoca file changes @short internal function for receiving kded/tdebuildsycoca's signal, when the sycoca file changes
*/ */
// void notifyDatabaseChanged(const TQStringList& arg1); >>>> NOT CONVERTED // void notifyDatabaseChanged(const TQStringList& arg1); >>>> NOT CONVERTED
/** /**

@ -8,7 +8,7 @@ import org.kde.qt.TQIODeviceInterface;
/** /**
This class implements a kioslave to access zip files from KDE. This class implements a tdeioslave to access zip files from KDE.
You can use it in IO_ReadOnly or in IO_WriteOnly mode, and it You can use it in IO_ReadOnly or in IO_WriteOnly mode, and it
behaves just as expected. behaves just as expected.
It can also be used in IO_ReadWrite mode, in this case one can It can also be used in IO_ReadWrite mode, in this case one can

@ -129,7 +129,7 @@ public class Observer extends TQObject implements DCOPObjectInterface {
@param buttonYes the text of the "Yes" button @param buttonYes the text of the "Yes" button
@param buttonNo the text of the "No button @param buttonNo the text of the "No button
@param dontAskAgainName A checkbox is added with which further confirmation can be turned off. @param dontAskAgainName A checkbox is added with which further confirmation can be turned off.
The string is used to lookup and store the setting in kioslaverc. The string is used to lookup and store the setting in tdeioslaverc.
@short Popup a message box. @short Popup a message box.
*/ */
public static native int messageBox(int progressId, int type, String text, String caption, String buttonYes, String buttonNo, String dontAskAgainName); public static native int messageBox(int progressId, int type, String text, String caption, String buttonYes, String buttonNo, String dontAskAgainName);

@ -44,7 +44,7 @@ public class SimpleJob extends Job {
This kills all subjobs and deletes the job. This kills all subjobs and deletes the job.
@param tquietly if true, Job will emit signal result @param tquietly if true, Job will emit signal result
Should only be set to false when the user kills the job Should only be set to false when the user kills the job
(from kio_uiserver), not when you want to abort a job. (from tdeio_uiserver), not when you want to abort a job.
@short Abort job. @short Abort job.
*/ */
public native void kill(boolean tquietly); public native void kill(boolean tquietly);

@ -96,33 +96,33 @@ public class Slave extends SlaveInterface {
*/ */
public native String passwd(); public native String passwd();
/** /**
Suspends the operation of the attached kioslave. Suspends the operation of the attached tdeioslave.
@short Suspends the operation of the attached kioslave. @short Suspends the operation of the attached tdeioslave.
*/ */
public native void suspend(); public native void suspend();
/** /**
Resumes the operation of the attached kioslave. Resumes the operation of the attached tdeioslave.
@short Resumes the operation of the attached kioslave. @short Resumes the operation of the attached tdeioslave.
*/ */
public native void resume(); public native void resume();
/** /**
Tells wether the kioslave is suspended. Tells wether the tdeioslave is suspended.
@return true if the kioslave is suspended. @return true if the tdeioslave is suspended.
@short Tells wether the kioslave is suspended. @short Tells wether the tdeioslave is suspended.
*/ */
public native boolean suspended(); public native boolean suspended();
/** /**
Sends the given command to the kioslave. Sends the given command to the tdeioslave.
@param cmd command id @param cmd command id
@param data byte array containing data @param data byte array containing data
@short Sends the given command to the kioslave. @short Sends the given command to the tdeioslave.
*/ */
public native void send(int cmd, byte[] data); public native void send(int cmd, byte[] data);
public native void send(int cmd); public native void send(int cmd);
/** /**
Puts the kioslave associated with <code>url</code> at halt. Puts the tdeioslave associated with <code>url</code> at halt.
@short Puts the kioslave associated with <code>url</code> at halt. @short Puts the tdeioslave associated with <code>url</code> at halt.
*/ */
public native void hold(KURL url); public native void hold(KURL url);
/** /**

@ -7,11 +7,11 @@ import org.kde.qt.QtSupport;
/** /**
There are two classes that specifies the protocol between application (job) There are two classes that specifies the protocol between application (job)
and kioslave. SlaveInterface is the class to use on the application end, and tdeioslave. SlaveInterface is the class to use on the application end,
SlaveBase is the one to use on the slave end. SlaveBase is the one to use on the slave end.
Slave implementations should simply inherit SlaveBase Slave implementations should simply inherit SlaveBase
A call to foo() results in a call to slotFoo() on the other end. A call to foo() results in a call to slotFoo() on the other end.
@short There are two classes that specifies the protocol between application (job) and kioslave. @short There are two classes that specifies the protocol between application (job) and tdeioslave.
*/ */
public class SlaveBase implements QtSupport { public class SlaveBase implements QtSupport {
@ -209,7 +209,7 @@ public class SlaveBase implements QtSupport {
Note: for ContinueCancel, buttonYes is the continue button and buttonNo is unused. Note: for ContinueCancel, buttonYes is the continue button and buttonNo is unused.
and for Information, none is used. and for Information, none is used.
@param dontAskAgainName A checkbox is added with which further confirmation can be turned off. @param dontAskAgainName A checkbox is added with which further confirmation can be turned off.
The string is used to lookup and store the setting in kioslaverc. The string is used to lookup and store the setting in tdeioslaverc.
@return a button code, as defined in KMessageBox, or 0 on communication error. @return a button code, as defined in KMessageBox, or 0 on communication error.
@short Call this to show a message box from the slave @short Call this to show a message box from the slave

@ -9,11 +9,11 @@ import org.kde.qt.TQObject;
/** /**
There are two classes that specifies the protocol between application There are two classes that specifies the protocol between application
(KIO.Job) and kioslave. SlaveInterface is the class to use on the application (KIO.Job) and tdeioslave. SlaveInterface is the class to use on the application
end, SlaveBase is the one to use on the slave end. end, SlaveBase is the one to use on the slave end.
A call to foo() results in a call to slotFoo() on the other end. A call to foo() results in a call to slotFoo() on the other end.
See {@link SlaveInterfaceSignals} for signals emitted by SlaveInterface See {@link SlaveInterfaceSignals} for signals emitted by SlaveInterface
@short There are two classes that specifies the protocol between application (KIO.Job) and kioslave. @short There are two classes that specifies the protocol between application (KIO.Job) and tdeioslave.
*/ */
public class SlaveInterface extends TQObject { public class SlaveInterface extends TQObject {

@ -33,7 +33,7 @@ public class StatJob extends SimpleJob {
/** /**
A stat() can have two meanings. Either we want to read from this URL, A stat() can have two meanings. Either we want to read from this URL,
or to check if we can write to it. First case is "source", second is "dest". or to check if we can write to it. First case is "source", second is "dest".
It is necessary to know what the StatJob is for, to tune the kioslave's behavior It is necessary to know what the StatJob is for, to tune the tdeioslave's behavior
(e.g. with FTP). (e.g. with FTP).
@param source true for "source" mode, false for "dest" mode @param source true for "source" mode, false for "dest" mode
@short A stat() can have two meanings. @short A stat() can have two meanings.

@ -221,8 +221,8 @@ public class TDECModule extends TQWidget {
Help: shows a "Help" button. Help: shows a "Help" button.
Default: shows a "Use Defaults" button Default: shows a "Use Defaults" button
Apply: in kcontrol this will show an "Apply" and "Reset" button Apply: in kcontrol this will show an "Apply" and "Reset" button
in kcmshell this will show an "Ok", "Apply" and "Cancel" button in tdecmshell this will show an "Ok", "Apply" and "Cancel" button
If Apply is not specified, kcmshell will show a "Close" button. If Apply is not specified, tdecmshell will show a "Close" button.
@short Sets the buttons to display. @short Sets the buttons to display.
@see TDECModule#buttons @see TDECModule#buttons
*/ */

@ -138,7 +138,7 @@ public class TDEConfig extends TDEConfigBase {
public native boolean forceGlobal(); public native boolean forceGlobal();
/** /**
Checks whether the config file contains the update <code>id</code> Checks whether the config file contains the update <code>id</code>
as contained in <code>updateFile.</code> If not, it runs kconf_update as contained in <code>updateFile.</code> If not, it runs tdeconf_update
to update the config file. to update the config file.
If you install config update files with critical fixes If you install config update files with critical fixes
you may wish to use this method to verify that a critical you may wish to use this method to verify that a critical

@ -709,7 +709,7 @@ public class KIO {
@param url the URL of the file @param url the URL of the file
@param sideIsSource is true when stating a source file (we will do a get on it if @param sideIsSource is true when stating a source file (we will do a get on it if
the stat works) and false when stating a destination file (target of a copy). the stat works) and false when stating a destination file (target of a copy).
The reason for this parameter is that in some cases the kioslave might not The reason for this parameter is that in some cases the tdeioslave might not
be able to determine a file's existence (e.g. HTTP doesn't allow it, FTP be able to determine a file's existence (e.g. HTTP doesn't allow it, FTP
has issues with case-sensitivity on some systems). has issues with case-sensitivity on some systems).
When the slave can't reliably determine the existence of a file, it will: When the slave can't reliably determine the existence of a file, it will:

@ -510,7 +510,7 @@ void stopJob() {
} }
static String version = "v0.0.0 0000"; // :-) static String version = "v0.0.0 0000"; // :-)
static String description = "Test for kioslaves"; static String description = "Test for tdeioslaves";
static String[][] options = static String[][] options =
{ {
{ "s", null, null }, { "s", null, null },
@ -524,7 +524,7 @@ static String[][] options =
}; };
public static void main(String[] argv) { public static void main(String[] argv) {
TDECmdLineArgs.init( argv, "kioslavetest", "KIOSlaveTest", description, version ); TDECmdLineArgs.init( argv, "tdeioslavetest", "KIOSlaveTest", description, version );
TDECmdLineArgs.addCmdLineOptions( options ); TDECmdLineArgs.addCmdLineOptions( options );
TDEApplication app = new TDEApplication(); TDEApplication app = new TDEApplication();

@ -9,7 +9,7 @@ libkjsembedbindings_la_SOURCES = image_imp.cpp \
painter_imp.cpp \ painter_imp.cpp \
pixmap_imp.cpp \ pixmap_imp.cpp \
netaccess_imp.cpp \ netaccess_imp.cpp \
kconfig_imp.cpp \ tdeconfig_imp.cpp \
bindingobject.cpp \ bindingobject.cpp \
movie_imp.cpp \ movie_imp.cpp \
sql_imp.cpp \ sql_imp.cpp \

@ -15,7 +15,7 @@ HEADERS += bindingobject.h \
pen_imp.h \ pen_imp.h \
pixmap_imp.h \ pixmap_imp.h \
sql_imp.h \ sql_imp.h \
kconfig_imp.h \ tdeconfig_imp.h \
point_imp.h \ point_imp.h \
rect_imp.h \ rect_imp.h \
size_imp.h size_imp.h
@ -29,7 +29,7 @@ SOURCES += bindingobject.cpp \
pen_imp.cpp \ pen_imp.cpp \
pixmap_imp.cpp \ pixmap_imp.cpp \
sql_imp.cpp \ sql_imp.cpp \
kconfig_imp.cpp \ tdeconfig_imp.cpp \
point_imp.cpp \ point_imp.cpp \
rect_imp.cpp \ rect_imp.cpp \
size_imp.cpp size_imp.cpp

@ -605,7 +605,7 @@ TQString JSDCOPClient::dcopStart( const TQString &appName, const TQStringList& a
TQDataStream arg(data, IO_WriteOnly); TQDataStream arg(data, IO_WriteOnly);
arg << appName << args; arg << appName << args;
if ( !kapp->dcopClient()->call( "klauncher", "klauncher", startFunction.latin1(), data, replyType, replyData) ) if ( !kapp->dcopClient()->call( "tdelauncher", "tdelauncher", startFunction.latin1(), data, replyType, replyData) )
{ {
kdWarning() << "Error: Dcop call failed" << endl; kdWarning() << "Error: Dcop call failed" << endl;
} }

@ -21,7 +21,7 @@
*/ */
#include "netaccess_imp.h" #include "netaccess_imp.h"
#include <kio/netaccess.h> #include <tdeio/netaccess.h>
#include <kpropertiesdialog.h> #include <kpropertiesdialog.h>
#include <kurl.h> #include <kurl.h>

@ -17,15 +17,15 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
*/ */
#include "kconfig_imp.h" #include "tdeconfig_imp.h"
#include <kjsembed/global.h> #include <kjsembed/global.h>
#ifndef QT_ONLY #ifndef QT_ONLY
#include <kconfig.h> #include <tdeconfig.h>
#include <kstddirs.h> #include <kstddirs.h>
#include <kapplication.h> #include <kapplication.h>
#include "kconfig_imp.moc" #include "tdeconfig_imp.moc"
#else #else
#include <tqsettings.h> #include <tqsettings.h>
#endif #endif

@ -20,7 +20,7 @@
#ifndef QT_ONLY #ifndef QT_ONLY
#include <kcolordialog.h> #include <kcolordialog.h>
#include <kfiledialog.h> #include <tdefiledialog.h>
#include <kpropertiesdialog.h> #include <kpropertiesdialog.h>
#else #else

@ -328,7 +328,7 @@
2004-11-30 Tuesday 17:47 geiseri 2004-11-30 Tuesday 17:47 geiseri
test kconfig more robustly. test tdeconfig more robustly.
2004-11-30 Tuesday 12:02 geiseri 2004-11-30 Tuesday 12:02 geiseri

@ -46,7 +46,7 @@ http://developer.kde.org/documentation/tutorials/xmlui/preface.html
them more maintainable. them more maintainable.
For more details, consult : For more details, consult :
http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html http://developer.kde.org/documentation/tutorials/tdeconfigxt/tdeconfigxt.html
* With KParts, you can embed other kde components in your program, or make your program * With KParts, you can embed other kde components in your program, or make your program
embeddable in other apps. For example, the kmplayer kpart can be called to play videos embeddable in other apps. For example, the kmplayer kpart can be called to play videos

@ -92,7 +92,7 @@ mw.openFile = function()
if ( filename.length > 0 ) { if ( filename.length > 0 ) {
this.load( filename ); this.load( filename );
openrecent_action.addURL( filename ); openrecent_action.addURL( filename );
openrecent_action.saveEntries( System.KJSConfig.kconfig(), 'test' ); openrecent_action.saveEntries( System.KJSConfig.tdeconfig(), 'test' );
System.KJSConfig.sync(); System.KJSConfig.sync();
} }
} }
@ -117,7 +117,7 @@ mw.saveFileAs = function()
sb.message( filename ); sb.message( filename );
this.imgfile = filename; this.imgfile = filename;
openrecent_action.addURL( filename ); openrecent_action.addURL( filename );
openrecent_action.saveEntries( System.KJSConfig.kconfig(), 'test' ); openrecent_action.saveEntries( System.KJSConfig.tdeconfig(), 'test' );
System.KJSConfig.sync(); System.KJSConfig.sync();
} }
} }
@ -154,7 +154,7 @@ mw.setup_actions = function()
openrecent_action = StdAction.openRecent( null, '', ac ); openrecent_action = StdAction.openRecent( null, '', ac );
openrecent_action.connect( openrecent_action, 'urlSelected(const KURL&)', this, 'load' ); openrecent_action.connect( openrecent_action, 'urlSelected(const KURL&)', this, 'load' );
openrecent_action.loadEntries( System.KJSConfig.kconfig(), 'test' ); openrecent_action.loadEntries( System.KJSConfig.tdeconfig(), 'test' );
save_action = StdAction.save( null, '', ac ); save_action = StdAction.save( null, '', ac );
save_action.connect( save_action, 'activated()', this, 'saveFile' ); save_action.connect( save_action, 'activated()', this, 'saveFile' );

@ -28,7 +28,7 @@
#include "builtins/resources.h" #include "builtins/resources.h"
#endif // QT_ONLY #endif // QT_ONLY
#include "bindings/kconfig_imp.h" #include "bindings/tdeconfig_imp.h"
#include "jsfactory_imp.h" #include "jsfactory_imp.h"
#include "jsbuiltinproxy.h" #include "jsbuiltinproxy.h"

@ -113,7 +113,7 @@
#include "bindings/painter_imp.h" #include "bindings/painter_imp.h"
#include "bindings/movie_imp.h" #include "bindings/movie_imp.h"
#include "bindings/sql_imp.h" #include "bindings/sql_imp.h"
#include "bindings/kconfig_imp.h" #include "bindings/tdeconfig_imp.h"
#include "bindings/brush_imp.h" #include "bindings/brush_imp.h"
#include "bindings/size_imp.h" #include "bindings/size_imp.h"
#include "bindings/rect_imp.h" #include "bindings/rect_imp.h"

@ -26,12 +26,12 @@ libqprocessplugin_la_LDFLAGS = -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT)
libqprocessplugin_la_LIBADD = $(LIB_QT) $(LIB_KPARTS) $(LIB_TDECORE) $(LIB_KFILE) ../libkjsembed.la libqprocessplugin_la_LIBADD = $(LIB_QT) $(LIB_KPARTS) $(LIB_TDECORE) $(LIB_KFILE) ../libkjsembed.la
# the Plugin's source, library search path, and link libraries # the Plugin's source, library search path, and link libraries
libfileitemplugin_la_SOURCES = kfileitemloader.cpp libfileitemplugin_la_SOURCES = tdefileitemloader.cpp
libfileitemplugin_la_LDFLAGS = -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT) -lkjs -ltdefx $(all_libraries) libfileitemplugin_la_LDFLAGS = -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT) -lkjs -ltdefx $(all_libraries)
libfileitemplugin_la_LIBADD = $(LIB_KPARTS) $(LIB_KFILE) ../libkjsembed.la libfileitemplugin_la_LIBADD = $(LIB_KPARTS) $(LIB_KFILE) ../libkjsembed.la
# this is where the desktop file will go # this is where the desktop file will go
plugindesktopdir = $(kde_servicesdir) plugindesktopdir = $(kde_servicesdir)
plugindesktop_DATA = imagefx_plugin.desktop qprocess_plugin.desktop kfileitem_plugin.desktop plugindesktop_DATA = imagefx_plugin.desktop qprocess_plugin.desktop tdefileitem_plugin.desktop
noinst_DATA = customobject_plugin.desktop customqobject_plugin.desktop noinst_DATA = customobject_plugin.desktop customqobject_plugin.desktop

@ -17,7 +17,7 @@
* Free Software Foundation, Inc., * * Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/ ***************************************************************************/
#include "kfileitemloader.h" #include "tdefileitemloader.h"
#include <kjsembed/jsopaqueproxy.h> #include <kjsembed/jsopaqueproxy.h>
#include <kjsembed/jsbinding.h> #include <kjsembed/jsbinding.h>
@ -25,7 +25,7 @@
#include <kjsembed/jsfactory_imp.h> #include <kjsembed/jsfactory_imp.h>
#include <kjsembed/kjsembedpart.h> #include <kjsembed/kjsembedpart.h>
#include <kfileitem.h> #include <tdefileitem.h>
#include <kdebug.h> #include <kdebug.h>
namespace KJSEmbed { namespace KJSEmbed {

@ -135,7 +135,7 @@
2005-04-03 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2005-04-03 Richard Dale <Richard_Dale@tipitina.demon.co.uk>
* Added some #ifdefs so the bindings build with KDE 3.1.x * Added some #ifdefs so the bindings build with KDE 3.1.x
* Fixed problem with rbkconfig_compile Makefile.am * Fixed problem with rbtdeconfig_compile Makefile.am
2005-03-30 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2005-03-30 Richard Dale <Richard_Dale@tipitina.demon.co.uk>
@ -150,7 +150,7 @@
2005-01-27 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2005-01-27 Richard Dale <Richard_Dale@tipitina.demon.co.uk>
* Added some fixes for the rbkconfig_compiler code generation and * Added some fixes for the rbtdeconfig_compiler code generation and
example code. example code.
* The method 'isImmutable' is added to KDE::ConfigSkeletonItems * The method 'isImmutable' is added to KDE::ConfigSkeletonItems
as a special case - it's missing from the Smoke runtime as it's as a special case - it's missing from the Smoke runtime as it's
@ -158,12 +158,12 @@
2005-01-26 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2005-01-26 Richard Dale <Richard_Dale@tipitina.demon.co.uk>
* Translated the rbkconfig_compiler examples from C++ to ruby, * Translated the rbtdeconfig_compiler examples from C++ to ruby,
and improved the build rules in the Makefile.ams and improved the build rules in the Makefile.ams
2005-01-20 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2005-01-20 Richard Dale <Richard_Dale@tipitina.demon.co.uk>
* The rbkconfig_compiler now uses TQt::Variants to hold the values in KDE::ConfigSkeleton * The rbtdeconfig_compiler now uses TQt::Variants to hold the values in KDE::ConfigSkeleton
instance variables. instance variables.
* The values of the KDE::ConfigSkeletonItems are then set as properties with the TQt::Variants. * The values of the KDE::ConfigSkeletonItems are then set as properties with the TQt::Variants.
It wasn't possible to handle references to primitive types such as 'int&' via ruby, so properties are It wasn't possible to handle references to primitive types such as 'int&' via ruby, so properties are
@ -172,13 +172,13 @@
2005-01-20 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2005-01-20 Richard Dale <Richard_Dale@tipitina.demon.co.uk>
* Tidied up the rbkconfig_compiler code * Tidied up the rbtdeconfig_compiler code
* Added marshaller for TDEConfigSkeleton::ItemEnum::Choice lists to and from ruby Arrays, * Added marshaller for TDEConfigSkeleton::ItemEnum::Choice lists to and from ruby Arrays,
and accessor methods for the Item::Enum::Choice struct. and accessor methods for the Item::Enum::Choice struct.
2005-01-18 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2005-01-18 Richard Dale <Richard_Dale@tipitina.demon.co.uk>
* Added rbkconfig_compiler for compiling .kcfg files to ruby * Added rbtdeconfig_compiler for compiling .kcfg files to ruby
2004-12-29 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2004-12-29 Richard Dale <Richard_Dale@tipitina.demon.co.uk>

@ -1 +1 @@
SUBDIRS = korundum rbkconfig_compiler SUBDIRS = korundum rbtdeconfig_compiler

@ -27,9 +27,9 @@
#include <kapplication.h> #include <kapplication.h>
#include <kurl.h> #include <kurl.h>
#if TDE_VERSION >= 0x030200 #if TDE_VERSION >= 0x030200
#include <kconfigskeleton.h> #include <tdeconfigskeleton.h>
#endif #endif
#include <kio/global.h> #include <tdeio/global.h>
#include <tdeparts/browserextension.h> #include <tdeparts/browserextension.h>
#include <kde_terminal_interface.h> #include <kde_terminal_interface.h>
@ -52,8 +52,8 @@
extern "C" { extern "C" {
extern VALUE qt_internal_module; extern VALUE qt_internal_module;
extern VALUE kconfigskeleton_class; extern VALUE tdeconfigskeleton_class;
extern VALUE kconfigskeleton_itemenum_choice_class; extern VALUE tdeconfigskeleton_itemenum_choice_class;
extern VALUE kio_udsatom_class; extern VALUE kio_udsatom_class;
extern VALUE konsole_part_class; extern VALUE konsole_part_class;
extern VALUE set_obj_info(const char * className, smokeruby_object * o); extern VALUE set_obj_info(const char * className, smokeruby_object * o);
@ -907,7 +907,7 @@ public:
extern "C" { extern "C" {
extern void Init_qtruby(); extern void Init_qtruby();
extern void set_new_kde(VALUE (*new_kde) (int, VALUE *, VALUE)); extern void set_new_kde(VALUE (*new_kde) (int, VALUE *, VALUE));
extern void set_kconfigskeletonitem_immutable(VALUE (*kconfigskeletonitem_immutable) (VALUE)); extern void set_tdeconfigskeletonitem_immutable(VALUE (*tdeconfigskeletonitem_immutable) (VALUE));
extern void set_kde_resolve_classname(const char * (*kde_resolve_classname) (Smoke*, int, void *)); extern void set_kde_resolve_classname(const char * (*kde_resolve_classname) (Smoke*, int, void *));
extern const char * kde_resolve_classname(Smoke* smoke, int classId, void * ptr); extern const char * kde_resolve_classname(Smoke* smoke, int classId, void * ptr);
extern VALUE new_qt(int argc, VALUE * argv, VALUE klass); extern VALUE new_qt(int argc, VALUE * argv, VALUE klass);
@ -1054,7 +1054,7 @@ new_kde(int argc, VALUE * argv, VALUE klass)
#if TDE_VERSION >= 0x030200 #if TDE_VERSION >= 0x030200
static VALUE static VALUE
kconfigskeletonitem_immutable(VALUE self) tdeconfigskeletonitem_immutable(VALUE self)
{ {
smokeruby_object *o = value_obj_info(self); smokeruby_object *o = value_obj_info(self);
TDEConfigSkeletonItem * item = (TDEConfigSkeletonItem *) o->ptr; TDEConfigSkeletonItem * item = (TDEConfigSkeletonItem *) o->ptr;
@ -1156,7 +1156,7 @@ Init_korundum()
set_new_kde(new_kde); set_new_kde(new_kde);
#if TDE_VERSION >= 0x030200 #if TDE_VERSION >= 0x030200
set_kconfigskeletonitem_immutable(kconfigskeletonitem_immutable); set_tdeconfigskeletonitem_immutable(tdeconfigskeletonitem_immutable);
#endif #endif
set_kde_resolve_classname(kde_resolve_classname); set_kde_resolve_classname(kde_resolve_classname);
@ -1174,7 +1174,7 @@ Init_korundum()
rb_define_singleton_method(kde_module, "dcop_send", (VALUE (*) (...)) dcop_send, -1); rb_define_singleton_method(kde_module, "dcop_send", (VALUE (*) (...)) dcop_send, -1);
#if TDE_VERSION >= 0x030200 #if TDE_VERSION >= 0x030200
rb_define_method(kconfigskeleton_class, "addItem", (VALUE (*) (...)) config_additem, -1); rb_define_method(tdeconfigskeleton_class, "addItem", (VALUE (*) (...)) config_additem, -1);
#endif #endif
rb_define_method(konsole_part_class, "startProgram", (VALUE (*) (...)) konsole_part_startprogram, 2); rb_define_method(konsole_part_class, "startProgram", (VALUE (*) (...)) konsole_part_startprogram, 2);

@ -28,25 +28,25 @@
#include <kservice.h> #include <kservice.h>
#include <tdesycocatype.h> #include <tdesycocatype.h>
#include <kmainwindow.h> #include <kmainwindow.h>
#include <kfile.h> #include <tdefile.h>
#include <kfileview.h> #include <tdefileview.h>
#include <kurl.h> #include <kurl.h>
#include <kcmdlineargs.h> #include <kcmdlineargs.h>
#include <kaction.h> #include <kaction.h>
#include <kdockwidget.h> #include <kdockwidget.h>
#include <kfiletreebranch.h> #include <tdefiletreebranch.h>
#include <kfiletreeviewitem.h> #include <tdefiletreeviewitem.h>
#include <tdehtml_part.h> #include <tdehtml_part.h>
#include <tdeparts/plugin.h> #include <tdeparts/plugin.h>
#include <kuserprofile.h> #include <kuserprofile.h>
#include <kaboutdata.h> #include <kaboutdata.h>
#include <karchive.h> #include <karchive.h>
#if TDE_VERSION >= 0x030200 #if TDE_VERSION >= 0x030200
#include <kconfigskeleton.h> #include <tdeconfigskeleton.h>
#include <kplugininfo.h> #include <kplugininfo.h>
#include <kmountpoint.h> #include <kmountpoint.h>
#endif #endif
#include <kio/jobclasses.h> #include <tdeio/jobclasses.h>
#include <dom/dom_node.h> #include <dom/dom_node.h>
#include <dom/dom_element.h> #include <dom/dom_element.h>
#include <dom/dom_string.h> #include <dom/dom_string.h>

@ -1,28 +0,0 @@
SUBDIRS = . tests
RBUIC=rbuic
.ui.rb:
$(RBUIC) -tr ${UIC_TR} -kde $*.ui -o $@
exampleprefs_base.rb: $(srcdir)/example.kcfg rbkconfig_compiler $(srcdir)/exampleprefs_base.kcfgc
./rbkconfig_compiler $(srcdir)/example.kcfg $(srcdir)/exampleprefs_base.kcfgc
AM_CPPFLAGS = -I$(top_srcdir)/tdecore -I$(top_srcdir) $(all_includes)
bin_PROGRAMS = rbkconfig_compiler
rbkconfig_compiler_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
rbkconfig_compiler_LDADD = $(LIB_TDECORE)
rbkconfig_compiler_SOURCES = rbkconfig_compiler.cpp
METASOURCES = AUTO
TESTFILES = test1.kcfg test2.kcfg test3.kcfg test4.kcfg test5.kcfg
check-local:
for i in $(TESTFILES); \
do xmllint --noout --schema $(srcdir)/kcfg.xsd $(srcdir)/tests/$$i; \
perl $(top_srcdir)/korundum/rubylib/rbkconfig_compiler/checkkcfg.pl \
$(top_srcdir)/korundum/rubylib/rbkconfig_compiler/tests/$$i; done

@ -0,0 +1,28 @@
SUBDIRS = . tests
RBUIC=rbuic
.ui.rb:
$(RBUIC) -tr ${UIC_TR} -kde $*.ui -o $@
exampleprefs_base.rb: $(srcdir)/example.kcfg rbtdeconfig_compiler $(srcdir)/exampleprefs_base.kcfgc
./rbtdeconfig_compiler $(srcdir)/example.kcfg $(srcdir)/exampleprefs_base.kcfgc
AM_CPPFLAGS = -I$(top_srcdir)/tdecore -I$(top_srcdir) $(all_includes)
bin_PROGRAMS = rbtdeconfig_compiler
rbtdeconfig_compiler_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
rbtdeconfig_compiler_LDADD = $(LIB_TDECORE)
rbtdeconfig_compiler_SOURCES = rbtdeconfig_compiler.cpp
METASOURCES = AUTO
TESTFILES = test1.kcfg test2.kcfg test3.kcfg test4.kcfg test5.kcfg
check-local:
for i in $(TESTFILES); \
do xmllint --noout --schema $(srcdir)/kcfg.xsd $(srcdir)/tests/$$i; \
perl $(top_srcdir)/korundum/rubylib/rbtdeconfig_compiler/checkkcfg.pl \
$(top_srcdir)/korundum/rubylib/rbtdeconfig_compiler/tests/$$i; done

@ -1,7 +1,7 @@
/** /**
\page rbkconfig_compiler The KDE Configuration Compiler for Ruby \page rbtdeconfig_compiler The KDE Configuration Compiler for Ruby
rbkconfig_compiler generates Ruby source code from an XML file containing rbtdeconfig_compiler generates Ruby source code from an XML file containing
information about configuration options (.kcfg) and a file that provides information about configuration options (.kcfg) and a file that provides
the code generation options (.kcfgc) The generated class is based on the code generation options (.kcfgc) The generated class is based on
KDE::ConfigSkeleton and provides an API for the application to access its KDE::ConfigSkeleton and provides an API for the application to access its

@ -15,21 +15,21 @@ $file_cpp = "$filebase.cpp";
$kcfgc = $file . "c"; $kcfgc = $file . "c";
$cmd = "./kconfig_compiler $file $kcfgc"; $cmd = "./tdeconfig_compiler $file $kcfgc";
#print "CMD $cmd\n"; #print "CMD $cmd\n";
if ( system( $cmd ) != 0 ) { if ( system( $cmd ) != 0 ) {
print STDERR "Unable to run kconfig_compiler\n"; print STDERR "Unable to run tdeconfig_compiler\n";
exit 1; exit 1;
} }
checkfile( $file_h ); chectdefile( $file_h );
checkfile( $file_cpp ); chectdefile( $file_cpp );
exit 0; exit 0;
sub checkfile() sub chectdefile()
{ {
my $file = shift; my $file = shift;

@ -1,4 +1,4 @@
# Code generation options for kconfig_compiler # Code generation options for tdeconfig_compiler
ClassName=ExamplePrefsBase ClassName=ExamplePrefsBase
# #
# Singleton=false # Singleton=false

@ -33,7 +33,7 @@
#include <klocale.h> #include <klocale.h>
#include <kcmdlineargs.h> #include <kcmdlineargs.h>
#include <kglobal.h> #include <kglobal.h>
#include <kconfig.h> #include <tdeconfig.h>
#include <ksimpleconfig.h> #include <ksimpleconfig.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
@ -600,7 +600,7 @@ TQString param( const TQString &type )
else if ( type == "Path" ) return "const TQString &"; else if ( type == "Path" ) return "const TQString &";
else if ( type == "Password" ) return "const TQString &"; else if ( type == "Password" ) return "const TQString &";
else { else {
kdError() <<"rbkconfig_compiler does not support type \""<< type <<"\""<<endl; kdError() <<"rbtdeconfig_compiler does not support type \""<< type <<"\""<<endl;
return "TQString"; //For now, but an assert would be better return "TQString"; //For now, but an assert would be better
} }
} }
@ -629,7 +629,7 @@ TQString rbType( const TQString &type )
else if ( type == "Path" ) return "\"\""; else if ( type == "Path" ) return "\"\"";
else if ( type == "Password" ) return "\"\""; else if ( type == "Password" ) return "\"\"";
else { else {
kdError()<<"rbkconfig_compiler does not support type \""<< type <<"\""<<endl; kdError()<<"rbtdeconfig_compiler does not support type \""<< type <<"\""<<endl;
return "nil"; //For now, but an assert would be better return "nil"; //For now, but an assert would be better
} }
} }
@ -655,7 +655,7 @@ TQString defaultValue( const TQString &type )
else if ( type == "Path" ) return "\"\""; // Use empty string, not null string! else if ( type == "Path" ) return "\"\""; // Use empty string, not null string!
else if ( type == "Password" ) return "\"\""; // Use empty string, not null string! else if ( type == "Password" ) return "\"\""; // Use empty string, not null string!
else { else {
kdWarning()<<"Error, rbkconfig_compiler doesn't support the \""<< type <<"\" type!"<<endl; kdWarning()<<"Error, rbtdeconfig_compiler doesn't support the \""<< type <<"\" type!"<<endl;
return "String"; //For now, but an assert would be better return "String"; //For now, but an assert would be better
} }
} }
@ -801,7 +801,7 @@ TQString userTextsFunctions( CfgEntry *e, TQString itemVarStr=TQString::null, TQ
int main( int argc, char **argv ) int main( int argc, char **argv )
{ {
TDEAboutData aboutData( "rbkconfig_compiler", I18N_NOOP("TDE .kcfg compiler"), "0.3", TDEAboutData aboutData( "rbtdeconfig_compiler", I18N_NOOP("TDE .kcfg compiler"), "0.3",
I18N_NOOP("Ruby TDEConfig Compiler") , TDEAboutData::License_LGPL ); I18N_NOOP("Ruby TDEConfig Compiler") , TDEAboutData::License_LGPL );
aboutData.addAuthor( "Cornelius Schumacher", 0, "schumacher@kde.org" ); aboutData.addAuthor( "Cornelius Schumacher", 0, "schumacher@kde.org" );
aboutData.addAuthor( "Waldo Bastian", 0, "bastian@kde.org" ); aboutData.addAuthor( "Waldo Bastian", 0, "bastian@kde.org" );
@ -978,7 +978,7 @@ int main( int argc, char **argv )
TQTextStream rb( &implementation ); TQTextStream rb( &implementation );
rb << "# This file is generated by rbkconfig_compiler from " << args->url(0).fileName() << "." << endl; rb << "# This file is generated by rbtdeconfig_compiler from " << args->url(0).fileName() << "." << endl;
rb << "# All changes you do to this file will be lost." << endl; rb << "# All changes you do to this file will be lost." << endl;
rb << endl << "require 'Korundum'" << endl; rb << endl << "require 'Korundum'" << endl;
@ -1001,7 +1001,7 @@ int main( int argc, char **argv )
if ( headerIncludes.count() > 0 ) rb << endl; if ( headerIncludes.count() > 0 ) rb << endl;
// rb << "#include <kconfigskeleton.h>" << endl << endl; // rb << "#include <tdeconfigskeleton.h>" << endl << endl;
if ( !nameSpace.isEmpty() ) if ( !nameSpace.isEmpty() )
rb << "module " << nameSpace << endl << endl; rb << "module " << nameSpace << endl << endl;

@ -13,24 +13,24 @@ all: $(SOURCES)
SOURCES = test1main.rb test1.rb test2main.rb test2.rb test3main.rb test3.rb test4main.rb test4.rb test5main.rb test5.rb SOURCES = test1main.rb test1.rb test2main.rb test2.rb test3main.rb test3.rb test4main.rb test4.rb test5main.rb test5.rb
# avoid running the below command in parallel # avoid running the below command in parallel
test1.rb: $(srcdir)/test1.kcfg ../rbkconfig_compiler $(srcdir)/test1.kcfgc test1.rb: $(srcdir)/test1.kcfg ../rbtdeconfig_compiler $(srcdir)/test1.kcfgc
../rbkconfig_compiler $(srcdir)/test1.kcfg $(srcdir)/test1.kcfgc ../rbtdeconfig_compiler $(srcdir)/test1.kcfg $(srcdir)/test1.kcfgc
# avoid running the below command in parallel # avoid running the below command in parallel
test2.rb: $(srcdir)/test2.kcfg ../rbkconfig_compiler $(srcdir)/test2.kcfgc test2.rb: $(srcdir)/test2.kcfg ../rbtdeconfig_compiler $(srcdir)/test2.kcfgc
../rbkconfig_compiler $(srcdir)/test2.kcfg $(srcdir)/test2.kcfgc ../rbtdeconfig_compiler $(srcdir)/test2.kcfg $(srcdir)/test2.kcfgc
# avoid running the below command in parallel # avoid running the below command in parallel
test3.rb: $(srcdir)/test3.kcfg ../rbkconfig_compiler $(srcdir)/test3.kcfgc test3.rb: $(srcdir)/test3.kcfg ../rbtdeconfig_compiler $(srcdir)/test3.kcfgc
../rbkconfig_compiler $(srcdir)/test3.kcfg $(srcdir)/test3.kcfgc ../rbtdeconfig_compiler $(srcdir)/test3.kcfg $(srcdir)/test3.kcfgc
# avoid running the below command in parallel # avoid running the below command in parallel
test4.rb: $(srcdir)/test4.kcfg ../rbkconfig_compiler $(srcdir)/test4.kcfgc test4.rb: $(srcdir)/test4.kcfg ../rbtdeconfig_compiler $(srcdir)/test4.kcfgc
../rbkconfig_compiler $(srcdir)/test4.kcfg $(srcdir)/test4.kcfgc ../rbtdeconfig_compiler $(srcdir)/test4.kcfg $(srcdir)/test4.kcfgc
# avoid running the below command in parallel # avoid running the below command in parallel
test5.rb: $(srcdir)/test5.kcfg ../rbkconfig_compiler $(srcdir)/test5.kcfgc test5.rb: $(srcdir)/test5.kcfg ../rbtdeconfig_compiler $(srcdir)/test5.kcfgc
../rbkconfig_compiler $(srcdir)/test5.kcfg $(srcdir)/test5.kcfgc ../rbtdeconfig_compiler $(srcdir)/test5.kcfg $(srcdir)/test5.kcfgc
md5sums: md5sums:
$(MD5SUM) $(srcdir)/test*.ref | sed -e "s,$(srcdir)/,,; s,\.ref$$,," > md5sums $(MD5SUM) $(srcdir)/test*.ref | sed -e "s,$(srcdir)/,,; s,\.ref$$,," > md5sums

@ -1,4 +1,4 @@
# Code generation options for kconfig_compiler # Code generation options for tdeconfig_compiler
ClassName=Test1 ClassName=Test1
# #
# Singleton=false # Singleton=false

@ -1,4 +1,4 @@
# Code generation options for kconfig_compiler # Code generation options for tdeconfig_compiler
File=test2.kcfg File=test2.kcfg
ClassName=Test2 ClassName=Test2
Singleton=false Singleton=false

@ -1,4 +1,4 @@
# Code generation options for kconfig_compiler # Code generation options for tdeconfig_compiler
File=test3.kcfg File=test3.kcfg
NameSpace=TestNameSpace NameSpace=TestNameSpace
ClassName=Test3 ClassName=Test3

@ -1,4 +1,4 @@
# Code generation options for kconfig_compiler # Code generation options for tdeconfig_compiler
File=test4.kcfg File=test4.kcfg
ClassName=Test4 ClassName=Test4
Singleton=true Singleton=true

@ -1,4 +1,4 @@
# Code generation options for kconfig_compiler # Code generation options for tdeconfig_compiler
File=test5.kcfg File=test5.kcfg
ClassName=Test5 ClassName=Test5
Singleton=true Singleton=true

@ -493,7 +493,7 @@
2005-01-27 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2005-01-27 Richard Dale <Richard_Dale@tipitina.demon.co.uk>
* Made some changes to get code generated by the rbkconfig_compiler * Made some changes to get code generated by the rbtdeconfig_compiler
to work. When an argument is a non-const reference to a primitive to work. When an argument is a non-const reference to a primitive
type, or a TQString or TQStringList, then don't delete it after the type, or a TQString or TQStringList, then don't delete it after the
method call. This is because a class like TDEConfigSkeleton takes method call. This is because a class like TDEConfigSkeleton takes
@ -510,7 +510,7 @@
* rbuic was giving widgets names containing a '@' to match the ruby instance variable * rbuic was giving widgets names containing a '@' to match the ruby instance variable
name. However, this doesn't work with KDE::ConfigDialog which expects the names to name. However, this doesn't work with KDE::ConfigDialog which expects the names to
match the ones generated in a KDE::ConfigSkeleton by rbkconfig_compiler so '@' is no match the ones generated in a KDE::ConfigSkeleton by rbtdeconfig_compiler so '@' is no
longer added. longer added.
2005-01-20 Richard Dale <Richard_Dale@tipitina.demon.co.uk> 2005-01-20 Richard Dale <Richard_Dale@tipitina.demon.co.uk>

@ -110,9 +110,9 @@ VALUE qt_internal_module = Qnil;
VALUE qt_base_class = Qnil; VALUE qt_base_class = Qnil;
VALUE qmetaobject_class = Qnil; VALUE qmetaobject_class = Qnil;
VALUE qvariant_class = Qnil; VALUE qvariant_class = Qnil;
VALUE kconfigskeleton_class = Qnil; VALUE tdeconfigskeleton_class = Qnil;
VALUE kconfigskeleton_itemenum_class = Qnil; VALUE tdeconfigskeleton_itemenum_class = Qnil;
VALUE kconfigskeleton_itemenum_choice_class = Qnil; VALUE tdeconfigskeleton_itemenum_choice_class = Qnil;
VALUE kio_udsatom_class = Qnil; VALUE kio_udsatom_class = Qnil;
VALUE twin_class = Qnil; VALUE twin_class = Qnil;
VALUE konsole_part_class = Qnil; VALUE konsole_part_class = Qnil;
@ -123,7 +123,7 @@ bool application_terminated = false;
void rb_str_catf_1(VALUE self, const char *format, ...) __attribute__ ((format (printf, 2, 3))); void rb_str_catf_1(VALUE self, const char *format, ...) __attribute__ ((format (printf, 2, 3)));
static VALUE (*_new_kde)(int, VALUE *, VALUE) = 0; static VALUE (*_new_kde)(int, VALUE *, VALUE) = 0;
static VALUE (*_kconfigskeletonitem_immutable)(VALUE) = 0; static VALUE (*_tdeconfigskeletonitem_immutable)(VALUE) = 0;
Smoke::Index _current_method = 0; Smoke::Index _current_method = 0;
@ -2675,14 +2675,14 @@ static TQRegExp * scope_op = 0;
} }
if (packageName.startsWith("KDE::ConfigSkeleton::ItemEnum::")) { if (packageName.startsWith("KDE::ConfigSkeleton::ItemEnum::")) {
klass = rb_define_class_under(kconfigskeleton_itemenum_class, package+strlen("KDE::ConfigSkeleton::EnumItem::"), base_class); klass = rb_define_class_under(tdeconfigskeleton_itemenum_class, package+strlen("KDE::ConfigSkeleton::EnumItem::"), base_class);
rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1); rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1);
kconfigskeleton_itemenum_choice_class = klass; tdeconfigskeleton_itemenum_choice_class = klass;
} else if (packageName.startsWith("KDE::ConfigSkeleton::")) { } else if (packageName.startsWith("KDE::ConfigSkeleton::")) {
klass = rb_define_class_under(kconfigskeleton_class, package+strlen("KDE::ConfigSkeleton::"), base_class); klass = rb_define_class_under(tdeconfigskeleton_class, package+strlen("KDE::ConfigSkeleton::"), base_class);
rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1); rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1);
rb_define_method(klass, "immutable?", (VALUE (*) (...)) _kconfigskeletonitem_immutable, 0); rb_define_method(klass, "immutable?", (VALUE (*) (...)) _tdeconfigskeletonitem_immutable, 0);
rb_define_method(klass, "isImmutable", (VALUE (*) (...)) _kconfigskeletonitem_immutable, 0); rb_define_method(klass, "isImmutable", (VALUE (*) (...)) _tdeconfigskeletonitem_immutable, 0);
} else if (packageName.startsWith("KDE::Win::")) { } else if (packageName.startsWith("KDE::Win::")) {
klass = rb_define_class_under(twin_class, package+strlen("KDE::Win::"), base_class); klass = rb_define_class_under(twin_class, package+strlen("KDE::Win::"), base_class);
rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1); rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1);
@ -2867,12 +2867,12 @@ set_new_kde(VALUE (*new_kde) (int, VALUE *, VALUE))
} }
void void
set_kconfigskeletonitem_immutable(VALUE (*kconfigskeletonitem_immutable) (VALUE)) set_tdeconfigskeletonitem_immutable(VALUE (*tdeconfigskeletonitem_immutable) (VALUE))
{ {
_kconfigskeletonitem_immutable = kconfigskeletonitem_immutable; _tdeconfigskeletonitem_immutable = tdeconfigskeletonitem_immutable;
kconfigskeleton_class = rb_define_class_under(kde_module, "ConfigSkeleton", qt_base_class); tdeconfigskeleton_class = rb_define_class_under(kde_module, "ConfigSkeleton", qt_base_class);
kconfigskeleton_itemenum_class = rb_define_class_under(kconfigskeleton_class, "ItemEnum", qt_base_class); tdeconfigskeleton_itemenum_class = rb_define_class_under(tdeconfigskeleton_class, "ItemEnum", qt_base_class);
} }
static VALUE static VALUE

@ -99,13 +99,13 @@ my %kdeexcludes = (
# These headers currently give problems # These headers currently give problems
'tdescreensaver.h' => 1, 'tdescreensaver.h' => 1,
'kdirnotify_stub.h' => 1, 'kdirnotify_stub.h' => 1,
'kio/uiserver_stub.h' => 1, 'tdeio/uiserver_stub.h' => 1,
'kio/uiserver.h' => 1, 'tdeio/uiserver.h' => 1,
'kio/tdesasl.h' => 1, 'tdeio/tdesasl.h' => 1,
'kio/kpac.h' => 1, 'tdeio/kpac.h' => 1,
'kio/thumbcreator.h' => 1, 'tdeio/thumbcreator.h' => 1,
'kio/file.h' => 1, 'tdeio/file.h' => 1,
'kio/chmodjob.h' => 1, 'tdeio/chmodjob.h' => 1,
'tdeparts/genericfactory.h' => 1, 'tdeparts/genericfactory.h' => 1,
'tdeparts/pluginselectormodule.h' => 1, 'tdeparts/pluginselectormodule.h' => 1,
'kopenssl.h' => 1, 'kopenssl.h' => 1,

@ -93,12 +93,12 @@ kcombobox.h
kcommand.h kcommand.h
kcompletionbox.h kcompletionbox.h
kcompletion.h kcompletion.h
kconfigdialog.h tdeconfigdialog.h
kconfigskeleton.h tdeconfigskeleton.h
kconfigbackend.h tdeconfigbackend.h
kconfigbase.h tdeconfigbase.h
kconfigdata.h tdeconfigdata.h
kconfig.h tdeconfig.h
kcpuinfo.h kcpuinfo.h
kcrash.h kcrash.h
kcursor.h kcursor.h
@ -140,21 +140,21 @@ kedittoolbar.h
kemailsettings.h kemailsettings.h
kextendedsocket.h kextendedsocket.h
kextsock.h kextsock.h
kfiledetailview.h tdefiledetailview.h
kfiledialog.h tdefiledialog.h
kfilefiltercombo.h tdefilefiltercombo.h
kfilefilter.h tdefilefilter.h
kfile.h tdefile.h
kfileiconview.h tdefileiconview.h
kfileitem.h tdefileitem.h
kfilemetainfo.h tdefilemetainfo.h
kfilepreview.h tdefilepreview.h
kfilesharedlg.h tdefilesharedlg.h
kfileshare.h tdefileshare.h
kfiletreebranch.h tdefiletreebranch.h
kfiletreeview.h tdefiletreeview.h
kfiletreeviewitem.h tdefiletreeviewitem.h
kfileview.h tdefileview.h
kfilterbase.h kfilterbase.h
kfilterdev.h kfilterdev.h
kfinddialog.h kfinddialog.h
@ -394,42 +394,42 @@ tdeparts/partmanager.h
tdeparts/plugin.h tdeparts/plugin.h
tdeparts/pluginselectormodule.h tdeparts/pluginselectormodule.h
tdeparts/statusbarextension.h tdeparts/statusbarextension.h
kio/authinfo.h tdeio/authinfo.h
kio/chmodjob.h tdeio/chmodjob.h
kio/connection.h tdeio/connection.h
kio/davjob.h tdeio/davjob.h
kio/defaultprogress.h tdeio/defaultprogress.h
kio/file.h tdeio/file.h
kio/global.h tdeio/global.h
kio/http.h tdeio/http.h
kio/http_slave_defaults.h tdeio/http_slave_defaults.h
kio/ioslave_defaults.h tdeio/ioslave_defaults.h
kio/jobclasses.h tdeio/jobclasses.h
kio/job.h tdeio/job.h
kio/tdesasl.h tdeio/tdesasl.h
kio/kmdbase.h tdeio/kmdbase.h
kio/kmdcodec.h tdeio/kmdcodec.h
kio/kpac.h tdeio/kpac.h
kio/metainfojob.h tdeio/metainfojob.h
kio/netaccess.h tdeio/netaccess.h
kio/observer.h tdeio/observer.h
kio/passdlg.h tdeio/passdlg.h
kio/paste.h tdeio/paste.h
kio/previewjob.h tdeio/previewjob.h
kio/progressbase.h tdeio/progressbase.h
kio/renamedlg.h tdeio/renamedlg.h
kio/scheduler.h tdeio/scheduler.h
kio/sessiondata.h tdeio/sessiondata.h
kio/skipdlg.h tdeio/skipdlg.h
kio/slavebase.h tdeio/slavebase.h
kio/slaveconfig.h tdeio/slaveconfig.h
kio/slave.h tdeio/slave.h
kio/slaveinterface.h tdeio/slaveinterface.h
kio/statusbarprogress.h tdeio/statusbarprogress.h
kio/tcpslavebase.h tdeio/tcpslavebase.h
kio/thumbcreator.h tdeio/thumbcreator.h
kio/uiserver.h tdeio/uiserver.h
kio/uiserver_stub.h tdeio/uiserver_stub.h
netwm_def.h netwm_def.h
netwm.h netwm.h
knewstuff/knewstuff.h knewstuff/knewstuff.h

Loading…
Cancel
Save