2007-03-17 19:37:56 +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
|
|
|
|
//
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma implementation "ProjectListCtrl.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "stdwx.h"
|
|
|
|
#include "BOINCGUIApp.h"
|
2007-03-19 20:00:43 +00:00
|
|
|
#include "hyperlink.h"
|
2007-03-17 19:37:56 +00:00
|
|
|
#include "ProjectListCtrl.h"
|
|
|
|
|
|
|
|
////@begin XPM images
|
|
|
|
////@end XPM images
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListCtrl event definitions
|
|
|
|
*/
|
|
|
|
DEFINE_EVENT_TYPE( wxEVT_PROJECTLISTCTRL_SELECTION_CHANGED )
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListCtrl type definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( CProjectListCtrl, wxScrolledWindow )
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( ProjectListCtrlEvent, wxNotifyEvent )
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListCtrl event table definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE( CProjectListCtrl, wxScrolledWindow )
|
|
|
|
|
|
|
|
////@begin CProjectListCtrl event table entries
|
|
|
|
EVT_PROJECTLISTITEMCTRL_CLICKED( CProjectListCtrl::OnItemClicked )
|
|
|
|
////@end CProjectListCtrl event table entries
|
|
|
|
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListCtrl constructors
|
|
|
|
*/
|
|
|
|
|
|
|
|
CProjectListCtrl::CProjectListCtrl( )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CProjectListCtrl::CProjectListCtrl( wxWindow* parent )
|
|
|
|
{
|
|
|
|
Create( parent );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectList creator
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool CProjectListCtrl::Create( wxWindow* parent )
|
|
|
|
{
|
|
|
|
////@begin CProjectListCtrl member initialisation
|
|
|
|
m_pMainSizer = NULL;
|
|
|
|
////@end CProjectListCtrl member initialisation
|
|
|
|
|
|
|
|
////@begin CProjectListCtrl creation
|
|
|
|
wxScrolledWindow::Create( parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSUNKEN_BORDER );
|
|
|
|
SetExtraStyle( wxWS_EX_BLOCK_EVENTS );
|
|
|
|
|
|
|
|
CreateControls();
|
|
|
|
|
|
|
|
SetBackgroundColour( wxT("WHITE") );
|
|
|
|
SetScrollRate( 0, 25 );
|
|
|
|
|
|
|
|
GetSizer()->Fit(this);
|
|
|
|
////@end CProjectListCtrl creation
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Control creation for ProjectListCtrl
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CProjectListCtrl::CreateControls()
|
|
|
|
{
|
|
|
|
////@begin CProjectListCtrl content construction
|
|
|
|
m_pMainSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
SetSizer(m_pMainSizer);
|
|
|
|
////@end CProjectListCtrl content construction
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_PROJECTLISTITEMCTRL_CLICKED event handler for window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CProjectListCtrl::OnItemClicked( ProjectListItemCtrlEvent& event ) {
|
|
|
|
// Reset the background color back to the default
|
|
|
|
wxWindowList::compatibility_iterator current = GetChildren().GetFirst();
|
|
|
|
while (current) {
|
|
|
|
wxWindow* childWin = current->GetData();
|
|
|
|
childWin->SetBackgroundColour( wxNullColour );
|
|
|
|
childWin->Refresh();
|
|
|
|
current = current->GetNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the background color of the window that threw the event to the
|
|
|
|
// default background color of a selected control. Then fire an event
|
|
|
|
// for the parent window notifing it of the new selection.
|
|
|
|
CProjectListItemCtrl* pSelectedItem = wxDynamicCast(event.GetEventObject(), CProjectListItemCtrl);
|
|
|
|
if (pSelectedItem) {
|
|
|
|
pSelectedItem->SetBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT) );
|
|
|
|
pSelectedItem->Refresh();
|
|
|
|
|
|
|
|
// Fire Event
|
|
|
|
ProjectListCtrlEvent evt(
|
|
|
|
wxEVT_PROJECTLISTCTRL_SELECTION_CHANGED,
|
|
|
|
pSelectedItem->GetTitle(),
|
|
|
|
pSelectedItem->GetURL()
|
|
|
|
);
|
|
|
|
evt.SetEventObject(this);
|
|
|
|
|
|
|
|
GetParent()->AddPendingEvent( evt );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Append a new entry to the project list.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool CProjectListCtrl::Append(
|
|
|
|
wxString strTitle,
|
2007-03-20 19:04:27 +00:00
|
|
|
wxString strURL
|
2007-03-17 19:37:56 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
CProjectListItemCtrl* pItem = new CProjectListItemCtrl();
|
|
|
|
pItem->Create( this );
|
|
|
|
pItem->SetTitle( strTitle );
|
|
|
|
pItem->SetURL( strURL );
|
|
|
|
m_pMainSizer->Add( pItem, 0, wxEXPAND );
|
|
|
|
|
|
|
|
FitInside();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListItemCtrl event definitions
|
|
|
|
*/
|
|
|
|
DEFINE_EVENT_TYPE( wxEVT_PROJECTLISTITEMCTRL_CLICKED )
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListItemCtrl type definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( CProjectListItemCtrl, wxPanel )
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( ProjectListItemCtrlEvent, wxNotifyEvent )
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListItemCtrl event table definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE( CProjectListItemCtrl, wxPanel )
|
|
|
|
|
|
|
|
////@begin CProjectListItemCtrl event table entries
|
|
|
|
EVT_ENTER_WINDOW( CProjectListItemCtrl::OnMouseEnterLeave )
|
|
|
|
EVT_LEAVE_WINDOW( CProjectListItemCtrl::OnMouseEnterLeave )
|
|
|
|
EVT_LEFT_DOWN( CProjectListItemCtrl::OnMouseClick )
|
|
|
|
EVT_LEFT_UP( CProjectListItemCtrl::OnMouseClick )
|
|
|
|
////@end CProjectListItemCtrl event table entries
|
|
|
|
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListItemCtrl constructors
|
|
|
|
*/
|
|
|
|
|
|
|
|
CProjectListItemCtrl::CProjectListItemCtrl( )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CProjectListItemCtrl::CProjectListItemCtrl( wxWindow* parent )
|
|
|
|
{
|
|
|
|
Create( parent );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListItemCtrl creator
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool CProjectListItemCtrl::Create( wxWindow* parent )
|
|
|
|
{
|
|
|
|
////@begin CProjectListItemCtrl member initialisation
|
2007-03-19 20:00:43 +00:00
|
|
|
m_pWebsiteCtrl = NULL;
|
2007-03-20 19:04:27 +00:00
|
|
|
m_pTitleStaticCtrl = NULL;
|
|
|
|
m_strTitle = wxEmptyString;
|
2007-03-17 19:37:56 +00:00
|
|
|
m_strURL = wxEmptyString;
|
|
|
|
m_bLeftButtonDownDetected = false;
|
|
|
|
////@end CProjectListItemCtrl member initialisation
|
|
|
|
|
|
|
|
////@begin CProjectListItemCtrl creation
|
|
|
|
wxPanel::Create( parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxNO_BORDER);
|
|
|
|
SetExtraStyle( wxWS_EX_BLOCK_EVENTS );
|
|
|
|
|
|
|
|
CreateControls();
|
|
|
|
GetSizer()->Fit(this);
|
|
|
|
////@end CProjectListItemCtrl creation
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Control creation for CProjectListItemCtrl
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CProjectListItemCtrl::CreateControls()
|
|
|
|
{
|
|
|
|
////@begin CProjectListItemCtrl content construction
|
|
|
|
|
|
|
|
wxBoxSizer* itemBoxSizer3 = new wxBoxSizer(wxVERTICAL);
|
|
|
|
SetSizer(itemBoxSizer3);
|
|
|
|
|
2007-03-19 20:00:43 +00:00
|
|
|
wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
itemBoxSizer3->Add(itemBoxSizer4);
|
|
|
|
|
|
|
|
m_pWebsiteCtrl = new wxHyperLink;
|
|
|
|
m_pWebsiteCtrl->Create( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemBoxSizer4->Add(m_pWebsiteCtrl, 0, wxALIGN_LEFT|wxALL, 1);
|
2007-03-17 19:37:56 +00:00
|
|
|
|
2007-03-20 19:04:27 +00:00
|
|
|
m_pTitleStaticCtrl = new CProjectListItemStaticCtrl;
|
|
|
|
m_pTitleStaticCtrl->Create( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemBoxSizer4->Add(m_pTitleStaticCtrl, 0, wxALIGN_LEFT|wxALL, 1);
|
2007-03-17 19:37:56 +00:00
|
|
|
|
|
|
|
////@end CProjectListItemCtrl content construction
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_ENTER_WINDOW, wxEVT_LEAVE_WINDOW event handler for window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CProjectListItemCtrl::OnMouseEnterLeave( wxMouseEvent& event ) {
|
|
|
|
m_bLeftButtonDownDetected = false;
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_LEFT_DOWN, wxEVT_LEFT_UP event handler for window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CProjectListItemCtrl::OnMouseClick( wxMouseEvent& event ) {
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CProjectListItemCtrl::OnMouseClick - Function Begin"));
|
|
|
|
|
|
|
|
if ( event.LeftDown() ) {
|
|
|
|
m_bLeftButtonDownDetected = true;
|
|
|
|
} else {
|
|
|
|
if ( m_bLeftButtonDownDetected ) {
|
|
|
|
// The control that reported the down event is also
|
|
|
|
// the one reporting the up event, so it is a valid
|
|
|
|
// click event.
|
|
|
|
wxLogTrace(wxT("Function Status"), wxT("CProjectListItemCtrl::OnMouseClick - Click Detected!"));
|
|
|
|
|
|
|
|
ProjectListItemCtrlEvent evt(wxEVT_PROJECTLISTITEMCTRL_CLICKED, GetId());
|
|
|
|
evt.SetEventObject(this);
|
|
|
|
|
|
|
|
GetParent()->AddPendingEvent( evt );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
event.Skip();
|
|
|
|
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CProjectListItemCtrl::OnMouseClick - Function End"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool CProjectListItemCtrl::SetTitle( wxString strTitle ) {
|
|
|
|
if (m_pTitleStaticCtrl) m_pTitleStaticCtrl->SetLabel( strTitle );
|
2007-03-19 17:58:08 +00:00
|
|
|
m_strTitle = strTitle;
|
2007-03-17 19:37:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CProjectListItemCtrl::SetURL( wxString strURL ) {
|
2007-03-19 20:00:43 +00:00
|
|
|
if (m_pWebsiteCtrl) {
|
2007-03-20 19:04:27 +00:00
|
|
|
m_pWebsiteCtrl->SetLabel(_("Web"));
|
2007-03-19 20:00:43 +00:00
|
|
|
m_pWebsiteCtrl->SetURL(strURL);
|
|
|
|
}
|
2007-03-17 19:37:56 +00:00
|
|
|
m_strURL = strURL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-03-19 17:58:08 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListItemStaticCtrl type definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( CProjectListItemStaticCtrl, wxStaticText )
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListItemStaticCtrl event table definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE( CProjectListItemStaticCtrl, wxStaticText )
|
|
|
|
|
|
|
|
////@begin CProjectListItemStaticCtrl event table entries
|
|
|
|
EVT_ENTER_WINDOW( CProjectListItemStaticCtrl::OnMouseEnterLeave )
|
|
|
|
EVT_LEAVE_WINDOW( CProjectListItemStaticCtrl::OnMouseEnterLeave )
|
|
|
|
EVT_LEFT_DOWN( CProjectListItemStaticCtrl::OnMouseClick )
|
|
|
|
EVT_LEFT_UP( CProjectListItemStaticCtrl::OnMouseClick )
|
|
|
|
////@end CProjectListItemStaticCtrl event table entries
|
|
|
|
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListItemStaticCtrl constructors
|
|
|
|
*/
|
|
|
|
|
|
|
|
CProjectListItemStaticCtrl::CProjectListItemStaticCtrl( )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CProjectListItemStaticCtrl::CProjectListItemStaticCtrl(
|
|
|
|
wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos, const wxSize& size, long style, const wxString& name
|
|
|
|
)
|
|
|
|
{
|
|
|
|
Create (parent, id, label, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CProjectListItemStaticCtrl creator
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool CProjectListItemStaticCtrl::Create(
|
|
|
|
wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos, const wxSize& size, long style, const wxString& name
|
|
|
|
)
|
|
|
|
{
|
|
|
|
bool okay = FALSE;
|
|
|
|
|
|
|
|
// create static text
|
|
|
|
okay = wxStaticText::Create (parent, id, label, pos, size, style, name);
|
|
|
|
wxASSERT_MSG (okay, wxT("Failed to create wxStaticText, needed by wxHyperLink!"));
|
|
|
|
|
|
|
|
return okay;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_ENTER_WINDOW, wxEVT_LEAVE_WINDOW event handler for window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CProjectListItemStaticCtrl::OnMouseEnterLeave( wxMouseEvent& event ) {
|
|
|
|
CProjectListItemCtrl* pParent = wxDynamicCast(GetParent(), CProjectListItemCtrl);
|
|
|
|
if (pParent) {
|
|
|
|
pParent->OnMouseEnterLeave( event );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_LEFT_DOWN, wxEVT_LEFT_UP event handler for window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CProjectListItemStaticCtrl::OnMouseClick( wxMouseEvent& event ) {
|
|
|
|
CProjectListItemCtrl* pParent = wxDynamicCast(GetParent(), CProjectListItemCtrl);
|
|
|
|
if (pParent) {
|
|
|
|
pParent->OnMouseClick( event );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|