///////////////////////////////////////////////////////////////////////////// // Name: dialog_eeschema_config.h // Purpose: // Author: jean-pierre Charras // Modified by: // Created: 17/02/2006 21:14:46 // RCS-ID: // Copyright: License GNU // Licence: ///////////////////////////////////////////////////////////////////////////// // Generated by DialogBlocks (unregistered), 17/02/2006 21:14:46 #ifndef _DIALOG_EESCHEMA_CONFIG_H_ #define _DIALOG_EESCHEMA_CONFIG_H_ #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "dialog_eeschema_config.h" #endif /*! * Includes */ ////@begin includes ////@end includes /*! * Forward declarations */ ////@begin forward declarations ////@end forward declarations /*! * Control identifiers */ ////@begin control identifiers #define ID_DIALOG 10000 #define SAVE_CFG 10001 #define FORMAT_NETLIST 10006 #define REMOVE_LIB 10009 #define ADD_LIB 10010 #define INSERT_LIB 10011 #define ID_LISTBOX 10012 #define ID_TEXTCTRL 10007 #define ID_LIB_PATH_SEL 10008 #define SYMBOL_KICONFIGEESCHEMAFRAME_STYLE wxCAPTION|wxSYSTEM_MENU|wxCLOSE_BOX|MAYBE_RESIZE_BORDER #define SYMBOL_KICONFIGEESCHEMAFRAME_TITLE _("Dialog") #define SYMBOL_KICONFIGEESCHEMAFRAME_IDNAME ID_DIALOG #define SYMBOL_KICONFIGEESCHEMAFRAME_SIZE wxSize(400, 300) #define SYMBOL_KICONFIGEESCHEMAFRAME_POSITION wxDefaultPosition ////@end control identifiers /*! * Compatibility */ #ifndef wxCLOSE_BOX #define wxCLOSE_BOX 0x1000 #endif /*! * KiConfigEeschemaFrame class declaration */ class KiConfigEeschemaFrame: public wxDialog { DECLARE_DYNAMIC_CLASS( KiConfigEeschemaFrame ) DECLARE_EVENT_TABLE() public: /// Constructors KiConfigEeschemaFrame( ); KiConfigEeschemaFrame( WinEDA_SchematicFrame* parent, wxWindowID id = SYMBOL_KICONFIGEESCHEMAFRAME_IDNAME, const wxString& caption = SYMBOL_KICONFIGEESCHEMAFRAME_TITLE, const wxPoint& pos = SYMBOL_KICONFIGEESCHEMAFRAME_POSITION, const wxSize& size = SYMBOL_KICONFIGEESCHEMAFRAME_SIZE, long style = SYMBOL_KICONFIGEESCHEMAFRAME_STYLE ); /// Creation bool Create( wxWindow* parent, wxWindowID id = SYMBOL_KICONFIGEESCHEMAFRAME_IDNAME, const wxString& caption = SYMBOL_KICONFIGEESCHEMAFRAME_TITLE, const wxPoint& pos = SYMBOL_KICONFIGEESCHEMAFRAME_POSITION, const wxSize& size = SYMBOL_KICONFIGEESCHEMAFRAME_SIZE, long style = SYMBOL_KICONFIGEESCHEMAFRAME_STYLE ); /// Creates the controls and sizers void CreateControls(); ////@begin KiConfigEeschemaFrame event handler declarations /// wxEVT_CLOSE_WINDOW event handler for ID_DIALOG void OnCloseWindow( wxCloseEvent& event ); /// wxEVT_COMMAND_BUTTON_CLICKED event handler for SAVE_CFG void OnSaveCfgClick( wxCommandEvent& event ); /// wxEVT_COMMAND_LISTBOX_SELECTED event handler for FORMAT_NETLIST void OnFormatNetlistSelected( wxCommandEvent& event ); /// wxEVT_COMMAND_BUTTON_CLICKED event handler for REMOVE_LIB void OnRemoveLibClick( wxCommandEvent& event ); /// wxEVT_COMMAND_BUTTON_CLICKED event handler for ADD_LIB void OnAddLibClick( wxCommandEvent& event ); /// wxEVT_COMMAND_BUTTON_CLICKED event handler for INSERT_LIB void OnInsertLibClick( wxCommandEvent& event ); /// wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_LIB_PATH_SEL void OnLibPathSelClick( wxCommandEvent& event ); ////@end KiConfigEeschemaFrame event handler declarations ////@begin KiConfigEeschemaFrame member function declarations /// Retrieves bitmap resources wxBitmap GetBitmapResource( const wxString& name ); /// Retrieves icon resources wxIcon GetIconResource( const wxString& name ); ////@end KiConfigEeschemaFrame member function declarations /// Should we show tooltips? static bool ShowToolTips(); void SetFormatsNetListes(); void LibDelFct(wxCommandEvent& event); void AddOrInsertLibrary(wxCommandEvent& event); void ChangeSetup(); ////@begin KiConfigEeschemaFrame member variables wxListBox* m_NetFormatBox; wxStaticBoxSizer* m_FileExtList; wxListBox* m_ListLibr; wxTextCtrl* m_LibDirCtrl; ////@end KiConfigEeschemaFrame member variables WinEDA_SchematicFrame * m_Parent; bool m_LibListChanged; }; #endif // _DIALOG_EESCHEMA_CONFIG_H_