boinc/clientgui/DlgAdvPreferences.h

81 lines
2.7 KiB
C++

// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2008 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 _DLGADVPREFERENCES_H_
#define _DLGADVPREFERENCES_H_
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "DlgAdvPreferences.cpp"
#endif
#include "DlgAdvPreferencesBase.h"
#include "prefs.h"
#include "cc_config.h"
#define TXT_PROC_TIME_TOOLTIP _("specify work start and stop hours in format HH:MM-HH:MM")
#define TXT_NET_TIME_TOOLTIP _("specify network usage start and stop hours in format HH:MM-HH:MM")
class CDlgAdvPreferences : public CDlgAdvPreferencesBase {
DECLARE_DYNAMIC_CLASS( CDlgAdvPreferences )
DECLARE_EVENT_TABLE()
void ReadPreferenceSettings();
bool SavePreferencesSettings();
void UpdateControlStates();
void SetSpecialTooltips();
bool SaveState();
bool RestoreState();
bool ValidateInput();
void SetValidators();
bool IsValidFloatChar(const wxChar& ch);
bool IsValidFloatValue(const wxString& value);
bool IsValidTimeChar(const wxChar& ch);
bool IsValidTimeValue(const wxString& value);
bool IsValidTimeIntervalChar(const wxChar& ch);
bool IsValidTimeIntervalValue(const wxString& value);
void ShowErrorMessage(wxString& msg,wxTextCtrl* errorCtrl);
bool EnsureTabPageVisible(wxTextCtrl* txtCtrl);
bool ConfirmClear();
wxString DoubleToTimeString(double dt);
double TimeStringToDouble(wxString timeStr);
public:
CDlgAdvPreferences(wxWindow* parent=NULL);//to act as standard constructor set a default value
virtual ~CDlgAdvPreferences();
//generic event handler
void OnHandleCommandEvent(wxCommandEvent& ev);
//
void OnExclusiveAppListEvent(wxCommandEvent& event);
//
void OnAddExclusiveApp(wxCommandEvent& event);
void OnRemoveExclusiveApp(wxCommandEvent& event);
void OnOK(wxCommandEvent& event);
void OnHelp(wxCommandEvent& event);
void OnClear(wxCommandEvent& event);
private:
GLOBAL_PREFS prefs;
GLOBAL_PREFS_MASK mask;
LOG_FLAGS log_flags;
CONFIG config;
bool m_bExclusiveAppsDataChanged;
bool m_bPrefsDataChanged;
bool m_bInInit;
wxArrayInt m_arrTabPageIds;
};
#endif // _DLGADVPREFERENCES_H_