2007-06-05 12:10:51 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dialog_build_BOM.h
|
|
|
|
// Copyright: GNU license
|
2008-03-20 01:50:21 +00:00
|
|
|
// Licence:
|
2007-06-05 12:10:51 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _DIALOG_BUILD_BOM_H_
|
|
|
|
#define _DIALOG_BUILD_BOM_H_
|
|
|
|
|
2009-03-12 15:24:52 +00:00
|
|
|
#include "dialog_build_BOM_base.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-03-12 15:24:52 +00:00
|
|
|
class DIALOG_BUILD_BOM : public DIALOG_BUILD_BOM_BASE
|
2008-03-20 01:50:21 +00:00
|
|
|
{
|
2009-03-12 15:24:52 +00:00
|
|
|
private:
|
|
|
|
WinEDA_DrawFrame * m_Parent;
|
|
|
|
wxConfig* m_Config;
|
|
|
|
wxString m_ListFileName;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-03-12 15:24:52 +00:00
|
|
|
private:
|
2007-07-02 12:48:10 +00:00
|
|
|
void OnRadioboxSelectFormatSelected( wxCommandEvent& event );
|
2007-06-05 12:10:51 +00:00
|
|
|
void OnOkClick( wxCommandEvent& event );
|
2007-10-13 05:56:37 +00:00
|
|
|
void OnCancelClick( wxCommandEvent& event );
|
|
|
|
|
2009-03-12 15:24:52 +00:00
|
|
|
void SavePreferences();
|
|
|
|
void Init( );
|
2008-05-15 13:29:59 +00:00
|
|
|
void Create_BOM_Lists(bool aTypeFileIsExport,
|
|
|
|
bool aIncludeSubComponents,
|
|
|
|
char aExportSeparatorSymbol,
|
|
|
|
bool aRunBrowser);
|
|
|
|
void GenereListeOfItems(const wxString & FullFileName, bool aIncludeSubComponents );
|
|
|
|
void CreateExportList(const wxString & FullFileName, bool aIncludeSubComponents);
|
2008-12-10 18:00:15 +00:00
|
|
|
int PrintComponentsListByRef( FILE * f, std::vector <OBJ_CMP_TO_LIST>& aList,
|
2008-05-15 13:29:59 +00:00
|
|
|
bool CompactForm, bool aIncludeSubComponents );
|
2008-12-10 18:00:15 +00:00
|
|
|
int PrintComponentsListByVal( FILE *f, std::vector <OBJ_CMP_TO_LIST>& aList,
|
2008-05-15 13:29:59 +00:00
|
|
|
bool aIncludeSubComponents);
|
2008-03-20 01:50:21 +00:00
|
|
|
void PrintFieldData(FILE * f, SCH_COMPONENT * DrawLibItem, bool CompactForm = FALSE);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2009-03-12 15:24:52 +00:00
|
|
|
public:
|
|
|
|
DIALOG_BUILD_BOM( WinEDA_DrawFrame* parent );
|
|
|
|
~DIALOG_BUILD_BOM() {};
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
2009-03-12 15:24:52 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
#endif
|
|
|
|
// _DIALOG_BUILD_BOM_H_
|