2007-06-23 01:43:21 +02:00
|
|
|
// Copyright (c) 2007, Rodrigo Braz Monteiro
|
|
|
|
// 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/
|
|
|
|
|
|
|
|
/// @file scintilla_text_ctrl.cpp
|
|
|
|
/// @brief Customised version of wxStyledTextControl used for main edit box
|
|
|
|
/// @ingroup custom_control
|
|
|
|
///
|
2007-06-23 01:43:21 +02:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2007-06-23 01:43:21 +02:00
|
|
|
#include "scintilla_text_ctrl.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2011-09-29 06:38:15 +02:00
|
|
|
ScintillaTextCtrl::ScintillaTextCtrl(wxWindow* parent, wxWindowID id, const wxString& value, const wxPoint& pos, const wxSize& size, long style)
|
|
|
|
: wxStyledTextCtrl(parent, id, pos, size, style, value)
|
2007-06-23 01:43:21 +02:00
|
|
|
{
|
2011-10-25 21:41:06 +02:00
|
|
|
Bind(wxEVT_MOUSEWHEEL, &ScintillaTextCtrl::OnMouseWheel, this);
|
2007-06-23 01:43:21 +02:00
|
|
|
}
|
|
|
|
|
2012-03-25 06:05:06 +02:00
|
|
|
/// @brief Get unicode-compatible position
|
2007-06-23 01:43:21 +02:00
|
|
|
int ScintillaTextCtrl::GetUnicodePosition(int pos) {
|
2011-08-27 08:52:35 +02:00
|
|
|
return GetText().Left(pos).utf8_str().length();
|
2007-06-23 01:43:21 +02:00
|
|
|
}
|
|
|
|
|
2012-03-25 06:05:06 +02:00
|
|
|
/// @brief Reverse unicode-compatible position
|
2007-06-23 01:43:21 +02:00
|
|
|
int ScintillaTextCtrl::GetReverseUnicodePosition(int pos) {
|
2012-10-30 13:50:41 +01:00
|
|
|
wxCharBuffer buffer = GetTextRaw();
|
2013-07-11 02:43:41 +02:00
|
|
|
return wxString::FromUTF8(buffer.data(), std::min<int>(pos, buffer.length())).length();
|
2007-06-23 01:43:21 +02:00
|
|
|
}
|
|
|
|
|
2012-03-25 06:05:06 +02:00
|
|
|
/// @brief Start unicode-safe styling
|
2007-06-23 02:25:03 +02:00
|
|
|
void ScintillaTextCtrl::StartUnicodeStyling(int start,int mask) {
|
|
|
|
StartStyling(GetUnicodePosition(start),mask);
|
2011-08-27 08:52:35 +02:00
|
|
|
// Cache the text for styling as GetText is hideously slow
|
|
|
|
text = GetText();
|
2007-06-23 02:25:03 +02:00
|
|
|
}
|
|
|
|
|
2012-03-25 06:05:06 +02:00
|
|
|
/// @brief Unicode-safe styling
|
2007-06-23 01:43:21 +02:00
|
|
|
void ScintillaTextCtrl::SetUnicodeStyling(int start,int length,int style) {
|
|
|
|
// Get the real length
|
2011-08-27 08:52:35 +02:00
|
|
|
int len = text.Mid(start, length).utf8_str().length();
|
2007-06-23 01:43:21 +02:00
|
|
|
|
|
|
|
// Set styling
|
|
|
|
SetStyling(len,style);
|
|
|
|
}
|
|
|
|
|
2012-03-25 06:05:06 +02:00
|
|
|
/// @brief Set selection, unicode-aware
|
2007-06-23 01:43:21 +02:00
|
|
|
void ScintillaTextCtrl::SetSelectionU(int start, int end) {
|
|
|
|
SetSelection(GetUnicodePosition(start),GetUnicodePosition(end));
|
|
|
|
}
|
2011-10-25 21:41:06 +02:00
|
|
|
|
|
|
|
void ScintillaTextCtrl::OnMouseWheel(wxMouseEvent& evt) {
|
|
|
|
if (ForwardMouseWheelEvent(this, evt)) {
|
|
|
|
// Skip the event so that wxSTC's default mouse wheel handler is hit
|
|
|
|
evt.Skip();
|
|
|
|
}
|
|
|
|
}
|