You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
645 B

  1. /*********/
  2. /* CVPCB */
  3. /*********/
  4. #ifndef __CVPCB_H__
  5. #define __CVPCB_H__
  6. // config for footprints doc file access
  7. #define DEFAULT_FOOTPRINTS_LIST_FILENAME wxT( "footprints_doc/footprints.pdf" )
  8. // Define print format to display a schematic component line
  9. #define CMP_FORMAT wxT( "%3d %8s - %16s : %s" )
  10. #define FILTERFOOTPRINTKEY "FilterFootprint"
  11. #define LISTB_STYLE ( wxSUNKEN_BORDER | wxLC_NO_HEADER | wxLC_REPORT | wxLC_VIRTUAL | \
  12. wxLC_SINGLE_SEL | wxVSCROLL | wxHSCROLL )
  13. extern const wxString FootprintAliasFileExtension;
  14. extern const wxString FootprintAliasFileWildcard;
  15. #endif /* __CVPCB_H__ */