boinc/clientgui/sg_ViewTabPage.h

164 lines
4.2 KiB
C++

// 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 _VIEWTABPAGE_H_
#define _VIEWTABPAGE_H_
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "sg_ViewTabPage.cpp"
#endif
#include <vector>
#include "common/wxFlatNotebook.h"
#include "BOINCGUIApp.h"
#include "sg_ImageLoader.h"
#include "sg_SkinClass.h"
class MyCanvas : public wxScrolledWindow
{
public:
MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size, std::vector<wxBitmap> images);
void OnPaint(wxPaintEvent& event);
void AdvanceSlide();
void ReloadSlideShow(std::vector<wxBitmap> images);
private:
std::vector<ImageLoader*> vSlideShow;
int currentImageIndex;
std::vector<wxBitmap> ssImages;
bool reloadSlideShow;
void LoadSlideShow();
DECLARE_EVENT_TABLE()
};
class CProgressBar;
class CStaticLine;
class CStaticLine;
class CImageButton;
class WorkunitNotebook;
class CViewTabPage : public wxPanel {
DECLARE_DYNAMIC_CLASS( CViewTabPage )
public:
bool isAlive;
//Skin Class
SkinClass *appSkin;
// btns ////////////
////////////////////
// animation
wxBitmap* btmpBgAnim;
CImageButton * btnAminBg;
//line
CStaticLine *lnProjName;
//strings
wxString projName;
wxString projectFrName;
wxString wrkUnitName;
wxString gaugePercent;
wxString elapsedTimeValue;
wxString timeRemainingValue;
//wxGauge *gaugeWUMain;
CProgressBar *gaugeWUMain;
wxStaticText *lblWrkUnitName;
wxStaticText *lblProjectFrName;
wxString percStr;
wxFloat64 percNum;
// bg
RESULT* resultWU;
CViewTabPage();
CViewTabPage(
WorkunitNotebook* parent, RESULT* result, std::string name,std::string url
);
~CViewTabPage();
void CreatePage();
void UpdateInterface();
void ReskinInterface();
void OnWorkShowGraphics();
void OnPaint(wxPaintEvent& event);
void OnLeftUp(wxMouseEvent& event);
void DrawText();
void OnImageButton();
// Setters
void SetTabName(const std::string nme) { m_name = nme; }
// Getters
std::string GetTabName() { return m_name; }
// Animation
MyCanvas* GetCanvas() const { return m_canvas; }
DECLARE_EVENT_TABLE()
protected:
//tab identifier
std::string m_name;
std::string m_prjUrl;
bool m_hasGraphic;
wxInt32 FormatCPUTime( RESULT* rslt, wxString& strBuffer ) const;
wxInt32 FormatTimeToCompletion( RESULT* rslt, wxString& strBuffer ) const;
void SGUITimeFormat( float fBuffer, wxString& strBuffer) const;
void OnEraseBackground(wxEraseEvent& event);
void DrawBackImg(wxEraseEvent& event,wxWindow *win,wxBitmap bitMap,int opz);
private:
void CreateSlideShowWindow();
void LoadSlideShow(std::vector<wxBitmap> *vSlideShow);
bool Downloading();
int ComputeState();
wxString FormatText(const wxString& text, wxDC* dc);
std::vector<wxBitmap> GetSlideShow();
wxWindow* wSlideShow;
MyCanvas* m_canvas;
int scheduler_rpc_in_progress;
};
class WorkunitNotebook : public wxFlatNotebook {
public:
WorkunitNotebook(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = wxT("FlatNotebook"));
~WorkunitNotebook();
void ReskinAppGUI();
void Update();
void OnChangeSlide(wxTimerEvent& WXUNUSED(event));
protected:
private:
SkinClass *appSkin;
wxFlatNotebookImageList m_ImageList;
wxTimer* changeSlideTimer;
std::vector<CViewTabPage*> m_windows; // vector of all window tabs created for notebook
void AddTab(RESULT* result);
DECLARE_EVENT_TABLE()
};
#endif