2012-12-02 13:14:24 -08:00
|
|
|
// Copyright (c) 2012, Thomas Goyne <plorkyeran@aegisub.org>
|
2006-01-16 21:02:54 +00:00
|
|
|
//
|
2012-12-02 13:14:24 -08:00
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
2006-01-16 21:02:54 +00:00
|
|
|
//
|
2012-12-02 13:14:24 -08:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2006-01-16 21:02:54 +00:00
|
|
|
//
|
2009-07-29 05:43:02 +00:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file dialog_colorpicker.h
|
|
|
|
/// @see dialog_colorpicker.cpp
|
|
|
|
/// @ingroup tools_ui
|
|
|
|
///
|
2006-01-16 21:02:54 +00:00
|
|
|
|
2012-09-24 16:35:27 -07:00
|
|
|
#include <functional>
|
2006-01-16 21:02:54 +00:00
|
|
|
|
2012-10-26 07:09:14 -07:00
|
|
|
namespace agi { struct Color; }
|
|
|
|
class wxWindow;
|
|
|
|
|
2010-06-09 08:14:50 +00:00
|
|
|
/// @brief Get a color from the user via a color picker dialog
|
|
|
|
/// @param parent Parent window
|
|
|
|
/// @param original Initial color to select
|
2012-10-08 19:07:54 -07:00
|
|
|
/// @param callback Function called whenever the selected color changes
|
2012-10-26 07:09:14 -07:00
|
|
|
/// @return Did the user accept the new color?
|
2012-09-24 16:35:27 -07:00
|
|
|
bool GetColorFromUser(wxWindow* parent, agi::Color original, std::function<void (agi::Color)> callback);
|
2010-06-09 08:14:50 +00:00
|
|
|
|
|
|
|
/// @brief Get a color from the user via a color picker dialog
|
|
|
|
/// @param T Class which the callback method belongs to
|
|
|
|
/// @param method Callback method
|
|
|
|
/// @param parent Parent window
|
|
|
|
/// @param original Initial color to select
|
|
|
|
/// @param callbackObj Object to call callback method on. Must be of type T.
|
2012-10-26 07:09:14 -07:00
|
|
|
/// @return Did the user accept the new color?
|
|
|
|
template<class T, void (T::*method)(agi::Color)>
|
|
|
|
bool GetColorFromUser(wxWindow* parent, agi::Color original, T* callbackObj) {
|
2012-09-24 16:35:27 -07:00
|
|
|
return GetColorFromUser(parent, original, std::bind(method, callbackObj, std::placeholders::_1));
|
2010-06-09 08:14:50 +00:00
|
|
|
}
|