mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 15:20:58 +00:00 
			
		
		
		
	This commit un-deprecates DeprecatedString, and repurposes it as a byte
string.
As the null state has already been removed, there are no other
particularly hairy blockers in repurposing this type as a byte string
(what it _really_ is).
This commit is auto-generated:
  $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \
    Meta Ports Ladybird Tests Kernel)
  $ perl -pie 's/\bDeprecatedString\b/ByteString/g;
    s/deprecated_string/byte_string/g' $xs
  $ clang-format --style=file -i \
    $(git diff --name-only | grep \.cpp\|\.h)
  $ gn format $(git ls-files '*.gn' '*.gni')
		
	
			
		
			
				
	
	
		
			96 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | 
						|
 * Copyright (c) 2022, the SerenityOS developers.
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <AK/Badge.h>
 | 
						|
#include <LibCore/EventLoop.h>
 | 
						|
#include <LibCore/MimeData.h>
 | 
						|
#include <LibGUI/ConnectionToWindowServer.h>
 | 
						|
#include <LibGUI/DragOperation.h>
 | 
						|
#include <LibGfx/Bitmap.h>
 | 
						|
 | 
						|
namespace GUI {
 | 
						|
 | 
						|
static DragOperation* s_current_drag_operation;
 | 
						|
 | 
						|
DragOperation::DragOperation(Core::EventReceiver* parent)
 | 
						|
    : Core::EventReceiver(parent)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
DragOperation::Outcome DragOperation::exec()
 | 
						|
{
 | 
						|
    VERIFY(!s_current_drag_operation);
 | 
						|
    VERIFY(!m_event_loop);
 | 
						|
    VERIFY(m_mime_data);
 | 
						|
 | 
						|
    Gfx::ShareableBitmap drag_bitmap;
 | 
						|
    if (m_mime_data->has_format("image/x-raw-bitmap"sv)) {
 | 
						|
        auto data = m_mime_data->data("image/x-raw-bitmap"sv);
 | 
						|
        auto bitmap = Gfx::Bitmap::create_from_serialized_byte_buffer(move(data)).release_value_but_fixme_should_propagate_errors();
 | 
						|
        drag_bitmap = bitmap->to_shareable_bitmap();
 | 
						|
    }
 | 
						|
 | 
						|
    auto started = ConnectionToWindowServer::the().start_drag(
 | 
						|
        m_mime_data->text(),
 | 
						|
        m_mime_data->all_data(),
 | 
						|
        drag_bitmap);
 | 
						|
 | 
						|
    if (!started) {
 | 
						|
        m_outcome = Outcome::Cancelled;
 | 
						|
        return m_outcome;
 | 
						|
    }
 | 
						|
 | 
						|
    s_current_drag_operation = this;
 | 
						|
    m_event_loop = make<Core::EventLoop>();
 | 
						|
    auto result = m_event_loop->exec();
 | 
						|
    m_event_loop = nullptr;
 | 
						|
    dbgln_if(DRAG_DEBUG, "{}: event loop returned with result {}", class_name(), result);
 | 
						|
    remove_from_parent();
 | 
						|
    s_current_drag_operation = nullptr;
 | 
						|
    return m_outcome;
 | 
						|
}
 | 
						|
 | 
						|
void DragOperation::done(Outcome outcome)
 | 
						|
{
 | 
						|
    VERIFY(m_outcome == Outcome::None);
 | 
						|
    m_outcome = outcome;
 | 
						|
    m_event_loop->quit(0);
 | 
						|
}
 | 
						|
 | 
						|
void DragOperation::notify_accepted(Badge<ConnectionToWindowServer>)
 | 
						|
{
 | 
						|
    VERIFY(s_current_drag_operation);
 | 
						|
    s_current_drag_operation->done(Outcome::Accepted);
 | 
						|
}
 | 
						|
 | 
						|
void DragOperation::notify_cancelled(Badge<ConnectionToWindowServer>)
 | 
						|
{
 | 
						|
    if (s_current_drag_operation)
 | 
						|
        s_current_drag_operation->done(Outcome::Cancelled);
 | 
						|
}
 | 
						|
 | 
						|
void DragOperation::set_text(ByteString const& text)
 | 
						|
{
 | 
						|
    if (!m_mime_data)
 | 
						|
        m_mime_data = Core::MimeData::construct();
 | 
						|
    m_mime_data->set_text(text);
 | 
						|
}
 | 
						|
void DragOperation::set_bitmap(Gfx::Bitmap const* bitmap)
 | 
						|
{
 | 
						|
    if (!m_mime_data)
 | 
						|
        m_mime_data = Core::MimeData::construct();
 | 
						|
    if (bitmap)
 | 
						|
        m_mime_data->set_data("image/x-raw-bitmap"_string, bitmap->serialize_to_byte_buffer().release_value_but_fixme_should_propagate_errors());
 | 
						|
}
 | 
						|
void DragOperation::set_data(String const& data_type, ByteString const& data)
 | 
						|
{
 | 
						|
    if (!m_mime_data)
 | 
						|
        m_mime_data = Core::MimeData::construct();
 | 
						|
    m_mime_data->set_data(data_type, data.to_byte_buffer());
 | 
						|
}
 | 
						|
 | 
						|
}
 |