blob: 8a756310ff5935b3f7f4e687cc38261251aac96c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2014 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <glibmm/ustring.h>
#include <vector>
// A type which can hold any UTF-32 or UCS-4 character code.
typedef unsigned int gunichar;
struct Urange{
char* start;
char* end;
};
class UnicodeRange{
public:
UnicodeRange(const char* val);
int add_range(char* val);
bool contains(char unicode);
Glib::ustring attribute_string();
gunichar sample_glyph();
private:
std::vector<Urange> range;
std::vector<gunichar> unichars;
};
|