mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 02:33:15 +02:00
Pcbnew: in netlist dialog: The user now can choose between the netlist and the .cmp file to import footprints names. Therfore no need to delete the .cmp file when exists to use only the netlist. This is useful for users who use CvPcb only once to fill footprints fields in schematic, and after edit/modify the footprints fields in schematic outside CvPcb.
35 lines
931 B
C
35 lines
931 B
C
/**
|
|
* @file cvpcb_id.h
|
|
*/
|
|
/*
|
|
* Command IDs for CvPcb.
|
|
*
|
|
* Please add IDs that are unique to the component library viewer here and
|
|
* not in the global id.h file. This will prevent the entire project from
|
|
* being rebuilt when adding new commands to the component library viewer.
|
|
*/
|
|
|
|
// Generic IDs:
|
|
#include <id.h>
|
|
|
|
// specific IDs
|
|
enum id_cvpcb_frm
|
|
{
|
|
ID_CVPCB_QUIT = ID_END_LIST,
|
|
ID_CVPCB_READ_INPUT_NETLIST,
|
|
ID_CVPCB_SAVEQUITCVPCB,
|
|
ID_CVPCB_CREATE_CONFIGWINDOW,
|
|
ID_CVPCB_CREATE_SCREENCMP,
|
|
ID_CVPCB_GOTO_FIRSTNA,
|
|
ID_CVPCB_GOTO_PREVIOUSNA,
|
|
ID_CVPCB_DEL_ASSOCIATIONS,
|
|
ID_CVPCB_AUTO_ASSOCIE,
|
|
ID_CVPCB_COMPONENT_LIST,
|
|
ID_CVPCB_FOOTPRINT_LIST,
|
|
ID_CVPCB_SHOW3D_FRAME,
|
|
ID_CVPCB_FOOTPRINT_DISPLAY_FULL_LIST,
|
|
ID_CVPCB_FOOTPRINT_DISPLAY_FILTERED_LIST,
|
|
ID_CVPCB_FOOTPRINT_DISPLAY_PIN_FILTERED_LIST,
|
|
ID_CVPCB_CONFIG_KEEP_OPEN_ON_SAVE
|
|
};
|