summaryrefslogtreecommitdiffstats
path: root/third_party/rust/dwrote/src/font_family.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /third_party/rust/dwrote/src/font_family.rs
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/dwrote/src/font_family.rs')
-rw-r--r--third_party/rust/dwrote/src/font_family.rs79
1 files changed, 79 insertions, 0 deletions
diff --git a/third_party/rust/dwrote/src/font_family.rs b/third_party/rust/dwrote/src/font_family.rs
new file mode 100644
index 0000000000..72f13b6a5a
--- /dev/null
+++ b/third_party/rust/dwrote/src/font_family.rs
@@ -0,0 +1,79 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+use std::cell::UnsafeCell;
+use std::ptr;
+use winapi::um::dwrite::IDWriteLocalizedStrings;
+use winapi::um::dwrite::{IDWriteFont, IDWriteFontCollection, IDWriteFontFamily};
+use wio::com::ComPtr;
+
+use super::*;
+use helpers::*;
+
+pub struct FontFamily {
+ native: UnsafeCell<ComPtr<IDWriteFontFamily>>,
+}
+
+impl FontFamily {
+ pub fn take(native: ComPtr<IDWriteFontFamily>) -> FontFamily {
+ FontFamily {
+ native: UnsafeCell::new(native),
+ }
+ }
+
+ pub unsafe fn as_ptr(&self) -> *mut IDWriteFontFamily {
+ (*self.native.get()).as_raw()
+ }
+
+ pub fn name(&self) -> String {
+ unsafe {
+ let mut family_names: *mut IDWriteLocalizedStrings = ptr::null_mut();
+ let hr = (*self.native.get()).GetFamilyNames(&mut family_names);
+ assert!(hr == 0);
+
+ get_locale_string(&mut ComPtr::from_raw(family_names))
+ }
+ }
+
+ pub fn get_first_matching_font(
+ &self,
+ weight: FontWeight,
+ stretch: FontStretch,
+ style: FontStyle,
+ ) -> Font {
+ unsafe {
+ let mut font: *mut IDWriteFont = ptr::null_mut();
+ let hr = (*self.native.get()).GetFirstMatchingFont(
+ weight.t(),
+ stretch.t(),
+ style.t(),
+ &mut font,
+ );
+ assert!(hr == 0);
+ Font::take(ComPtr::from_raw(font))
+ }
+ }
+
+ pub fn get_font_collection(&self) -> FontCollection {
+ unsafe {
+ let mut collection: *mut IDWriteFontCollection = ptr::null_mut();
+ let hr = (*self.native.get()).GetFontCollection(&mut collection);
+ assert!(hr == 0);
+ FontCollection::take(ComPtr::from_raw(collection))
+ }
+ }
+
+ pub fn get_font_count(&self) -> u32 {
+ unsafe { (*self.native.get()).GetFontCount() }
+ }
+
+ pub fn get_font(&self, index: u32) -> Font {
+ unsafe {
+ let mut font: *mut IDWriteFont = ptr::null_mut();
+ let hr = (*self.native.get()).GetFont(index, &mut font);
+ assert!(hr == 0);
+ Font::take(ComPtr::from_raw(font))
+ }
+ }
+}