Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
6393de35
Commit
6393de35
authored
Oct 20, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
made cvpcb and gerbview compilable with last changes in pcbnew
parent
4fa2654d
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
14 additions
and
7 deletions
+14
-7
cvpcb.cpp
cvpcb/cvpcb.cpp
+1
-0
gerbview.cpp
gerbview/gerbview.cpp
+1
-0
autoplac.cpp
pcbnew/autoplac.cpp
+1
-0
autorout.cpp
pcbnew/autorout.cpp
+1
-0
autorout.h
pcbnew/autorout.h
+0
-7
board.cpp
pcbnew/board.cpp
+1
-0
graphpcb.cpp
pcbnew/graphpcb.cpp
+1
-0
solve.cpp
pcbnew/solve.cpp
+1
-0
zones.h
pcbnew/zones.h
+7
-0
No files found.
cvpcb/cvpcb.cpp
View file @
6393de35
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
#include "cvpcb.h"
#include "cvpcb.h"
#include "trigo.h"
#include "trigo.h"
#include "gr_basic.h"
#include "gr_basic.h"
#include "zones.h"
#include "bitmaps.h"
#include "bitmaps.h"
...
...
gerbview/gerbview.cpp
View file @
6393de35
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
#include "gerbview.h"
#include "gerbview.h"
#include "pcbplot.h"
#include "pcbplot.h"
#include "trigo.h"
#include "trigo.h"
#include "zones.h"
#include "bitmaps.h"
#include "bitmaps.h"
#include "protos.h"
#include "protos.h"
...
...
pcbnew/autoplac.cpp
View file @
6393de35
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
#include "common.h"
#include "common.h"
#include "pcbnew.h"
#include "pcbnew.h"
#include "autorout.h"
#include "autorout.h"
#include "zones.h"
#include "cell.h"
#include "cell.h"
#include "protos.h"
#include "protos.h"
...
...
pcbnew/autorout.cpp
View file @
6393de35
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
#include "pcbnew.h"
#include "pcbnew.h"
#include "autorout.h"
#include "autorout.h"
#include "cell.h"
#include "cell.h"
#include "zones.h"
#include "protos.h"
#include "protos.h"
...
...
pcbnew/autorout.h
View file @
6393de35
...
@@ -96,13 +96,6 @@ enum CommandOpt {
...
@@ -96,13 +96,6 @@ enum CommandOpt {
ROUTE_PAD
ROUTE_PAD
};
};
/* parametre Pas de routage pour routage automatique et generation des zones */
#if defined MAIN
int
g_GridRoutingSize
=
250
;
#else
extern
int
g_GridRoutingSize
;
#endif
/* Variables et structures d'autoroutage */
/* Variables et structures d'autoroutage */
...
...
pcbnew/board.cpp
View file @
6393de35
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
#include "common.h"
#include "common.h"
#include "pcbnew.h"
#include "pcbnew.h"
#include "autorout.h"
#include "autorout.h"
#include "zones.h"
#include "cell.h"
#include "cell.h"
#include "protos.h"
#include "protos.h"
...
...
pcbnew/graphpcb.cpp
View file @
6393de35
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
#include "common.h"
#include "common.h"
#include "pcbnew.h"
#include "pcbnew.h"
#include "autorout.h"
#include "autorout.h"
#include "zones.h"
#include "trigo.h"
#include "trigo.h"
#include "cell.h"
#include "cell.h"
...
...
pcbnew/solve.cpp
View file @
6393de35
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
#include "common.h"
#include "common.h"
#include "pcbnew.h"
#include "pcbnew.h"
#include "autorout.h"
#include "autorout.h"
#include "zones.h"
#include "protos.h"
#include "protos.h"
...
...
pcbnew/zones.h
View file @
6393de35
...
@@ -28,6 +28,13 @@ enum zone_cmd {
...
@@ -28,6 +28,13 @@ enum zone_cmd {
/* variables used in zone dialogs and functions */
/* variables used in zone dialogs and functions */
/************************************************/
/************************************************/
/* parametre grid size for automatic routing and zone filling */
#if defined MAIN
int
g_GridRoutingSize
=
250
;
#else
extern
int
g_GridRoutingSize
;
#endif
// @todo: make a class like ZONE_GENERAL_SETTING instead of many global variables
// @todo: make a class like ZONE_GENERAL_SETTING instead of many global variables
eda_global
bool
g_Zone_45_Only
eda_global
bool
g_Zone_45_Only
#ifdef MAIN
#ifdef MAIN
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment