2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-03-30 05:44:12 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2005-03-30 05:44:12 +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.
|
2005-03-30 05:44:12 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-03-30 05:44:12 +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/>.
|
2005-03-30 05:44:12 +00:00
|
|
|
//
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_DLGSELECTCOMPUTER_H
|
|
|
|
#define BOINC_DLGSELECTCOMPUTER_H
|
2005-03-30 05:44:12 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma interface "DlgSelectComputer.cpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Includes
|
|
|
|
*/
|
|
|
|
|
|
|
|
////@begin includes
|
2005-04-01 22:17:44 +00:00
|
|
|
#include "wx/valgen.h"
|
2005-03-30 05:44:12 +00:00
|
|
|
////@end includes
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Forward declarations
|
|
|
|
*/
|
|
|
|
|
|
|
|
////@begin forward declarations
|
|
|
|
////@end forward declarations
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Control identifiers
|
|
|
|
*/
|
|
|
|
|
|
|
|
////@begin control identifiers
|
|
|
|
#define ID_DIALOG 10000
|
2005-07-22 00:00:49 +00:00
|
|
|
#define SYMBOL_CDLGSELECTCOMPUTER_STYLE wxDEFAULT_DIALOG_STYLE
|
2007-08-16 20:06:50 +00:00
|
|
|
#define SYMBOL_CDLGSELECTCOMPUTER_TITLE wxT("")
|
2005-03-30 05:44:12 +00:00
|
|
|
#define SYMBOL_CDLGSELECTCOMPUTER_IDNAME ID_DIALOG
|
|
|
|
#define SYMBOL_CDLGSELECTCOMPUTER_SIZE wxSize(400, 300)
|
|
|
|
#define SYMBOL_CDLGSELECTCOMPUTER_POSITION wxDefaultPosition
|
|
|
|
#define ID_SELECTCOMPUTERNAME 10001
|
|
|
|
#define ID_SELECTCOMPUTERPASSWORD 10002
|
|
|
|
////@end control identifiers
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Compatibility
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef wxCLOSE_BOX
|
|
|
|
#define wxCLOSE_BOX 0x1000
|
|
|
|
#endif
|
|
|
|
#ifndef wxFIXED_MINSIZE
|
|
|
|
#define wxFIXED_MINSIZE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CDlgSelectComputer class declaration
|
|
|
|
*/
|
|
|
|
|
|
|
|
class CDlgSelectComputer: public wxDialog
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS( CDlgSelectComputer )
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
public:
|
|
|
|
/// Constructors
|
|
|
|
CDlgSelectComputer( );
|
2010-08-11 12:18:07 +00:00
|
|
|
CDlgSelectComputer( wxWindow* parent, bool required = false, wxWindowID id = SYMBOL_CDLGSELECTCOMPUTER_IDNAME, const wxString& caption = SYMBOL_CDLGSELECTCOMPUTER_TITLE, const wxPoint& pos = SYMBOL_CDLGSELECTCOMPUTER_POSITION, const wxSize& size = SYMBOL_CDLGSELECTCOMPUTER_SIZE, long style = SYMBOL_CDLGSELECTCOMPUTER_STYLE );
|
2005-03-30 05:44:12 +00:00
|
|
|
|
|
|
|
/// Creation
|
2010-08-11 12:18:07 +00:00
|
|
|
bool Create( wxWindow* parent, bool required = false, wxWindowID id = SYMBOL_CDLGSELECTCOMPUTER_IDNAME, const wxString& caption = SYMBOL_CDLGSELECTCOMPUTER_TITLE, const wxPoint& pos = SYMBOL_CDLGSELECTCOMPUTER_POSITION, const wxSize& size = SYMBOL_CDLGSELECTCOMPUTER_SIZE, long style = SYMBOL_CDLGSELECTCOMPUTER_STYLE );
|
2005-03-30 05:44:12 +00:00
|
|
|
|
|
|
|
/// Creates the controls and sizers
|
2010-08-11 12:18:07 +00:00
|
|
|
void CreateControls(bool required);
|
2005-03-30 05:44:12 +00:00
|
|
|
|
|
|
|
////@begin CDlgSelectComputer event handler declarations
|
|
|
|
|
2005-11-14 22:06:17 +00:00
|
|
|
/// wxEVT_COMMAND_TEXT_UPDATED event handler for ID_SELECTCOMPUTERNAME
|
|
|
|
void OnComputerNameUpdated( wxCommandEvent& event );
|
|
|
|
|
2005-03-30 05:44:12 +00:00
|
|
|
////@end CDlgSelectComputer event handler declarations
|
|
|
|
|
|
|
|
////@begin CDlgSelectComputer member function declarations
|
|
|
|
|
2005-04-01 22:17:44 +00:00
|
|
|
wxString GetComputerName() const { return m_strComputerName ; }
|
|
|
|
void SetComputerName(wxString value) { m_strComputerName = value ; }
|
|
|
|
|
2005-11-14 22:06:17 +00:00
|
|
|
wxString GetComputerPassword() const { return m_strComputerPassword ; }
|
|
|
|
void SetComputerPassword(wxString value) { m_strComputerPassword = value ; }
|
2005-04-01 22:17:44 +00:00
|
|
|
|
2005-03-30 05:44:12 +00:00
|
|
|
/// Retrieves bitmap resources
|
|
|
|
wxBitmap GetBitmapResource( const wxString& name );
|
|
|
|
|
|
|
|
/// Retrieves icon resources
|
|
|
|
wxIcon GetIconResource( const wxString& name );
|
|
|
|
////@end CDlgSelectComputer member function declarations
|
|
|
|
|
|
|
|
/// Should we show tooltips?
|
|
|
|
static bool ShowToolTips();
|
|
|
|
|
|
|
|
////@begin CDlgSelectComputer member variables
|
|
|
|
wxComboBox* m_ComputerNameCtrl;
|
|
|
|
wxTextCtrl* m_ComputerPasswordCtrl;
|
2005-04-01 22:17:44 +00:00
|
|
|
wxString m_strComputerName;
|
|
|
|
wxString m_strComputerPassword;
|
2005-03-30 05:44:12 +00:00
|
|
|
////@end CDlgSelectComputer member variables
|
2014-01-30 13:08:29 +00:00
|
|
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
protected:
|
|
|
|
wxAcceleratorEntry m_Shortcuts[3]; // For Copy, Cut & Paste keyboard shortcuts
|
|
|
|
wxAcceleratorTable* m_pAccelTable;
|
|
|
|
#endif
|
2005-03-30 05:44:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|