mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 10:20:22 +00:00
This allows us to use these methods from `SVGAElement` without inheriting `HTMLHyperlinkElementUtils`, which we can't do for `SVGAElement` due to a naming conflict with the `href()` method in `SVGURIReferenceMixin`.
65 lines
1.3 KiB
C++
65 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibURL/URL.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class HTMLHyperlinkElementUtils {
|
|
public:
|
|
virtual ~HTMLHyperlinkElementUtils();
|
|
|
|
String origin() const;
|
|
|
|
String href() const;
|
|
void set_href(String);
|
|
|
|
String protocol() const;
|
|
void set_protocol(StringView);
|
|
|
|
String username() const;
|
|
void set_username(StringView);
|
|
|
|
String password() const;
|
|
void set_password(StringView);
|
|
|
|
String host() const;
|
|
void set_host(StringView);
|
|
|
|
String hostname() const;
|
|
void set_hostname(StringView);
|
|
|
|
String port() const;
|
|
void set_port(StringView);
|
|
|
|
String pathname() const;
|
|
void set_pathname(StringView);
|
|
|
|
String search() const;
|
|
void set_search(StringView);
|
|
|
|
String hash() const;
|
|
void set_hash(StringView);
|
|
|
|
protected:
|
|
virtual DOM::Element& hyperlink_element_utils_element() = 0;
|
|
virtual DOM::Element const& hyperlink_element_utils_element() const = 0;
|
|
|
|
Optional<URL::Origin> hyperlink_element_utils_extract_an_origin() const;
|
|
|
|
void set_the_url();
|
|
|
|
private:
|
|
void reinitialize_url() const;
|
|
void update_href();
|
|
|
|
Optional<URL::URL> m_url;
|
|
};
|
|
|
|
}
|