Commit 62a28440 authored by CHARRAS's avatar CHARRAS
Browse files

wxstruct modified and wxPcbStuct.h added. some minor other changes

parent 0aaf01e9
Loading
Loading
Loading
Loading

bitmaps/Add_Corner.xpm

0 → 100644
+34 −0
Original line number Diff line number Diff line
/* XPM */
#ifndef XPMMAIN
extern const char *Add_Corner_xpm[];

#else
const char * Add_Corner_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 7 1",
"  c None",
"X c #808080",
". c #008000",
"+ c #FFFF00",
"@ c #800000",
"o c #C0C0C0",
"O c #808000",
/* pixels */
"     .XX        ",
"     .XX        ",
"    XooO        ",
"      ooX       ",
"..X ooooX ..... ",
"X.XoooooX XXXXXX",
"XX ooo++O XXXXXX",
"  X OOO@ X      ",
"   X    X       ",
"    X.XX        ",
"     .XX        ",
"     .XX        ",
"     .XX        ",
"     .XX        ",
"     .XX        ",
"      XX        "
};
#endif
+6 −1
Original line number Diff line number Diff line
/* XPM */
static const char * add_zone_xpm[] = {
#ifndef XPMMAIN
extern const char *add_zone_xpm[];

#else
const char * add_zone_xpm[] = {
"16 16 3 1",
" 	c None",
".	c #007D00",
@@ -20,3 +24,4 @@ static const char * add_zone_xpm[] = {
".............. .",
"............... ",
"............... "};
#endif
+27 −0
Original line number Diff line number Diff line
/* XPM */
#ifndef XPMMAIN
extern const char *add_zone_cutout[];

#else
const char * add_zone_cutout[] = {
"16 16 3 1",
" 	c None",
".	c #007D00",
"+	c #900000",
"  ..............",
"....    ........",
"... ++++ .......",
".. +     + .....",
". +        + ...",
". +         + ..",
". +         + ..",
". +          + .",
".. +        + ..",
"... +++++++ ... ",
"....    ....    ",
"............    ",
".............   ",
"..............  ",
"  ............. ",
"   ............ "};
#endif
+7 −0
Original line number Diff line number Diff line
@@ -4,6 +4,13 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.

2008-jan-01 UPDATE  Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+all
	wxstruct modified and wxPcbStuct.h added:
		classes relatives to pcbnew, cvpcb and gerbview are moved in wxPcbStuct.h


2007-Dec-29 UPDATE  Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+pcbnew:
+1 −1
Original line number Diff line number Diff line
@@ -73,9 +73,9 @@ wxString title;
	m_Parent = parent;
	m_DoUpdate = TRUE;

    Create(parent, id, caption, pos, size, style);
	title = _("from ") + g_EDA_Appl->m_CurrentOptionFile;
	SetTitle(title);
    Create(parent, id, caption, pos, size, style);
}

/*!
Loading