2009-03-13 19:53:32 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2008 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-12-18 22:44:10 +00:00
|
|
|
#ifndef _VIEWNOTIFICATIONS_H_
|
|
|
|
#define _VIEWNOTIFICATIONS_H_
|
2009-03-13 19:53:32 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2009-12-18 22:44:10 +00:00
|
|
|
#pragma interface "ViewNotifications.cpp"
|
2009-03-13 19:53:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include "BOINCBaseView.h"
|
|
|
|
|
|
|
|
|
2009-12-18 22:44:10 +00:00
|
|
|
class CViewNotifications : public CBOINCBaseView {
|
|
|
|
DECLARE_DYNAMIC_CLASS( CViewNotifications )
|
2009-03-13 19:53:32 +00:00
|
|
|
|
|
|
|
public:
|
2009-12-18 22:44:10 +00:00
|
|
|
CViewNotifications();
|
|
|
|
CViewNotifications(wxNotebook* pNotebook);
|
2009-03-13 19:53:32 +00:00
|
|
|
|
2009-12-18 22:44:10 +00:00
|
|
|
~CViewNotifications();
|
2009-03-13 19:53:32 +00:00
|
|
|
|
|
|
|
virtual wxString& GetViewName();
|
|
|
|
virtual wxString& GetViewDisplayName();
|
|
|
|
virtual const char** GetViewIcon();
|
2010-01-04 21:10:05 +00:00
|
|
|
virtual const int GetViewRefreshRate();
|
2009-12-22 01:22:11 +00:00
|
|
|
virtual const int GetViewCurrentViewPage();
|
2009-03-13 19:53:32 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxHtmlWindow* m_pHtmlPane;
|
2010-01-09 01:42:46 +00:00
|
|
|
int m_iOldNoticeCount;
|
2009-03-13 19:53:32 +00:00
|
|
|
|
|
|
|
virtual bool OnSaveState( wxConfigBase* pConfig );
|
|
|
|
virtual bool OnRestoreState( wxConfigBase* pConfig );
|
|
|
|
|
|
|
|
virtual void OnListRender( wxTimerEvent& event );
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|