e6bf5124be
Reuse the logic previously implemented in QtInstanceEntry::set_message_type by moving it to a static helper method that takes a QLineEdit* param, and for QtInstanceComboBox::set_entry_message_type, pass the combo box's line edit. Change-Id: I8e81c9473da294d2a8c863ed143d735c30ade2a2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177829 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
187 lines
5.3 KiB
C++
187 lines
5.3 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#include <QtInstanceEntry.hxx>
|
|
#include <QtInstanceEntry.moc>
|
|
|
|
#include <vcl/qt/QtUtils.hxx>
|
|
|
|
#include <QtGui/QIcon>
|
|
|
|
QtInstanceEntry::QtInstanceEntry(QLineEdit* pLineEdit)
|
|
: QtInstanceWidget(pLineEdit)
|
|
, m_pLineEdit(pLineEdit)
|
|
{
|
|
assert(m_pLineEdit);
|
|
|
|
QObject::connect(m_pLineEdit, &QLineEdit::cursorPositionChanged, this,
|
|
[&] { signal_cursor_position(); });
|
|
QObject::connect(m_pLineEdit, &QLineEdit::textChanged, this,
|
|
&QtInstanceEntry::handleTextChanged);
|
|
}
|
|
|
|
void QtInstanceEntry::set_text(const OUString& rText)
|
|
{
|
|
SolarMutexGuard g;
|
|
GetQtInstance().RunInMainThread([&] { m_pLineEdit->setText(toQString(rText)); });
|
|
}
|
|
|
|
OUString QtInstanceEntry::get_text() const
|
|
{
|
|
SolarMutexGuard g;
|
|
OUString sText;
|
|
GetQtInstance().RunInMainThread([&] { sText = toOUString(m_pLineEdit->text()); });
|
|
return sText;
|
|
}
|
|
|
|
void QtInstanceEntry::set_width_chars(int) { assert(false && "Not implemented yet"); }
|
|
|
|
int QtInstanceEntry::get_width_chars() const
|
|
{
|
|
assert(false && "Not implemented yet");
|
|
return -1;
|
|
}
|
|
|
|
void QtInstanceEntry::set_max_length(int nChars)
|
|
{
|
|
SolarMutexGuard g;
|
|
GetQtInstance().RunInMainThread([&] { m_pLineEdit->setMaxLength(nChars); });
|
|
}
|
|
|
|
void QtInstanceEntry::select_region(int nStartPos, int nEndPos)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
GetQtInstance().RunInMainThread([&] {
|
|
if (nEndPos == -1)
|
|
nEndPos = m_pLineEdit->text().length();
|
|
|
|
const int nLength = nEndPos - nStartPos;
|
|
m_pLineEdit->setSelection(nStartPos, nLength);
|
|
});
|
|
}
|
|
|
|
bool QtInstanceEntry::get_selection_bounds(int& rStartPos, int& rEndPos)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
bool bHasSelection = false;
|
|
GetQtInstance().RunInMainThread([&] {
|
|
bHasSelection = m_pLineEdit->hasSelectedText();
|
|
rStartPos = m_pLineEdit->selectionStart();
|
|
rEndPos = m_pLineEdit->selectionEnd();
|
|
});
|
|
|
|
return bHasSelection;
|
|
}
|
|
|
|
void QtInstanceEntry::replace_selection(const OUString& rText)
|
|
{
|
|
SolarMutexGuard g;
|
|
GetQtInstance().RunInMainThread([&] { m_pLineEdit->insert(toQString(rText)); });
|
|
}
|
|
|
|
void QtInstanceEntry::set_position(int nCursorPos)
|
|
{
|
|
SolarMutexGuard g;
|
|
if (nCursorPos == -1)
|
|
nCursorPos = m_pLineEdit->text().length();
|
|
|
|
GetQtInstance().RunInMainThread([&] { m_pLineEdit->setCursorPosition(nCursorPos); });
|
|
}
|
|
|
|
int QtInstanceEntry::get_position() const
|
|
{
|
|
SolarMutexGuard g;
|
|
int nCursorPos = 0;
|
|
GetQtInstance().RunInMainThread([&] { nCursorPos = m_pLineEdit->cursorPosition(); });
|
|
|
|
return nCursorPos;
|
|
}
|
|
|
|
void QtInstanceEntry::set_editable(bool bEditable)
|
|
{
|
|
SolarMutexGuard g;
|
|
GetQtInstance().RunInMainThread([&] { m_pLineEdit->setReadOnly(!bEditable); });
|
|
}
|
|
|
|
bool QtInstanceEntry::get_editable() const
|
|
{
|
|
SolarMutexGuard g;
|
|
bool bEditable = false;
|
|
GetQtInstance().RunInMainThread([&] { bEditable = !m_pLineEdit->isReadOnly(); });
|
|
|
|
return bEditable;
|
|
}
|
|
|
|
void QtInstanceEntry::setMessageType(QLineEdit& rLineEdit, weld::EntryMessageType eType)
|
|
{
|
|
SolarMutexGuard g;
|
|
|
|
GetQtInstance().RunInMainThread([&] {
|
|
for (QAction* pAction : rLineEdit.actions())
|
|
rLineEdit.removeAction(pAction);
|
|
|
|
switch (eType)
|
|
{
|
|
case weld::EntryMessageType::Normal:
|
|
// don't do anything special
|
|
return;
|
|
case weld::EntryMessageType::Warning:
|
|
rLineEdit.addAction(QIcon::fromTheme("dialog-warning"),
|
|
QLineEdit::TrailingPosition);
|
|
return;
|
|
case weld::EntryMessageType::Error:
|
|
rLineEdit.addAction(QIcon::fromTheme("dialog-error"), QLineEdit::TrailingPosition);
|
|
return;
|
|
default:
|
|
assert(false && "Unknown EntryMessageType");
|
|
return;
|
|
}
|
|
});
|
|
}
|
|
|
|
void QtInstanceEntry::set_message_type(weld::EntryMessageType eType)
|
|
{
|
|
setMessageType(*m_pLineEdit, eType);
|
|
}
|
|
|
|
void QtInstanceEntry::set_placeholder_text(const OUString& rText)
|
|
{
|
|
SolarMutexGuard g;
|
|
GetQtInstance().RunInMainThread([&] { m_pLineEdit->setPlaceholderText(toQString(rText)); });
|
|
}
|
|
|
|
void QtInstanceEntry::set_overwrite_mode(bool) { assert(false && "Not implemented yet"); }
|
|
|
|
bool QtInstanceEntry::get_overwrite_mode() const
|
|
{
|
|
assert(false && "Not implemented yet");
|
|
return false;
|
|
}
|
|
|
|
void QtInstanceEntry::set_font(const vcl::Font&) { assert(false && "Not implemented yet"); }
|
|
|
|
void QtInstanceEntry::set_font_color(const Color&) { assert(false && "Not implemented yet"); }
|
|
|
|
void QtInstanceEntry::cut_clipboard() { assert(false && "Not implemented yet"); }
|
|
|
|
void QtInstanceEntry::copy_clipboard() { assert(false && "Not implemented yet"); }
|
|
|
|
void QtInstanceEntry::paste_clipboard() { assert(false && "Not implemented yet"); }
|
|
|
|
void QtInstanceEntry::set_alignment(TxtAlign) { assert(false && "Not implemented yet"); }
|
|
|
|
void QtInstanceEntry::handleTextChanged()
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
signal_changed();
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|