Commit c5ad0c54 authored by charras's avatar charras
Browse files

Pcbnew:Rework on print function: fixed the fully broken print function in Modedit

See also changelog
parent cda7833e
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -4,6 +4,14 @@ KiCad ChangeLog 2009
Please add newer entries at the top, list the date and your name with
email address.

2009-oct-23 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++pcbnew
    Rework on print function: fixed the fully broken print function in Modedit
    and better code.
    Removed the display vias option tool in Modedit and Gerbview left toolbar,
    because this option has no sense here.

2009-oct-21 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++pcbnew
+1 −4
Original line number Diff line number Diff line
@@ -37,12 +37,9 @@ set(GERBVIEW_SRCS
    trpiste.cpp )

set(GERBVIEW_EXTRA_SRCS
#    ../pcbnew/class_board_item.cpp
#    ../pcbnew/class_drawsegment.cpp
#    ../pcbnew/undelete.cpp

    ../share/setpage.cpp
    ../pcbnew/dialog_print_using_printer.cpp
    ../pcbnew/printout_controler.cpp
)

if(WIN32)
+0 −3
Original line number Diff line number Diff line
@@ -277,9 +277,6 @@ void WinEDA_GerberFrame::SetToolbars()
        m_OptionsToolBar->ToggleTool( ID_TB_OPTIONS_SHOW_PADS_SKETCH,
                                      !m_DisplayPadFill );

        m_OptionsToolBar->ToggleTool( ID_TB_OPTIONS_SHOW_VIAS_SKETCH,
                                      !m_DisplayViaFill );

        m_OptionsToolBar->ToggleTool( ID_TB_OPTIONS_SHOW_TRACKS_SKETCH,
                                      !m_DisplayPcbTrackFill );

+0 −4
Original line number Diff line number Diff line
@@ -362,10 +362,6 @@ create or update the left vertical toolbar (option toolbar
                               wxBitmap( pad_sketch_xpm ),
                               _( "Show Spots in Sketch Mode" ), wxITEM_CHECK );

    m_OptionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_VIAS_SKETCH, wxEmptyString,
                               wxBitmap( via_sketch_xpm ),
                               _( "Show Vias in Sketch Mode" ), wxITEM_CHECK );

    m_OptionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_TRACKS_SKETCH, wxEmptyString,
                               wxBitmap( showtrack_xpm ),
                               _( "Show Lines in Sketch Mode" ), wxITEM_CHECK );
+5 −0
Original line number Diff line number Diff line
@@ -747,6 +747,11 @@ public:
    void         GeneralControle( wxDC* DC, wxPoint Mouse );
    void         LoadModuleFromBoard( wxCommandEvent& event );

    /** function ToPrinter
     * Install the print dialog
     */
    void         ToPrinter( wxCommandEvent& event );

    // BOARD handling
    /** function Clear_Pcb()
     * delete all and reinitialize the current board
Loading