public EditorFileBrowserSettings(EditorFileBrowserMessages messages)
        {
            FileTypes = DefaultFileTypes;
            this.messages = messages;

            Read = new EditorFileBrowserOperation();
            Upload = new EditorFileBrowserOperation();
            Create = new EditorFileBrowserOperation();
            Destroy = new EditorFileBrowserOperation();
            File = new EditorFileBrowserOperation();
        }
Ejemplo n.º 2
0
        public EditorMessages()
        {
            Bold = Messages.Editor_Bold;
            Italic = Messages.Editor_Italic;
            Underline = Messages.Editor_Underline;
            Strikethrough = Messages.Editor_Strikethrough;
            Superscript = Messages.Editor_Superscript;
            Subscript = Messages.Editor_Subscript;
            JustifyCenter = Messages.Editor_JustifyCenter;
            JustifyLeft = Messages.Editor_JustifyLeft;
            JustifyRight = Messages.Editor_JustifyRight;
            JustifyFull = Messages.Editor_JustifyFull;
            InsertOrderedList = Messages.Editor_InsertOrderedList;
            InsertUnorderedList = Messages.Editor_InsertUnorderedList;
            Indent = Messages.Editor_Indent;
            Outdent = Messages.Editor_Outdent;
            CreateLink = Messages.Editor_CreateLink;
            Unlink = Messages.Editor_Unlink;
            InsertImage = Messages.Editor_InsertImage;
            InsertFile = Messages.Editor_InsertFile;
            InsertHtml = Messages.Editor_InsertHtml;
            FontName = Messages.Editor_FontName;
            FontNameInherit = Messages.Editor_FontNameInherit;
            FontSize = Messages.Editor_FontSize;
            FontSizeInherit = Messages.Editor_FontSizeInherit;
            FormatBlock = Messages.Editor_FormatBlock;
            Formatting = Messages.Editor_Formatting;
            Styles = Messages.Editor_Styles;
            ForeColor = Messages.Editor_ForeColor;
            BackColor = Messages.Editor_BackColor;
            ViewHtml = Messages.Editor_ViewHtml;
            ImageWebAddress= Messages.Editor_ImageWebAddress;
            ImageAltText= Messages.Editor_ImageAltText;
            LinkWebAddress = Messages.Editor_LinkWebAddress;
            LinkText = Messages.Editor_LinkText;
            LinkToolTip = Messages.Editor_LinkToolTip;
            LinkOpenInNewWindow= Messages.Editor_LinkOpenInNewWindow;
            DialogInsert = Messages.Editor_DialogInsert;
            DialogButtonSeparator = Messages.Editor_DialogButtonSeparator;
            DialogCancel = Messages.Editor_DialogCancel;
            DialogUpdate = Messages.Editor_DialogUpdate;
            CreateTable = Messages.Editor_CreateTable;
            AddColumnLeft = Messages.Editor_AddColumnLeft;
            AddColumnRight = Messages.Editor_AddColumnRight;
            AddRowAbove = Messages.Editor_AddRowAbove;
            AddRowBelow = Messages.Editor_AddRowBelow;
            DeleteRow = Messages.Editor_DeleteRow;
            DeleteColumn = Messages.Editor_DeleteColumn;

            ImageBrowserMessages = new EditorImageBrowserMessages();
            FileBrowserMessages = new EditorFileBrowserMessages();
        }