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
// This Source Code is in the Public Domain per: http://unlicense.org
package org.litesoft.GWT.client.widgets.nonpublic;

import org.litesoft.GWT.client.widgets.*;
import org.litesoft.commonfoundation.typeutils.*;
import org.litesoft.logger.*;
import org.litesoft.render.*;
import org.litesoft.uispecification.*;

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

public interface GwtRenderableRect extends RenderableRect
{
    public static final Logger LOGGER = LoggerFactory.getLogger( GwtRenderableRect.class );

    public static final Widget[] NO_WIDGETS = new Widget[0];

    /**
     * This method is called to attach a widget browser's document (if there are any child widgets they are
     * also attached AFTER the attached flag is set).
     * <p/>
     * This method is normally overiden, and after a call to super, "renderingParticipationChanged()" is notified.
     *
     * @see Widget#onAttach()
     */
    public void onAttach();

    /**
     * This method is called to detach the widget from the browser's document (if there are any child widgets
     * they are deattached BEFORE the attached flag is set).
     * <p/>
     * This method is normally overiden, and after a call to super, "renderingParticipationChanged()" is notified.
     *
     * @see Widget#onDetach()
     */
    public void onDetach();

    /**
     * Sets whether this object is visible - normally overiden from "UIObject" so that "renderingParticipationChanged()" can be notified.
     *
     * @param pVisible <code>true</code> to show the object, <code>false</code>
     *                 to hide it
     */
    public void setVisible( boolean pVisible );

    /**
     * Gets the Widget's offset width in pixels (not normally overiden from "UIObject"). This is the total width of the
     * Widget, including decorations such as border, margin, and padding.
     *
     * @return the Widget's offset width
     */
    public int getOffsetWidth();

    /**
     * Sets the widget's width, overiding the method in "UIObject". Unlike the standard GWT "UIObject" method, the
     * pWidth is "assumed" to include ALL decorations (such as border, margin, and padding).  This means that a
     * subsequent call to "getOffsetWidth()" will "eventually" return the value "set"!
     * <p/>
     * This method is normally delegated to the 'X' RenderHelper
     *
     * @param pWidth the Widget's new width, in CSS px (e.g. "10")
     */
    public void setWidth( String pWidth );

    /**
     * Sets the widget's width, unlike the standard GWT "UIObject" method, this pWidth is "assumed" to include ALL
     * decorations (such as border, margin, and padding).  This means that a subsequent call to "getOffsetWidth()"
     * will "eventually" return the value "set"!
     * <p/>
     * This method is used by the 'X' RenderHelper via the GwtRenderDimensionAdapterX to bypass the normal delegation
     * on "setWidth()" to the 'X' RenderHelper.
     *
     * @param pWidth the Widget's new width, in CSS px (e.g. "10")
     */
    public void LLsetWidgetWidth( int pWidth );

    /**
     * Remove the Widget's width, after this call subsequent calls to "getOffsetWidth()" will "eventually" return the
     * "natural" width of the Widget!
     */
    public void clearWidth();

    /**
     * Gets the Widget's offset height in pixels (not normally overiden from "UIObject"). This is the total height of the
     * Widget, including decorations such as border, margin, and padding.
     *
     * @return the Widget's offset height
     */
    public int getOffsetHeight();

    /**
     * Sets the widget's height, overiding the method in "UIObject". Unlike the standard GWT "UIObject" method, this
     * pHeight is "assumed" to include ALL decorations (such as border, margin, and padding).  This means that a
     * subsequent call to "getOffsetHeight()" will "eventually" return the value "set"!
     * <p/>
     * This method is normally delegated to the 'Y' RenderHelper
     *
     * @param pHeight the Widget's new height, in CSS px (e.g. "10")
     */
    public void setHeight( String pHeight );

    /**
     * Sets the widget's height, unlike the standard GWT "UIObject" method, this pHeight is "assumed" to include ALL
     * decorations (such as border, margin, and padding).  This means that a subsequent call to "getOffsetHeight()"
     * will "eventually" return the value "set"!
     * <p/>
     * This method is used by the 'Y' RenderHelper via the GwtRenderDimensionAdapterY to bypass the normal delegation
     * on "setHeight()" to the 'Y' RenderHelper.
     *
     * @param pHeight the Widget's new height, in CSS px (e.g. "10")
     */
    public void LLsetWidgetHeight( int pHeight );

    /**
     * Remove the Widget's height, after this call subsequent calls to "getOffsetHeight()" will "eventually" return the
     * "natural" height of the Widget!
     */
    public void clearHeight();

    public static final GwtRenderableRect NULL_GRR = new NullGwtRenderableRect();

    public static class NullGwtRenderableRect extends NullRenderableRect implements GwtRenderableRect
    {
        @Override
        public void onAttach()
        {
            throw whatThe( "onAttach" );
        }

