Page 1 of 1

0.6->0.7 Dim problem

Posted: Thu Oct 22, 2009 11:32
by kili
Hi,

this is a FrameWindow in CELayoutEditor with CEGUI0.7(svn trunk 10/19)
Image

this is a FrameWindow in CELayoutEditor with CEGUI0.62b
Image

if i change this : (FrameWindow in looknfeel)

Code: Select all

<NamedArea name="ClientWithTitleWithFrame">
         <Area>
            <Dim type="LeftEdge" >
               <ImageDim imageset="MIPUI_Part" image="WindowTopLeft" dimension="Width" />
            </Dim>
            <Dim type="TopEdge" >
               <WidgetDim widget="__auto_titlebar__" dimension="BottomEdge">
                  <DimOperator op="Subtract">
                     <AbsoluteDim value="4" />
                  </DimOperator>
               </WidgetDim>
            </Dim>
            <Dim type="RightEdge" >
               <UnifiedDim scale="1" type="RightEdge">
                  <DimOperator op="Subtract">
                     <ImageDim imageset="MIPUI_Part" image="WindowTopRight" dimension="Width" />
                  </DimOperator>
               </UnifiedDim>
            </Dim>
            <Dim type="BottomEdge" >
               <UnifiedDim scale="1" type="BottomEdge">
                  <DimOperator op="Subtract">
                     <ImageDim imageset="MIPUI_Part" image="WindowBottomEdge" dimension="Height" />
                  </DimOperator>
               </UnifiedDim>
            </Dim>
         </Area>
      </NamedArea>



to

Code: Select all

<NamedArea name="ClientWithTitleWithFrame">
         <Area>
            <Dim type="LeftEdge" >
               <AbsoluteDim value="0" />
            </Dim>
            <Dim type="TopEdge" >
               <AbsoluteDim value="0" />
            </Dim>
            <Dim type="Width" >
               <UnifiedDim scale="1" type="Width" />
            </Dim>
            <Dim type="Height" >
               <UnifiedDim scale="1" type="Height" />
            </Dim>
         </Area>
      </NamedArea>


the FrameWindow goes fine as 0.6, is there anything wrong in DimOperator?

ps. I use the same datafiles folder.

Re: 0.6->0.7 Dim problem

Posted: Fri Oct 23, 2009 09:50
by CrazyEddie
Which search terms did you try?

I found that searching for 'framewindow' (since that's where the issue is) came up with a topic that discusses the same issue, the reasons behind it, and a couple of options for how to get around it.

HTH

CE.

Re: 0.6->0.7 Dim problem

Posted: Mon Oct 26, 2009 02:07
by kili
I searched "DimOperator".
Thanks a lot for your help! :)