mirror of https://github.com/BOINC/boinc.git
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2023 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/>.
|
|
|
|
#ifndef BOINC_SG_PANELBASE_H
|
|
#define BOINC_SG_PANELBASE_H
|
|
|
|
#include "sg_CustomControls.h"
|
|
#include "sg_BoincSimpleFrame.h"
|
|
#include "MainDocument.h"
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef __WXMAC__
|
|
#define SMALL_FONT 12
|
|
#define MEDIUM_FONT 16
|
|
#define LARGE_FONT 20
|
|
#else
|
|
#define SMALL_FONT 9
|
|
#define MEDIUM_FONT 12
|
|
#define LARGE_FONT 16
|
|
#endif
|
|
|
|
const int sideMargins = 30;
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
/// Class CSimplePanelBase
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef __WXMAC__
|
|
#include "MacBitmapComboBox.h"
|
|
#else
|
|
#define CBOINCBitmapComboBox wxBitmapComboBox
|
|
#endif
|
|
|
|
|
|
class CSimplePanelBase : public wxPanel
|
|
{
|
|
DECLARE_DYNAMIC_CLASS( CSimplePanelBase )
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
public:
|
|
CSimplePanelBase();
|
|
CSimplePanelBase( wxWindow* parent);
|
|
~CSimplePanelBase();
|
|
|
|
void ReskinInterface();
|
|
virtual wxRect* GetProgressRect() { return NULL; }
|
|
wxBitmap GetBackgroundBmp();
|
|
void UpdateStaticText(CTransparentStaticText **whichText, wxString s);
|
|
void EllipseStringIfNeeded(wxString& s, wxWindow *win);
|
|
|
|
protected:
|
|
void MakeBGBitMap();
|
|
void OnPaint(wxPaintEvent& event);
|
|
void OnEraseBackground(wxEraseEvent& event);
|
|
void EraseBackground(wxDC *dc);
|
|
|
|
wxBitmap m_TaskPanelBGBitMap;
|
|
bool m_GotBGBitMap;
|
|
};
|
|
|
|
#endif
|