2006-06-23 08:20:08 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
|
|
|
//
|
|
|
|
// This 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 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This software 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.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
#ifndef _BOINCBASEFRAME_H_
|
|
|
|
#define _BOINCBASEFRAME_H_
|
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma interface "BOINCBaseFrame.cpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class CFrameEvent;
|
|
|
|
class CFrameAlertEvent;
|
2006-06-23 22:30:47 +00:00
|
|
|
class CBOINCDialUpManager;
|
2006-06-23 08:20:08 +00:00
|
|
|
|
|
|
|
enum FrameAlertEventType {
|
|
|
|
AlertNormal = 0,
|
|
|
|
AlertProcessResponse
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CBOINCBaseFrame : public wxFrame {
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS( CBOINCBaseFrame )
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
CBOINCBaseFrame();
|
2006-07-20 08:05:49 +00:00
|
|
|
CBOINCBaseFrame(
|
2006-06-23 08:20:08 +00:00
|
|
|
wxWindow *parent,
|
|
|
|
const wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const long style
|
|
|
|
);
|
|
|
|
|
|
|
|
~CBOINCBaseFrame();
|
|
|
|
|
2006-06-23 21:49:50 +00:00
|
|
|
void OnDocumentPoll( wxTimerEvent& event );
|
2006-06-23 22:30:47 +00:00
|
|
|
void OnAlertPoll( wxTimerEvent& event );
|
|
|
|
|
2006-06-23 21:49:50 +00:00
|
|
|
void OnInitialized( CFrameEvent& event );
|
|
|
|
|
|
|
|
virtual void OnAlert( CFrameAlertEvent& event );
|
|
|
|
virtual void OnClose( wxCloseEvent& event );
|
2006-06-23 08:20:08 +00:00
|
|
|
|
|
|
|
int GetReminderFrequency() { return m_iReminderFrequency; }
|
|
|
|
wxString GetDialupConnectionName() { return m_strNetworkDialupConnectionName; }
|
|
|
|
|
|
|
|
void FireInitialize();
|
|
|
|
void FireRefreshView();
|
|
|
|
void FireConnect();
|
2006-10-25 14:09:47 +00:00
|
|
|
void FireReloadSkin();
|
2006-06-23 08:20:08 +00:00
|
|
|
void ShowConnectionBadPasswordAlert();
|
|
|
|
void ShowConnectionFailedAlert();
|
|
|
|
void ShowNotCurrentlyConnectedAlert();
|
|
|
|
void UpdateStatusText( const wxChar* szStatus );
|
|
|
|
|
|
|
|
void ShowAlert(
|
|
|
|
const wxString title,
|
|
|
|
const wxString message,
|
|
|
|
const int style,
|
|
|
|
const bool notification_only = false,
|
|
|
|
const FrameAlertEventType alert_event_type = AlertNormal
|
|
|
|
);
|
|
|
|
|
|
|
|
void ExecuteBrowserLink( const wxString& strLink );
|
|
|
|
|
2006-10-30 04:07:41 +00:00
|
|
|
#ifdef __WXMAC__
|
|
|
|
bool Show( bool show = true );
|
2006-10-30 05:49:58 +00:00
|
|
|
int m_iWindowType; // BOINC_SIMPLEGUI or BOINC_ADVANCEDGUI
|
2006-10-30 04:07:41 +00:00
|
|
|
#endif
|
|
|
|
|
2006-06-23 08:20:08 +00:00
|
|
|
protected:
|
|
|
|
|
2006-06-23 22:30:47 +00:00
|
|
|
CBOINCDialUpManager* m_pDialupManager;
|
|
|
|
|
|
|
|
wxTimer* m_pDocumentPollTimer;
|
|
|
|
wxTimer* m_pAlertPollTimer;
|
2006-06-23 21:49:50 +00:00
|
|
|
|
2006-06-23 22:30:47 +00:00
|
|
|
int m_iSelectedLanguage;
|
|
|
|
int m_iReminderFrequency;
|
|
|
|
int m_iDisplayExitWarning;
|
2006-06-23 08:20:08 +00:00
|
|
|
|
2006-06-23 22:30:47 +00:00
|
|
|
wxString m_strNetworkDialupConnectionName;
|
2006-06-23 08:20:08 +00:00
|
|
|
|
2006-06-23 22:30:47 +00:00
|
|
|
wxArrayString m_aSelectedComputerMRU;
|
2006-06-23 08:20:08 +00:00
|
|
|
|
2006-06-23 22:30:47 +00:00
|
|
|
virtual bool SaveState();
|
|
|
|
virtual bool RestoreState();
|
2006-06-23 08:20:08 +00:00
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CFrameEvent : public wxEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CFrameEvent(wxEventType evtType, CBOINCBaseFrame *frame)
|
|
|
|
: wxEvent(-1, evtType)
|
|
|
|
{
|
|
|
|
SetEventObject(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
CFrameEvent(wxEventType evtType, CBOINCBaseFrame *frame, wxString message)
|
|
|
|
: wxEvent(-1, evtType), m_message(message)
|
|
|
|
{
|
|
|
|
SetEventObject(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual wxEvent *Clone() const { return new CFrameEvent(*this); }
|
|
|
|
|
|
|
|
wxString m_message;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CFrameAlertEvent : public wxEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CFrameAlertEvent(wxEventType evtType, CBOINCBaseFrame *frame, wxString title, wxString message, int style, bool notification_only, FrameAlertEventType alert_event_type)
|
|
|
|
: wxEvent(-1, evtType), m_title(title), m_message(message), m_style(style), m_notification_only(notification_only), m_alert_event_type(alert_event_type)
|
|
|
|
{
|
|
|
|
SetEventObject(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
CFrameAlertEvent(wxEventType evtType, CBOINCBaseFrame *frame, wxString title, wxString message, int style, bool notification_only)
|
|
|
|
: wxEvent(-1, evtType), m_title(title), m_message(message), m_style(style), m_notification_only(notification_only)
|
|
|
|
{
|
|
|
|
SetEventObject(frame);
|
|
|
|
m_alert_event_type = AlertNormal;
|
|
|
|
}
|
|
|
|
|
|
|
|
CFrameAlertEvent(const CFrameAlertEvent& event)
|
|
|
|
: wxEvent(event)
|
|
|
|
{
|
|
|
|
m_title = event.m_title;
|
|
|
|
m_message = event.m_message;
|
|
|
|
m_style = event.m_style;
|
|
|
|
m_notification_only = event.m_notification_only;
|
|
|
|
m_alert_event_type = event.m_alert_event_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual wxEvent *Clone() const { return new CFrameAlertEvent(*this); }
|
|
|
|
virtual void ProcessResponse(const int response) const;
|
|
|
|
|
|
|
|
wxString m_title;
|
|
|
|
wxString m_message;
|
|
|
|
int m_style;
|
|
|
|
bool m_notification_only;
|
|
|
|
FrameAlertEventType m_alert_event_type;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_DECLARE_EVENT_TYPES()
|
|
|
|
DECLARE_EVENT_TYPE( wxEVT_FRAME_ALERT, 10000 )
|
|
|
|
DECLARE_EVENT_TYPE( wxEVT_FRAME_CONNECT, 10001 )
|
|
|
|
DECLARE_EVENT_TYPE( wxEVT_FRAME_INITIALIZED, 10004 )
|
|
|
|
DECLARE_EVENT_TYPE( wxEVT_FRAME_REFRESHVIEW, 10005 )
|
|
|
|
DECLARE_EVENT_TYPE( wxEVT_FRAME_UPDATESTATUS, 10006 )
|
2006-10-25 14:09:47 +00:00
|
|
|
DECLARE_EVENT_TYPE( wxEVT_FRAME_RELOADSKIN, 10007 )
|
2006-06-23 08:20:08 +00:00
|
|
|
END_DECLARE_EVENT_TYPES()
|
|
|
|
|
|
|
|
#define EVT_FRAME_ALERT(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_FRAME_ALERT, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
|
|
|
|
#define EVT_FRAME_CONNECT(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_FRAME_CONNECT, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
|
|
|
|
#define EVT_FRAME_INITIALIZED(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_FRAME_INITIALIZED, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
|
|
|
|
#define EVT_FRAME_REFRESH(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_FRAME_REFRESHVIEW, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
|
|
|
|
#define EVT_FRAME_UPDATESTATUS(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_FRAME_UPDATESTATUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
|
2006-10-26 18:58:52 +00:00
|
|
|
#define EVT_FRAME_RELOADSKIN(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_FRAME_RELOADSKIN, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
|
2006-06-23 08:20:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|