Commit 4ce4e6aa authored by jerryjacobs's avatar jerryjacobs
Browse files

Cleaned function headers coding style to more elegant style

 + Function name on newline
 + All function parameters on newline ( the first on function name line )

Update dutch language
parent 07299b3e
Loading
Loading
Loading
Loading
+58 −25
Original line number Original line Diff line number Diff line
@@ -32,7 +32,8 @@ static wxString currentLibraryName; // If this code was written in C++ then


/*************************************************************************************/
/*************************************************************************************/
LibraryStruct* LoadLibraryName( WinEDA_DrawFrame* frame,
LibraryStruct* LoadLibraryName( WinEDA_DrawFrame* frame,
                                const wxString& FullLibName, const wxString& LibName )
                                const wxString& FullLibName,
                                const wxString& LibName )
/*************************************************************************************/
/*************************************************************************************/


/** Function LoadLibraryName
/** Function LoadLibraryName
@@ -100,7 +101,8 @@ LibraryStruct* LoadLibraryName( WinEDA_DrawFrame* frame,




/******************************************/
/******************************************/
void LoadLibraries( WinEDA_DrawFrame* frame )
void
LoadLibraries (WinEDA_DrawFrame* frame)
/******************************************/
/******************************************/


/* Function LoadLibraries
/* Function LoadLibraries
@@ -202,7 +204,9 @@ void LoadLibraries( WinEDA_DrawFrame* frame )




/**************************************************************/
/**************************************************************/
void FreeCmpLibrary( wxWindow* frame, const wxString& LibName )
void
FreeCmpLibrary (wxWindow* frame,
                const wxString& LibName)
/**************************************************************/
/**************************************************************/


/** Function FreeCmpLibrary
/** Function FreeCmpLibrary
@@ -248,7 +252,8 @@ void FreeCmpLibrary( wxWindow* frame, const wxString& LibName )




/******************************/
/******************************/
const wxChar** GetLibNames()
const
wxChar** GetLibNames()
/******************************/
/******************************/


/** GetLibNames()
/** GetLibNames()
@@ -276,7 +281,9 @@ const wxChar** GetLibNames()
 * Routine to compare two EDA_LibComponentStruct for the PriorQue module.
 * Routine to compare two EDA_LibComponentStruct for the PriorQue module.
 * Comparison (insensitive  case) is based on Part name.
 * Comparison (insensitive  case) is based on Part name.
 */
 */
int LibraryEntryCompare( EDA_LibComponentStruct* LE1, EDA_LibComponentStruct* LE2 )
int
LibraryEntryCompare (EDA_LibComponentStruct* LE1,
                     EDA_LibComponentStruct* LE2)
{
{
    return LE1->m_Name.m_Text.CmpNoCase( LE2->m_Name.m_Text );
    return LE1->m_Name.m_Text.CmpNoCase( LE2->m_Name.m_Text );
}
}
@@ -355,8 +362,10 @@ PriorQue* LoadLibraryAux( WinEDA_DrawFrame* frame,




/*********************************************************************************************/
/*********************************************************************************************/
EDA_LibComponentStruct* Read_Component_Definition( WinEDA_DrawFrame* frame, char* Line,
EDA_LibComponentStruct* Read_Component_Definition( WinEDA_DrawFrame* frame,
                                                   FILE* f, int* LineNum )
                                                   char* Line,
                                                   FILE* f,
                                                   int* LineNum )
/*********************************************************************************************/
/*********************************************************************************************/


/* Routine to Read a DEF/ENDDEF part entry from given open file.
/* Routine to Read a DEF/ENDDEF part entry from given open file.
@@ -503,7 +512,11 @@ EDA_LibComponentStruct* Read_Component_Definition( WinEDA_DrawFrame* frame, char
* been read already. Reads upto and include ENDDRAW, or an error (NULL ret). *
* been read already. Reads upto and include ENDDRAW, or an error (NULL ret). *
*****************************************************************************/
*****************************************************************************/


static LibEDA_BaseStruct* GetDrawEntry( WinEDA_DrawFrame* frame, FILE* f, char* Line, int* LineNum )
static
LibEDA_BaseStruct* GetDrawEntry (WinEDA_DrawFrame* frame,
                                 FILE* f,
                                 char* Line,
                                 int* LineNum)
{
{
    int                i = 0, jj, ll, Unit, Convert, size1, size2;
    int                i = 0, jj, ll, Unit, Convert, size1, size2;
    char*              p, Buffer[1024], BufName[256],
    char*              p, Buffer[1024], BufName[256],
@@ -834,7 +847,8 @@ LibraryStruct* FindLibrary( const wxString& Name )
/*****************************************************************************
/*****************************************************************************
* Routine to find the number of libraries currently loaded.	             *
* Routine to find the number of libraries currently loaded.	             *
*****************************************************************************/
*****************************************************************************/
int NumOfLibraries()
int
NumOfLibraries()
{
{
    int            ii;
    int            ii;
    LibraryStruct* Lib = g_LibraryList;
    LibraryStruct* Lib = g_LibraryList;
@@ -847,7 +861,9 @@ int NumOfLibraries()




/*****************************************************************************/
/*****************************************************************************/
static bool GetLibEntryField( EDA_LibComponentStruct* LibEntry, char* line )
static bool
GetLibEntryField (EDA_LibComponentStruct* LibEntry,
                  char* line)
/*****************************************************************************/
/*****************************************************************************/


/* Analyse la ligne de description du champ de la forme:
/* Analyse la ligne de description du champ de la forme:
@@ -966,7 +982,9 @@ static bool GetLibEntryField( EDA_LibComponentStruct* LibEntry, char* line )




/********************************************************************/
/********************************************************************/
static bool AddAliasNames( EDA_LibComponentStruct* LibEntry, char* line )
static bool
AddAliasNames (EDA_LibComponentStruct* LibEntry,
               char* line )
/********************************************************************/
/********************************************************************/


/* Read the alias names (in buffer line) and add them in alias list
/* Read the alias names (in buffer line) and add them in alias list
@@ -990,7 +1008,9 @@ static bool AddAliasNames( EDA_LibComponentStruct* LibEntry, char* line )




/********************************************************************/
/********************************************************************/
static void InsertAlias( PriorQue** PQ, EDA_LibComponentStruct* LibEntry,
static void
InsertAlias (PriorQue** PQ,
             EDA_LibComponentStruct* LibEntry,
             int* NumOfParts)
             int* NumOfParts)
/********************************************************************/
/********************************************************************/
/* create in library (in list PQ) aliases of the "root" component LibEntry*/
/* create in library (in list PQ) aliases of the "root" component LibEntry*/
@@ -1017,7 +1037,10 @@ static void InsertAlias( PriorQue** PQ, EDA_LibComponentStruct* LibEntry,
/*******************************************************/
/*******************************************************/


/**********************************************************************************************/
/**********************************************************************************************/
int LoadDocLib( WinEDA_DrawFrame* frame, const wxString& FullDocLibName, const wxString& Libname )
int
LoadDocLib (WinEDA_DrawFrame* frame,
            const wxString& FullDocLibName,
            const wxString& Libname)
/**********************************************************************************************/
/**********************************************************************************************/
/* Routine to load a library from given open file.*/
/* Routine to load a library from given open file.*/
{
{
@@ -1091,7 +1114,9 @@ int LoadDocLib( WinEDA_DrawFrame* frame, const wxString& FullDocLibName, const w




/*********************************************************************************/
/*********************************************************************************/
static bool ReadLibEntryDateAndTime( EDA_LibComponentStruct* LibEntry, char* Line )
static bool
ReadLibEntryDateAndTime (EDA_LibComponentStruct* LibEntry,
                         char* Line )
/*********************************************************************************/
/*********************************************************************************/


/* lit date et time de modif composant sous le format:
/* lit date et time de modif composant sous le format:
@@ -1119,12 +1144,15 @@ static bool ReadLibEntryDateAndTime( EDA_LibComponentStruct* LibEntry, char* Lin




/*******************************************/
/*******************************************/
static int SortItemsFct( const void* ref, const void* item );
static int
SortItemsFct (const void* ref,
              const void* item );


void EDA_LibComponentStruct::SortDrawItems()
void
EDA_LibComponentStruct::SortDrawItems()
/*******************************************/
/*******************************************/

/* TODO translate comment to english TODO
/* Trie les �l�ments graphiques d'un composant lib pour am�liorer
 * Trie les �l�ments graphiques d'un composant lib pour am�liorer
 *  le trac�:
 *  le trac�:
 *  items remplis en premier, pins en dernier
 *  items remplis en premier, pins en dernier
 *  En cas de superposition d'items, c'est plus lisible
 *  En cas de superposition d'items, c'est plus lisible
@@ -1163,7 +1191,9 @@ void EDA_LibComponentStruct::SortDrawItems()
}
}




int SortItemsFct( const void* ref, const void* item )
int
SortItemsFct(const void* ref,
             const void* item)
{
{
#define Ref    ( *(LibEDA_BaseStruct**) (ref) )
#define Ref    ( *(LibEDA_BaseStruct**) (ref) )
#define Item   ( *(LibEDA_BaseStruct**) (item) )
#define Item   ( *(LibEDA_BaseStruct**) (item) )
@@ -1292,8 +1322,11 @@ int SortItemsFct( const void* ref, const void* item )




/*****************************************************************************/
/*****************************************************************************/
int AddFootprintFilterList( EDA_LibComponentStruct* LibEntryLibEntry, FILE* f,
int
                            char* Line, int* LineNum )
AddFootprintFilterList(EDA_LibComponentStruct* LibEntryLibEntry,
                       FILE* f,
                       char* Line,
                       int* LineNum)
/******************************************************************************/
/******************************************************************************/


/* read the FootprintFilter List stating with:
/* read the FootprintFilter List stating with:
−1.91 KiB (128 KiB)

File changed.

No diff preview for this file type.

+750 −551

File changed.

Preview size limit exceeded, changes collapsed.