~andrew-plumb/kicad/kicad

« back to all changes in this revision

Viewing changes to pcbnew/dialogs/dialog_plot_base.cpp

  • Committer: Andrew Plumb
  • Date: 2013-10-16 12:24:11 UTC
  • mfrom: (4379.1.10 testing)
  • Revision ID: andrew@plumb.org-20131016122411-qb5tokbqbgs6t1jn
Updating from main testing branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        m_staticText121->Wrap( -1 );
29
29
        bSizer27->Add( m_staticText121, 0, wxTOP, 5 );
30
30
        
31
 
        wxString m_plotFormatOptChoices[] = { _("Gerber"), _("Postscript"), _("SVG"), _("DXF"), _("HPGL") };
 
31
        wxString m_plotFormatOptChoices[] = { _("Gerber"), _("Postscript"), _("SVG"), _("DXF"), _("HPGL"), _("PDF") };
32
32
        int m_plotFormatOptNChoices = sizeof( m_plotFormatOptChoices ) / sizeof( wxString );
33
33
        m_plotFormatOpt = new wxChoice( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_plotFormatOptNChoices, m_plotFormatOptChoices, 0 );
34
34
        m_plotFormatOpt->SetSelection( 0 );
186
186
        m_PlotOptionsSizer->Add( sbOptionsSizer, 0, wxALL|wxEXPAND, 3 );
187
187
        
188
188
        wxStaticBoxSizer* sbSizerSoldMaskLayerOpt;
189
 
        sbSizerSoldMaskLayerOpt = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Solder mask current settings:") ), wxVERTICAL );
 
189
        sbSizerSoldMaskLayerOpt = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Current solder mask settings:") ), wxVERTICAL );
190
190
        
191
191
        wxFlexGridSizer* fgSizerSoldMaskOpts;
192
192
        fgSizerSoldMaskOpts = new wxFlexGridSizer( 2, 2, 0, 0 );