source: trunk/filemanager/tp/ckeditor/_samples/api_dialog.html @ 2000

Revision 2000, 6.0 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implementação do módulo gerenciador de arquivos

Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<!--
3Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
4For licensing, see LICENSE.html or http://ckeditor.com/license
5-->
6<html xmlns="http://www.w3.org/1999/xhtml">
7<head>
8        <title>Sample - CKEditor</title>
9        <meta content="text/html; charset=utf-8" http-equiv="content-type"/>
10        <script type="text/javascript" src="../ckeditor.js"></script>
11        <script src="sample.js" type="text/javascript"></script>
12        <link href="sample.css" rel="stylesheet" type="text/css"/>
13        <style id="styles" type="text/css">
14
15.cke_button_myDialogCmd .cke_icon
16{
17        display : none !important;
18}
19
20.cke_button_myDialogCmd .cke_label
21{
22        display : inline !important;
23}
24
25        </style>
26        <script id="headscript" type="text/javascript">
27        //<![CDATA[
28
29// When opening a dialog, its "definition" is created for it, for
30// each editor instance. The "dialogDefinition" event is then
31// fired. We should use this event to make customizations to the
32// definition of existing dialogs.
33CKEDITOR.on( 'dialogDefinition', function( ev )
34        {
35                // Take the dialog name and its definition from the event
36                // data.
37                var dialogName = ev.data.name;
38                var dialogDefinition = ev.data.definition;
39
40                // Check if the definition is from the dialog we're
41                // interested on (the "Link" dialog).
42                if ( dialogName == 'link' )
43                {
44                        // Get a reference to the "Link Info" tab.
45                        var infoTab = dialogDefinition.getContents( 'info' );
46
47                        // Add a text field to the "info" tab.
48                        infoTab.add( {
49                                        type : 'text',
50                                        label : 'My Custom Field',
51                                        id : 'customField',
52                                        'default' : 'Sample!',
53                                        validate : function()
54                                        {
55                                                if ( /\d/.test( this.getValue() ) )
56                                                        return 'My Custom Field must not contain digits';
57                                        }
58                                });
59
60                        // Remove the "Link Type" combo and the "Browser
61                        // Server" button from the "info" tab.
62                        infoTab.remove( 'linkType' );
63                        infoTab.remove( 'browse' );
64
65                        // Set the default value for the URL field.
66                        var urlField = infoTab.get( 'url' );
67                        urlField['default'] = 'www.example.com';
68
69                        // Remove the "Target" tab from the "Link" dialog.
70                        dialogDefinition.removeContents( 'target' );
71
72                        // Add a new tab to the "Link" dialog.
73                        dialogDefinition.addContents({
74                                id : 'customTab',
75                                label : 'My Tab',
76                                accessKey : 'M',
77                                elements : [
78                                        {
79                                                id : 'myField1',
80                                                type : 'text',
81                                                label : 'My Text Field'
82                                        },
83                                        {
84                                                id : 'myField2',
85                                                type : 'text',
86                                                label : 'Another Text Field'
87                                        }
88                                ]
89                        });
90                }
91        });
92
93        //]]>
94        </script>
95</head>
96<body>
97        <h1>
98                CKEditor Sample
99        </h1>
100        <!-- This <div> holds alert messages to be display in the sample page. -->
101        <div id="alerts">
102                <noscript>
103                        <p>
104                                <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
105                                support, like yours, you should still see the contents (HTML data) and you should
106                                be able to edit it normally, without a rich editor interface.
107                        </p>
108                </noscript>
109        </div>
110        <!-- This <fieldset> holds the HTML that you will usually find in your
111             pages. -->
112        <p>
113                        This sample shows how to use the dialog API to customize dialogs whithout changing
114                        the original editor code. The following customizations are being done::</p>
115                <ol>
116                        <li><strong>Add dialog pages</strong> ("My Tab" in the Link dialog).</li>
117                        <li><strong>Remove a dialog tab</strong> ("Target" tab from the Link dialog).</li>
118                        <li><strong>Add dialog fields</strong> ("My Custom Field" into the Link dialog).</li>
119                        <li><strong>Remove dialog fields</strong> ("Link Type" and "Browser Server" the Link dialog).</li>
120                        <li><strong>Set default values for dialog fields</strong> (for the "URL" field in the
121                                Link dialog). </li>
122                        <li><strong>Create a custom dialog</strong> ("My Dialog" button).</li>
123                </ol>
124                <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
125                <script type="text/javascript">
126                //<![CDATA[
127                        // Replace the <textarea id="editor1"> with an CKEditor instance.
128                        var editor = CKEDITOR.replace( 'editor1',
129                                {
130                                        // Defines a simpler toolbar to be used in this sample.
131                                        // Note that we have added out "MyButton" button here.
132                                        toolbar : [ [ 'Source', '-', 'Bold', 'Italic', 'Underline', 'Strike','-','Link', '-', 'MyButton' ] ]
133                                });
134
135                        // Listen for the "pluginsLoaded" event, so we are sure that the
136                        // "dialog" plugin has been loaded and we are able to do our
137                        // customizations.
138                        editor.on( 'pluginsLoaded', function( ev )
139                                {
140                                        // If our custom dialog has not been registered, do that now.
141                                        if ( !CKEDITOR.dialog.exists( 'myDialog' ) )
142                                        {
143                                                // We need to do the following trick to find out the dialog
144                                                // definition file URL path. In the real world, you would simply
145                                                // point to an absolute path directly, like "/mydir/mydialog.js".
146                                                var href = document.location.href.split( '/' );
147                                                href.pop();
148                                                href.push( 'api_dialog', 'my_dialog.js' );
149                                                href = href.join( '/' );
150
151                                                // Finally, register the dialog.
152                                                CKEDITOR.dialog.add( 'myDialog', href );
153                                        }
154
155                                        // Register the command used to open the dialog.
156                                        editor.addCommand( 'myDialogCmd', new CKEDITOR.dialogCommand( 'myDialog' ) );
157
158                                        // Add the a custom toolbar buttons, which fires the above
159                                        // command..
160                                        editor.ui.addButton( 'MyButton',
161                                                {
162                                                        label : 'My Dialog',
163                                                        command : 'myDialogCmd'
164                                                } );
165                                });
166                //]]>
167                </script>
168        <div id="footer">
169                <hr/>
170                <p>
171                        CKEditor - The text editor for Internet - <a href="http://ckeditor.com/" shape="rect">http://ckeditor.com</a>
172                </p>
173                <p id="copy">
174                        Copyright © 2003-2009, <a href="http://cksource.com/" shape="rect">CKSource</a> - Frederico Knabben. All rights reserved.
175                </p>
176        </div>
177</body>
178</html>
Note: See TracBrowser for help on using the repository browser.