1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-01 03:22:01 +03:00

upleveled to bzr3378

This commit is contained in:
Wolfgang Spraul 2012-01-25 12:32:10 +01:00
parent 0bdf904a56
commit e192246e51
5 changed files with 48188 additions and 116 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
--- /dev/null 2012-01-06 01:10:09.493787641 +0100
+++ kicad/eeschema/eeschema_cmdline.h 2012-01-11 12:10:53.288629976 +0100
+++ kicad/eeschema/eeschema_cmdline.h 2012-01-25 11:59:18.262228810 +0100
@@ -0,0 +1,14 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: eeschema_cmdline.h
@ -16,30 +16,31 @@
+
+extern EESCHEMA_CMDLINE g_EESchemaCmdLine;
--- /dev/null 2012-01-06 01:10:09.493787641 +0100
+++ kicad/eeschema/eeschema_cmdline.cpp 2012-01-11 12:10:53.289629969 +0100
@@ -0,0 +1,233 @@
+++ kicad/eeschema/eeschema_cmdline.cpp 2012-01-25 12:29:57.467694380 +0100
@@ -0,0 +1,234 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: eeschema_cmdline.cpp
+// Copyright: Werner Almesberger, Wolfgang Spraul
+// License: GPL v2 or higher
+/////////////////////////////////////////////////////////////////////////////
+
+#include "fctsys.h"
+#include "appl_wxstruct.h"
+#include "common.h"
+#include "general.h"
+#include "netlist.h"
+#include "netlist_control.h"
+#include "protos.h"
+#include "gr_basic.h"
+#include "wx/cmdline.h"
+#include "dialog_build_BOM.h"
+#include "dialog_SVG_print_base.h"
+#include "dialog_erc.h"
+#include "dialog_color_config.h"
+#include "wxEeschemaStruct.h"
+#include "sch_sheet.h"
+#include "eeschema_cmdline.h"
+#include <wx/notebook.h>
+#include <fctsys.h>
+#include <appl_wxstruct.h>
+#include <common.h>
+#include <general.h>
+#include <netlist.h>
+#include <netlist_control.h>
+#include <protos.h>
+#include <gr_basic.h>
+#include <wx/cmdline.h>
+#include <dialog_build_BOM.h>
+#include <dialog_SVG_print_base.h>
+#include <dialog_erc.h>
+#include <dialog_color_config.h>
+#include <wxEeschemaStruct.h>
+#include <sch_sheet.h>
+#include <eeschema_cmdline.h>
+
+EESCHEMA_CMDLINE g_EESchemaCmdLine;
+
@ -252,7 +253,7 @@
+ return true;
+}
--- /dev/null 2012-01-06 01:10:09.493787641 +0100
+++ kicad/pcbnew/pcbnew_cmdline.h 2012-01-11 12:10:53.301629883 +0100
+++ kicad/pcbnew/pcbnew_cmdline.h 2012-01-25 11:59:20.948208768 +0100
@@ -0,0 +1,7 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: pcbnew_cmdline.h
@ -262,7 +263,7 @@
+
+bool Pcbnew_CmdLine();
--- /dev/null 2012-01-06 01:10:09.493787641 +0100
+++ kicad/pcbnew/pcbnew_cmdline.cpp 2012-01-11 12:10:53.303629867 +0100
+++ kicad/pcbnew/pcbnew_cmdline.cpp 2012-01-25 12:30:23.351506231 +0100
@@ -0,0 +1,526 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: pcbnew_cmdline.cpp
@ -270,9 +271,9 @@
+// Licence: GPL v3 or higher
+/////////////////////////////////////////////////////////////////////////////
+
+#include "fctsys.h"
+#include "appl_wxstruct.h"
+#include "confirm.h"
+#include <fctsys.h>
+#include <appl_wxstruct.h>
+#include <confirm.h>
+
+#include <wx/file.h>
+#include <wx/snglinst.h>
@ -280,32 +281,32 @@
+#include <wx/tokenzr.h>
+#include <wx/svg/dcsvg.h>
+
+#include "common.h"
+#include "pcbnew.h"
+#include "wxPcbStruct.h"
+#include "plot_common.h"
+#include "gestfich.h"
+#include "pcbplot.h"
+#include "autorout.h"
+#include "cell.h"
+#include "worksheet.h"
+#include "zones.h"
+#include "drag.h"
+#include "eda_dde.h"
+#include "colors_selection.h"
+#include "class_drawpanel.h"
+#include "gr_basic.h"
+#include "id.h"
+#include "build_version.h"
+#include <common.h>
+#include <pcbnew.h>
+#include <wxPcbStruct.h>
+#include <plot_common.h>
+#include <gestfich.h>
+#include <pcbplot.h>
+#include <autorout.h>
+#include <cell.h>
+#include <worksheet.h>
+#include <zones.h>
+#include <drag.h>
+#include <eda_dde.h>
+#include <colors_selection.h>
+#include <class_drawpanel.h>
+#include <gr_basic.h>
+#include <id.h>
+#include <build_version.h>
+
+#include "protos.h"
+#include "pcbnew_cmdline.h"
+#include "gendrill.h"
+#include "dialog_gendrill.h"
+#include "dialog_drc.h"
+#include "printout_controler.h"
+#include "dialog_plot_base.h"
+#include "dialog_SVG_print.h"
+#include <protos.h>
+#include <pcbnew_cmdline.h>
+#include <gendrill.h>
+#include <dialog_gendrill.h>
+#include <dialog_drc.h>
+#include <printout_controler.h>
+#include <dialog_plot_base.h>
+#include <dialog_SVG_print.h>
+
+extern int g_DrawDefaultLineThickness;
+

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
# Based on BZR revision 3351
# Based on BZR revision 3378
# under discussion
# fix-pinedit-collision.patch