mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 06:18:59 +00:00
This commit removes DeprecatedString's "null" state, and replaces all its users with one of the following: - A normal, empty DeprecatedString - Optional<DeprecatedString> Note that null states of DeprecatedFlyString/StringView/etc are *not* affected by this commit. However, DeprecatedString::empty() is now considered equal to a null StringView.
74 lines
2 KiB
C++
74 lines
2 KiB
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/URL.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/HTML/EventLoop/Task.h>
|
|
#include <LibWeb/HTML/TokenizedFeatures.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class HTMLHyperlinkElementUtils {
|
|
public:
|
|
virtual ~HTMLHyperlinkElementUtils();
|
|
|
|
DeprecatedString origin() const;
|
|
|
|
DeprecatedString href() const;
|
|
WebIDL::ExceptionOr<void> set_href(String);
|
|
|
|
DeprecatedString protocol() const;
|
|
void set_protocol(StringView);
|
|
|
|
DeprecatedString username() const;
|
|
void set_username(StringView);
|
|
|
|
DeprecatedString password() const;
|
|
void set_password(StringView);
|
|
|
|
DeprecatedString host() const;
|
|
void set_host(StringView);
|
|
|
|
DeprecatedString hostname() const;
|
|
void set_hostname(StringView);
|
|
|
|
DeprecatedString port() const;
|
|
void set_port(StringView);
|
|
|
|
DeprecatedString pathname() const;
|
|
void set_pathname(StringView);
|
|
|
|
DeprecatedString search() const;
|
|
void set_search(StringView);
|
|
|
|
DeprecatedString hash() const;
|
|
void set_hash(StringView);
|
|
|
|
protected:
|
|
virtual DOM::Document& hyperlink_element_utils_document() = 0;
|
|
virtual Optional<String> hyperlink_element_utils_href() const = 0;
|
|
virtual WebIDL::ExceptionOr<void> set_hyperlink_element_utils_href(String) = 0;
|
|
virtual bool hyperlink_element_utils_is_html_anchor_element() const = 0;
|
|
virtual bool hyperlink_element_utils_is_connected() const = 0;
|
|
virtual DeprecatedString hyperlink_element_utils_get_an_elements_target() const = 0;
|
|
virtual TokenizedFeature::NoOpener hyperlink_element_utils_get_an_elements_noopener(StringView target) const = 0;
|
|
|
|
virtual void hyperlink_element_utils_queue_an_element_task(HTML::Task::Source source, Function<void()> steps) = 0;
|
|
|
|
void set_the_url();
|
|
void follow_the_hyperlink(Optional<DeprecatedString> hyperlink_suffix);
|
|
|
|
private:
|
|
void reinitialize_url() const;
|
|
void update_href();
|
|
bool cannot_navigate() const;
|
|
|
|
Optional<AK::URL> m_url;
|
|
};
|
|
|
|
}
|