mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
42 lines
1 KiB
Lua
42 lines
1 KiB
Lua
-- Simple example of how to write wdx-scripts
|
|
|
|
function ContentSetDefaultParams(IniFileName,PlugApiVerHi,PlugApiVerLow)
|
|
--Initialization code here
|
|
end
|
|
|
|
function ContentGetSupportedField(Index)
|
|
if (Index == 0) then
|
|
return 'FieldName0','', 8; -- FieldName,Units,ft_string
|
|
elseif (Index == 1) then
|
|
return 'FieldName1','', 8;
|
|
elseif (Index == 2) then
|
|
return 'FieldName2','', 8;
|
|
end
|
|
return '','', 0; -- ft_nomorefields
|
|
end
|
|
|
|
function ContentGetDefaultSortOrder(FieldIndex)
|
|
return 1; --or -1
|
|
end
|
|
|
|
function ContentGetDetectString()
|
|
return '(EXT="TXT") | (EXT="INI")'; -- return detect string
|
|
end
|
|
|
|
function ContentGetValue(FileName, FieldIndex, UnitIndex, flags)
|
|
if (FieldIndex == 0) then
|
|
return "FieldValue0"; -- return string
|
|
elseif (FieldIndex == 1) then
|
|
return "FieldValue1";
|
|
elseif (FieldIndex == 2) then
|
|
return "FieldValue2";
|
|
end
|
|
return nil; -- invalid
|
|
end
|
|
|
|
--function ContentGetSupportedFieldFlags(FieldIndex)
|
|
--return 0; -- return flags
|
|
--end
|
|
|
|
--function ContentStopGetValue(Filename)
|
|
--end
|