Commit 346914c9 authored by charras's avatar charras
Browse files

Some cleanup and libraries update

parent 0a3fdeed
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -5,6 +5,11 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.

2008-Nov-22 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
++pcbnew
    Some cleanup in dialog pad edition.


2008-Nov-19 UPDATE Jerry Jacobs <jerkejacobs@gmail.com>
================================================================================
+2 −2
Original line number Diff line number Diff line
@@ -195,11 +195,11 @@ void LibDrawSquare::Draw( WinEDA_DrawPanel* aPanel, wxDC* aDC, const wxPoint& aO

    if( fill == FILLED_WITH_BG_BODYCOLOR && !aData )
        GRFilledRect( &aPanel->m_ClipBox, aDC, pos1.x, pos1.y, pos2.x, pos2.y,
            color, linewidth,
            linewidth, color,
            ReturnLayerColor( LAYER_DEVICE_BACKGROUND ) );
    else if( m_Fill == FILLED_SHAPE  && !aData )
        GRFilledRect( &aPanel->m_ClipBox, aDC, pos1.x, pos1.y, pos2.x, pos2.y,
            color, color );
            linewidth, color, color );
    else
        GRRect( &aPanel->m_ClipBox, aDC, pos1.x, pos1.y, pos2.x, pos2.y,
            linewidth, color );
+3 −3
Original line number Diff line number Diff line
@@ -39,20 +39,20 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()
        // Menu File:
        wxMenuItem* item = new wxMenuItem( m_FilesMenu, ID_NEW_PROJECT,
                                          _( "&New" ),
                                          _( "New schematic sheet" ) );
                                          _( "New schematic project" ) );
        item->SetBitmap( new_xpm );
        m_FilesMenu->Append( item );

        item = new wxMenuItem( m_FilesMenu, ID_LOAD_PROJECT,
                              _( "&Open" ),
                              _( "Open a schematic sheet" ) );
                              _( "Open an existing schematic project" ) );
        item->SetBitmap( open_xpm );
        m_FilesMenu->Append( item );

        m_FilesMenu->AppendSeparator();
        item = new wxMenuItem( m_FilesMenu, ID_SAVE_PROJECT,
                              _( "&Save Project" ),
                              _( "Save project" ) );
                              _( "Save all sheets in the schematic project" ) );
        item->SetBitmap( save_project_xpm );
        m_FilesMenu->Append( item );

+9 −9
Original line number Diff line number Diff line
@@ -153,28 +153,28 @@ void WinEDA_SchematicFrame::ReCreateVToolbar()
    m_VToolBar->AddSeparator();
    m_VToolBar->AddTool( ID_COMPONENT_BUTT, wxEmptyString,
                         BITMAP( add_component_xpm ),
                         _( "Place the component" ), wxITEM_CHECK );
                         _( "Place a component" ), wxITEM_CHECK );

    m_VToolBar->AddTool( ID_PLACE_POWER_BUTT, wxEmptyString,
                         BITMAP( add_power_xpm ),
                         _( "Place the power port" ), wxITEM_CHECK );
                         _( "Place a power port" ), wxITEM_CHECK );

    m_VToolBar->AddSeparator();
    m_VToolBar->AddTool( ID_WIRE_BUTT, wxEmptyString,
                         BITMAP( add_line_xpm ),
                         _( "Place the wire" ), wxITEM_CHECK );
                         _( "Place a wire" ), wxITEM_CHECK );

    m_VToolBar->AddTool( ID_BUS_BUTT, wxEmptyString,
                         BITMAP( add_bus_xpm ),
                         _( "Place bus" ), wxITEM_CHECK );
                         _( "Place a bus" ), wxITEM_CHECK );

    m_VToolBar->AddTool( ID_WIRETOBUS_ENTRY_BUTT, wxEmptyString,
                         BITMAP( add_line2bus_xpm ),
                         _( "Place the wire to bus entry" ), wxITEM_CHECK );
                         _( "Place a wire to bus entry" ), wxITEM_CHECK );

    m_VToolBar->AddTool( ID_BUSTOBUS_ENTRY_BUTT, wxEmptyString,
                         BITMAP( add_bus2bus_xpm ),
                         _( "Place bus to bus entry" ), wxITEM_CHECK );
                         _( "Place a bus to bus entry" ), wxITEM_CHECK );

    m_VToolBar->AddSeparator();
    m_VToolBar->AddTool( ID_NOCONN_BUTT, wxEmptyString,
@@ -187,17 +187,17 @@ void WinEDA_SchematicFrame::ReCreateVToolbar()

    m_VToolBar->AddTool( ID_GLABEL_BUTT, wxEmptyString,
                         BITMAP( add_glabel_xpm ),
                         _( "Place the global label.\nWarning: all global labels with the same name are connected in whole hierarchy" ),
                         _( "Place a global label.\nWarning: all global labels with the same name are connected in whole hierarchy" ),
						 wxITEM_CHECK );

    m_VToolBar->AddTool( ID_JUNCTION_BUTT, wxEmptyString,
                         BITMAP( add_junction_xpm ),
                         _( "Place junction" ), wxITEM_CHECK );
                         _( "Place a junction" ), wxITEM_CHECK );

    m_VToolBar->AddSeparator();
	m_VToolBar->AddTool( ID_HIERLABEL_BUTT, wxEmptyString,
						 BITMAP( add_hierarchical_label_xpm ),
								 _( "Place the hierarchical label. This label will be seen as a pin sheet in the sheet symbol" ),
								 _( "Place a hierarchical label. This label will be seen as a pin sheet in the sheet symbol" ),
								 wxITEM_CHECK );

    m_VToolBar->AddTool( ID_SHEET_SYMBOL_BUTT, wxEmptyString,
+360 B (161 KiB)

File changed.

No diff preview for this file type.

Loading