/***************************************************************************** * 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 "class_drawpickedstruct.h" #include "appl_wxstruct.h" #include "program.h" #include "libcmp.h" #include "general.h" #include "protos.h" static EDA_BaseStruct* 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_BaseStruct* HighLight ) { HighLightStruct = HighLight; } /* * Redraws only the active window which is assumed to be whole visible. */ void WinEDA_SchematicFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg ) { wxString title; if( GetScreen() == NULL ) return; ActiveScreen = GetScreen(); /* Reinit draw and pen parameters */ GRResetPenAndBrush( DC ); DC->SetBackground( *wxBLACK_BRUSH ); DC->SetBackgroundMode( wxTRANSPARENT ); DrawPanel->CursorOff( DC ); // effacement curseur if( DrawPanel->ManageCurseur ) { DrawPanel->ManageCurseur( DrawPanel, DC, FALSE ); } if( EraseBg ) DrawPanel->EraseScreen( DC ); DrawPanel->DrawBackGround( DC ); RedrawStructList( DrawPanel, DC, GetScreen()->EEDrawList, GR_DEFAULT_DRAWMODE ); TraceWorkSheet( DC, GetScreen(), g_DrawDefaultLineThickness ); DrawPanel->CursorOn( DC ); // reaffichage curseur if( DrawPanel->ManageCurseur ) { DrawPanel->ManageCurseur( DrawPanel, DC, FALSE ); } GetScreen()->ClrRefreshReq(); // 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 { title = wxT( "[" ); title << GetScreen()->m_FileName << wxT( "] " ) << _( "Sheet" ); title << wxT( " " ) << m_CurrentSheet->PathHumanReadable(); SetTitle( title ); } } /** * PrintPage * used to print a page. * Print the page pointed by ActiveScreen, set by the calling print function * @param DC = wxDC given by the calling print function * @param Print_Sheet_Ref = true to print page references * @param PrintMask = not used here * @param aPrintMirrorMode = not used here (Set when printing in mirror mode) */ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int PrintMask, bool aPrintMirrorMode ) { wxBeginBusyCursor(); RedrawStructList( this, DC, ActiveScreen->EEDrawList, GR_COPY ); if( Print_Sheet_Ref ) m_Parent->TraceWorkSheet( DC, 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* Structs, int DrawMode, int Color ) { while( Structs ) { if( Structs->Type() == DRAW_PICK_ITEM_STRUCT_TYPE ) { SCH_ITEM* item = (SCH_ITEM*) ( (DrawPickedStruct*) Structs )->m_PickedStruct; // uncomment line below when there is a virtual EDA_BaseStruct::GetBoundingBox() // if( panel->m_ClipBox.Intersects( item->GetBoundingBox() ) ) { RedrawOneStruct( panel, DC, item, DrawMode, Color ); } } else { if( !(Structs->m_Flags & IS_MOVED) ) { // uncomment line below when there is a virtual EDA_BaseStruct::GetBoundingBox() // if( panel->m_ClipBox.Intersects( Structs->GetBoundingBox() ) ) RedrawOneStruct( panel, DC, Structs, DrawMode, Color ); } } Structs = Structs->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 de redessin en mode fantome (Dessin simplifie en g_XorMode et * g_GhostColor * de structures. * Utilisee dans les deplacements de blocs */ void DrawStructsInGhost( WinEDA_DrawPanel* panel, wxDC* DC, SCH_ITEM* DrawStruct, int dx, int dy ) { int DrawMode = g_XorMode; int width = g_DrawDefaultLineThickness; GRSetDrawMode( DC, DrawMode ); switch( DrawStruct->Type() ) { case DRAW_POLYLINE_STRUCT_TYPE: { DrawPolylineStruct* Struct = (DrawPolylineStruct*) DrawStruct; GRMoveTo( Struct->m_PolyPoints[0].x + dx, Struct->m_PolyPoints[0].y + dy ); for( unsigned ii = 1; ii < Struct->GetCornerCount(); ii++ ) GRLineTo( &panel->m_ClipBox, DC, Struct->m_PolyPoints[ii].x + dx, Struct->m_PolyPoints[ii].y + dy, width, g_GhostColor ); break; } case DRAW_SEGMENT_STRUCT_TYPE: { EDA_DrawLineStruct* Struct; Struct = (EDA_DrawLineStruct*) DrawStruct; if( (Struct->m_Flags & STARTPOINT) == 0 ) { GRMoveTo( Struct->m_Start.x + dx, Struct->m_Start.y + dy ); } else { GRMoveTo( Struct->m_Start.x, Struct->m_Start.y ); } if( (Struct->m_Flags & ENDPOINT) == 0 ) { GRLineTo( &panel->m_ClipBox, DC, Struct->m_End.x + dx, Struct->m_End.y + dy, width, g_GhostColor ); } else { GRLineTo( &panel->m_ClipBox, DC, Struct->m_End.x, Struct->m_End.y, width, g_GhostColor ); } break; } case DRAW_BUSENTRY_STRUCT_TYPE: { DrawBusEntryStruct* Struct = (DrawBusEntryStruct*) DrawStruct; int xx = Struct->m_Pos.x + dx, yy = Struct->m_Pos.y + dy; GRMoveTo( xx, yy ); GRLineTo( &panel->m_ClipBox, DC, Struct->m_Size.x + xx, Struct->m_Size.y + yy, width, g_GhostColor ); break; } case DRAW_JUNCTION_STRUCT_TYPE: { DrawJunctionStruct* Struct; Struct = (DrawJunctionStruct*) DrawStruct; Struct->Draw( panel, DC, wxPoint(0,0), DrawMode, g_GhostColor ); break; } case TYPE_SCH_TEXT: { SCH_TEXT* Struct; Struct = (SCH_TEXT*) DrawStruct; Struct->Draw( panel, DC, wxPoint( dx, dy ), DrawMode, g_GhostColor ); break; } case TYPE_SCH_LABEL: case TYPE_SCH_GLOBALLABEL: case TYPE_SCH_HIERLABEL: { SCH_LABEL* Struct; Struct = (SCH_LABEL*) DrawStruct; Struct->Draw( panel, DC, wxPoint( dx, dy ), DrawMode, g_GhostColor ); break; } case DRAW_NOCONNECT_STRUCT_TYPE: { DrawNoConnectStruct* Struct; Struct = (DrawNoConnectStruct*) DrawStruct; Struct->Draw( panel, DC, wxPoint( dx, dy ), DrawMode, g_GhostColor ); break; } case TYPE_SCH_COMPONENT: { EDA_LibComponentStruct* LibEntry; SCH_COMPONENT* Struct; Struct = (SCH_COMPONENT*) DrawStruct; LibEntry = FindLibPart( Struct->m_ChipName.GetData(), wxEmptyString, FIND_ROOT ); if( LibEntry == NULL ) break; DrawingLibInGhost( panel, DC, LibEntry, Struct, Struct->m_Pos.x + dx, Struct->m_Pos.y + dy, Struct->m_Multi, Struct->m_Convert, g_GhostColor, FALSE ); break; } case DRAW_SHEET_STRUCT_TYPE: { DrawSheetStruct* Struct = (DrawSheetStruct*) DrawStruct; GRRect( &panel->m_ClipBox, DC, Struct->m_Pos.x + dx, Struct->m_Pos.y + dy, Struct->m_Pos.x + Struct->m_Size.x + dx, Struct->m_Pos.y + Struct->m_Size.y + dy, width, g_GhostColor ); break; } case DRAW_HIERARCHICAL_PIN_SHEET_STRUCT_TYPE: case DRAW_MARKER_STRUCT_TYPE: break; default: break; } }