/***************************************************************************** * Program to draw EE diagrams. * * This module redraw/draw all structs. * *****************************************************************************/ #include "fctsys.h" #include "gr_basic.h" #include "common.h" #include "class_drawpanel.h" #include "appl_wxstruct.h" #include "class_sch_screen.h" #include "wxEeschemaStruct.h" #include "general.h" #include "protos.h" #include "class_library.h" #include "sch_bus_entry.h" #include "sch_component.h" #include "sch_items.h" #include "sch_line.h" #include "sch_no_connect.h" #include "sch_polyline.h" #include "sch_sheet.h" #include "sch_sheet_path.h" #include "build_version.h" static EDA_ITEM* HighLightStruct = NULL; void DrawDanglingSymbol( WinEDA_DrawPanel* panel, wxDC* DC, const wxPoint& pos, int Color ) { BASE_SCREEN* screen = panel->GetScreen(); if( !screen->m_IsPrinting ) /* Draw but do not print the Dangling Symbol */ { GRRect( &panel->m_ClipBox, DC, pos.x - DANGLING_SYMBOL_SIZE, pos.y - DANGLING_SYMBOL_SIZE, pos.x + DANGLING_SYMBOL_SIZE, pos.y + DANGLING_SYMBOL_SIZE, 0, Color ); } } void SetHighLightStruct( EDA_ITEM* HighLight ) { HighLightStruct = HighLight; } /* * Redraws only the active window which is assumed to be whole visible. */ void SCH_EDIT_FRAME::RedrawActiveWindow( wxDC* DC, bool EraseBg ) { wxString title; if( GetScreen() == NULL ) return; ActiveScreen = GetScreen(); DrawPanel->DrawBackGround( DC ); RedrawStructList( DrawPanel, DC, GetScreen()->GetDrawItems(), GR_DEFAULT_DRAWMODE ); TraceWorkSheet( DC, GetScreen(), g_DrawDefaultLineThickness ); GetScreen()->ClrRefreshReq(); if( DrawPanel->ManageCurseur ) DrawPanel->ManageCurseur( DrawPanel, DC, FALSE ); DrawPanel->DrawCursor( DC ); // Display the sheet filename, and the sheet path, for non root sheets if( GetScreen()->m_FileName == m_DefaultSchematicFileName ) { wxString msg = wxGetApp().GetAppName() + wxT( " " ) + GetBuildVersion(); title.Printf( wxT( "%s [%s]" ), msg.GetData(), GetScreen()->m_FileName.GetData() ); SetTitle( title ); } else { #if 0 title = wxT( "[" ); title << GetScreen()->m_FileName << wxT( "] " ) << _( "Sheet" ); title << wxT( " " ) << m_CurrentSheet->PathHumanReadable(); #else // Window title format: // [filename sheetpath] (/path/to/filedir) // Often the /path/to/filedir is blank because of the FullFileName argument // passed to LoadOneEEFile() which currently omits the path on non-root schematics. wxFileName t( GetScreen()->m_FileName ); title = wxChar( '[' ); title << t.GetName() << wxChar( ' ' ); title << m_CurrentSheet->PathHumanReadable() << wxChar( ']' ); title << wxChar( ' ' ); title << wxChar( '(' ) << t.GetPath() << wxChar( ')' ); #endif SetTitle( title ); } } /** * PrintPage * used to print a page. * Print the page pointed by ActiveScreen, set by the calling print function * @param aDC = wxDC given by the calling print function * @param aPrint_Sheet_Ref = true to print page references * @param aPrintMask = not used here * @param aPrintMirrorMode = not used here (Set when printing in mirror mode) * @param aData = a pointer on an auxiliary data (not used here) */ void SCH_EDIT_FRAME::PrintPage( wxDC* aDC, bool aPrint_Sheet_Ref, int aPrintMask, bool aPrintMirrorMode, void* aData) { wxBeginBusyCursor(); RedrawStructList( DrawPanel, aDC, (SCH_ITEM*) ActiveScreen->GetDrawItems(), GR_COPY ); if( aPrint_Sheet_Ref ) TraceWorkSheet( aDC, ActiveScreen, g_DrawDefaultLineThickness ); wxEndBusyCursor(); } /***************************************************************************** * Routine to redraw list of structs. * * If the list is of DrawPickStruct types then the picked item are drawn. * *****************************************************************************/ void RedrawStructList( WinEDA_DrawPanel* panel, wxDC* DC, SCH_ITEM* Structlist, int DrawMode, int Color ) { while( Structlist ) { if( !(Structlist->m_Flags & IS_MOVED) ) { // uncomment line below when there is a virtual // EDA_ITEM::GetBoundingBox() // if( panel->m_ClipBox.Intersects( Structs->GetBoundingBox() // ) ) RedrawOneStruct( panel, DC, Structlist, DrawMode, Color ); } Structlist = Structlist->Next(); } } /***************************************************************************** * Routine to redraw list of structs. * *****************************************************************************/ void RedrawOneStruct( WinEDA_DrawPanel* panel, wxDC* DC, SCH_ITEM* Struct, int DrawMode, int Color ) { if( Struct == NULL ) return; if( HighLightStruct == Struct ) Color = HIGHLIGHT_COLOR; Struct->Draw( panel, DC, wxPoint( 0, 0 ), DrawMode, Color ); } /* Routine for repainting item in ghost mode. Used in the block moves. */ void DrawStructsInGhost( WinEDA_DrawPanel* aPanel, wxDC* aDC, SCH_ITEM* aItem, const wxPoint& aOffset ) { int DrawMode = g_XorMode; int width = g_DrawDefaultLineThickness; GRSetDrawMode( aDC, DrawMode ); switch( aItem->Type() ) { case SCH_POLYLINE_T: { SCH_POLYLINE* Struct = (SCH_POLYLINE*) aItem; GRMoveTo( Struct->m_PolyPoints[0].x + aOffset.x, Struct->m_PolyPoints[0].y + aOffset.y ); for( unsigned ii = 1; ii < Struct->GetCornerCount(); ii++ ) GRLineTo( &aPanel->m_ClipBox, aDC, Struct->m_PolyPoints[ii].x + aOffset.x, Struct->m_PolyPoints[ii].y + aOffset.y, width, g_GhostColor ); break; } case SCH_LINE_T: { SCH_LINE* Struct; Struct = (SCH_LINE*) aItem; if( (Struct->m_Flags & STARTPOINT) == 0 ) { GRMoveTo( Struct->m_Start.x + aOffset.x, Struct->m_Start.y + aOffset.y ); } else { GRMoveTo( Struct->m_Start.x, Struct->m_Start.y ); } if( (Struct->m_Flags & ENDPOINT) == 0 ) { GRLineTo( &aPanel->m_ClipBox, aDC, Struct->m_End.x + aOffset.x, Struct->m_End.y + aOffset.y, width, g_GhostColor ); } else { GRLineTo( &aPanel->m_ClipBox, aDC, Struct->m_End.x, Struct->m_End.y, width, g_GhostColor ); } break; } case SCH_BUS_ENTRY_T: { SCH_BUS_ENTRY* Struct = (SCH_BUS_ENTRY*) aItem; wxPoint start = Struct->m_Pos + aOffset; GRMoveTo( start.x, start.y ); GRLineTo( &aPanel->m_ClipBox, aDC, Struct->m_Size.x + start.x, Struct->m_Size.y + start.y, width, g_GhostColor ); break; } case SCH_JUNCTION_T: { SCH_JUNCTION* Struct; Struct = (SCH_JUNCTION*) aItem; Struct->Draw( aPanel, aDC, aOffset, DrawMode, g_GhostColor ); break; } case SCH_TEXT_T: { SCH_TEXT* Struct; Struct = (SCH_TEXT*) aItem; Struct->Draw( aPanel, aDC, aOffset, DrawMode, g_GhostColor ); break; } case SCH_LABEL_T: case SCH_GLOBAL_LABEL_T: case SCH_HIERARCHICAL_LABEL_T: { SCH_LABEL* Struct; Struct = (SCH_LABEL*) aItem; Struct->Draw( aPanel, aDC, aOffset, DrawMode, g_GhostColor ); break; } case SCH_NO_CONNECT_T: { SCH_NO_CONNECT* Struct; Struct = (SCH_NO_CONNECT*) aItem; Struct->Draw( aPanel, aDC, aOffset, DrawMode, g_GhostColor ); break; } case SCH_COMPONENT_T: { SCH_COMPONENT* Component = (SCH_COMPONENT*) aItem; if( Component == NULL ) break; Component->Draw( aPanel, aDC, aOffset, g_XorMode, g_GhostColor, false ); break; } case SCH_SHEET_T: { SCH_SHEET* Struct = (SCH_SHEET*) aItem; GRRect( &aPanel->m_ClipBox, aDC, Struct->m_Pos.x + aOffset.x, Struct->m_Pos.y + aOffset.y, Struct->m_Pos.x + Struct->m_Size.x + aOffset.x, Struct->m_Pos.y + Struct->m_Size.y + aOffset.y, width, g_GhostColor ); break; } case SCH_SHEET_LABEL_T: case SCH_MARKER_T: break; default: break; } }