Loading 3d-viewer/3d_draw.cpp +1 −0 Original line number Original line Diff line number Diff line Loading @@ -493,6 +493,7 @@ void Pcb3D_GLCanvas::Draw3D_DrawText( TEXTE_PCB* text ) text->m_Text, text->m_Orient, text->m_Size, text->m_Text, text->m_Orient, text->m_Size, text->m_HJustify, text->m_VJustify, text->m_HJustify, text->m_VJustify, text->m_Width, text->m_Italic, text->m_Width, text->m_Italic, true, Draw3dTextSegm ); Draw3dTextSegm ); } } Loading 3d-viewer/makefile.g95→3d-viewer/makefile.mingw +0 −0 File moved. View file CHANGELOG.txt +11 −1 Original line number Original line Diff line number Diff line Loading @@ -4,7 +4,17 @@ KiCad ChangeLog 2009 Please add newer entries at the top, list the date and your name with Please add newer entries at the top, list the date and your name with email address. email address. 2009-xxx-xx UPDATE Wayne Stambaugh <stambaughw@verizon.net> 2009-apr-06 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr> ================================================================================ ++common: overbar patch merged in drawtxt.cpp and mainly in eechema/class_pin.cpp some cleanup and some compiling problems fixed. ++eeschema: changed dialog_eeschema_config.cpp to use wxFormBuilder to create the corresponding equivalent dialog in dialog_eeschema_config_fbp.cpp 2009-apr-05 UPDATE Wayne Stambaugh <stambaughw@verizon.net> ================================================================================ ================================================================================ ++All ++All * Removed all instances #ifdef eda_global, COMMON_GLOBL, and MAIN in order * Removed all instances #ifdef eda_global, COMMON_GLOBL, and MAIN in order Loading bitmaps/makefile.g95→bitmaps/makefile.mingw +0 −0 File moved. View file common/drawpanel.cpp +6 −5 Original line number Original line Diff line number Diff line Loading @@ -738,18 +738,19 @@ void WinEDA_DrawPanel::DrawBackGround( wxDC* DC ) for( ii = 0; ; ii++ ) for( ii = 0; ; ii++ ) { { xg = wxRound(ii * screen_grid_size.x); xg = wxRound(ii * screen_grid_size.x); if( xg > size.x ) break; int xpos = org.x + xg; int xpos = org.x + xg; xpos = GRMapX( xpos ); for( jj = 0; ; jj++ ) for( jj = 0; ; jj++ ) { { yg = wxRound(jj * screen_grid_size.y); yg = wxRound(jj * screen_grid_size.y); GRPutPixel( &m_ClipBox, DC, xpos, org.y + yg, color ); if( yg > size.y ) if( yg > size.y ) break; break; int ypos = org.y + yg; DC->DrawPoint( xpos, GRMapY( ypos ) ); } } if( xg > size.x ) break; } } } } Loading Loading
3d-viewer/3d_draw.cpp +1 −0 Original line number Original line Diff line number Diff line Loading @@ -493,6 +493,7 @@ void Pcb3D_GLCanvas::Draw3D_DrawText( TEXTE_PCB* text ) text->m_Text, text->m_Orient, text->m_Size, text->m_Text, text->m_Orient, text->m_Size, text->m_HJustify, text->m_VJustify, text->m_HJustify, text->m_VJustify, text->m_Width, text->m_Italic, text->m_Width, text->m_Italic, true, Draw3dTextSegm ); Draw3dTextSegm ); } } Loading
CHANGELOG.txt +11 −1 Original line number Original line Diff line number Diff line Loading @@ -4,7 +4,17 @@ KiCad ChangeLog 2009 Please add newer entries at the top, list the date and your name with Please add newer entries at the top, list the date and your name with email address. email address. 2009-xxx-xx UPDATE Wayne Stambaugh <stambaughw@verizon.net> 2009-apr-06 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr> ================================================================================ ++common: overbar patch merged in drawtxt.cpp and mainly in eechema/class_pin.cpp some cleanup and some compiling problems fixed. ++eeschema: changed dialog_eeschema_config.cpp to use wxFormBuilder to create the corresponding equivalent dialog in dialog_eeschema_config_fbp.cpp 2009-apr-05 UPDATE Wayne Stambaugh <stambaughw@verizon.net> ================================================================================ ================================================================================ ++All ++All * Removed all instances #ifdef eda_global, COMMON_GLOBL, and MAIN in order * Removed all instances #ifdef eda_global, COMMON_GLOBL, and MAIN in order Loading
common/drawpanel.cpp +6 −5 Original line number Original line Diff line number Diff line Loading @@ -738,18 +738,19 @@ void WinEDA_DrawPanel::DrawBackGround( wxDC* DC ) for( ii = 0; ; ii++ ) for( ii = 0; ; ii++ ) { { xg = wxRound(ii * screen_grid_size.x); xg = wxRound(ii * screen_grid_size.x); if( xg > size.x ) break; int xpos = org.x + xg; int xpos = org.x + xg; xpos = GRMapX( xpos ); for( jj = 0; ; jj++ ) for( jj = 0; ; jj++ ) { { yg = wxRound(jj * screen_grid_size.y); yg = wxRound(jj * screen_grid_size.y); GRPutPixel( &m_ClipBox, DC, xpos, org.y + yg, color ); if( yg > size.y ) if( yg > size.y ) break; break; int ypos = org.y + yg; DC->DrawPoint( xpos, GRMapY( ypos ) ); } } if( xg > size.x ) break; } } } } Loading