2002-05-14 11:37:27 +00:00
|
|
|
ViewCondition: GSWConditional
|
|
|
|
{
|
|
|
|
condition = isViewEnabled;
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewPathCondition: GSWConditional
|
|
|
|
{
|
|
|
|
condition = ^isURLView;
|
|
|
|
negate = YES;
|
|
|
|
};
|
|
|
|
|
|
|
|
ViewURLCondition: GSWConditional
|
|
|
|
{
|
|
|
|
condition = ^isURLView;
|
|
|
|
};
|
|
|
|
|
|
|
|
LinkViewCondition: GSWConditional
|
|
|
|
{
|
|
|
|
condition = ^isImageView;
|
|
|
|
negate = YES;
|
|
|
|
};
|
|
|
|
|
|
|
|
ImageViewCondition: GSWConditional
|
|
|
|
{
|
|
|
|
condition = ^isImageView;
|
|
|
|
};
|
|
|
|
|
|
|
|
ImageWithPath: GSWImage
|
|
|
|
{
|
|
|
|
filename = fileInfo.filePath;
|
|
|
|
border = 0;
|
2002-06-03 08:27:15 +00:00
|
|
|
width = ^imageWidth;
|
|
|
|
height = ^imageHeight;
|
2002-05-14 11:37:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ImageWithURL: GSWImage
|
|
|
|
{
|
|
|
|
src = fileInfo.fileURL;
|
|
|
|
border = 0;
|
2002-06-03 08:27:15 +00:00
|
|
|
width = ^imageWidth;
|
|
|
|
height = ^imageHeight;
|
2002-05-14 11:37:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
UploadFile: GSWFileUpload
|
|
|
|
{
|
|
|
|
data = fileInfo.data;
|
|
|
|
filePath = fileInfo.fileName;
|
|
|
|
enabled=^isUploadEnabled;
|
|
|
|
};
|
|
|
|
|
|
|
|
FileLinkWithPath: GSWHyperlink
|
|
|
|
{
|
|
|
|
filename=fileInfo.filePath;
|
|
|
|
data=fileInfo.data;
|
|
|
|
mimeType=fileInfo.mimeType;
|
|
|
|
key=fileInfo.filePath;
|
|
|
|
string= ^string;
|
|
|
|
target = ^target;
|
|
|
|
};
|
|
|
|
|
|
|
|
FileLinkWithURL: GSWHyperlink
|
|
|
|
{
|
|
|
|
src=fileInfo.fileURL;
|
|
|
|
string= ^string;
|
|
|
|
target = ^target;
|
|
|
|
};
|
|
|
|
|
|
|
|
DeleteCondition: GSWConditional
|
|
|
|
{
|
|
|
|
condition = isDeleteEnabled;
|
|
|
|
};
|
|
|
|
|
|
|
|
DeleteCheckBox: GSWCheckBox
|
|
|
|
{
|
|
|
|
enabled=isDeleteEnabled;
|
|
|
|
checked= fileInfo.isDeleted;
|
|
|
|
};
|
2002-06-03 08:27:15 +00:00
|
|
|
|
|
|
|
DeleteCheckBoxTitle: GSWString
|
|
|
|
{
|
|
|
|
value = ^deleteCheckBoxText;
|
|
|
|
};
|