2009-01-04 12:45:06 +01:00
|
|
|
// Copyright (c) 2005-2009, Rodrigo Braz Monteiro, Niels Martin Hansen
|
2006-01-16 22:02:54 +01:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
2007-01-24 03:11:26 +01:00
|
|
|
#pragma once
|
2007-01-21 07:30:19 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <libaegisub/fs_fwd.h>
|
2007-04-14 17:26:46 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <cstdint>
|
2014-05-23 00:40:16 +02:00
|
|
|
#include <string>
|
2009-09-11 04:36:34 +02:00
|
|
|
|
2014-05-23 00:40:16 +02:00
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/string.h>
|
2007-04-14 17:26:46 +02:00
|
|
|
|
2014-06-04 22:16:34 +02:00
|
|
|
class wxKeyEvent;
|
2011-10-28 22:15:10 +02:00
|
|
|
class wxMouseEvent;
|
2014-06-04 22:16:34 +02:00
|
|
|
class wxStyledTextCtrl;
|
2011-10-28 22:15:10 +02:00
|
|
|
class wxWindow;
|
|
|
|
|
2006-07-01 04:27:37 +02:00
|
|
|
wxString PrettySize(int bytes);
|
2012-03-27 02:49:33 +02:00
|
|
|
|
2013-07-31 05:31:10 +02:00
|
|
|
std::string float_to_string(double val);
|
|
|
|
|
2012-03-27 02:49:33 +02:00
|
|
|
/// @brief Get the smallest power of two that is greater or equal to x
|
|
|
|
///
|
|
|
|
/// Algorithm from http://bob.allegronetwork.com/prog/tricks.html
|
2007-01-21 07:30:19 +01:00
|
|
|
int SmallestPowerOf2(int x);
|
2012-03-27 02:49:33 +02:00
|
|
|
|
|
|
|
/// @brief Launch a new copy of Aegisub.
|
|
|
|
///
|
|
|
|
/// Contrary to what the name suggests, this does not close the currently
|
|
|
|
/// running process.
|
2009-01-04 12:45:06 +01:00
|
|
|
void RestartAegisub();
|
2007-01-21 07:30:19 +01:00
|
|
|
|
2012-05-26 22:16:08 +02:00
|
|
|
/// Add the OS X 10.7+ full-screen button to a window
|
|
|
|
void AddFullScreenButton(wxWindow *window);
|
|
|
|
|
2012-06-07 04:48:13 +02:00
|
|
|
void SetFloatOnParent(wxWindow *window);
|
|
|
|
|
2011-10-25 21:40:45 +02:00
|
|
|
/// Forward a mouse wheel event to the window under the mouse if needed
|
|
|
|
/// @param source The initial target of the wheel event
|
|
|
|
/// @param evt The event
|
|
|
|
/// @return Should the calling code process the event?
|
|
|
|
bool ForwardMouseWheelEvent(wxWindow *source, wxMouseEvent &evt);
|
|
|
|
|
2012-04-04 00:44:40 +02:00
|
|
|
/// Clean up the given cache directory, limiting the size to max_size
|
|
|
|
/// @param directory Directory to clean
|
|
|
|
/// @param file_type Wildcard pattern for files to clean up
|
|
|
|
/// @param max_size Maximum size of directory in MB
|
|
|
|
/// @param max_files Maximum number of files
|
2013-01-04 16:01:50 +01:00
|
|
|
void CleanCache(agi::fs::path const& directory, std::string const& file_type, uint64_t max_size, uint64_t max_files = -1);
|
2010-12-08 04:36:10 +01:00
|
|
|
|
|
|
|
/// @brief Templated abs() function
|
|
|
|
template <typename T> T tabs(T x) { return x < 0 ? -x : x; }
|
|
|
|
|
2012-03-27 02:49:33 +02:00
|
|
|
/// Get the middle value of a, b, and c (i.e. clamp b to [a,c])
|
|
|
|
/// @precondition a <= c
|
2014-07-16 21:19:12 +02:00
|
|
|
template<typename T> inline T mid(T a, T b, T c) {
|
|
|
|
return a > b ? a : (b > c ? c : b);
|
|
|
|
}
|
2007-04-03 23:05:33 +02:00
|
|
|
|
2012-10-25 17:13:13 +02:00
|
|
|
/// Get the text contents of the clipboard, or empty string on failure
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string GetClipboard();
|
2012-10-25 17:13:13 +02:00
|
|
|
/// Try to set the clipboard to the given string
|
2013-01-04 16:01:50 +01:00
|
|
|
void SetClipboard(std::string const& new_value);
|
2012-10-25 17:13:13 +02:00
|
|
|
void SetClipboard(wxBitmap const& new_value);
|
|
|
|
|
2012-05-10 16:18:47 +02:00
|
|
|
#define countof(array) (sizeof(array) / sizeof(array[0]))
|
|
|
|
|
2013-12-10 18:08:30 +01:00
|
|
|
wxString FontFace(std::string opt_prefix);
|
|
|
|
|
2015-01-01 04:41:56 +01:00
|
|
|
agi::fs::path OpenFileSelector(wxString const& message, std::string const& option_name, std::string const& default_filename, std::string const& default_extension, std::string const& wildcard, wxWindow *parent);
|
|
|
|
agi::fs::path SaveFileSelector(wxString const& message, std::string const& option_name, std::string const& default_filename, std::string const& default_extension, std::string const& wildcard, wxWindow *parent);
|
2014-05-06 19:48:22 +02:00
|
|
|
|
|
|
|
wxString LocalizedLanguageName(wxString const& lang);
|
2014-06-04 22:16:34 +02:00
|
|
|
|
2016-03-13 20:04:17 +01:00
|
|
|
namespace osx {
|
|
|
|
/// Make the given menu the OS X Window menu
|
|
|
|
void make_windows_menu(wxMenu *wxmenu);
|
|
|
|
/// Activate a top-level document window other than the given one
|
|
|
|
bool activate_top_window_other_than(wxFrame *wx);
|
|
|
|
// Bring all windows to the front, maintaining relative z-order
|
|
|
|
void bring_to_front();
|
|
|
|
}
|