From fbe76102e941b9f1edaf236788e42678f05fdf9a Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:08:06 +0200 Subject: 3.9 --- shared/toggleButton.cpp | 50 ------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 shared/toggleButton.cpp (limited to 'shared/toggleButton.cpp') diff --git a/shared/toggleButton.cpp b/shared/toggleButton.cpp deleted file mode 100644 index 6a35a85d..00000000 --- a/shared/toggleButton.cpp +++ /dev/null @@ -1,50 +0,0 @@ -// ************************************************************************** -// * This file is part of the FreeFileSync project. It is distributed under * -// * GNU General Public License: http://www.gnu.org/licenses/gpl.html * -// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) * -// ************************************************************************** -// -#include "toggleButton.h" - -void ToggleButton::init(const wxBitmap& activeBmp, - const wxString& activeTooltip, - const wxBitmap& inactiveBmp, - const wxString& inactiveTooltip) -{ - m_activeBmp = activeBmp; - m_activeTooltip = activeTooltip; - m_inactiveBmp = inactiveBmp; - m_inactiveTooltip = inactiveTooltip; - - //load resources - setActive(active); -} - - -bool ToggleButton::isActive() const -{ - return active; -} - - -void ToggleButton::toggle() -{ - setActive(!active); -} - - -void ToggleButton::setActive(bool value) -{ - active = value; - - if (active) - { - SetBitmapLabel(m_activeBmp); - SetToolTip(m_activeTooltip); - } - else - { - SetBitmapLabel(m_inactiveBmp); - SetToolTip(m_inactiveTooltip); - } -} -- cgit