Insertion des images attachées migrée.
[ckeditor.git] / skins / ckeditor / plugins / plinn_image / plugin.js
index 7181a9e..022af4c 100644 (file)
@@ -1,4 +1,4 @@
-/* © Benoît Pin, MINES ParisTech */
+/* © 2011 Benoît Pin, MINES ParisTech */
 
 
 (function(){
@@ -23,11 +23,29 @@ function updateImageSizeUrlParameters(img) {
        }
 }
 
+function openPlinnImageDialog(path, editor) {
+       var winOptions  = "location=no,menubar=no,toolbar=no,dependent=yes,dialog=yes,minimizable=no,modal=yes,alwaysRaised=yes" +
+               ",resizable=yes"  +
+               ",width=801"  +
+               ",height=600";
+               //",top="  + iTop +
+               //",left=" + iLeft ;
+       
+       var win = open(path + 'dialog/plinn_image.html', 'PlinnImageDialog', winOptions);
+       win.dialogArguments = new Object();
+       win.dialogArguments.editor = editor;
+       win.dialogArguments.pluginPath = path;
+       win.dialogArguments.CKEDITOR = CKEDITOR;
+}
+
 
 CKEDITOR.plugins.add( 'plinn_image',
 {
        init : function( editor )
        {
+               /* Add listener on getData event to compute images
+                  src attributes before saving data.
+               */
                editor.on('instanceReady', function(){
                        editor.on('getData',
                                function(evt) {
@@ -39,6 +57,18 @@ CKEDITOR.plugins.add( 'plinn_image',
                                }
                        );
                });
+               var pluginPath = this.path;
+               var command = editor.addCommand('plinn_image',
+                       {
+                               exec : function(editor){openPlinnImageDialog(pluginPath, editor);}
+                       });
+               
+               editor.ui.addButton('PlinnImage',
+                       {
+                               label : editor.lang.common.image,
+                               icon : pluginPath + 'dialog/plinn_image.gif',
+                               command : 'plinn_image'
+                       });
        }
 });