235 lines
6.2 KiB
C++
235 lines
6.2 KiB
C++
/*************************************************************************
|
|
*
|
|
* $RCSfile: dsply_da.cxx,v $
|
|
*
|
|
* $Revision: 1.1.1.1 $
|
|
*
|
|
* last change: $Author: np $ $Date: 2002-03-08 14:45:22 $
|
|
*
|
|
* The Contents of this file are made available subject to the terms of
|
|
* either of the following licenses
|
|
*
|
|
* - GNU Lesser General Public License Version 2.1
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
*
|
|
* Sun Microsystems Inc., October, 2000
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
*
|
|
* Sun Industry Standards Source License Version 1.1
|
|
* =================================================
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
* Source License Version 1.1 (the "License"); You may not use this file
|
|
* except in compliance with the License. You may obtain a copy of the
|
|
* License at http://www.openoffice.org/license.html.
|
|
*
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
* See the License for the specific provisions governing your rights and
|
|
* obligations concerning the Software.
|
|
*
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
*
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
*
|
|
* All Rights Reserved.
|
|
*
|
|
* Contributor(s): _______________________________________
|
|
*
|
|
*
|
|
************************************************************************/
|
|
|
|
|
|
#include <precomp.h>
|
|
#include "dsply_da.hxx"
|
|
|
|
|
|
// NOT FULLY DEFINED SERVICES
|
|
#include <cosv/template/tpltools.hxx>
|
|
#include <ary/cpp/c_disply.hxx>
|
|
#include <ary/cpp/crog_grp.hxx>
|
|
#include <ary/cpp/c_vari.hxx>
|
|
#include <udm/html/htmlitem.hxx>
|
|
#include "hd_docu.hxx"
|
|
#include "hdimpl.hxx"
|
|
#include "html_kit.hxx"
|
|
#include "opageenv.hxx"
|
|
#include "pagemake.hxx"
|
|
|
|
|
|
using namespace csi;
|
|
|
|
|
|
|
|
DataDisplay::DataDisplay( OuputPage_Environment & io_rEnv )
|
|
: // aMap_GlobalDataDisplay,
|
|
// pClassMembersDisplay,
|
|
pEnv( &io_rEnv ),
|
|
pDocuShow( new Docu_Display(io_rEnv) )
|
|
{
|
|
}
|
|
|
|
DataDisplay::~DataDisplay()
|
|
{
|
|
csv::erase_map_of_heap_ptrs( aMap_GlobalDataDisplay );
|
|
}
|
|
|
|
void
|
|
DataDisplay::Display_Variable( const ary::cpp::Variable & i_rData )
|
|
{
|
|
if ( Ce_IsInternal(i_rData) )
|
|
return;
|
|
|
|
PageDisplay & rPage = FindPage_for( i_rData );
|
|
|
|
csi::xml::Element & rOut = rPage.CurOut();
|
|
Display_SglDatum( rOut, i_rData );
|
|
}
|
|
|
|
void
|
|
DataDisplay::PrepareForConstants()
|
|
{
|
|
if (pClassMembersDisplay)
|
|
pClassMembersDisplay = 0;
|
|
|
|
csv::erase_map_of_heap_ptrs( aMap_GlobalDataDisplay );
|
|
}
|
|
|
|
void
|
|
DataDisplay::PrepareForVariables()
|
|
{
|
|
// Doesn't need to do anything yet.
|
|
}
|
|
|
|
void
|
|
DataDisplay::PrepareForStdMembers()
|
|
{
|
|
csv::erase_map_of_heap_ptrs( aMap_GlobalDataDisplay );
|
|
|
|
pClassMembersDisplay = new PageDisplay(*pEnv);
|
|
const ary::cpp::Class * pClass = pEnv->CurClass();
|
|
csv_assert( pClass != 0 );
|
|
pClassMembersDisplay->Setup_DataFile_for(*pClass);
|
|
}
|
|
|
|
void
|
|
DataDisplay::PrepareForStaticMembers()
|
|
{
|
|
// Doesn't need to do anything yet.
|
|
}
|
|
|
|
void
|
|
DataDisplay::Create_Files()
|
|
{
|
|
if (pClassMembersDisplay)
|
|
{
|
|
pClassMembersDisplay->Create_File();
|
|
pClassMembersDisplay = 0;
|
|
}
|
|
else
|
|
{
|
|
for ( Map_FileId2PagePtr::const_iterator it = aMap_GlobalDataDisplay.begin();
|
|
it != aMap_GlobalDataDisplay.end();
|
|
++it )
|
|
{
|
|
(*it).second->Create_File();
|
|
}
|
|
csv::erase_map_of_heap_ptrs( aMap_GlobalDataDisplay );
|
|
}
|
|
}
|
|
|
|
const ary::DisplayGate *
|
|
DataDisplay::inq_Get_ReFinder() const
|
|
{
|
|
return & pEnv->Gate();
|
|
}
|
|
|
|
PageDisplay &
|
|
DataDisplay::FindPage_for( const ary::cpp::Variable & i_rData )
|
|
{
|
|
if ( pClassMembersDisplay )
|
|
return *pClassMembersDisplay;
|
|
|
|
SourceFileId
|
|
nSourceFile = i_rData.Location();
|
|
PageDisplay *
|
|
pFound = csv::value_from_map( aMap_GlobalDataDisplay, nSourceFile );
|
|
if ( pFound == 0 )
|
|
{
|
|
pFound = new PageDisplay( *pEnv );
|
|
const ary::cpp::FileGroup *
|
|
pFgr = pEnv->Gate().RoGroups().Search_FileGroup( nSourceFile );
|
|
csv_assert( pFgr != 0 );
|
|
pFound->Setup_DataFile_for( *pFgr );
|
|
aMap_GlobalDataDisplay[nSourceFile] = pFound;
|
|
}
|
|
|
|
return *pFound;
|
|
}
|
|
|
|
void
|
|
DataDisplay::Display_SglDatum( csi::xml::Element & rOut,
|
|
const ary::cpp::Variable & i_rData )
|
|
{
|
|
adcdisp::ExplanationList aDocu(rOut, true);
|
|
aDocu.AddEntry( 0 );
|
|
|
|
aDocu.Term()
|
|
>> *new html::Label( DataLabel(i_rData.LocalName()) )
|
|
<< " ";
|
|
aDocu.Term()
|
|
<< i_rData.LocalName();
|
|
|
|
dshelp::Get_LinkedTypeText( aDocu.Def(), *pEnv, i_rData.Type() );
|
|
aDocu.Def()
|
|
<< " "
|
|
>> *new html::Strong
|
|
<< i_rData.LocalName();
|
|
if ( i_rData.ArraySize().length() > 0 )
|
|
{
|
|
aDocu.Def()
|
|
<< "["
|
|
<< i_rData.ArraySize()
|
|
<< "]";
|
|
}
|
|
if ( i_rData.Initialisation().length() > 0 )
|
|
{
|
|
aDocu.Def()
|
|
<< " = "
|
|
<< i_rData.Initialisation();
|
|
}
|
|
aDocu.Def()
|
|
<< ";"
|
|
<< new html::LineBreak
|
|
<< new html::LineBreak;
|
|
|
|
aDocu.AddEntry_NoTerm();
|
|
|
|
pDocuShow->Assign_Out( aDocu.Def() );
|
|
i_rData.Info().StoreAt( *pDocuShow );
|
|
pDocuShow->Unassign_Out();
|
|
|
|
rOut << new html::HorizontalLine;
|
|
}
|
|
|
|
|