diff --git a/common/base_screen.cpp b/common/base_screen.cpp index 33b26cccdf..65c846287b 100644 --- a/common/base_screen.cpp +++ b/common/base_screen.cpp @@ -112,8 +112,7 @@ wxPoint BASE_SCREEN::CursorRealPosition( const wxPoint& ScreenPos ) { wxPoint curpos; - D(printf("curpos=%d,%d GetZoom=%d, mDrawOrg=%d,%d\n", - curpos.x, curpos.y, GetZoom(), m_DrawOrg.x, m_DrawOrg.y );) +// D(printf("curpos=%d,%d GetZoom=%d, mDrawOrg=%d,%d\n", curpos.x, curpos.y, GetZoom(), m_DrawOrg.x, m_DrawOrg.y );) curpos.x = ScreenPos.x * GetZoom(); curpos.y = ScreenPos.y * GetZoom(); diff --git a/common/confirm.cpp b/common/confirm.cpp index 2374199b8f..696b200548 100644 --- a/common/confirm.cpp +++ b/common/confirm.cpp @@ -1,8 +1,8 @@ - /*************************/ - /* Menu " CONFIRMATION " */ - /* fonction Get_Message */ - /* test demande ESC */ - /*************************/ +/*************************/ +/* Menu " CONFIRMATION " */ +/* fonction Get_Message */ +/* test demande ESC */ +/*************************/ // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -21,125 +21,136 @@ #include "common.h" enum id_dialog { - ID_TIMOUT = 1500 + ID_TIMOUT = 1500 }; /* Classe d'affichage de messages, identique a wxMessageDialog, - mais pouvant etre effacee au bout d'un time out donne -*/ -class WinEDA_MessageDialog: public wxMessageDialog + * mais pouvant etre effacee au bout d'un time out donne + */ +class WinEDA_MessageDialog : public wxMessageDialog { public: - int m_LifeTime; + int m_LifeTime; private: - wxTimer m_Timer; + wxTimer m_Timer; public: - WinEDA_MessageDialog(wxWindow * parent, const wxString & msg, - const wxString & title, int style, int lifetime); - ~WinEDA_MessageDialog(){}; + WinEDA_MessageDialog( wxWindow * parent, const wxString &msg, + const wxString &title, int style, int lifetime ); + ~WinEDA_MessageDialog() { }; - void OnTimeOut(wxTimerEvent& event); - DECLARE_EVENT_TABLE() + void OnTimeOut( wxTimerEvent& event ); + + DECLARE_EVENT_TABLE() }; -BEGIN_EVENT_TABLE(WinEDA_MessageDialog, wxMessageDialog) - EVT_TIMER(ID_TIMOUT, WinEDA_MessageDialog::OnTimeOut) +BEGIN_EVENT_TABLE( WinEDA_MessageDialog, wxMessageDialog ) +EVT_TIMER( ID_TIMOUT, WinEDA_MessageDialog::OnTimeOut ) END_EVENT_TABLE() /**********************************************************************************/ -WinEDA_MessageDialog::WinEDA_MessageDialog(wxWindow * parent, const wxString & msg, - const wxString & title, int style, int lifetime) : - wxMessageDialog(parent, msg, title, style) +WinEDA_MessageDialog::WinEDA_MessageDialog( wxWindow* parent, const wxString& msg, + const wxString& title, int style, int lifetime ) : + wxMessageDialog( parent, msg, title, style ) /**********************************************************************************/ { - m_LifeTime = lifetime; - m_Timer.SetOwner(this,ID_TIMOUT); - if ( m_LifeTime > 0 ) - m_Timer.Start(100*m_LifeTime, wxTIMER_ONE_SHOT); // m_LifeTime = duree en 0.1 secondes + m_LifeTime = lifetime; + m_Timer.SetOwner( this, ID_TIMOUT ); + if( m_LifeTime > 0 ) + m_Timer.Start( 100 * m_LifeTime, wxTIMER_ONE_SHOT ); // m_LifeTime = duree en 0.1 secondes } + /********************************************************/ -void WinEDA_MessageDialog::OnTimeOut(wxTimerEvent& event) +void WinEDA_MessageDialog::OnTimeOut( wxTimerEvent& event ) /********************************************************/ { - // TODO : EndModal() request + // TODO : EndModal() request } + /*****************************************************************************/ -void DisplayError(wxWindow * parent, const wxString & text, int displaytime ) +void DisplayError( wxWindow* parent, const wxString& text, int displaytime ) /*****************************************************************************/ + /* Affiche un Message d'Erreur ou d'avertissement. - si warn > 0 le dialogue disparait apres warn 0.1 secondes -*/ + * si warn > 0 le dialogue disparait apres warn 0.1 secondes + */ { -wxMessageDialog * dialog; + wxMessageDialog* dialog; - if ( displaytime > 0 ) - dialog = new WinEDA_MessageDialog(parent, text, _("Warning"), - wxOK | wxICON_INFORMATION | wxSTAY_ON_TOP, displaytime); - else - dialog = new WinEDA_MessageDialog(parent, text, _("Error"), - wxOK | wxICON_EXCLAMATION | wxSTAY_ON_TOP, 0); + if( displaytime > 0 ) + dialog = new WinEDA_MessageDialog( parent, text, _( + "Warning" ), + wxOK | wxICON_INFORMATION | wxSTAY_ON_TOP, + displaytime ); + else + dialog = new WinEDA_MessageDialog( parent, text, _( "Error" ), + wxOK | wxICON_EXCLAMATION | wxSTAY_ON_TOP, 0 ); - dialog->ShowModal(); dialog->Destroy(); + dialog->ShowModal(); + dialog->Destroy(); } + /**************************************************************************/ -void DisplayInfo(wxWindow * parent, const wxString & text, int displaytime) +void DisplayInfo( wxWindow* parent, const wxString& text, int displaytime ) /**************************************************************************/ + /* Affiche un Message d'information. -*/ + */ { -wxMessageDialog * dialog; + wxMessageDialog* dialog; - dialog = new WinEDA_MessageDialog(parent, text, _("Infos:"), - wxOK | wxICON_INFORMATION | wxSTAY_ON_TOP, displaytime); + dialog = new WinEDA_MessageDialog( parent, text, _( "Infos:" ), + wxOK | wxICON_INFORMATION | wxSTAY_ON_TOP, displaytime ); - dialog->ShowModal(); dialog->Destroy(); + dialog->ShowModal(); dialog->Destroy(); } /**************************************************/ -bool IsOK(wxWindow * parent, const wxString & text) +bool IsOK( wxWindow* parent, const wxString& text ) /**************************************************/ { -int ii; - ii = wxMessageBox(text, _("Confirmation"), wxYES_NO|wxCENTRE|wxICON_HAND, parent); - if (ii == wxYES) return TRUE; - return FALSE; + int ii; + + ii = wxMessageBox( text, _( "Confirmation" ), wxYES_NO | wxCENTRE | wxICON_HAND, parent ); + if( ii == wxYES ) + return TRUE; + return FALSE; } + /***********************************************************************/ -int Get_Message(const wxString & title, wxString & buffer, wxWindow * frame) +int Get_Message( const wxString& title, wxString& buffer, wxWindow* frame ) /***********************************************************************/ + /* Get a text from user - titre = titre a afficher - buffer : text enter by user - leading and trailing spaces are removed - if buffer != "" buffer is displayed - return: - 0 if OK - != 0 if ESCAPE -*/ + * titre = titre a afficher + * buffer : text enter by user + * leading and trailing spaces are removed + * if buffer != "" buffer is displayed + * return: + * 0 if OK + * != 0 if ESCAPE + */ { -wxString message, default_text; + wxString message, default_text; - if ( buffer ) default_text = buffer; + if( buffer ) + default_text = buffer; - message = wxGetTextFromUser(title, _("Text:"), - default_text, frame); - if ( !message.IsEmpty() ) - { - message.Trim(FALSE); // Remove blanks at beginning - message.Trim(TRUE); // Remove blanks at end - buffer = message; - return 0; - } + message = wxGetTextFromUser( title, _( "Text:" ), + default_text, frame ); + if( !message.IsEmpty() ) + { + message.Trim( FALSE ); // Remove blanks at beginning + message.Trim( TRUE ); // Remove blanks at end + buffer = message; + return 0; + } - return(1); + return 1; } - - - diff --git a/eeschema/eelibs_read_libraryfiles.cpp b/eeschema/eelibs_read_libraryfiles.cpp index ac2b3d38bd..1e887ff0d5 100644 --- a/eeschema/eelibs_read_libraryfiles.cpp +++ b/eeschema/eelibs_read_libraryfiles.cpp @@ -25,6 +25,11 @@ static int AddFootprintFilterList( EDA_LibComponentStruct* LibE FILE* f, char* Line, int* LineNum ); + +static wxString currentLibraryName; // If this code was written in C++ then this would not be needed. + + + /*************************************************************************************/ LibraryStruct* LoadLibraryName( WinEDA_DrawFrame* frame, const wxString& FullLibName, const wxString& LibName ) @@ -61,6 +66,8 @@ LibraryStruct* LoadLibraryName( WinEDA_DrawFrame* frame, return NULL; } + currentLibraryName = FullLibName; + NewLib = new LibraryStruct( LIBRARY_TYPE_EESCHEMA, LibName, FullLibName ); Entries = LoadLibraryAux( frame, NewLib, f, &NumOfParts ); @@ -473,7 +480,8 @@ EDA_LibComponentStruct* Read_Component_Definition( WinEDA_DrawFrame* frame, char /* End line or block analysis: test for an error */ if( !Res ) { /* Something went wrong there. */ - Msg.Printf( wxT( " Error Line %d, Library not loaded" ), *LineNum ); + Msg.Printf( wxT( " Error at line %d of library \n\"%s\",\nlibrary not loaded" ), + *LineNum, currentLibraryName.GetData() ); DisplayError( frame, Msg ); delete LibEntry; return NULL; diff --git a/makefile.gtk b/makefile.gtk index a163c79909..cbec5064c7 100644 --- a/makefile.gtk +++ b/makefile.gtk @@ -1,6 +1,6 @@ MAKEGTK = $(MAKE) -f makefile.gtk -KICAD_SUBDIRS = common 3d-viewer pcbnew #eeschema eeschema/plugins cvpcb kicad gerbview +KICAD_SUBDIRS = common 3d-viewer pcbnew eeschema eeschema/plugins cvpcb kicad gerbview KICAD_SUBDIRS_BIN = eeschema eeschema/plugins pcbnew cvpcb kicad gerbview KICAD_SUBDIRS_RES = internat modules template library KICAD_SUBDIRS_HELP = help diff --git a/pcbnew/dialog_drc.cpp b/pcbnew/dialog_drc.cpp index 3b38324e55..6da699d06f 100644 --- a/pcbnew/dialog_drc.cpp +++ b/pcbnew/dialog_drc.cpp @@ -637,7 +637,11 @@ void DrcDialog::OnStartdrcClick( wxCommandEvent& event ) // run all the tests, with no UI at this time. m_tester->RunTests(); - m_Notebook->ChangeSelection(0); // display the 1at tab "... Markers ..." +#if wxCHECK_VERSION( 2, 8, 0 ) + m_Notebook->ChangeSelection(0); // display the 1at tab "...Markers ..." +#else + m_Notebook->SetSelection(0); // display the 1at tab "... Markers..." +#endif // Generate the report @@ -712,7 +716,11 @@ void DrcDialog::OnListUnconnectedClick( wxCommandEvent& event ) m_tester->ListUnconnectedPads(); +#if wxCHECK_VERSION( 2, 8, 0 ) m_Notebook->ChangeSelection(1); // display the 2nd tab "Unconnected..." +#else + m_Notebook->SetSelection(1); // display the 2nd tab "Unconnected..." +#endif // Generate the report if( !reportName.IsEmpty() ) diff --git a/share/zoom.cpp b/share/zoom.cpp index b052a176ce..e672cca4f9 100644 --- a/share/zoom.cpp +++ b/share/zoom.cpp @@ -52,16 +52,10 @@ void WinEDA_DrawFrame::Recadre_Trace( bool ToMouse ) ReDrawPanel(); - D(printf("~ReDrawPanel x=%d, y=%d\n", - m_CurrentScreen->m_Curseur.x, m_CurrentScreen->m_Curseur.y );) - /* Move the mouse cursor to the on grid graphic cursor position */ if( ToMouse == TRUE ) { DrawPanel->MouseToCursorSchema(); - - D(printf("~MouseToCursorSchema x=%d, y=%d\n", - m_CurrentScreen->m_Curseur.x, m_CurrentScreen->m_Curseur.y );) } }