mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-05 00:15:30 +00:00
Ugh. Once more into the breach to try and get our terminology consistent.
This commit is contained in:
parent
1fa432b029
commit
ad513345fe
common/jobs
job.cppjob.hjob_export_pcb_3d.cppjob_export_pcb_3d.hjob_export_pcb_drill.cppjob_export_pcb_drill.hjob_export_pcb_dxf.cppjob_export_pcb_dxf.hjob_export_pcb_gencad.cppjob_export_pcb_gencad.hjob_export_pcb_gerber.cppjob_export_pcb_gerber.hjob_export_pcb_gerbers.cppjob_export_pcb_gerbers.hjob_export_pcb_ipc2581.cppjob_export_pcb_ipc2581.hjob_export_pcb_odb.cppjob_export_pcb_odb.hjob_export_pcb_pdf.cppjob_export_pcb_pdf.hjob_export_pcb_pos.cppjob_export_pcb_pos.hjob_export_pcb_svg.cppjob_export_pcb_svg.hjob_export_sch_bom.cppjob_export_sch_bom.hjob_export_sch_netlist.cppjob_export_sch_netlist.hjob_export_sch_plot.cppjob_export_sch_plot.hjob_pcb_drc.cppjob_pcb_drc.hjob_pcb_render.cppjob_pcb_render.hjob_sch_erc.cppjob_sch_erc.h
eeschema/dialogs
dialog_erc_job_config.cppdialog_export_netlist.cppdialog_plot_schematic.cppdialog_symbol_fields_table.cpp
pcbnew/dialogs
@ -74,9 +74,9 @@ wxString JOB::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB::GetOptionsDialogTitle() const
|
||||
wxString JOB::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Job Options" );
|
||||
return _( "Job Settings" );
|
||||
}
|
||||
|
||||
|
||||
|
@ -141,7 +141,7 @@ public:
|
||||
virtual void ToJson( nlohmann::json& j ) const;
|
||||
|
||||
virtual wxString GetDefaultDescription() const;
|
||||
virtual wxString GetOptionsDialogTitle() const;
|
||||
virtual wxString GetSettingsDialogTitle() const;
|
||||
|
||||
const std::vector<JOB_PARAM_BASE*>& GetParams() { return m_params; }
|
||||
|
||||
|
@ -145,9 +145,9 @@ wxString JOB_EXPORT_PCB_3D::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_3D::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_3D::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export 3D Model Job Options" );
|
||||
return _( "Export 3D Model Job Settings" );
|
||||
}
|
||||
|
||||
|
||||
|
@ -107,7 +107,7 @@ class KICOMMON_API JOB_EXPORT_PCB_3D : public JOB
|
||||
public:
|
||||
JOB_EXPORT_PCB_3D();
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
void SetStepFormat( EXPORTER_STEP_PARAMS::FORMAT aFormat );
|
||||
|
||||
|
@ -124,9 +124,9 @@ wxString JOB_EXPORT_PCB_DRILL::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_DRILL::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_DRILL::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export Drill Data Job Options" );
|
||||
return _( "Export Drill Data Job Settings" );
|
||||
}
|
||||
|
||||
REGISTER_JOB( pcb_export_drill, _HKI( "PCB: Export drill data" ), KIWAY::FACE_PCB,
|
||||
|
@ -32,7 +32,7 @@ public:
|
||||
JOB_EXPORT_PCB_DRILL();
|
||||
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
wxString m_filename;
|
||||
|
||||
|
@ -59,9 +59,9 @@ wxString JOB_EXPORT_PCB_DXF::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_DXF::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_DXF::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export DXF Job Options" );
|
||||
return _( "Export DXF Job Settings" );
|
||||
}
|
||||
|
||||
|
||||
|
@ -33,7 +33,7 @@ class KICOMMON_API JOB_EXPORT_PCB_DXF : public JOB_EXPORT_PCB_PLOT
|
||||
public:
|
||||
JOB_EXPORT_PCB_DXF();
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
enum class DXF_UNITS
|
||||
{
|
||||
|
@ -33,7 +33,7 @@ JOB_EXPORT_PCB_GENCAD::JOB_EXPORT_PCB_GENCAD() :
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_GENCAD::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_GENCAD::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export GenCAD Job Options" );
|
||||
return _( "Export GenCAD Job Settings" );
|
||||
}
|
@ -31,7 +31,7 @@ class KICOMMON_API JOB_EXPORT_PCB_GENCAD : public JOB
|
||||
{
|
||||
public:
|
||||
JOB_EXPORT_PCB_GENCAD();
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
wxString m_filename;
|
||||
|
||||
|
@ -72,7 +72,7 @@ wxString JOB_EXPORT_PCB_GERBER::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_GERBER::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_GERBER::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export Single Gerber Job Options" );
|
||||
return _( "Export Single Gerber Job Settings" );
|
||||
}
|
@ -33,7 +33,7 @@ public:
|
||||
JOB_EXPORT_PCB_GERBER( const std::string& aType );
|
||||
JOB_EXPORT_PCB_GERBER();
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
bool m_subtractSolderMaskFromSilk;
|
||||
bool m_includeNetlistAttributes;
|
||||
|
@ -44,9 +44,9 @@ wxString JOB_EXPORT_PCB_GERBERS::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_GERBERS::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_GERBERS::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export Gerbers Job Options" );
|
||||
return _( "Export Gerbers Job Settings" );
|
||||
}
|
||||
|
||||
|
||||
|
@ -33,7 +33,7 @@ class KICOMMON_API JOB_EXPORT_PCB_GERBERS : public JOB_EXPORT_PCB_GERBER
|
||||
public:
|
||||
JOB_EXPORT_PCB_GERBERS();
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
LSET m_layersIncludeOnAll;
|
||||
|
||||
|
@ -73,9 +73,9 @@ wxString JOB_EXPORT_PCB_IPC2581::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_IPC2581::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_IPC2581::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export IPC2581 Job Options" );
|
||||
return _( "Export IPC2581 Job Settings" );
|
||||
}
|
||||
|
||||
|
||||
|
@ -30,7 +30,7 @@ class KICOMMON_API JOB_EXPORT_PCB_IPC2581 : public JOB
|
||||
public:
|
||||
JOB_EXPORT_PCB_IPC2581();
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
void SetDefaultOutputPath( const wxString& aReferenceName );
|
||||
|
||||
|
@ -58,9 +58,9 @@ wxString JOB_EXPORT_PCB_ODB::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_ODB::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_ODB::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export ODB++ Job Options" );
|
||||
return _( "Export ODB++ Job Settings" );
|
||||
}
|
||||
|
||||
|
||||
|
@ -29,7 +29,7 @@ class KICOMMON_API JOB_EXPORT_PCB_ODB : public JOB
|
||||
public:
|
||||
JOB_EXPORT_PCB_ODB();
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
void SetDefaultOutputPath( const wxString& aReferenceName );
|
||||
|
||||
|
@ -75,9 +75,9 @@ wxString JOB_EXPORT_PCB_PDF::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_PDF::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_PDF::GetSettingsDialogTitle() const
|
||||
{
|
||||
return wxString::Format( _( "Export PDF Job Options" ) );
|
||||
return wxString::Format( _( "Export PDF Job Settings" ) );
|
||||
}
|
||||
|
||||
|
||||
|
@ -34,7 +34,7 @@ class KICOMMON_API JOB_EXPORT_PCB_PDF : public JOB_EXPORT_PCB_PLOT
|
||||
public:
|
||||
JOB_EXPORT_PCB_PDF();
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
bool m_pdfFrontFPPropertyPopups;
|
||||
bool m_pdfBackFPPropertyPopups;
|
||||
|
@ -92,9 +92,9 @@ wxString JOB_EXPORT_PCB_POS::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_POS::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_POS::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export Position Data Job Options" );
|
||||
return _( "Export Position Data Job Settings" );
|
||||
}
|
||||
|
||||
|
||||
|
@ -31,7 +31,7 @@ class KICOMMON_API JOB_EXPORT_PCB_POS : public JOB
|
||||
public:
|
||||
JOB_EXPORT_PCB_POS();
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
void SetDefaultOutputPath( const wxString& aReferenceName );
|
||||
|
||||
|
@ -59,9 +59,9 @@ wxString JOB_EXPORT_PCB_SVG::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_PCB_SVG::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_PCB_SVG::GetSettingsDialogTitle() const
|
||||
{
|
||||
return _( "Export SVG Job Options" );
|
||||
return _( "Export SVG Job Settings" );
|
||||
}
|
||||
|
||||
|
||||
|
@ -33,7 +33,7 @@ class KICOMMON_API JOB_EXPORT_PCB_SVG : public JOB_EXPORT_PCB_PLOT
|
||||
public:
|
||||
JOB_EXPORT_PCB_SVG();
|
||||
wxString GetDefaultDescription() const override;
|
||||
wxString GetOptionsDialogTitle() const override;
|
||||
wxString GetSettingsDialogTitle() const override;
|
||||
|
||||
int m_pageSizeMode;
|
||||
unsigned int m_precision;
|
||||
|
@ -87,9 +87,9 @@ wxString JOB_EXPORT_SCH_BOM::GetDefaultDescription() const
|
||||
}
|
||||
|
||||
|
||||
wxString JOB_EXPORT_SCH_BOM::GetOptionsDialogTitle() const
|
||||
wxString JOB_EXPORT_SCH_BOM::GetSettingsDialogTitle() const
|
||||
{
|
||||
return wxString::Format( _( "Generate Bill of Materials Job Options" ) );
|
||||
return wxString::Format( _( "Generate Bill of Materials Job Settings" ) );
|
||||
}
|
||||
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user