office-gobmx/soldep/source/depper.cxx

687 lines
21 KiB
C++
Raw Normal View History

2004-02-26 07:51:54 -06:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2004-02-26 07:51:54 -06:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2004-02-26 07:51:54 -06:00
*
* OpenOffice.org - a multi-platform office productivity suite
2004-02-26 07:51:54 -06:00
*
* This file is part of OpenOffice.org.
2004-02-26 07:51:54 -06:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2004-02-26 07:51:54 -06:00
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2004-02-26 07:51:54 -06:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2004-02-26 07:51:54 -06:00
*
************************************************************************/
#include <stdio.h>
#include <tools/stream.hxx>
#include <tools/debug.hxx>
#include <vcl/msgbox.hxx>
#include <svtools/prgsbar.hxx>
#include <soldep/depper.hxx>
#include <soldep/objwin.hxx>
2004-02-26 07:51:54 -06:00
#include "math.h"
#include "time.h"
#include "stdlib.h"
2006-04-20 09:16:35 -05:00
#include "dtsodcmp.hrc"
2004-02-26 07:51:54 -06:00
#include <vcl/svapp.hxx>
#define MIN(a,b) (a)<(b)?(a):(b)
#define MAX(a,b) (a)>(b)?(a):(b)
2006-04-20 09:16:35 -05:00
ByteString sDelimiterLine("#==========================================================================");
2004-02-26 07:51:54 -06:00
Depper::Depper( Window* pBaseWindow ):
2006-04-20 09:16:35 -05:00
Window( pBaseWindow ),
mbIsPrjView(FALSE),
2004-02-26 07:51:54 -06:00
maDefPos( 50, 50 ),
maDefSize( 60, 25 ),
2006-04-20 09:16:35 -05:00
mnViewMask( 1 ),
2004-02-26 07:51:54 -06:00
pSubBar( NULL ),
pMainBar( NULL ),
2006-04-20 09:16:35 -05:00
pSubText( NULL ),
pMainText( NULL ),
maArrangeDlg( pBaseWindow ),
mpPrjIdMapper( NULL ),
maToolBox( pBaseWindow, DtSodResId(TID_SOLDEP_MAIN) ),
maTaskBarFrame( pBaseWindow, 0)
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
maArrangeDlg.Hide();
2004-02-26 07:51:54 -06:00
mpProcessWin = pBaseWindow;
2006-04-20 09:16:35 -05:00
mpGraphWin = new GraphWin( mpProcessWin, this );
mpGraphPrjWin = new GraphWin( mpProcessWin, this );
//mpBaseWin paints into virtual OutputDevice
2004-02-26 07:51:54 -06:00
mpBaseWin = new DepWin( mpGraphWin->GetBufferWindow(), WB_NOBORDER | WB_SIZEABLE | WB_AUTOSIZE );
2006-04-20 09:16:35 -05:00
mpBasePrjWin = new DepWin( mpGraphPrjWin->GetBufferWindow(), WB_NOBORDER | WB_SIZEABLE | WB_AUTOSIZE );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
mpGraphWin->SetBackground( Wallpaper( Color( COL_RED )));
mpGraphPrjWin->SetBackground( Wallpaper( Color( COL_BLUE )));
mpGraphPrjWin->Hide();
2004-04-01 07:18:34 -06:00
mpBaseWin->SetBackground( Wallpaper( Color( COL_WHITE )));
mpBasePrjWin->SetBackground( Wallpaper( Color( COL_LIGHTGRAY )));
2006-04-20 09:16:35 -05:00
/*
2004-02-26 07:51:54 -06:00
mpGraphWin->SetZOrder( NULL, WINDOW_ZORDER_FIRST );
2006-04-20 09:16:35 -05:00
mpGraphPrjWin->SetZOrder( NULL, WINDOW_ZORDER_FIRST );
2004-02-26 07:51:54 -06:00
mpBaseWin->SetZOrder( NULL, WINDOW_ZORDER_FIRST );
2006-04-20 09:16:35 -05:00
*/
2004-02-26 07:51:54 -06:00
mpGraphWin->EnableClipSiblings();
2006-04-20 09:16:35 -05:00
mpGraphPrjWin->EnableClipSiblings();
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
mpParentProcessWin = mpProcessWin->GetParent();
2004-02-26 07:51:54 -06:00
mpBaseWin->Show();
nZoomed = 0;
mpBaseWin->SetPopupHdl( this );
2006-04-20 09:16:35 -05:00
mpBasePrjWin->SetPopupHdl( this );
mpObjectList = new ObjectList(); //ObjectList unbekannt
mpObjectPrjList = new ObjectList();
2004-02-26 07:51:54 -06:00
}
Depper::~Depper()
{
2006-04-20 09:16:35 -05:00
// delete mpObjectList;
2004-02-26 07:51:54 -06:00
delete mpBaseWin;
delete mpGraphWin;
}
2006-04-20 09:16:35 -05:00
BOOL Depper::TogglePrjViewStatus()
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
GetDepWin()->Hide(); //Hide old content window
GetGraphWin()->Hide();
mbIsPrjView = !mbIsPrjView; //switch now
GetDepWin()->Invalidate();
GetGraphWin()->Show();
GetDepWin()->Show(); //Show new content window
return mbIsPrjView;
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
void Depper::HideObjectsAndConnections( ObjectList* pObjLst )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
for ( ULONG i = 0; i < pObjLst->Count(); i ++ ) {
ObjectWin *pWin = pObjLst->GetObject( i );
pWin->Hide();
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
mpGraphWin->Hide();
mpBaseWin->Hide();
mpGraphPrjWin->Show();
mpBasePrjWin->Show();
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
void Depper::ShowObjectsAndConnections( ObjectList* pObjLst )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
for ( ULONG i = 0; i < pObjLst->Count(); i ++ ) {
ObjectWin *pWin = pObjLst->GetObject( i );
pWin->Show();
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
mpBasePrjWin->Hide();
mpGraphPrjWin->Hide();
mpGraphWin->Show();
mpBaseWin->Show();
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
void Depper::RemoveAllObjects( ObjectList* pObjLst )
2004-02-26 07:51:54 -06:00
{
ULONG i;
for ( i = pObjLst->Count(); i > 0; i-- )
delete pObjLst->GetObject( i - 1 );
pObjLst->Clear();
}
USHORT Depper::Save( const ByteString& rFileName )
{
DBG_ASSERT( FALSE , "you are dead!" );
SvFileStream aOutFile( String( rFileName, RTL_TEXTENCODING_UTF8 ), STREAM_WRITE );
depper_head dh;
USHORT i;
2006-04-20 09:16:35 -05:00
ULONG nObjCount = mpObjectList->Count();
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
ConnectorList* pConList = GetDepWin()->GetConnectorList();
2004-02-26 07:51:54 -06:00
ULONG nCnctrCount = pConList->Count();
dh.nID = DEPPER_ID;
dh.nObjectCount = nObjCount;
dh.nCnctrCount = nCnctrCount;
aOutFile.Write( &dh, sizeof( dh ));
for ( i=0; i < nObjCount ; i++ )
{
2006-04-20 09:16:35 -05:00
mpObjectList->GetObject( i )->Save( aOutFile );
2004-02-26 07:51:54 -06:00
}
for ( i=0; i < nCnctrCount ; i++ )
{
pConList->GetObject( i )->Save( aOutFile );
}
return 0;
}
USHORT Depper::WriteSource()
{
DBG_ASSERT( FALSE , "overload it!" );
return 0;
};
2006-04-20 09:16:35 -05:00
USHORT Depper::ReadSource( BOOL bUpdater )
2004-02-26 07:51:54 -06:00
{
DBG_ASSERT( FALSE , "overload it!" );
return 0;
};
USHORT Depper::OpenSource()
{
DBG_ASSERT( FALSE , "overload it!" );
return 0;
};
2006-04-20 09:16:35 -05:00
ObjectWin* Depper::ObjIdToPtr( ObjectList* pObjLst, ULONG nId )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
ULONG nObjCount = pObjLst->Count();
2004-02-26 07:51:54 -06:00
ULONG i = 0;
ObjectWin* pWin;
2006-04-20 09:16:35 -05:00
ULONG nWinId = 0;
2004-02-26 07:51:54 -06:00
do
{
2006-04-20 09:16:35 -05:00
pWin = pObjLst->GetObject( i );
nWinId = pWin->GetId();
2004-02-26 07:51:54 -06:00
i++;
}
while( i < nObjCount && pWin->GetId() != nId );
if ( pWin->GetId() == nId )
return pWin;
else
return NULL;
}
2006-04-20 09:16:35 -05:00
void Depper::SetMainProgressBar( USHORT i)
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
if ( pMainBar ) {
pMainBar->SetValue( 100 );
pMainBar->Update();
2004-02-26 07:51:54 -06:00
}
}
2006-04-20 09:16:35 -05:00
void Depper::UpdateMainProgressBar(USHORT i, USHORT nScaleVal, USHORT &nStep, BOOL bCountingDown )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
ULONG val = 0;
if ( pMainBar ) {
// val = i * 50 / nScaleVal + 1;
val = bCountingDown ? 50 + ( nScaleVal - i ) * 50 / nScaleVal : i * 50 / nScaleVal;
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
pMainBar->SetValue( val );
pMainBar->Update();
String sText( String::CreateFromAscii( "Optimize step " ));
sText += String::CreateFromInt32( ++nStep );
pSubText->SetText( sText );
2004-02-26 07:51:54 -06:00
}
}
2006-04-20 09:16:35 -05:00
void Depper::UpdateSubProgrssBar(ULONG i)
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
if ( pSubBar )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
pSubBar->SetValue( i );
pSubBar->Update();
GetpApp()->Reschedule();
2004-02-26 07:51:54 -06:00
}
}
2006-04-20 09:16:35 -05:00
USHORT Depper::AutoArrangeDlgStart()
{
pSubBar = maArrangeDlg.GetSubBar();
pMainBar = maArrangeDlg.GetMainBar();
pSubText = maArrangeDlg.GetSubText();
pMainText = maArrangeDlg.GetMainText();
pMainText->SetText( String::CreateFromAscii( "Overall status" ));
maArrangeDlg.Show();
GetDepWin()->Enable( FALSE );
GetDepWin()->Hide();
return 0;
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
USHORT Depper::AutoArrangeDlgStop()
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
maArrangeDlg.Hide();
GetDepWin()->Enable( TRUE );
GetDepWin()->Show();
2004-02-26 07:51:54 -06:00
pSubBar = NULL;
pMainBar = NULL;
pSubText = NULL;
pMainText = NULL;
return 0;
}
2006-04-20 09:16:35 -05:00
USHORT Depper::Zoom( MapMode& rMapMode )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
ULONG i;
2004-02-26 07:51:54 -06:00
ObjectWin* pWin;
2006-04-20 09:16:35 -05:00
Point aPos;
Size aSize;
ObjectList* pObjList;
pObjList = GetObjectList();
// aSize = mpBaseWin->GetSizePixel();
// mpGraphWin->SetTotalSize( aSize );
// mpGraphWin->EndScroll( 0, 0 );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
for ( i = pObjList->Count(); i > 0; i-- )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
pWin = pObjList->GetObject( i - 1 );
aPos = pWin->PixelToLogic( pWin->GetPosPixel());
aSize = pWin->PixelToLogic( pWin->GetSizePixel());
pWin->SetMapMode( rMapMode );
aPos = pWin->LogicToPixel( aPos );
aSize = pWin->LogicToPixel( aSize );
pWin->SetPosSizePixel( aPos, aSize );
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
GetDepWin()->Invalidate();
return 0;
}
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
ULONG Depper::AddObjectToList( DepWin* pParentWin, ObjectList* pObjLst, ULONG &LastID, ULONG &WinCount, ByteString& rBodyText, BOOL bInteract )
{
Point aPos;
Size aSize = GetDefSize();
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
aPos = GetDepWin()->LogicToPixel( aPos );
aSize = GetDepWin()->LogicToPixel( aSize );
return AddObjectToList( pParentWin, pObjLst, LastID, WinCount, rBodyText, aPos, aSize );
}
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
ULONG Depper::AddObjectToList( DepWin* pParentWin, ObjectList* pObjLst, ULONG &LastID, ULONG &WinCount, ByteString& rBodyText, Point& rPos, Size& rSize )
{
ObjectWin* pWin = new ObjectWin( pParentWin, WB_BORDER );
//pWin->mpDepperDontuseme = this;
pWin->SetGlobalViewMask(mnViewMask); // Set ViewMask for all ObjectWin and Connector objects
Size aNewSize;
aNewSize.Width() = pWin->GetTextWidth( String( rBodyText, RTL_TEXTENCODING_UTF8 ));
aNewSize.Height() = pWin->GetTextHeight();
if ( aNewSize.Width() > rSize.Width() - 8 )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
aNewSize.Width() = aNewSize.Width() + 8;
aNewSize.Height() = rSize.Height();
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
else
aNewSize = rSize;
pWin->SetPosSizePixel( rPos,aNewSize);
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
MapMode aMapMode = mpBaseWin->GetMapMode();
pWin->SetMapMode( aMapMode );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
pObjLst->Insert( pWin, LIST_APPEND );
pWin->SetId( LastID );
LastID++;
WinCount++;
pWin->SetBodyText( rBodyText );
// pWin->Show();
return pWin->GetId();
}
2004-02-26 07:51:54 -06:00
CWS-TOOLING: integrate CWS mba32issues01 2009-05-05 18:23:27 +0200 mba r271547 : apply diffs from m45->m47 for all files moved from dialog to cui 2009-05-05 18:22:02 +0200 mba r271545 : apply diffs from m45->m47 for all files moved from dialog to cui 2009-05-05 18:16:42 +0200 mba r271544 : apply diffs from m45->m47 for all files moved from dialog to cui 2009-04-29 19:35:58 +0200 mba r271392 : #i73672#: unify commands for inserting special characters 2009-04-29 18:01:27 +0200 mba r271391 : #i101337#: missing string resources 2009-04-29 18:01:10 +0200 mba r271390 : #i101337#: missing string resources 2009-04-29 15:42:47 +0200 mba r271380 : concurrency problem in multithreaded dmake due to missing dependency 2009-04-28 17:36:03 +0200 tbo r271336 : #i99432# 2009-04-28 13:57:52 +0200 mba r271322 : #i101302#: ctor might be called with pSet=0 2009-04-22 19:32:39 +0200 tbo r271138 : #i99432# 2009-04-09 14:46:03 +0200 mba r270709 : make sendreportw32.cxx compile with pch 2009-04-06 16:05:07 +0200 mba r270568 : #i99432#: some tweaks for build order 2009-04-06 15:38:52 +0200 mba r270558 : typo 2009-04-06 13:36:19 +0200 mba r270542 : #i99432#: split of localization also 2009-04-06 13:19:06 +0200 mba r270539 : #i99432#: split up srs files also 2009-04-03 17:57:59 +0200 mba r270513 : #i99432#: split dialog folder into two 2009-04-03 17:56:46 +0200 mba r270512 : #i99432#: split dialog folder into two 2009-04-01 22:15:00 +0200 mba r270364 : warnings on Linux 2009-04-01 22:10:44 +0200 mba r270363 : warnings on Linux 2009-04-01 21:43:54 +0200 mba r270362 : warning fixed 2009-04-01 21:41:27 +0200 mba r270361 : warning on Linux fixed 2009-04-01 21:35:44 +0200 mba r270360 : warning fixed 2009-04-01 20:19:59 +0200 mba r270358 : warning found on Linux fixed 2009-04-01 19:23:38 +0200 mba r270354 : warning due to missing eof 2009-04-01 18:56:25 +0200 mba r270352 : linking problem fixed that appeared only on mac 2009-04-01 18:41:30 +0200 mba r270350 : warnings discovered on Linux fixed 2009-04-01 18:34:28 +0200 mba r270349 : some fixes for warnings and include problems discoverd after resync and build on mac 2009-04-01 14:08:22 +0200 mba r270328 : CWS-TOOLING: rebase CWS mba32issues01 to trunk@270033 (milestone: DEV300:m45) 2009-03-04 18:13:35 +0100 mba r268858 : #i99432#: more dialogs moved to cui 2009-03-04 17:47:41 +0100 mba r268854 : #i99432#: more dialogs moved to cui 2009-03-04 17:32:39 +0100 mba r268851 : warning fixed 2009-03-04 12:59:26 +0100 mba r268814 : #i99432#: more dialogs moved to cui 2009-03-04 11:49:03 +0100 mba r268802 : #i99432#: CharmapDialog moved to cui 2009-03-04 10:46:00 +0100 mba r268795 : #i99432#: CharmapDialog moved to cui 2009-03-04 10:43:50 +0100 mba r268794 : #i99432#: CharmapDialog moved to cui 2009-03-04 10:00:29 +0100 mba r268792 : #i99432#: CharmapDialog moved to cui 2009-03-04 10:00:03 +0100 mba r268791 : #i99432#: CharmapDialog moved to cui 2009-03-04 09:59:43 +0100 mba r268790 : #i99432#: CharmapDialog moved to cui 2009-03-04 09:58:51 +0100 mba r268789 : #i99432#: CharmapDialog moved to cui 2009-03-04 09:58:16 +0100 mba r268788 : #i99432#: CharmapDialog moved to cui 2009-03-03 16:33:14 +0100 mba r268763 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:32:28 +0100 mba r268762 : #i99432#: some tabpages moved to cui 2009-03-03 16:32:09 +0100 mba r268761 : #i99432#: some tabpages moved to cui 2009-03-03 16:29:40 +0100 mba r268760 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:29:08 +0100 mba r268759 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:28:41 +0100 mba r268758 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:28:18 +0100 mba r268757 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:27:36 +0100 mba r268756 : #i99465#: replace FN_SYMBOL by SID_CHARMAP 2009-03-03 16:27:02 +0100 mba r268755 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:26:23 +0100 mba r268754 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:25:30 +0100 mba r268753 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:24:49 +0100 mba r268752 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:24:35 +0100 mba r268751 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:23:20 +0100 mba r268750 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:23:04 +0100 mba r268749 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:21:56 +0100 mba r268748 : #i99465#: new SfxAbstractDialog interface and creation methods 2009-03-03 16:18:39 +0100 mba r268747 : #i99432#: MacroAssignment page moved to cui 2009-03-03 16:13:14 +0100 mba r268745 : #i99465#: replace FN_SYMBOL by SID_CHARMAP 2009-03-03 16:02:54 +0100 mba r268738 : #i99432#: moved MacroAssignment TabPage from sfx2 2009-03-03 14:57:58 +0100 mba r268729 : #i99465#: transport return value via ItemSet 2009-03-03 00:08:10 +0100 mba r268701 : #i99432#: move acccfg to cuilib 2009-03-03 00:07:32 +0100 mba r268700 : #i99432#: move acccfg to cuilib 2009-03-03 00:02:01 +0100 mba r268699 : #i99432#: move acccfg to cuilib 2009-03-03 00:01:38 +0100 mba r268698 : #i99432#: move acccfg to cuilib 2009-03-03 00:01:11 +0100 mba r268697 : #i99432#: move acccfg to cuilib 2009-03-03 00:00:40 +0100 mba r268696 : #i99432#: move acccfg to cuilib 2009-03-03 00:00:06 +0100 mba r268695 : #i99432#: replace SfxAbstractSingleTabDialog by SfxAbstractDialog 2009-03-02 23:59:22 +0100 mba r268694 : #i99432#: move acccfg to cuilib 2009-03-02 23:57:19 +0100 mba r268693 : #i99432#: move acccfg to svx 2009-03-02 23:56:14 +0100 mba r268692 : #i99432#: replace SfxAbstractSingleTabDialog by SfxAbstractDialog 2009-03-02 23:49:37 +0100 mba r268691 : #i99785#: consolidate dialogs library 2009-03-02 17:26:40 +0100 mba r268683 : #i99785#: consolidate dialogs library 2009-03-02 17:24:28 +0100 mba r268682 : i99465#: consolidate slot for InsertSymbol command 2009-03-02 17:22:29 +0100 mba r268681 : #i99785#: consolidate dialogs library 2009-03-02 17:18:11 +0100 mba r268680 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 17:08:30 +0100 mba r268679 : #i99785#: consolidate dialogs library 2009-03-02 17:06:57 +0100 mba r268678 : #i99785#: consolidate dialogs library 2009-03-02 17:06:30 +0100 mba r268677 : #i99785#: consolidate dialogs library 2009-03-02 17:05:02 +0100 mba r268676 : #i99785#: consolidate dialogs library 2009-03-02 17:04:35 +0100 mba r268675 : #i99785#: consolidate dialogs library 2009-03-02 16:47:53 +0100 mba r268673 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:45:17 +0100 mba r268671 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:39:59 +0100 mba r268670 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:38:59 +0100 mba r268668 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:38:28 +0100 mba r268667 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:36:06 +0100 mba r268666 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:29:50 +0100 mba r268663 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:24:00 +0100 mba r268659 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:23:31 +0100 mba r268658 : i99432#: move accelconfig and macroassignment to cui 2009-03-02 16:22:41 +0100 mba r268657 : i99432#: move accelconfig and macroassignment to cui 2009-02-25 16:57:26 +0100 mba r268453 : obsolete 2009-02-17 10:50:51 +0100 mba r267846 : obsolete 2009-02-12 16:33:54 +0100 mba r267676 : #i96834#: warning fixed 2009-02-11 19:28:47 +0100 mba r267626 : #i91978#: unused code 2009-02-11 18:37:47 +0100 mba r267625 : metafile output, fixes for 3 layer office 2009-02-11 12:56:28 +0100 mba r267593 : selective trees; incomplete build lists; metafile output
2009-05-06 05:59:57 -05:00
/*void Depper::DrawOutput( OutputDevice* pDevice )
{
GetDepWin()->DrawOutput( pDevice );
ObjectList* pObjList = GetObjectList();
for ( USHORT i = pObjList->Count(); i > 0; i-- )
{
ObjectWin* pWin = pObjList->GetObject( i - 1 );
pWin->DrawOutput( pDevice );
}
}*/
2006-04-20 09:16:35 -05:00
ObjectWin* Depper::RemoveObjectFromList( ObjectList* pObjLst, ULONG &WinCount, USHORT nId, BOOL bDelete )
{
ObjectWin* pWin = ObjIdToPtr( pObjLst, nId );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
if ( pWin )
{
pObjLst->Remove( pWin );
WinCount--;
if( bDelete )
delete pWin;
return pWin;
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
else
return NULL;
}
USHORT Depper::AddConnectorToObjects( ObjectList* pObjLst, ULONG nStartId, ULONG nEndId )
{
ObjectWin* pStartWin = ObjIdToPtr( pObjLst, nStartId );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
if ( !pStartWin )
return DEP_STARTID_NOT_FOUND;
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
ObjectWin* pEndWin = ObjIdToPtr( pObjLst, nEndId );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
if ( !pEndWin )
return DEP_STARTID_NOT_FOUND;
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
return AddConnectorToObjects( pStartWin, pEndWin );
}
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
USHORT Depper::RemoveConnectorFromObjects( ObjectList* pObjLst, ULONG nStartId, ULONG nEndId )
{
// DBG_ASSERT( FALSE , "noch nicht" );
ObjectWin* pStartWin = ObjIdToPtr( pObjLst, nStartId );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
if ( !pStartWin )
return DEP_STARTID_NOT_FOUND;
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
ObjectWin* pEndWin = ObjIdToPtr( pObjLst, nEndId );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
if ( !pEndWin )
return DEP_STARTID_NOT_FOUND;
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
return RemoveConnectorFromObjects( pStartWin, pEndWin );
}
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
USHORT Depper::AddConnectorToObjects( ObjectWin* pStartWin, ObjectWin* pEndWin )
{
if ( pStartWin->ConnectionExistsInAnyDirection( pEndWin ))
return 0;
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
Connector* pCon = new Connector( GetDepWin(), WB_NOBORDER );
// pCon->Initialize( pStartWin, pEndWin );
if (pStartWin->IsNullObject()) //null_project
pCon->Initialize( pStartWin, pEndWin, FALSE );
else
pCon->Initialize( pStartWin, pEndWin, TRUE );
return 0;
}
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
USHORT Depper::RemoveConnectorFromObjects( ObjectWin* pStartWin, ObjectWin* pEndWin )
{
Connector* pCon = pStartWin->GetConnector( pStartWin->GetId(), pEndWin->GetId() );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
if ( !pCon )
return DEP_CONNECTOR_NOT_FOUND;
else
{
delete pCon;
return DEP_OK;
}
}
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
ULONG Depper::HandleNewPrjDialog( ByteString &rBodyText )
{
SolNewProjectDlg aNewProjectDlg( GetDepWin(), DtSodResId( RID_SD_DIALOG_NEWPROJECT ));
if ( aNewProjectDlg.Execute() )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
rBodyText = ByteString( aNewProjectDlg.maEName.GetText(), RTL_TEXTENCODING_UTF8);
//hashtable auf stand halten
MyHashObject* pHObject;
ULONG nObjectId = AddObjectToList( mpBaseWin, mpObjectList, mnSolLastId, mnSolWinCount, rBodyText, FALSE );
pHObject = new MyHashObject( nObjectId, ObjIdToPtr( mpObjectList, nObjectId ));
mpSolIdMapper->Insert( rBodyText, pHObject );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
ByteString sTokenLine( aNewProjectDlg.maEShort.GetText(), RTL_TEXTENCODING_UTF8 );
sTokenLine += '\t';
sTokenLine += ByteString( aNewProjectDlg.maEName.GetText(), RTL_TEXTENCODING_UTF8 );
sTokenLine += "\t:\t";
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
ByteString sDeps = ByteString( aNewProjectDlg.maEDeps.GetText(), RTL_TEXTENCODING_UTF8 );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
if ( sDeps != "" )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
USHORT i;
ByteString sDepName;
USHORT nToken = sDeps.GetTokenCount(' ');
for ( i = 0 ; i < nToken ; i++)
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
sDepName = sDeps.GetToken( i, ' ' );
sTokenLine += sDepName;
sTokenLine +='\t';
2004-02-26 07:51:54 -06:00
}
}
2006-04-20 09:16:35 -05:00
sTokenLine +="NULL";
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
mpStarWriter->InsertTokenLine( sTokenLine );
mpStarWriter->InsertTokenLine( sDelimiterLine );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
if ( sDeps != "" )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
USHORT i;
ByteString sDepName;
ULONG nObjectId_l, nHashedId;
MyHashObject* pHObject_l;
2006-04-20 09:16:35 -05:00
USHORT nToken = sDeps.GetTokenCount(' ');
for ( i = 0 ; i < nToken ; i++)
{
sDepName = sDeps.GetToken( i, ' ' );
2004-02-26 07:51:54 -06:00
pHObject_l = mpSolIdMapper->Find( sDepName );
if ( !pHObject_l )
2006-04-20 09:16:35 -05:00
{
String sMessage;
sMessage += String::CreateFromAscii("can't find ");
sMessage += String( sDepName, RTL_TEXTENCODING_UTF8 );
sMessage += String::CreateFromAscii(".\ndependency ignored");
WarningBox aBox( GetDepWin(), WB_OK, sMessage);
aBox.Execute();
}
else
{
nHashedId = pHObject_l->GetId();
pHObject_l = mpSolIdMapper->Find( rBodyText );
nObjectId_l = pHObject_l->GetId();
AddConnectorToObjects( mpObjectList, nHashedId, nObjectId_l );
2006-04-20 09:16:35 -05:00
}
}
}
return nObjectId;
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
return 0;
}
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
ULONG Depper::HandleNewDirectoryDialog(ByteString &rBodyText)
{
SolNewDirectoryDlg aNewDirectoryDlg( GetDepWin(), DtSodResId( RID_SD_DIALOG_NEWDIRECTORY ));
//todo: set defaults
if ( aNewDirectoryDlg.Execute() )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
rBodyText = ByteString( aNewDirectoryDlg.maEFlag.GetText(), RTL_TEXTENCODING_UTF8 );
//hashtable auf stand halten
MyHashObject* pHObject;
ULONG nObjectId = AddObjectToList( GetDepWin(), mpObjectPrjList, mnSolLastId, mnSolWinCount, rBodyText );
pHObject = new MyHashObject( nObjectId, ObjIdToPtr( mpObjectPrjList, nObjectId ));
mpPrjIdMapper->Insert( rBodyText, pHObject ); // mpPrjIdMapper
String sTokenLine;
sTokenLine = String( mpPrj->GetPreFix(), RTL_TEXTENCODING_UTF8 );
sTokenLine += '\t';
String sNameConvert = aNewDirectoryDlg.maEName.GetText();
sNameConvert.SearchAndReplaceAll( '/', '\\' );
if ( sNameConvert.GetToken( 0, 0x5c ) != String( mpPrj->GetProjectName(), RTL_TEXTENCODING_UTF8 ))
{
sTokenLine += String( mpPrj->GetProjectName(), RTL_TEXTENCODING_UTF8 );
sTokenLine += String("\\", RTL_TEXTENCODING_UTF8 );
sTokenLine += sNameConvert;
}
else
sTokenLine += sNameConvert;
sTokenLine += '\t';
sTokenLine += aNewDirectoryDlg.maEAction.GetText();
sTokenLine += String( "\t-\t", RTL_TEXTENCODING_UTF8 );
sTokenLine += aNewDirectoryDlg.maEEnv.GetText();
sTokenLine += '\t';
sTokenLine += aNewDirectoryDlg.maEFlag.GetText();
sTokenLine += '\t';
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
sTokenLine += String( "NULL", RTL_TEXTENCODING_UTF8 );
2004-02-26 07:51:54 -06:00
2006-04-24 05:18:48 -05:00
ByteString bsTokenLine = ByteString( sTokenLine, RTL_TEXTENCODING_UTF8 );
mpStarWriter->InsertTokenLine( bsTokenLine );
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
if ( aNewDirectoryDlg.maEDeps.GetText() != String( "", RTL_TEXTENCODING_UTF8 ))
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
USHORT i;
ByteString sDeps = ByteString( aNewDirectoryDlg.maEDeps.GetText(), RTL_TEXTENCODING_UTF8 );
ByteString sDepName;
ULONG nObjectId_l, nHashedId;
MyHashObject* pHObject_l;
2006-04-20 09:16:35 -05:00
USHORT nToken = sDeps.GetTokenCount(' ');
for ( i = 0 ; i < nToken ; i++)
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
sDepName = sDeps.GetToken( i, ' ' );
pHObject_l = mpPrjIdMapper->Find( sDepName ); // mpPrjIdMapper
if ( !pHObject_l )
2006-04-20 09:16:35 -05:00
{
String sMessage;
sMessage += String::CreateFromAscii("can't find ");
sMessage += String( sDepName, RTL_TEXTENCODING_UTF8 );
sMessage += String::CreateFromAscii(".\ndependency ignored");
WarningBox aBox( mpBaseWin, WB_OK, sMessage);
aBox.Execute();
}
else
{
sTokenLine += String( sDepName, RTL_TEXTENCODING_UTF8 );
sTokenLine +='\t';
nHashedId = pHObject_l->GetId();
pHObject_l = mpPrjIdMapper->Find( rBodyText ); // mpPrjIdMapper
nObjectId_l = pHObject_l->GetId();
AddConnectorToObjects( mpObjectPrjList, nHashedId, nObjectId_l );
2006-04-20 09:16:35 -05:00
}
2004-02-26 07:51:54 -06:00
}
}
2006-04-20 09:16:35 -05:00
if ( mpPrj->Count() > 1 )
2004-02-26 07:51:54 -06:00
{
2006-04-20 09:16:35 -05:00
CommandData* pData = mpPrj->GetObject( mpPrj->Count() - 1 );
pData = mpPrj->Replace( pData, mpPrj->Count() - 2 );
mpPrj->Replace( pData, mpPrj->Count() - 1 );
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
return nObjectId;
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
return 0;
2004-02-26 07:51:54 -06:00
}
2006-04-20 09:16:35 -05:00
// Context-Menue
2004-02-26 07:51:54 -06:00
IMPL_LINK( Depper, PopupSelected, PopupMenu*, mpPopup )
{
USHORT nItemId = mpPopup->GetCurItemId();
switch( nItemId )
{
case DEPPOPUP_NEW :
2006-04-20 09:16:35 -05:00
{
ByteString sNewItem = ByteString("new");
//AddObject( mpObjectList, sNewItem , TRUE );
}
2004-02-26 07:51:54 -06:00
break;
case DEPPOPUP_AUTOARRANGE :
2006-04-20 09:16:35 -05:00
//AutoArrange( mpObjectList, mpObjectList, GetStart(), 0 );
2004-02-26 07:51:54 -06:00
break;
case DEPPOPUP_LOAD :
2006-04-20 09:16:35 -05:00
//Load( ByteString("test.dep"));
2004-02-26 07:51:54 -06:00
break;
case DEPPOPUP_SAVE :
Save( ByteString("test.dep"));
break;
case DEPPOPUP_WRITE_SOURCE :
WriteSource();
break;
case DEPPOPUP_READ_SOURCE :
2006-04-20 09:16:35 -05:00
ReadSource(TRUE);
2004-02-26 07:51:54 -06:00
break;
case DEPPOPUP_OPEN_SOURCE :
OpenSource();
break;
case DEPPOPUP_ZOOMIN :
{
// DBG_ASSERT( FALSE,"zoomin");
2006-04-20 09:16:35 -05:00
MapMode aMapMode = GetDepWin()->GetMapMode();
2004-02-26 07:51:54 -06:00
aMapMode.SetScaleX( aMapMode.GetScaleX() * Fraction( 1.25 ));
aMapMode.SetScaleY( aMapMode.GetScaleY() * Fraction( 1.25 ));
2006-04-20 09:16:35 -05:00
GetDepWin()->SetMapMode( aMapMode );
2004-02-26 07:51:54 -06:00
if ( nZoomed < 1 )
{
2006-04-20 09:16:35 -05:00
Size aZoomInSize( GetDepWin()->GetSizePixel());
2004-02-26 07:51:54 -06:00
aZoomInSize.Width() *= 1.25;
aZoomInSize.Height() *= 1.25;
2006-04-20 09:16:35 -05:00
GetDepWin()->SetSizePixel( aZoomInSize );
2004-02-26 07:51:54 -06:00
}
nZoomed--;
Zoom( aMapMode );
};
break;
case DEPPOPUP_ZOOMOUT :
{
// DBG_ASSERT( FALSE,"zoomout");
2006-04-20 09:16:35 -05:00
MapMode aMapMode = GetDepWin()->GetMapMode();
2004-02-26 07:51:54 -06:00
if ( aMapMode.GetScaleX() > Fraction( 0.25 ))
{
aMapMode.SetScaleX( aMapMode.GetScaleX() * Fraction( 0.8 ));
aMapMode.SetScaleY( aMapMode.GetScaleY() * Fraction( 0.8 ));
2006-04-20 09:16:35 -05:00
GetDepWin()->SetMapMode( aMapMode );
2004-02-26 07:51:54 -06:00
if ( nZoomed < 0 )
{
Size aZoomOutSize( mpBaseWin->GetSizePixel());
aZoomOutSize.Width() *= 0.8;
aZoomOutSize.Height() *= 0.8;
2006-04-20 09:16:35 -05:00
GetDepWin()->SetSizePixel( aZoomOutSize );
2004-02-26 07:51:54 -06:00
}
nZoomed++;
Zoom( aMapMode );
}
};
break;
case DEPPOPUP_CLEAR :
// DBG_ASSERT( FALSE,"clear");
2006-04-20 09:16:35 -05:00
// RemoveAllObjects( mpObjectList );
2004-02-26 07:51:54 -06:00
break;
case DEPPOPUP_CLOSE :
// DBG_ASSERT( FALSE,"close");
CloseWindow();
break;
case DEPPOPUP_HELP :
// DBG_ASSERT( FALSE,"help");
ShowHelp();
break;
case DEPPOPUP_TEST :
// DBG_ASSERT( FALSE,"TEST!");
// test();
break;
2006-04-20 09:16:35 -05:00
case DEPPOPUP_SHOW_TOOLBOX:
maToolBox.Show();
break;
2004-02-26 07:51:54 -06:00
default :
DBG_ASSERT( FALSE, "default" );
break;
}
return 0;
}