SVN Commit by andreas: r4479 - trunk/pgadmin3/src/frm
От | svn@pgadmin.org |
---|---|
Тема | SVN Commit by andreas: r4479 - trunk/pgadmin3/src/frm |
Дата | |
Msg-id | 200510030049.j930nqba030666@developer.pgadmin.org обсуждение исходный текст |
Список | pgadmin-hackers |
Author: andreas Date: 2005-10-03 01:49:52 +0100 (Mon, 03 Oct 2005) New Revision: 4479 Modified: trunk/pgadmin3/src/frm/frmHint.cpp Log: improved hint suppress handling Modified: trunk/pgadmin3/src/frm/frmHint.cpp =================================================================== --- trunk/pgadmin3/src/frm/frmHint.cpp 2005-10-03 00:19:51 UTC (rev 4478) +++ trunk/pgadmin3/src/frm/frmHint.cpp 2005-10-03 00:49:52 UTC (rev 4479) @@ -183,18 +183,27 @@ void frmHint::SetHint(int hintno, const wxString &info) { - wxArrayInt hintnos; hintnos.Add(hintno); - SetHint(hintnos, info); + SetHint(info); }; +void frmHint::SetHint(const wxArrayInt &_hintnos, const wxString &info) +{ + hintnos = _hintnos; + SetHint(info); +} -void frmHint::SetHint(const wxArrayInt &hintnos, const wxString &info) + +void frmHint::SetHint(const wxString &info) { currentHint = hintnos.Item(0); + + bool canSuppress=false; if (hintnos.GetCount() == 1) { + if (hintArray[currentHint].flags & HINT_CANSUPPRESS) + canSuppress=true; SetTitle(_("pgAdmin III Guru Hint") + wxString(wxT(" - ")) + wxGetTranslation(hintArray[currentHint].hintCaption)); wxString page=GetPage(hintArray[currentHint].hintPage); @@ -229,6 +238,8 @@ for (i=0 ; i < hintnos.GetCount() ; i++) { int hintno=hintnos.Item(i); + if (hintArray[hintno].flags & HINT_CANSUPPRESS) + canSuppress=true; wxString page=GetPage(hintArray[hintno].hintPage); int a=page.Find(wxT("<body>")); int o=page.Find(wxT("</body>")); @@ -261,14 +272,14 @@ } pages.Replace(wxT("<INFO>"), info); + pages.Replace(wxT("<INFO/>"), info); htmlHint->SetPage(header + wxT("</p>") + pages + wxT("</body></html>\n")); } chkSuppress->SetValue(false); + chkSuppress->Enable(!force && canSuppress); - if (force || !(hintArray[currentHint].flags & HINT_CANSUPPRESS)) - chkSuppress->Disable(); if (force || !(hintArray[currentHint].flags & HINT_CANABORT)) btnCancel->Disable(); if (!(hintArray[currentHint].flags & HINT_CANFIX)) @@ -292,7 +303,15 @@ frmHint::~frmHint() { if (!force && chkSuppress->GetValue()) - settings->Write(wxString(wxT("Hints/")) + hintArray[currentHint].hintPage, wxT("Suppress")); + { + size_t i; + for (i=0 ; i < hintnos.GetCount() ; i++) + { + int hintno=hintnos.Item(i); + if (hintArray[hintno].flags & HINT_CANSUPPRESS) + settings->Write(wxString(wxT("Hints/")) + hintArray[hintno].hintPage, wxT("Suppress")); + } + } }
В списке pgadmin-hackers по дате отправления: