Commit 9370dd83 authored by jean-pierre charras's avatar jean-pierre charras
Browse files

CvPcb: Code cleanup. Rename WinEDA_CvpcbFrame to CVPCB_MAINFRAME, according to coding style policy.

Change in CvPcb: CvPcb does not use now .dcm files, only .mod files  to read modules keywords and doc
parent 0d8cb9b5
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -4,6 +4,16 @@ KiCad ChangeLog 2010
Please add newer entries at the top, list the date and your name with
Please add newer entries at the top, list the date and your name with
email address.
email address.


2011-Feb-05, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
CvPcb:
    Code cleanup. Rename WinEDA_CvpcbFrame to CVPCB_MAINFRAME,
        according to coding style policy.
    Change in CvPcb:
        CvPcb does not use now .dcm files, only .mod files,
        to read modules keywords and doc


2011-Feb-2 UPDATE Dick Hollenbeck <dick@softplc.com>
2011-Feb-2 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
================================================================================
++common:
++common:
+1 −0
Original line number Original line Diff line number Diff line
@@ -187,6 +187,7 @@ set(BITMAP_SRCS
    Lang_Es.xpm
    Lang_Es.xpm
    Lang_Fr.xpm
    Lang_Fr.xpm
    Lang_Fi.xpm
    Lang_Fi.xpm
    Lang_Gr.xpm
    Lang_Hu.xpm
    Lang_Hu.xpm
    Lang_It.xpm
    Lang_It.xpm
    Lang_Jp.xpm
    Lang_Jp.xpm

bitmaps/Lang_Gr.xpm

0 → 100644
+38 −0
Original line number Original line Diff line number Diff line
/* XPM */
const char *lang_gr_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 16 1",
"= c none",
"& c #D6D8F8",
"O c #3939DC",
"+ c #0E12F2",
"# c #A8A6F7",
"o c #2826E4",
": c #B4B6FC",
"* c #8482F4",
"@ c #4745F8",
"- c #1C1EFC",
"; c #1D22FB",
"$ c #9C9AF4",
". c #CAC8FA",
"  c #0402FC",
"% c #5456F4",
"X c #7A79F9",
/* pixels */
"================",
"  .XoOOOOOoo++++",
"  .X @#########$",
"%%&#%*##########",
"&&=&&*          ",
"  .X %.&&&&&&&&&",
"  .X -@@@@@@@@@@",
"@@&$@@@@@@@@@@@@",
"                ",
";--;-----------;",
"*XXXXXXXXXXXXXXX",
"&&&&&&&&&&&&&&&&",
"                ",
"::::::::::::::::",
"================",
"================"
};
+8 −0
Original line number Original line Diff line number Diff line
@@ -148,6 +148,14 @@ static struct LANGUAGE_DESCR s_Language_List[] =
        _( "German" )
        _( "German" )
    },
    },


    /* Greek language */
    {
        wxLANGUAGE_GREEK,
        ID_LANGUAGE_GREEK,
        lang_gr_xpm,
        _( "Greek" )
    },

    /* Slovenian language */
    /* Slovenian language */
    {
    {
        wxLANGUAGE_SLOVENIAN,
        wxLANGUAGE_SLOVENIAN,
+2 −1
Original line number Original line Diff line number Diff line
@@ -13,6 +13,7 @@


#include "cvpcb.h"
#include "cvpcb.h"
#include "protos.h"
#include "protos.h"
#include "cvpcb_mainframe.h"
#include "cvstruct.h"
#include "cvstruct.h"




@@ -68,7 +69,7 @@ char * ReadQuotedText(wxString & aTarget, char * aText)
 * format of a line:
 * format of a line:
 * 'cmp_ref' 'footprint_name'
 * 'cmp_ref' 'footprint_name'
 */
 */
void WinEDA_CvpcbFrame::AssocieModule( wxCommandEvent& event )
void CVPCB_MAINFRAME::AssocieModule( wxCommandEvent& event )
{
{
    FOOTPRINT_ALIAS_LIST aliases;
    FOOTPRINT_ALIAS_LIST aliases;
    FOOTPRINT_ALIAS*     alias;
    FOOTPRINT_ALIAS*     alias;
Loading