mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 02:09:24 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
parent
950e819ee7
commit
93712b24bf
Notes:
github-actions[bot]
2024-11-10 11:51:52 +00:00
Author: https://github.com/trflynn89
Commit: 93712b24bf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2256
Reviewed-by: https://github.com/sideshowbarker
4547 changed files with 104 additions and 113 deletions
65
Libraries/LibUnicode/Collator.h
Normal file
65
Libraries/LibUnicode/Collator.h
Normal file
|
@ -0,0 +1,65 @@
|
|||
/*
|
||||
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/NonnullOwnPtr.h>
|
||||
#include <AK/StringView.h>
|
||||
|
||||
namespace Unicode {
|
||||
|
||||
enum class Usage {
|
||||
Sort,
|
||||
Search,
|
||||
};
|
||||
Usage usage_from_string(StringView);
|
||||
StringView usage_to_string(Usage);
|
||||
|
||||
enum class Sensitivity {
|
||||
Base,
|
||||
Accent,
|
||||
Case,
|
||||
Variant,
|
||||
};
|
||||
Sensitivity sensitivity_from_string(StringView);
|
||||
StringView sensitivity_to_string(Sensitivity);
|
||||
|
||||
enum class CaseFirst {
|
||||
Upper,
|
||||
Lower,
|
||||
False,
|
||||
};
|
||||
CaseFirst case_first_from_string(StringView);
|
||||
StringView case_first_to_string(CaseFirst);
|
||||
|
||||
class Collator {
|
||||
public:
|
||||
static NonnullOwnPtr<Collator> create(
|
||||
StringView locale,
|
||||
Usage,
|
||||
StringView collation,
|
||||
Optional<Sensitivity>,
|
||||
CaseFirst,
|
||||
bool numeric,
|
||||
Optional<bool> ignore_punctuation);
|
||||
|
||||
virtual ~Collator() = default;
|
||||
|
||||
enum class Order {
|
||||
Before,
|
||||
Equal,
|
||||
After,
|
||||
};
|
||||
virtual Order compare(StringView, StringView) const = 0;
|
||||
|
||||
virtual Sensitivity sensitivity() const = 0;
|
||||
virtual bool ignore_punctuation() const = 0;
|
||||
|
||||
protected:
|
||||
Collator() = default;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue