1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/*
Copyright (C) 2009-2013 wxLauncher Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <wx/intl.h> // for _()
#include <wx/log.h>
#include "NewsSource.h"
using std::vector;
vector<NewsSource> NewsSource::newsSources;
NewsSource::NewsSource(const NewsSourceId id, const wxString& name,
const wxString& newsUrl, const wxString& label)
: id(id), name(name), newsUrl(newsUrl), label(label) {
wxASSERT(!name.IsEmpty());
wxASSERT(!newsUrl.IsEmpty());
wxASSERT(!label.IsEmpty());
}
const NewsSource* NewsSource::FindSource(const NewsSourceId id) {
wxCHECK_MSG(id != NEWS_SOURCE_ID_INVALID, NULL,
_T("FindSource given NEWS_SOURCE_ID_INVALID!"));
if (newsSources.empty()) {
InitializeSources();
}
for (vector<NewsSource>::const_iterator it = newsSources.begin(),
end = newsSources.end(); it != end; ++it) {
if (it->GetId() == id) {
return &(*it);
}
}
wxLogWarning(_T("FindSource(): Unknown news source ID %d, returning NULL"), id);
return NULL;
}
const NewsSource* NewsSource::FindSource(const wxString& name) {
wxCHECK_MSG(!name.IsEmpty(), NULL,
_T("FindSource() given empty name!"));
if (newsSources.empty()) {
InitializeSources();
}
for (vector<NewsSource>::const_iterator it = newsSources.begin(),
end = newsSources.end(); it != end; ++it) {
if (!it->GetName().CmpNoCase(name)) {
return &(*it);
}
}
wxLogWarning(_T("FindSource(): Unknown name %s, returning NULL"), name.c_str());
return NULL;
}
void NewsSource::InitializeSources() {
wxASSERT_MSG(newsSources.empty(),
_T("news sources have already been initialized"));
// NOTE: According to http://docs.wxwidgets.org/stable/wx_wxcontrol.html#wxcontrolsetlabel ,
// individual '&'s will be interpreted to indicate keyboard shortcuts
// so if anyone wants a & to appear in the news box label, write it as &&
newsSources.push_back(
NewsSource(
NEWS_SOURCE_ID_HLP,
_T("hlp"),
_T("http://www.audiozone.ro/hl/"),
_("Latest highlights from Hard Light Productions")));
newsSources.push_back(
NewsSource(
NEWS_SOURCE_ID_DIASPORA,
_T("diaspora"),
_T("http://diaspora.hard-light.net/hl.htm"),
_("Latest Diaspora news")));
}
|