kicad/eeschema/class_library.h

73 lines
2.4 KiB
C
Raw Normal View History

/**********************************/
/* Headers fo library definition */
/**********************************/
2008-09-13 18:59:57 +00:00
#ifndef CLASS_LIBRARY_H
#define CLASS_LIBRARY_H
#include "class_libentry.h"
2008-09-13 18:59:57 +00:00
WX_DECLARE_LIST( EDA_LibComponentStruct, LIB_CMP_LIST );
2008-09-13 18:59:57 +00:00
/******************************/
/* Classe to handle a library */
/******************************/
class LibraryStruct
{
public:
int m_Type; /* type indicator */
wxString m_Name; /* Library file name (without path). */
wxString m_FullFileName; /* Full File Name (with path) of library. */
wxString m_Header; /* first line of loaded library. */
int m_NumOfParts; /* Number of parts this library has. */
PriorQue* m_Entries; /* Parts themselves are saved here. */
LibraryStruct* m_Pnext; /* Point on next lib in chain. */
int m_Modified; /* flag indicateur d'edition */
int m_Size; // Size in bytes (for statistics)
unsigned long m_TimeStamp; // Signature temporelle
int m_Flags; // variable used in some functions
bool m_IsLibCache; /* False for the "standard" libraries,
* True for the library cache */
2008-09-13 18:59:57 +00:00
public:
LibraryStruct( int type, const wxString& name, const wxString& fullname );
~LibraryStruct();
2008-09-18 17:10:54 +00:00
/**
* Function SaveLibrary
* writes the data structures for this object out to 2 file
* the library in "*.lib" format.
* the doc file in "*.dcm" format.
* creates a backup file for each file (.bak and .bck)
* @param aFullFileName The full lib filename.
* @return bool - true if success writing else false.
*/
bool SaveLibrary( const wxString& aFullFileName );
2008-09-13 18:59:57 +00:00
bool ReadHeader( FILE* file, int* LineNum );
2008-09-18 17:10:54 +00:00
2008-09-18 17:10:54 +00:00
private:
bool WriteHeader( FILE* file );
/* NOTE: For future expansion, do not delete. */
public:
LibraryStruct( const wxChar* fileName = NULL );
bool Save( const wxString& saveAsFile );
wxString GetName();
protected:
wxFileName m_fileName; /* Library file name. */
wxDateTime m_DateTime; /* Library save time and date. */
wxString m_Version; /* Library save version. */
LIB_CMP_LIST m_componentList; /* List of components in this library. */
friend class EDA_LibComponentStruct;
2008-09-13 18:59:57 +00:00
};
#endif // CLASS_LIBRARY_H