2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2006-07-05 21:36:56 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2006-07-05 21:36:56 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// 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.
|
2006-07-05 21:36:56 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2006-07-05 21:36:56 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2006-07-05 21:36:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef _SIMPLEFRAME_H_
|
|
|
|
#define _SIMPLEFRAME_H_
|
|
|
|
|
2006-07-20 19:33:08 +00:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma interface "sg_BoincSimpleGUI.cpp"
|
|
|
|
#endif
|
|
|
|
|
- client: include precompiled header in rr_sim.cpp so memory
leak detection will work.
- MGR: Have the BaseFrame call a function to determine if the
selection list should be saved instead of traversing
the application pointer. Each view just overrides the function
returning a true/false value. We don't have to worry about null
pointers and the like.
- MGR: BOINCGUIApp should never need to know how either the views
work or the document. Move the code that determines which
RPCs should be fired into each of the views. Have the document
look for it there.
- MGR: Reduce duplicate code for hiding and showing an application
- MGR: Move some Windows and Mac specific code into functions
and streamline the application startup and shutdown rountines.
- MGR: Move the event processing that was in BOINCGUIApp into the
BaseFrame.
- MGR: General cleanup.
- MGR: Doxygen comments.
- MGR: Cleanup some warnings.
client/
rr_sim.cpp
clientgui/
AdvancedFrame.cpp, .h
AsyncRPC.cpp, .h
BOINCBaseFrame.cpp, .h
BOINCBaseView.cpp, .h
BOINCClientManager.cpp
BOINCGUIApp.cpp, .h
BOINCTaskBar.cpp
MainDocument.cpp, .h
sg_BoincSimpleGUI.cpp, .h
ViewProjects.cpp, .h
ViewTransfers.cpp, .h
ViewWork.cpp, .h
WelcomePage.cpp
win_build/installerv2/
BOINC.ism
BOINCx64.ism
win_build/
sim.vcproj
svn path=/trunk/boinc/; revision=16357
2008-10-29 22:44:55 +00:00
|
|
|
|
2006-07-11 23:19:53 +00:00
|
|
|
class CViewTabPage;
|
2006-07-20 19:33:08 +00:00
|
|
|
class StatImageLoader;
|
2006-07-20 17:57:23 +00:00
|
|
|
class ImageLoader;
|
2006-07-20 22:15:29 +00:00
|
|
|
class CProjectsComponent;
|
2006-08-18 21:45:17 +00:00
|
|
|
class ClientStateIndicator;
|
2006-10-23 06:48:48 +00:00
|
|
|
class WorkunitNotebook;
|
2008-07-29 13:06:28 +00:00
|
|
|
class CDlgMessages;
|
2006-07-05 21:36:56 +00:00
|
|
|
|
2006-11-06 13:45:50 +00:00
|
|
|
class CSimplePanel : public wxPanel
|
2006-07-05 21:36:56 +00:00
|
|
|
{
|
2006-11-06 13:45:50 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(CSimplePanel)
|
2006-07-05 21:36:56 +00:00
|
|
|
|
|
|
|
public:
|
2006-11-06 13:45:50 +00:00
|
|
|
CSimplePanel();
|
2006-11-06 14:37:49 +00:00
|
|
|
CSimplePanel(wxWindow* parent);
|
2006-07-05 21:36:56 +00:00
|
|
|
|
2006-11-06 13:45:50 +00:00
|
|
|
~CSimplePanel();
|
2006-07-05 21:36:56 +00:00
|
|
|
//
|
|
|
|
// Flat Neotebook
|
2006-10-10 02:53:25 +00:00
|
|
|
WorkunitNotebook *wrkUnitNB;
|
2006-07-05 21:36:56 +00:00
|
|
|
wxBitmap const workWUico;
|
2006-07-24 22:10:28 +00:00
|
|
|
// My projects component
|
2006-07-20 22:15:29 +00:00
|
|
|
CProjectsComponent *projComponent;
|
2006-08-18 21:45:17 +00:00
|
|
|
// Client State Indicator
|
|
|
|
ClientStateIndicator *clientState;
|
2006-07-10 13:41:10 +00:00
|
|
|
//Collapse button
|
2006-07-05 21:36:56 +00:00
|
|
|
bool midAppCollapsed;
|
|
|
|
bool btmAppCollapsed;
|
2006-08-10 19:32:47 +00:00
|
|
|
////////////////////////////;
|
2006-08-23 21:22:41 +00:00
|
|
|
bool projectViewInitialized;
|
|
|
|
bool emptyViewInitialized;
|
|
|
|
bool notebookViewInitialized;
|
|
|
|
|
2006-12-12 01:08:16 +00:00
|
|
|
void ReskinInterface();
|
2006-08-23 21:22:41 +00:00
|
|
|
void InitEmptyView();
|
|
|
|
void UpdateEmptyView();
|
|
|
|
void DestroyEmptyView();
|
2006-11-06 13:45:50 +00:00
|
|
|
void InitResultView();
|
2006-08-18 21:45:17 +00:00
|
|
|
void InitProjectView();
|
2006-08-24 17:54:54 +00:00
|
|
|
void UpdateProjectView();
|
2006-08-17 17:36:51 +00:00
|
|
|
void InitNotebook();
|
2006-08-23 21:22:41 +00:00
|
|
|
void DestroyNotebook();
|
2008-07-29 13:06:28 +00:00
|
|
|
void OnFrameRender();
|
2006-08-07 15:33:03 +00:00
|
|
|
void OnProjectsAttachToProject();
|
2006-09-26 21:53:00 +00:00
|
|
|
void SetDlgOpen(bool newDlgState) { dlgOpen = newDlgState; }
|
|
|
|
bool GetDlgOpen() { return dlgOpen; }
|
2006-07-05 21:36:56 +00:00
|
|
|
//////////
|
|
|
|
wxFlexGridSizer *mainSizer;
|
|
|
|
wxSize wxNotebookSize;
|
|
|
|
//////////
|
2006-08-10 19:32:47 +00:00
|
|
|
wxBitmap *frameBg;
|
2006-07-05 21:36:56 +00:00
|
|
|
wxBitmap *bm13cImg0;
|
|
|
|
wxBitmap *btmpIcnWorking;
|
|
|
|
wxBitmap *bm39cImg0;
|
2006-08-07 15:33:03 +00:00
|
|
|
|
2006-07-05 21:36:56 +00:00
|
|
|
wxBitmap *btmpIcnSleeping;
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
protected:
|
2006-11-06 13:45:50 +00:00
|
|
|
void OnEraseBackground(wxEraseEvent& event);
|
2009-11-24 02:31:44 +00:00
|
|
|
#ifdef __WXMAC__
|
|
|
|
void SetupMacAccessibilitySupport();
|
|
|
|
void RemoveMacAccessibilitySupport();
|
|
|
|
|
|
|
|
int oldSimpleGUIWorkCount;
|
|
|
|
EventHandlerRef m_pSGAccessibilityEventHandlerRef;
|
|
|
|
|
|
|
|
#endif
|
2006-11-06 13:45:50 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool dlgOpen;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Define a new frame
|
|
|
|
class CSimpleFrame : public CBOINCBaseFrame
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(CSimpleFrame)
|
|
|
|
|
|
|
|
public:
|
|
|
|
CSimpleFrame();
|
2009-03-09 18:02:37 +00:00
|
|
|
CSimpleFrame(wxString title, wxIcon* icon, wxIcon* icon32, wxPoint position, wxSize size);
|
2006-11-06 13:45:50 +00:00
|
|
|
|
|
|
|
~CSimpleFrame();
|
|
|
|
|
2009-10-14 17:11:57 +00:00
|
|
|
void OnChangeGUI( wxCommandEvent& event );
|
2006-12-12 01:08:16 +00:00
|
|
|
void OnHelp( wxHelpEvent& event );
|
2008-06-05 02:07:44 +00:00
|
|
|
void OnHelpBOINC( wxCommandEvent& event );
|
2006-11-23 02:27:25 +00:00
|
|
|
|
2006-12-12 01:08:16 +00:00
|
|
|
void OnProjectsAttachToProject();
|
2009-03-09 18:02:37 +00:00
|
|
|
|
|
|
|
void OnConnect(CFrameEvent& event );
|
2006-12-12 01:08:16 +00:00
|
|
|
void OnReloadSkin( CFrameEvent& event );
|
2008-07-29 13:06:28 +00:00
|
|
|
void OnRefreshView( CFrameEvent& event );
|
|
|
|
|
|
|
|
void SetMsgsDlgOpen(CDlgMessages* newDlgPtr) { dlgMsgsPtr = newDlgPtr; }
|
|
|
|
bool isMessagesDlgOpen() { return (dlgMsgsPtr != NULL); }
|
2006-10-25 14:09:47 +00:00
|
|
|
|
2009-03-12 09:25:31 +00:00
|
|
|
bool SaveState();
|
|
|
|
|
2006-11-06 13:45:50 +00:00
|
|
|
protected:
|
2009-03-09 18:02:37 +00:00
|
|
|
virtual int _GetCurrentViewPage();
|
- client: include precompiled header in rr_sim.cpp so memory
leak detection will work.
- MGR: Have the BaseFrame call a function to determine if the
selection list should be saved instead of traversing
the application pointer. Each view just overrides the function
returning a true/false value. We don't have to worry about null
pointers and the like.
- MGR: BOINCGUIApp should never need to know how either the views
work or the document. Move the code that determines which
RPCs should be fired into each of the views. Have the document
look for it there.
- MGR: Reduce duplicate code for hiding and showing an application
- MGR: Move some Windows and Mac specific code into functions
and streamline the application startup and shutdown rountines.
- MGR: Move the event processing that was in BOINCGUIApp into the
BaseFrame.
- MGR: General cleanup.
- MGR: Doxygen comments.
- MGR: Cleanup some warnings.
client/
rr_sim.cpp
clientgui/
AdvancedFrame.cpp, .h
AsyncRPC.cpp, .h
BOINCBaseFrame.cpp, .h
BOINCBaseView.cpp, .h
BOINCClientManager.cpp
BOINCGUIApp.cpp, .h
BOINCTaskBar.cpp
MainDocument.cpp, .h
sg_BoincSimpleGUI.cpp, .h
ViewProjects.cpp, .h
ViewTransfers.cpp, .h
ViewWork.cpp, .h
WelcomePage.cpp
win_build/installerv2/
BOINC.ism
BOINCx64.ism
win_build/
sim.vcproj
svn path=/trunk/boinc/; revision=16357
2008-10-29 22:44:55 +00:00
|
|
|
|
2009-04-16 00:30:42 +00:00
|
|
|
#ifdef __WXMAC__
|
2009-11-24 02:31:44 +00:00
|
|
|
wxMenuBar* m_pMenubar;
|
2009-04-16 00:30:42 +00:00
|
|
|
#endif
|
2009-10-26 08:07:52 +00:00
|
|
|
wxAcceleratorEntry m_Shortcuts[1];
|
- client: include precompiled header in rr_sim.cpp so memory
leak detection will work.
- MGR: Have the BaseFrame call a function to determine if the
selection list should be saved instead of traversing
the application pointer. Each view just overrides the function
returning a true/false value. We don't have to worry about null
pointers and the like.
- MGR: BOINCGUIApp should never need to know how either the views
work or the document. Move the code that determines which
RPCs should be fired into each of the views. Have the document
look for it there.
- MGR: Reduce duplicate code for hiding and showing an application
- MGR: Move some Windows and Mac specific code into functions
and streamline the application startup and shutdown rountines.
- MGR: Move the event processing that was in BOINCGUIApp into the
BaseFrame.
- MGR: General cleanup.
- MGR: Doxygen comments.
- MGR: Cleanup some warnings.
client/
rr_sim.cpp
clientgui/
AdvancedFrame.cpp, .h
AsyncRPC.cpp, .h
BOINCBaseFrame.cpp, .h
BOINCBaseView.cpp, .h
BOINCClientManager.cpp
BOINCGUIApp.cpp, .h
BOINCTaskBar.cpp
MainDocument.cpp, .h
sg_BoincSimpleGUI.cpp, .h
ViewProjects.cpp, .h
ViewTransfers.cpp, .h
ViewWork.cpp, .h
WelcomePage.cpp
win_build/installerv2/
BOINC.ism
BOINCx64.ism
win_build/
sim.vcproj
svn path=/trunk/boinc/; revision=16357
2008-10-29 22:44:55 +00:00
|
|
|
wxAcceleratorTable* m_pAccelTable;
|
|
|
|
|
|
|
|
CSimplePanel* m_pBackgroundPanel;
|
2006-12-12 01:08:16 +00:00
|
|
|
|
|
|
|
|
- client: include precompiled header in rr_sim.cpp so memory
leak detection will work.
- MGR: Have the BaseFrame call a function to determine if the
selection list should be saved instead of traversing
the application pointer. Each view just overrides the function
returning a true/false value. We don't have to worry about null
pointers and the like.
- MGR: BOINCGUIApp should never need to know how either the views
work or the document. Move the code that determines which
RPCs should be fired into each of the views. Have the document
look for it there.
- MGR: Reduce duplicate code for hiding and showing an application
- MGR: Move some Windows and Mac specific code into functions
and streamline the application startup and shutdown rountines.
- MGR: Move the event processing that was in BOINCGUIApp into the
BaseFrame.
- MGR: General cleanup.
- MGR: Doxygen comments.
- MGR: Cleanup some warnings.
client/
rr_sim.cpp
clientgui/
AdvancedFrame.cpp, .h
AsyncRPC.cpp, .h
BOINCBaseFrame.cpp, .h
BOINCBaseView.cpp, .h
BOINCClientManager.cpp
BOINCGUIApp.cpp, .h
BOINCTaskBar.cpp
MainDocument.cpp, .h
sg_BoincSimpleGUI.cpp, .h
ViewProjects.cpp, .h
ViewTransfers.cpp, .h
ViewWork.cpp, .h
WelcomePage.cpp
win_build/installerv2/
BOINC.ism
BOINCx64.ism
win_build/
sim.vcproj
svn path=/trunk/boinc/; revision=16357
2008-10-29 22:44:55 +00:00
|
|
|
private:
|
|
|
|
CDlgMessages* dlgMsgsPtr;
|
2006-11-06 13:45:50 +00:00
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
2006-07-05 21:36:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2008-06-23 17:54:44 +00:00
|
|
|
|