You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1010 lines
23 KiB
1010 lines
23 KiB
|
|
|
|
|
|
#include <kjsembed/global.h>
|
|
|
|
#include <kjs/object.h>
|
|
|
|
#ifndef QT_ONLY
|
|
#include <klocale.h>
|
|
#include <kdebug.h>
|
|
#endif
|
|
|
|
|
|
#include <kjsembed/jsopaqueproxy.h>
|
|
#include <kjsembed/jsbinding.h>
|
|
|
|
#include <tqdir.h>
|
|
#include "qdir_imp.h"
|
|
|
|
/**
|
|
* Namespace containing the KJSEmbed library.
|
|
*/
|
|
namespace KJSEmbed {
|
|
namespace Bindings {
|
|
KJS::Object TQDirLoader::createBinding(KJSEmbedPart *jspart, KJS::ExecState *exec, const KJS::List &args) const
|
|
{
|
|
JSOpaqueProxy * prx;
|
|
if ( args.size() == 0 ) {
|
|
prx = new JSOpaqueProxy( new TQDir( TQDir::current() ), "TQDir" );
|
|
} else {
|
|
TQString arg0 = ( args.size() >= 1 ) ? args[ 0 ].toString( exec ).qstring() : TQString::null;
|
|
prx = new JSOpaqueProxy( new TQDir( arg0 ), "TQDir" );
|
|
}
|
|
prx->setOwner( JSProxy::JavaScript );
|
|
KJS::Object proxyObj( prx );
|
|
addBindings( jspart, exec, proxyObj );
|
|
return proxyObj;
|
|
}
|
|
|
|
void TQDirLoader::addBindings( KJSEmbedPart *jspart, KJS::ExecState *exec, KJS::Object &proxy ) const
|
|
{
|
|
TQDirImp::addBindings( exec, proxy );
|
|
}
|
|
|
|
}
|
|
|
|
TQDirImp::TQDirImp( KJS::ExecState *exec, int id )
|
|
: JSProxyImp(exec), mid(id)
|
|
{
|
|
}
|
|
|
|
TQDirImp::~TQDirImp()
|
|
{
|
|
}
|
|
|
|
void TQDirImp::addBindings( KJS::ExecState *exec, KJS::Object &object )
|
|
{
|
|
JSProxy::MethodTable methods[] = {
|
|
|
|
{ Method_setPath_7, "setPath" },
|
|
|
|
{ Method_path_8, "path" },
|
|
|
|
{ Method_absPath_9, "absPath" },
|
|
|
|
{ Method_canonicalPath_10, "canonicalPath" },
|
|
|
|
{ Method_dirName_11, "dirName" },
|
|
|
|
{ Method_filePath_12, "filePath" },
|
|
|
|
{ Method_absFilePath_13, "absFilePath" },
|
|
|
|
{ Method_cd_14, "cd" },
|
|
|
|
{ Method_cdUp_15, "cdUp" },
|
|
|
|
{ Method_nameFilter_16, "nameFilter" },
|
|
|
|
{ Method_setNameFilter_17, "setNameFilter" },
|
|
|
|
{ Method_filter_18, "filter" },
|
|
|
|
{ Method_setFilter_19, "setFilter" },
|
|
|
|
{ Method_sorting_20, "sorting" },
|
|
|
|
{ Method_setSorting_21, "setSorting" },
|
|
|
|
{ Method_matchAllDirs_22, "matchAllDirs" },
|
|
|
|
{ Method_setMatchAllDirs_23, "setMatchAllDirs" },
|
|
|
|
{ Method_count_24, "count" },
|
|
|
|
{ Method_encodedEntryList_26, "encodedEntryList" },
|
|
|
|
{ Method_encodedEntryList_27, "encodedEntryList" },
|
|
|
|
{ Method_entryList_28, "entryList" },
|
|
|
|
{ Method_entryList_29, "entryList" },
|
|
|
|
{ Method_entryInfoList_30, "entryInfoList" },
|
|
|
|
{ Method_entryInfoList_31, "entryInfoList" },
|
|
|
|
{ Method_mkdir_32, "mkdir" },
|
|
|
|
{ Method_rmdir_33, "rmdir" },
|
|
|
|
{ Method_isReadable_34, "isReadable" },
|
|
|
|
{ Method_exists_35, "exists" },
|
|
|
|
{ Method_isRoot_36, "isRoot" },
|
|
|
|
{ Method_isRelative_37, "isRelative" },
|
|
|
|
{ Method_convertToAbs_38, "convertToAbs" },
|
|
|
|
{ Method_remove_41, "remove" },
|
|
|
|
{ Method_rename_42, "rename" },
|
|
|
|
{ Method_exists_43, "exists" },
|
|
|
|
{ Method_refresh_44, "refresh" },
|
|
|
|
{ Method_convertSeparators_45, "convertSeparators" },
|
|
|
|
{ Method_drives_46, "drives" },
|
|
|
|
{ Method_separator_47, "separator" },
|
|
|
|
{ Method_setCurrent_48, "setCurrent" },
|
|
|
|
{ Method_current_49, "current" },
|
|
|
|
{ Method_home_50, "home" },
|
|
|
|
{ Method_root_51, "root" },
|
|
|
|
{ Method_currentDirPath_52, "currentDirPath" },
|
|
|
|
{ Method_homeDirPath_53, "homeDirPath" },
|
|
|
|
{ Method_rootDirPath_54, "rootDirPath" },
|
|
|
|
{ Method_match_55, "match" },
|
|
|
|
{ Method_match_56, "match" },
|
|
|
|
{ Method_cleanDirPath_57, "cleanDirPath" },
|
|
|
|
{ Method_isRelativePath_58, "isRelativePath" },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|
|
int idx = 0;
|
|
do {
|
|
TQDirImp *meth = new TQDirImp( exec, methods[idx].id );
|
|
object.put( exec , methods[idx].name, KJS::Object(meth) );
|
|
++idx;
|
|
} while( methods[idx].id );
|
|
|
|
//
|
|
// Define the enum constants
|
|
//
|
|
struct EnumValue {
|
|
const char *id;
|
|
int val;
|
|
};
|
|
|
|
|
|
EnumValue enums[] = {
|
|
|
|
// enum FilterSpec
|
|
{ "Dirs", TQDir::Dirs },
|
|
{ "Files", TQDir::Files },
|
|
{ "Drives", TQDir::Drives },
|
|
{ "NoSymLinks", TQDir::NoSymLinks },
|
|
{ "All", TQDir::All },
|
|
{ "TypeMask", TQDir::TypeMask },
|
|
{ "Readable", TQDir::Readable },
|
|
{ "Writable", TQDir::Writable },
|
|
{ "Executable", TQDir::Executable },
|
|
{ "RWEMask", TQDir::RWEMask },
|
|
{ "Modified", TQDir::Modified },
|
|
{ "Hidden", TQDir::Hidden },
|
|
{ "System", TQDir::System },
|
|
{ "AccessMask", TQDir::AccessMask },
|
|
{ "DefaultFilter", TQDir::DefaultFilter },
|
|
// enum SortSpec
|
|
{ "Name", TQDir::Name },
|
|
{ "Time", TQDir::Time },
|
|
{ "Size", TQDir::Size },
|
|
{ "Unsorted", TQDir::Unsorted },
|
|
{ "SortByMask", TQDir::SortByMask },
|
|
{ "DirsFirst", TQDir::DirsFirst },
|
|
{ "Reversed", TQDir::Reversed },
|
|
{ "IgnoreCase", TQDir::IgnoreCase },
|
|
{ "DefaultSort", TQDir::DefaultSort },
|
|
{ 0, 0 }
|
|
};
|
|
|
|
int enumidx = 0;
|
|
do {
|
|
object.put( exec, enums[enumidx].id, KJS::Number(enums[enumidx].val), KJS::ReadOnly );
|
|
++enumidx;
|
|
} while( enums[enumidx].id );
|
|
|
|
}
|
|
|
|
|
|
KJS::Value TQDirImp::call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args )
|
|
{
|
|
JSOpaqueProxy *op = JSProxy::toOpaqueProxy( self.imp() );
|
|
if ( !op ) {
|
|
kdWarning() << "TQDirImp::call() failed, not a JSOpaqueProxy" << endl;
|
|
return KJS::Value();
|
|
}
|
|
|
|
if ( op->typeName() != "TQDir" ) {
|
|
kdWarning() << "TQDirImp::call() failed, type is " << op->typeName() << endl;
|
|
return KJS::Value();
|
|
}
|
|
|
|
instance = op->toNative<TQDir>();
|
|
|
|
switch( mid ) {
|
|
|
|
case Method_setPath_7:
|
|
return setPath_7( exec, self, args );
|
|
break;
|
|
|
|
case Method_path_8:
|
|
return path_8( exec, self, args );
|
|
break;
|
|
|
|
case Method_absPath_9:
|
|
return absPath_9( exec, self, args );
|
|
break;
|
|
|
|
case Method_canonicalPath_10:
|
|
return canonicalPath_10( exec, self, args );
|
|
break;
|
|
|
|
case Method_dirName_11:
|
|
return dirName_11( exec, self, args );
|
|
break;
|
|
|
|
case Method_filePath_12:
|
|
return filePath_12( exec, self, args );
|
|
break;
|
|
|
|
case Method_absFilePath_13:
|
|
return absFilePath_13( exec, self, args );
|
|
break;
|
|
|
|
case Method_cd_14:
|
|
return cd_14( exec, self, args );
|
|
break;
|
|
|
|
case Method_cdUp_15:
|
|
return cdUp_15( exec, self, args );
|
|
break;
|
|
|
|
case Method_nameFilter_16:
|
|
return nameFilter_16( exec, self, args );
|
|
break;
|
|
|
|
case Method_setNameFilter_17:
|
|
return setNameFilter_17( exec, self, args );
|
|
break;
|
|
|
|
case Method_filter_18:
|
|
return filter_18( exec, self, args );
|
|
break;
|
|
|
|
case Method_setFilter_19:
|
|
return setFilter_19( exec, self, args );
|
|
break;
|
|
|
|
case Method_sorting_20:
|
|
return sorting_20( exec, self, args );
|
|
break;
|
|
|
|
case Method_setSorting_21:
|
|
return setSorting_21( exec, self, args );
|
|
break;
|
|
|
|
case Method_matchAllDirs_22:
|
|
return matchAllDirs_22( exec, self, args );
|
|
break;
|
|
|
|
case Method_setMatchAllDirs_23:
|
|
return setMatchAllDirs_23( exec, self, args );
|
|
break;
|
|
|
|
case Method_count_24:
|
|
return count_24( exec, self, args );
|
|
break;
|
|
|
|
case Method_encodedEntryList_26:
|
|
return encodedEntryList_26( exec, self, args );
|
|
break;
|
|
|
|
case Method_encodedEntryList_27:
|
|
return encodedEntryList_27( exec, self, args );
|
|
break;
|
|
|
|
case Method_entryList_28:
|
|
return entryList_28( exec, self, args );
|
|
break;
|
|
|
|
case Method_entryList_29:
|
|
return entryList_29( exec, self, args );
|
|
break;
|
|
|
|
case Method_entryInfoList_30:
|
|
return entryInfoList_30( exec, self, args );
|
|
break;
|
|
|
|
case Method_entryInfoList_31:
|
|
return entryInfoList_31( exec, self, args );
|
|
break;
|
|
|
|
case Method_mkdir_32:
|
|
return mkdir_32( exec, self, args );
|
|
break;
|
|
|
|
case Method_rmdir_33:
|
|
return rmdir_33( exec, self, args );
|
|
break;
|
|
|
|
case Method_isReadable_34:
|
|
return isReadable_34( exec, self, args );
|
|
break;
|
|
|
|
case Method_exists_35:
|
|
return exists_35( exec, self, args );
|
|
break;
|
|
|
|
case Method_isRoot_36:
|
|
return isRoot_36( exec, self, args );
|
|
break;
|
|
|
|
case Method_isRelative_37:
|
|
return isRelative_37( exec, self, args );
|
|
break;
|
|
|
|
case Method_convertToAbs_38:
|
|
return convertToAbs_38( exec, self, args );
|
|
break;
|
|
|
|
case Method_remove_41:
|
|
return remove_41( exec, self, args );
|
|
break;
|
|
|
|
case Method_rename_42:
|
|
return rename_42( exec, self, args );
|
|
break;
|
|
|
|
case Method_exists_43:
|
|
return exists_43( exec, self, args );
|
|
break;
|
|
|
|
case Method_refresh_44:
|
|
return refresh_44( exec, self, args );
|
|
break;
|
|
|
|
case Method_convertSeparators_45:
|
|
return convertSeparators_45( exec, self, args );
|
|
break;
|
|
|
|
case Method_drives_46:
|
|
return drives_46( exec, self, args );
|
|
break;
|
|
|
|
case Method_separator_47:
|
|
return separator_47( exec, self, args );
|
|
break;
|
|
|
|
case Method_setCurrent_48:
|
|
return setCurrent_48( exec, self, args );
|
|
break;
|
|
|
|
case Method_current_49:
|
|
return current_49( exec, self, args );
|
|
break;
|
|
|
|
case Method_home_50:
|
|
return home_50( exec, self, args );
|
|
break;
|
|
|
|
case Method_root_51:
|
|
return root_51( exec, self, args );
|
|
break;
|
|
|
|
case Method_currentDirPath_52:
|
|
return currentDirPath_52( exec, self, args );
|
|
break;
|
|
|
|
case Method_homeDirPath_53:
|
|
return homeDirPath_53( exec, self, args );
|
|
break;
|
|
|
|
case Method_rootDirPath_54:
|
|
return rootDirPath_54( exec, self, args );
|
|
break;
|
|
|
|
case Method_match_55:
|
|
return match_55( exec, self, args );
|
|
break;
|
|
|
|
case Method_match_56:
|
|
return match_56( exec, self, args );
|
|
break;
|
|
|
|
case Method_cleanDirPath_57:
|
|
return cleanDirPath_57( exec, self, args );
|
|
break;
|
|
|
|
case Method_isRelativePath_58:
|
|
return isRelativePath_58( exec, self, args );
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
TQString msg = i18n( "TQDirImp has no method with id '%1'." ).arg( mid );
|
|
return throwError(exec, msg,KJS::ReferenceError);
|
|
}
|
|
|
|
|
|
KJS::Value TQDirImp::setPath_7( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
instance->setPath(
|
|
arg0 );
|
|
return KJS::Value(); // Returns void
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::path_8( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString ret;
|
|
ret = instance->path( );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::absPath_9( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString ret;
|
|
ret = instance->absPath( );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::canonicalPath_10( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString ret;
|
|
ret = instance->canonicalPath( );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::dirName_11( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString ret;
|
|
ret = instance->dirName( );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::filePath_12( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
bool arg1 = (args.size() >= 2) ? args[1].toBoolean(exec) : false;
|
|
|
|
TQString ret;
|
|
ret = instance->filePath(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::absFilePath_13( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
bool arg1 = (args.size() >= 2) ? args[1].toBoolean(exec) : false;
|
|
|
|
TQString ret;
|
|
ret = instance->absFilePath(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::cd_14( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
bool arg1 = (args.size() >= 2) ? args[1].toBoolean(exec) : false;
|
|
|
|
bool ret;
|
|
ret = instance->cd(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::cdUp_15( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
bool ret;
|
|
ret = instance->cdUp( );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::nameFilter_16( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString ret;
|
|
ret = instance->nameFilter( );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::setNameFilter_17( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
instance->setNameFilter(
|
|
arg0 );
|
|
return KJS::Value(); // Returns void
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::filter_18( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->filter( );
|
|
return KJS::Value(); // Returns 'FilterSpec'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::setFilter_19( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int arg0 = (args.size() >= 1) ? args[0].toInteger(exec) : -1;
|
|
|
|
instance->setFilter(
|
|
arg0 );
|
|
return KJS::Value(); // Returns void
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::sorting_20( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->sorting( );
|
|
return KJS::Value(); // Returns 'SortSpec'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::setSorting_21( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int arg0 = (args.size() >= 1) ? args[0].toInteger(exec) : -1;
|
|
|
|
instance->setSorting(
|
|
arg0 );
|
|
return KJS::Value(); // Returns void
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::matchAllDirs_22( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
bool ret;
|
|
ret = instance->matchAllDirs( );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::setMatchAllDirs_23( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
bool arg0 = (args.size() >= 1) ? args[0].toBoolean(exec) : false;
|
|
|
|
instance->setMatchAllDirs(
|
|
arg0 );
|
|
return KJS::Value(); // Returns void
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::count_24( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
uint ret;
|
|
ret = instance->count( );
|
|
return KJS::Number( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::encodedEntryList_26( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int arg0 = (args.size() >= 1) ? args[0].toInteger(exec) : -1;
|
|
|
|
int arg1 = (args.size() >= 2) ? args[1].toInteger(exec) : -1;
|
|
|
|
instance->encodedEntryList(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Value(); // Returns 'TQStrList'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::encodedEntryList_27( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
int arg1 = (args.size() >= 2) ? args[1].toInteger(exec) : -1;
|
|
|
|
int arg2 = (args.size() >= 3) ? args[2].toInteger(exec) : -1;
|
|
|
|
instance->encodedEntryList(
|
|
arg0,
|
|
arg1,
|
|
arg2 );
|
|
return KJS::Value(); // Returns 'TQStrList'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::entryList_28( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int arg0 = (args.size() >= 1) ? args[0].toInteger(exec) : -1;
|
|
|
|
int arg1 = (args.size() >= 2) ? args[1].toInteger(exec) : -1;
|
|
|
|
TQStringList ret;
|
|
ret = instance->entryList(
|
|
arg0,
|
|
arg1 );
|
|
|
|
return convertToValue( exec, ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::entryList_29( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
int arg1 = (args.size() >= 2) ? args[1].toInteger(exec) : -1;
|
|
|
|
int arg2 = (args.size() >= 3) ? args[2].toInteger(exec) : -1;
|
|
|
|
TQStringList ret;
|
|
ret = instance->entryList(
|
|
arg0,
|
|
arg1,
|
|
arg2 );
|
|
|
|
return convertToValue( exec, ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::entryInfoList_30( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int arg0 = (args.size() >= 1) ? args[0].toInteger(exec) : -1;
|
|
|
|
int arg1 = (args.size() >= 2) ? args[1].toInteger(exec) : -1;
|
|
|
|
instance->entryInfoList(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Value(); // Returns 'const TQFileInfoList *'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::entryInfoList_31( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
int arg1 = (args.size() >= 2) ? args[1].toInteger(exec) : -1;
|
|
|
|
int arg2 = (args.size() >= 3) ? args[2].toInteger(exec) : -1;
|
|
|
|
instance->entryInfoList(
|
|
arg0,
|
|
arg1,
|
|
arg2 );
|
|
return KJS::Value(); // Returns 'const TQFileInfoList *'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::mkdir_32( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
bool arg1 = (args.size() >= 2) ? args[1].toBoolean(exec) : false;
|
|
|
|
bool ret;
|
|
ret = instance->mkdir(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::rmdir_33( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
bool arg1 = (args.size() >= 2) ? args[1].toBoolean(exec) : false;
|
|
|
|
bool ret;
|
|
ret = instance->rmdir(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::isReadable_34( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
bool ret;
|
|
ret = instance->isReadable( );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::exists_35( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
bool ret;
|
|
ret = instance->exists( );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::isRoot_36( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
bool ret;
|
|
ret = instance->isRoot( );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::isRelative_37( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
bool ret;
|
|
ret = instance->isRelative( );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::convertToAbs_38( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->convertToAbs( );
|
|
return KJS::Value(); // Returns void
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::remove_41( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
bool arg1 = (args.size() >= 2) ? args[1].toBoolean(exec) : false;
|
|
|
|
bool ret;
|
|
ret = instance->remove(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::rename_42( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
TQString arg1 = (args.size() >= 2) ? args[1].toString(exec).qstring() : TQString::null;
|
|
|
|
bool arg2 = (args.size() >= 3) ? args[2].toBoolean(exec) : false;
|
|
|
|
bool ret;
|
|
ret = instance->rename(
|
|
arg0,
|
|
arg1,
|
|
arg2 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::exists_43( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
bool arg1 = (args.size() >= 2) ? args[1].toBoolean(exec) : false;
|
|
|
|
bool ret;
|
|
ret = instance->exists(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::refresh_44( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->refresh( );
|
|
return KJS::Value(); // Returns void
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::convertSeparators_45( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
TQString ret;
|
|
ret = instance->convertSeparators(
|
|
arg0 );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::drives_46( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->drives( );
|
|
return KJS::Value(); // Returns 'const TQFileInfoList *'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::separator_47( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->separator( );
|
|
return KJS::Value(); // Returns 'char'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::setCurrent_48( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
bool ret;
|
|
ret = instance->setCurrent(
|
|
arg0 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::current_49( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->current( );
|
|
return KJS::Value(); // Returns 'TQDir'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::home_50( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->home( );
|
|
return KJS::Value(); // Returns 'TQDir'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::root_51( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->root( );
|
|
return KJS::Value(); // Returns 'TQDir'
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::currentDirPath_52( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString ret;
|
|
ret = instance->currentDirPath( );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::homeDirPath_53( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString ret;
|
|
ret = instance->homeDirPath( );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::rootDirPath_54( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString ret;
|
|
ret = instance->rootDirPath( );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::match_55( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQStringList arg0;
|
|
if ( args.size() >= 1 ) {
|
|
// TODO: populate the list
|
|
}
|
|
|
|
TQString arg1 = (args.size() >= 2) ? args[1].toString(exec).qstring() : TQString::null;
|
|
|
|
bool ret;
|
|
ret = instance->match(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::match_56( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
TQString arg1 = (args.size() >= 2) ? args[1].toString(exec).qstring() : TQString::null;
|
|
|
|
bool ret;
|
|
ret = instance->match(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::cleanDirPath_57( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
TQString ret;
|
|
ret = instance->cleanDirPath(
|
|
arg0 );
|
|
return KJS::String( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQDirImp::isRelativePath_58( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
TQString arg0 = (args.size() >= 1) ? args[0].toString(exec).qstring() : TQString::null;
|
|
|
|
bool ret;
|
|
ret = instance->isRelativePath(
|
|
arg0 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
|
|
} // namespace KJSEmbed
|
|
|
|
// Local Variables:
|
|
// c-basic-offset: 4
|
|
// End:
|
|
|
|
|