///////////////////////////////////////////////////////////////////////////// // Name: dialog_track_options.h // Purpose: // Author: jean-pierre Charras // Modified by: // Created: 24/02/2006 20:58:54 // RCS-ID: // Copyright: License GNU // Licence: ///////////////////////////////////////////////////////////////////////////// // Generated by DialogBlocks (unregistered), 24/02/2006 20:58:54 #ifndef _DIALOG_TRACK_OPTIONS_H_ #define _DIALOG_TRACK_OPTIONS_H_ #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "dialog_track_options.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 ID_TEXTCTRL 10001 #define ID_TEXTCTRL1 10002 #define ID_TEXTCTRL2 10003 #define ID_VIA_TYPE_SELECTION 10004 #define ID_TEXTCTRL3 10005 #define ID_TEXTCTRL4 10006 #define ID_TEXTCTRL5 10007 #define SYMBOL_WINEDA_PCBTRACKSDIALOG_STYLE wxCAPTION|wxSYSTEM_MENU|wxCLOSE_BOX|MAYBE_RESIZE_BORDER #define SYMBOL_WINEDA_PCBTRACKSDIALOG_TITLE _("Tracks and Vias Sizes") #define SYMBOL_WINEDA_PCBTRACKSDIALOG_IDNAME ID_DIALOG #define SYMBOL_WINEDA_PCBTRACKSDIALOG_SIZE wxSize(400, 300) #define SYMBOL_WINEDA_PCBTRACKSDIALOG_POSITION wxDefaultPosition ////@end control identifiers /*! * Compatibility */ #ifndef wxCLOSE_BOX #define wxCLOSE_BOX 0x1000 #endif /*! * WinEDA_PcbTracksDialog class declaration */ class WinEDA_PcbTracksDialog: public wxDialog { DECLARE_DYNAMIC_CLASS( WinEDA_PcbTracksDialog ) DECLARE_EVENT_TABLE() public: /// Constructors WinEDA_PcbTracksDialog( ); WinEDA_PcbTracksDialog( WinEDA_PcbFrame* parent, wxWindowID id = SYMBOL_WINEDA_PCBTRACKSDIALOG_IDNAME, const wxString& caption = SYMBOL_WINEDA_PCBTRACKSDIALOG_TITLE, const wxPoint& pos = SYMBOL_WINEDA_PCBTRACKSDIALOG_POSITION, const wxSize& size = SYMBOL_WINEDA_PCBTRACKSDIALOG_SIZE, long style = SYMBOL_WINEDA_PCBTRACKSDIALOG_STYLE ); /// Creation bool Create( wxWindow* parent, wxWindowID id = SYMBOL_WINEDA_PCBTRACKSDIALOG_IDNAME, const wxString& caption = SYMBOL_WINEDA_PCBTRACKSDIALOG_TITLE, const wxPoint& pos = SYMBOL_WINEDA_PCBTRACKSDIALOG_POSITION, const wxSize& size = SYMBOL_WINEDA_PCBTRACKSDIALOG_SIZE, long style = SYMBOL_WINEDA_PCBTRACKSDIALOG_STYLE ); /// Creates the controls and sizers void CreateControls(); ////@begin WinEDA_PcbTracksDialog event handler declarations /// wxEVT_INIT_DIALOG event handler for ID_DIALOG void OnInitDialog( wxInitDialogEvent& event ); /// wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_OK void OnOkClick( wxCommandEvent& event ); /// wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL void OnCancelClick( wxCommandEvent& event ); ////@end WinEDA_PcbTracksDialog event handler declarations ////@begin WinEDA_PcbTracksDialog member function declarations /// Retrieves bitmap resources wxBitmap GetBitmapResource( const wxString& name ); /// Retrieves icon resources wxIcon GetIconResource( const wxString& name ); ////@end WinEDA_PcbTracksDialog member function declarations /// Should we show tooltips? static bool ShowToolTips(); void AcceptPcbOptions(wxCommandEvent& event); void SetDisplayValue(); ////@begin WinEDA_PcbTracksDialog member variables wxStaticText* m_ViaSizeTitle; wxTextCtrl* m_OptViaSize; wxStaticText* m_ViaDefaultDrillValueTitle; wxTextCtrl* m_OptViaDrill; wxStaticText* m_ViaAltDrillValueTitle; wxTextCtrl* m_OptCustomViaDrill; wxRadioBox* m_OptViaType; wxStaticText* m_TrackWidthTitle; wxTextCtrl* m_OptTrackWidth; wxStaticText* m_TrackClearanceTitle; wxTextCtrl* m_OptTrackClearance; wxStaticText* m_MaskClearanceTitle; wxTextCtrl* m_OptMaskMargin; ////@end WinEDA_PcbTracksDialog member variables WinEDA_PcbFrame * m_Parent; }; #endif // _DIALOG_TRACK_OPTIONS_H_