        @Override
        public void onDetach()
        {
            throw whatThe( "onDetach" );
        }

        @Override
        public void setVisible( boolean pVisible )
        {
            throw whatThe( "setVisible", Boolean.toString( pVisible ) );
        }

        @Override
        public int getOffsetWidth()
        {
            return 0;
        }

        @Override
        public void setWidth( String pWidth )
        {
            throw whatThe( "setWidth", pWidth );
        }

        @Override
        public void LLsetWidgetWidth( int pWidth )
        {
            throw whatThe( "LLsetWidgetWidth", pWidth );
        }

        @Override
        public void clearWidth()
        {
        }

        @Override
        public int getOffsetHeight()
        {
            return 0;
        }

        @Override
        public void setHeight( String pHeight )
        {
            throw whatThe( "setHeight", pHeight );
        }

        @Override
        public void LLsetWidgetHeight( int pHeight )
        {
            throw whatThe( "LLsetWidgetHeight", pHeight );
        }

        @Override
        public void clearHeight()
        {
        }
    }

    public static class Parse
    {
        public static Integer size( String pSize )
                throws NumberFormatException
        {
            String cleaned = Strings.deNull( pSize ).trim();
            if ( cleaned.length() == 0 )
            {
                return null;
            }
            String toParse = "0" + cleaned;
            if ( toParse.endsWith( "px" ) )
            {
                toParse = toParse.substring( 0, toParse.length() - 2 );
            }
            return Integer.parseInt( toParse );
        }

        public static void andSetSize( final RenderHelper pRenderHelper, String pSize )
        {
            Integer zInteger;
            try
            {
                zInteger = size( pSize );
            }
            catch ( NumberFormatException e )
            {
                LOGGER.error.log( e, pRenderHelper, " setSize( ", pSize, " )" );
                return;
            }
            if ( zInteger != null )
            {
                pRenderHelper.setSize( zInteger );
            }
        }
    }

    public static class Size
    {
        public static void set( Widget pOnWidget, GwtElementDimensionHelper pDimensionHelper, Element pContainerElement, int pNewSize, int pDecorationSize )
        {
            if ( LOGGER.trace.isEnabled() )
            {
                LOGGER.trace.log( "Size.set ", pDimensionHelper.getWhat(), " on ", pOnWidget.getClass(), " NewSize= " + pNewSize, //
                                  " DecorationSize= " + pDecorationSize, //
                                  " -> " + (pNewSize - pDecorationSize) );
            }
            set( pOnWidget, pDimensionHelper, pContainerElement, pNewSize - pDecorationSize );
        }

        @SuppressWarnings({"UnusedDeclaration"})
        public static void set( Widget pOnWidget, GwtElementDimensionHelper pDimensionHelper, Element pSizingElement, int pNewSize )
        {
            pDimensionHelper.setStyleDimension( pSizingElement, pNewSize );
        }

        @SuppressWarnings({"UnusedDeclaration"})
        public static void clear( Widget pOnWidget, GwtElementDimensionHelper pDimensionHelper, Element pSizingElement )
        {
            pDimensionHelper.removeStyleDimension( pSizingElement );
        }
    }

    public static class DecorationSize
    {
        @SuppressWarnings({"UnusedDeclaration"})
        public static int calculate( Widget pOnWidget, GwtElementDimensionHelper pDimensionHelper, Element pOuterElement, Element pContainerElement )
        {
            int zOuterDim = pDimensionHelper.getOffsetDimension( pOuterElement );
            int zContainerDim = pDimensionHelper.getOffsetDimension( pContainerElement );
            return zOuterDim - zContainerDim;
        }
    }

    public static class ContainerSupport
    {
        public static StyleContainerElements createSCEs( Element pStyleParentElement, StyleSet pStyleSet )
        {
            return (pStyleSet == null) ? //
                   new StyleContainerElements( pStyleParentElement ) : new StyleContainerElements( CommonElementHelper.appendToParent( pStyleSet.getOuterElement(), pStyleParentElement ), pStyleSet.getInnerElement() );
        }

        public static Overflow getAppropriateCombinedOverflow( RenderContainmentApproach pContainmentApproachX, RenderContainmentApproach pContainmentApproachY )
        {
            return pContainmentApproachX.getOverflow().mergeWith( pContainmentApproachY.getOverflow() );
        }

        public static Widget[] toArray( WidgetCollection pCollection )
        {
            int zSize = pCollection.size();
            if ( zSize == 0 )
            {
                return NO_WIDGETS;
            }
            Widget[] rv = new Widget[zSize];
            for ( int i = 0; i < zSize; i++ )
            {
                rv[i] = pCollection.get( i );
            }
            return rv;
        }
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/GwtRenderableRect.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

802 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 04:04:47 +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 Diff Diff GeorgeS picture GeorgeS Wed 24 Feb, 2010 00:34:32 +0000
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000