From: Markus R. <rol...@us...> - 2007-06-21 18:22:55
|
Update of /cvsroot/simspark/simspark/contrib/rsgedit In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv1856 Modified Files: Tag: RSGEDIT_SCINTILLA mainframe.cpp sparkedit.cpp Log Message: - add tooltips to the tabs Index: sparkedit.cpp =================================================================== RCS file: /cvsroot/simspark/simspark/contrib/rsgedit/Attic/sparkedit.cpp,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** sparkedit.cpp 21 Jun 2007 17:56:39 -0000 1.1.2.1 --- sparkedit.cpp 21 Jun 2007 18:22:39 -0000 1.1.2.2 *************** *** 115,118 **** --- 115,119 ---- } + edit->SetToolTip(entry.fname); wxString ext(fn.GetExt().Lower()); Index: mainframe.cpp =================================================================== RCS file: /cvsroot/simspark/simspark/contrib/rsgedit/mainframe.cpp,v retrieving revision 1.21.2.1 retrieving revision 1.21.2.2 diff -C2 -d -r1.21.2.1 -r1.21.2.2 *** mainframe.cpp 21 Jun 2007 17:55:43 -0000 1.21.2.1 --- mainframe.cpp 21 Jun 2007 18:22:39 -0000 1.21.2.2 *************** *** 177,180 **** --- 177,181 ---- mCtrNotebook->RemovePage(0); mCanvas = new SparkGLCanvas(mCtrNotebook, wxID_ANY); + mCanvas->SetToolTip("simulation window"); mCtrNotebook->AddPage(mCanvas, wxT("Canvas")); |