Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
// This Source Code is in the Public Domain per: http://unlicense.org
package org.litesoft.GWT.client.widgets;

import org.litesoft.GWT.client.*;
import org.litesoft.GWT.client.widgets.nonpublic.*;
import org.litesoft.commonfoundation.typeutils.*;
import org.litesoft.core.*;
import org.litesoft.core.delayed.*;
import org.litesoft.logger.*;

import com.google.gwt.user.client.*;
import com.google.gwt.user.client.ui.*;

public class SizeableDualImage extends AbstractSizeableComposite implements SourcesClickEvents,
                                                                            SourcesMouseEvents,
                                                                            SourcesLoadEvents
{
    public static final String IMAGE_LOAD_ERROR = "common/images/misc/NotFound.gif";

    private static final Logger LOGGER = LoggerFactory.getLogger( SizeableDualImage.class );

    private MyHtmlPanel mHtmlPanel = new MyHtmlPanel( StaticSimpleIdSource.getNext() );

    public SizeableDualImage( String pUrl )
    {
        initWidget( new ConstrainingSizeableOuterLayers( mHtmlPanel, "litesoft-DualImage", true, mHtmlPanel.getInnerTD() ) );

        setUrl( pUrl );
        setImageSize( 100, 100 );
    }

    public SizeableDualImage()
    {
        this( null );
    }

    public SizeableDualImage style( String pStyleName )
    {
        addStyleName( pStyleName );
        return this;
    }

    public SizeableDualImage imageSize( int pWidthPixels, int pHeightPixels )
    {
        setImageSize( pWidthPixels, pHeightPixels );
        return this;
    }

    public void setImageSize( int pWidthPixels, int pHeightPixels )
    {
        Integers.assertPositive( "Width", pWidthPixels );
        Integers.assertPositive( "Height", pHeightPixels );
        mHtmlPanel.setImageSize( pWidthPixels, pHeightPixels );
    }

    public void setImageWidth( int pWidthPixels )
    {
        Integers.assertPositive( "Width", pWidthPixels );
        mHtmlPanel.setContainerWidth( pWidthPixels );
    }

    public void setImageHeight( int pHeightPixels )
    {
        Integers.assertPositive( "Height", pHeightPixels );
        mHtmlPanel.setContainerHeight( pHeightPixels );
    }

    /**
     * Gets the URL of the image.
     *
     * @return the image URL
     */
    public String getUrl()
    {
        return mHtmlPanel.getHiddenImage().getUrl();
    }

    /**
     * Sets the URL of the image to be displayed.
     *
     * @param pUrl the image URL
     */
    public void setUrl( String pUrl )
    {
        setUrl( pUrl, pUrl, null );
    }

    public void setUrl( String pUrl, String pTitle, Command pClickCommand )
    {
        mHtmlPanel.setUrl( pUrl, pTitle, pClickCommand );
    }

    // proxies to FocusPanel

    private DelegatingClickListenerCollection mClickListeners;
    private DelegatingMouseListenerCollection mMouseListeners;
    private DelegatingLoadListenerCollection mLoadListeners;

    @Override
    public void addClickListener( ClickListener listener )
    {
        if ( listener != null )
        {
            if ( mClickListeners == null )
            {
                mClickListeners = new DelegatingClickListenerCollection( this, mHtmlPanel.getDisplayImage() );
            }
            mClickListeners.add( listener );
        }
    }

    @Override
    public void removeClickListener( ClickListener listener )
    {
        if ( (listener != null) && (mClickListeners != null) && //
             mClickListeners.remove( listener ) && mClickListeners.isEmpty() )
        {
            mHtmlPanel.getDisplayImage().removeClickListener( mClickListeners );
            mClickListeners = null;
        }
    }

    @Override
    public void addMouseListener( MouseListener listener )
    {
        if ( listener != null )
        {
            if ( mMouseListeners == null )
            {
                mMouseListeners = new DelegatingMouseListenerCollection( this, mHtmlPanel.getDisplayImage() );
            }
            mMouseListeners.add( listener );
        }
    }

    @Override
    public void removeMouseListener( MouseListener listener )
    {
        if ( (listener != null) && (mMouseListeners != null) && //
             mMouseListeners.remove( listener ) && mMouseListeners.isEmpty() )
        {
            mHtmlPanel.getDisplayImage().removeMouseListener( mMouseListeners );
            mMouseListeners = null;
        }
    }

    @Override
    public void addLoadListener( LoadListener listener )
    {
        if ( listener != null )
        {
            if ( mLoadListeners == null )
            {
                mLoadListeners = new DelegatingLoadListenerCollection( this, mHtmlPanel.getDisplayImage() );
            }
            mLoadListeners.add( listener );
        }
    }

    @Override
    public void removeLoadListener( LoadListener listener )
    {
        if ( (listener != null) && (mLoadListeners != null) && //
             mLoadListeners.remove( listener ) && mLoadListeners.isEmpty() )
        {
            mHtmlPanel.getDisplayImage().removeLoadListener( mLoadListeners );
            mLoadListeners = null;
        }
    }

    //****** Implementation Code Block to support delegation to AbsoluteSizeHelper

    public SizeableDualImage stretchable()
    {
        LLstretchable();
        return this;
    }

    // private implementation

    @Override
    public void setWidth( String width )
    {
        super.setWidth( width );
    }

    @Override
    public void setHeight( String height )
    {
        super.setHeight( height );
    }

    public static class DelegatingLoadListenerCollection extends LoadListenerCollection implements LoadListener
    {
        @SuppressWarnings({"GwtInconsistentSerializableClass"})
        private final Widget owner;

        /**
         * Constructor for {@link DelegatingLoadListenerCollection}.
         *
         * @param owner       owner of listeners
         * @param delegatedTo source of events
         */
        public DelegatingLoadListenerCollection( Widget owner, SourcesLoadEvents delegatedTo )
        {
            this.owner = owner;
            delegatedTo.addLoadListener( this );
        }

        @Override
        public void onError( Widget sender )
        {
            fireError( owner );
        }

        @Override
        public void onLoad( Widget sender )
        {
            fireLoad( owner );
        }
    }

    private static class MyHtmlPanel extends HTMLPanel implements LoadListener,
                                                                  ClickListener
    {
        private static final String HIDDEN_PARENT_ID_PREFIX = "DIHI_";
        private static final String DISPLAY_PARENT_ID_PREFIX = "DIVI_";

        private static final String TRANSPARENT_SPACER = "<img width='1' height='1' src='" + TransparentImage.URL + "'>";

        private OurImage mHiddenImage = new OurImage( TransparentImage.URL );
        private OurImage mDisplayImage = new OurImage( TransparentImage.URL );
        private Element mInnerTD;
        private String mTitle = "";
        private Command mClickCommand = null;
        private String mPendingURL = null;

        public MyHtmlPanel( int zUniqueID )
        {
            super( "<table cellpadding='0' cellspacing='0' border='0'>" + //
                   /**/"<tr>" + //
                   /*  */"<td colspan='3' class='litesoft-DualImageInnerBorder'>" + //
                   /*    */"<div id='" + HIDDEN_PARENT_ID_PREFIX + zUniqueID + "' style='height:1px; width:1px; overflow:hidden;'>" +
                   /*            */TRANSPARENT_SPACER + "<br>" + //
                   /*    */"</div>" + //
                   /*  */"</td>" + //
                   /**/"</tr>" + //
                   /**/"<tr>" + //
                   /*  */"<td class='litesoft-DualImageInnerBorder'>" + TRANSPARENT_SPACER + "</td>" + //
                   /*  */"<td class='litesoft-DualImageBG' align='center' valign='middle' id='" + DISPLAY_PARENT_ID_PREFIX + zUniqueID + "'></td>" + //
                   /*  */"<td class='litesoft-DualImageInnerBorder'>" + TRANSPARENT_SPACER + "</td>" + //
                   /**/"</tr>" + //
                   /**/"<tr>" + //
                   /*  */"<td colspan='3' class='litesoft-DualImageInnerBorder'>" + TRANSPARENT_SPACER + "</td>" +
                   /**/"</tr>" + //
                   "</table>" );

            add( mHiddenImage, HIDDEN_PARENT_ID_PREFIX + zUniqueID );
            add( mDisplayImage, DISPLAY_PARENT_ID_PREFIX + zUniqueID );

            mInnerTD = DOM.getParent( mDisplayImage.getElement() );

            mHiddenImage.addLoadListener( this );
            mDisplayImage.addClickListener( this );
        }

        @Override
        public void onClick( Widget sender )
        {
            if ( mClickCommand != null )
            {
                mClickCommand.execute();
            }
        }

        public Element getInnerTD()
        {
            return mInnerTD;
        }

        public Image getHiddenImage()
        {
            return mHiddenImage;
        }

        public Image getDisplayImage()
        {
            return mDisplayImage;
        }

        public void setUrl( String pUrl, String pTitle, Command pClickCommand )
        {
            if ( null != (pUrl = Strings.noEmpty( pUrl )) )
            {
                mTitle = Strings.deNull( pTitle );
                mClickCommand = pClickCommand;
                String zCurrentHiddenUrl = mHiddenImage.getUrl();
                if ( pUrl.equals( zCurrentHiddenUrl ) )
                {
                    mDisplayImage.setTitle( mTitle );
                }
                else if ( isAttached() )
                {
                    LLsetURL( pUrl );
                }
                else
                {
                    mPendingURL = pUrl;
                }
            }
        }

        @Override
        protected void onAttach()
        {
            super.onAttach();
            if ( mPendingURL != null )
            {
                String zURL = mPendingURL;
                mPendingURL = null;
                LLsetURL( zURL );
            }
        }

        private void LLsetURL( String pUrl )
        {
            LOGGER.info.log( "Loading: ", pUrl );
            setLoading();
            // Eliminate the "magic" width & height that IE somehow added!
            DOM.removeElementAttribute( mHiddenImage.getElement(), "width" );
            DOM.removeElementAttribute( mHiddenImage.getElement(), "height" );
            mHiddenImage.setUrl( pUrl );
        }

        public void setImageSize( int pWidthPixels, int pHeightPixels )
        {
            setContainerWidth( pWidthPixels );
            setContainerHeight( pHeightPixels );
        }

        private int getContainerHeight()
        {
            return DOM.getElementPropertyInt( mInnerTD, "height" );
        }

        public void setContainerHeight( int pHeightPixels )
        {
            DOM.setElementPropertyInt( mInnerTD, "height", pHeightPixels );
        }

        private int getContainerWidth()
        {
            return DOM.getElementPropertyInt( mInnerTD, "width" );
        }

        public void setContainerWidth( int pWidthPixels )
        {
            DOM.setElementPropertyInt( mInnerTD, "width", pWidthPixels );
        }

        @Override
        public void setWidth( String pWidth )
        {
            int zNewSize = parse( "Width", pWidth );
            int zCurImageSize = mDisplayImage.getWidth();
            int zCurContainerSize = getContainerWidth();
            if ( zNewSize != zCurContainerSize )
            {
                if ( zNewSize < zCurImageSize )
                {
                    mDisplayImage.setWidth( zNewSize );
                }
                setContainerWidth( zNewSize );
                reScale();
            }
        }

        @Override
        public void setHeight( String pHeight )
        {
            int zNewSize = parse( "Height", pHeight );
            int zCurImageSize = mDisplayImage.getHeight();
            int zCurContainerSize = getContainerHeight();
            if ( zNewSize != zCurContainerSize )
            {
                if ( zNewSize < zCurImageSize )
                {
                    mDisplayImage.setHeight( zNewSize );
                }
                setContainerHeight( zNewSize );
                reScale();
            }
        }

        private int parse( String pWhat, String pValue )
        {
            try
            {
                return AbstractSizeableWidget.parse( pValue );
            }
            catch ( NumberFormatException e )
            {
                throw new IllegalArgumentException( "Attempt to set" + pWhat + "( \"" + pValue + "\" ) on " + getClass().getName() );
            }
        }

        private void reScale()
        {
            if ( mLoaded )
            {
                int zCurImageWidth = mHiddenImage.getOffsetWidth();
                int zCurImageHeight = mHiddenImage.getOffsetHeight();

                if ( (zCurImageHeight == 1) && (zCurImageWidth == 1) )
                {
                    LOGGER.warn.log( "Hidden Image still reporting 1x1" );
                    TimedRunnableManager.INSTANCE.runIn( new TimedRunnable()
                    {
                        @Override
                        public Again runOnce()
                        {
                            reScale();
                            return null;
                        }
                    }, 50 );
                }

                int zCurContainerWidth = getContainerWidth();
                int zCurContainerHeight = getContainerHeight();
                float zFactorWidth = (1.0f * zCurContainerWidth) / zCurImageWidth;
                float zFactorHeight = (1.0f * zCurContainerHeight) / zCurImageHeight;
                float zFactor = Math.min( zFactorWidth, zFactorHeight );
                int zNewWidth = (int) (zFactor * zCurImageWidth);
                int zNewHeight = (int) (zFactor * zCurImageHeight);
                mDisplayImage.setWidth( zNewWidth );
                mDisplayImage.setHeight( zNewHeight );

                //                System.out.println( "reScale:\n" + //
                ////                Window.alert( //
                //                mHiddenImage.getUrl() + "\n" + //
                //                "zCurImageWidth=" + zCurImageWidth + "\n"+ //
                //                "zCurImageHeight=" + zCurImageHeight + "\n"+ //
                ////                "zCurContainerWidth=" + zCurContainerWidth + "\n"+ //
                ////                "zCurContainerHeight=" + zCurContainerHeight + "\n"+ //
                ////                "zFactorWidth=" + zFactorWidth + "\n"+ //
                ////                "zFactorHeight=" + zFactorHeight + "\n"+ //
                //                "zFactor=" + zFactor + "\n"+ //
                //                "zNewWidth=" + zNewWidth + "\n"+ //
                //                "zNewHeight=" + zNewHeight + "\n"+ //
                ////                "mDisplayImage.getWidth()=" + mDisplayImage.getWidth() + "\n"+ //
                ////                "mDisplayImage.getHeight()=" + mDisplayImage.getHeight() + "\n"+ //
                ////                "mDisplayImage.getOffsetWidth()=" + mDisplayImage.getOffsetWidth() + "\n"+ //
                ////                "mDisplayImage.getOffsetHeight()=" + mDisplayImage.getOffsetHeight() + "\n"+ //
                //                "" );

                String zHiddenUrl = mHiddenImage.getUrl();
                if ( !Objects.areNonArraysEqual( zHiddenUrl, mDisplayImage.getUrl() ) )
                {
                    mDisplayImage.setUrl( zHiddenUrl );
                }
            }
        }

        private boolean mLoaded = false;

        private void setLoading()
        {
            mLoaded = false;
        }

        private void setLoaded()
        {
            if ( !mLoaded )
            {
                mLoaded = true;
                reScale();
                mDisplayImage.setTitle( mTitle );
            }
        }

        @Override
        public void onError( Widget sender )
        {
            String zNotFound = "Not found: " + mHiddenImage.getUrl();
            LOGGER.error.log( zNotFound );
            setUrl( IMAGE_LOAD_ERROR, zNotFound, null );
        }

        @Override
        public void onLoad( Widget sender )
        {
            LOGGER.info.log( "Loaded: ", mHiddenImage.getUrl() );
            setLoaded();
        }
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/SizeableDualImage.java

Diff revisions: vs.
Revision Author Commited Message
947 Diff Diff GeorgeS picture GeorgeS Fri 06 Jun, 2014 23:36:56 +0000

Correct Spelling of package!

939 Diff Diff GeorgeS picture GeorgeS Mon 02 Jun, 2014 21:30:31 +0000

Extracting commonfoundation

821 Diff Diff GeorgeS picture GeorgeS Sun 19 Aug, 2012 00:08:41 +0000
804 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 12:48:51 +0000
802 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 04:04:47 +0000
801 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 03:59:02 +0000
390 Diff Diff GeorgeS picture GeorgeS Sun 14 Aug, 2011 19:33:48 +0000
151 Diff Diff GeorgeS picture GeorgeS Thu 17 Mar, 2011 04:16:22 +0000
49 Diff Diff GeorgeS picture GeorgeS Mon 12 Apr, 2010 02:59:10 +0000

License Text

23 GeorgeS picture GeorgeS Wed 24 Feb, 2010 00:34:32 +0000