home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////
- // FileEditor
- // by Charles Lloyd
- ////////////////////////
-
-
- FileEditorTable: WOGenericComponent {
- elementName = "table";
- border = borderSize;
- };
-
- PathNameString: FontString {
- value = abbreviatedPathName;
- fontSize = 4;
- };
-
- ErrorStringConditional: WOConditional {
- condition = fileNotWritten;
- };
-
- ErrorString: FontString {
- value = "Error: File not written.";
- fontColor = "#ff0000";
- fontSize = 4;
- };
-
- FileEditorArea: WOText {
- value = fileContentsString;
- rows = rows;
- cols = cols;
- };
-
- RevertButton: MultipleSubmitButton {
- parentAction = revertFile;
- buttonImage = "../FileEditor.wo/RevertButton.gif";
- };
-
- SaveButton: MultipleSubmitButton {
- parentAction = saveFile;
- buttonImage = "../FileEditor.wo/SaveButton.gif";
- };
-
- Comment: WOConditional {
- condition = NO;
- };
-