Home
last modified time | relevance | path

Searched refs:FontSelector (Results 1 – 25 of 219) sorted by relevance

123456789

/dports/x11-fm/xfe/xfe-1.44/src/
H A DFontDialog.cpp15 FXMAPFUNC(SEL_COMMAND, FontSelector::ID_FAMILY, FontSelector::onCmdFamily),
16 FXMAPFUNC(SEL_COMMAND, FontSelector::ID_WEIGHT, FontSelector::onCmdWeight),
17 FXMAPFUNC(SEL_COMMAND, FontSelector::ID_SIZE, FontSelector::onCmdSize),
18 FXMAPFUNC(SEL_COMMAND, FontSelector::ID_SIZE_TEXT, FontSelector::onCmdSizeText),
19 FXMAPFUNC(SEL_COMMAND, FontSelector::ID_STYLE, FontSelector::onCmdStyle),
21 FXMAPFUNC(SEL_COMMAND, FontSelector::ID_CHARSET, FontSelector::onCmdCharset),
22 FXMAPFUNC(SEL_UPDATE, FontSelector::ID_CHARSET, FontSelector::onUpdCharset),
24 FXMAPFUNC(SEL_UPDATE, FontSelector::ID_SETWIDTH, FontSelector::onUpdSetWidth),
25 FXMAPFUNC(SEL_COMMAND, FontSelector::ID_PITCH, FontSelector::onCmdPitch),
26 FXMAPFUNC(SEL_UPDATE, FontSelector::ID_PITCH, FontSelector::onUpdPitch),
[all …]
H A DFontDialog.h6 class FontSelector; variable
9 class FXAPI FontSelector : public FXPacker
11 FXDECLARE(FontSelector)
32FontSelector() : family(NULL), familylist(NULL), weight(NULL), weightlist(NULL), style(NULL), styl… in FontSelector() function
43 FontSelector(const FontSelector&);
44 FontSelector& operator=(const FontSelector&);
82FontSelector(FXComposite* p, FXObject* tgt = NULL, FXSelector sel = 0, FXuint opts = 0, int x = 0,…
112 virtual ~FontSelector();
122 FontSelector* fontbox; in FXDECLARE()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/ui/widget/
H A Dfont-selector.cpp28 FontSelector::FontSelector (bool with_size, bool with_variations) in FontSelector() function in Inkscape::UI::Widget::FontSelector
120 FontSelector::set_sizes () in set_sizes()
144 FontSelector::set_fontsize_tooltip() in set_fontsize_tooltip()
157 FontSelector::update_font () in update_font()
215 FontSelector::update_size (double size) in update_size()
233 FontSelector::get_fontspec(bool use_variations) { in get_fontspec()
307 FontSelector::on_family_changed() { in on_family_changed()
368 FontSelector::on_style_changed() { in on_style_changed()
382 FontSelector::on_size_changed() { in on_size_changed()
414 FontSelector::on_variations_changed() { in on_variations_changed()
[all …]
/dports/irc/quassel/quassel-0.14-rc2/src/uisupport/
H A Dfontselector.cpp29 FontSelector::FontSelector(QWidget* parent) in FontSelector() function in FontSelector
34 connect(chooseButton, &QAbstractButton::clicked, this, &FontSelector::chooseFont); in FontSelector()
46 void FontSelector::setSelectedFont(const QFont& font) in setSelectedFont()
54 void FontSelector::chooseFont() in chooseFont()
63 void FontSelector::changeEvent(QEvent* e) in changeEvent()
H A Dsettingspage.h30 class FontSelector; variable
119 static void load(FontSelector* box, QFont value);
120 static bool hasChanged(FontSelector* box);
/dports/irc/quassel-core/quassel-0.14-rc2/src/uisupport/
H A Dfontselector.cpp29 FontSelector::FontSelector(QWidget* parent) in FontSelector() function in FontSelector
34 connect(chooseButton, &QAbstractButton::clicked, this, &FontSelector::chooseFont); in FontSelector()
46 void FontSelector::setSelectedFont(const QFont& font) in setSelectedFont()
54 void FontSelector::chooseFont() in chooseFont()
63 void FontSelector::changeEvent(QEvent* e) in changeEvent()
H A Dsettingspage.h30 class FontSelector; variable
119 static void load(FontSelector* box, QFont value);
120 static bool hasChanged(FontSelector* box);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/
H A DFontSelector.h38 class FontSelector : public RefCounted<FontSelector> {
40 virtual ~FontSelector() { } in ~FontSelector()
53 virtual void fontsNeedUpdate(FontSelector*) = 0;
H A DFontFallbackList.h36 class FontSelector; variable
45 void invalidate(PassRefPtr<FontSelector>);
52 FontSelector* fontSelector() const { return m_fontSelector.get(); } in fontSelector()
77 RefPtr<FontSelector> m_fontSelector;
H A DFontCache.h50 class FontSelector; variable
58 const FontData* getFontData(const Font&, int& familyIndex, FontSelector*);
86 void addClient(FontSelector*);
87 void removeClient(FontSelector*);
H A DFontCache.cpp367 const FontData* FontCache::getFontData(const Font& font, int& familyIndex, FontSelector* fontSelect… in getFontData()
414 static HashSet<FontSelector*>* gClients;
416 void FontCache::addClient(FontSelector* client) in addClient()
419 gClients = new HashSet<FontSelector*>; in addClient()
425 void FontCache::removeClient(FontSelector* client) in removeClient()
455 Vector<RefPtr<FontSelector> > clients; in invalidate()
458 HashSet<FontSelector*>::iterator end = gClients->end(); in invalidate()
459 for (HashSet<FontSelector*>::iterator it = gClients->begin(); it != end; ++it) in invalidate()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/fonts/
H A Dfont_fallback_map.h16 class FontSelector; variable
23 explicit FontFallbackMap(FontSelector* font_selector) in FontFallbackMap()
35 void FontsNeedUpdate(FontSelector*, FontInvalidationReason) override;
45 Member<FontSelector> font_selector_;
H A Dfont_fallback_list.h49 static scoped_refptr<FontFallbackList> Create(FontSelector* font_selector) { in Create()
76 FontSelector* GetFontSelector() const { return font_selector_.Get(); } in GetFontSelector()
116 explicit FontFallbackList(FontSelector* font_selector);
129 const Persistent<FontSelector> font_selector_;
H A Dfont_selector.cc16 AtomicString FontSelector::FamilyNameFromSettings( in FamilyNameFromSettings()
52 void FontSelector::Trace(Visitor* visitor) const { in Trace()
57 FontFallbackMap& FontSelector::GetFontFallbackMap() { in GetFontFallbackMap()
H A Dfont.h57 class FontSelector; variable
69 Font(const FontDescription&, FontSelector*);
225 FontSelector* GetFontSelector() const;
264 inline FontSelector* Font::GetFontSelector() const { in GetFontSelector()
H A Dfont_selector_client.h13 class FontSelector; variable
19 virtual void FontsNeedUpdate(FontSelector*, FontInvalidationReason) = 0;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/fonts/
H A Dfont_fallback_list.h46 static scoped_refptr<FontFallbackList> Create(FontSelector* font_selector) { in Create()
57 FontSelector* GetFontSelector() const { return font_selector_.Get(); } in GetFontSelector()
103 explicit FontFallbackList(FontSelector* font_selector);
116 const Persistent<FontSelector> font_selector_;
H A Dfont.h57 class FontSelector; variable
69 Font(const FontDescription&, FontSelector*);
226 FontSelector* GetFontSelector() const;
260 inline FontSelector* Font::GetFontSelector() const { in GetFontSelector()
H A Dfont_selector_client.h12 class FontSelector; variable
18 virtual void FontsNeedUpdate(FontSelector*) = 0;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/modules/canvas/canvas2d/
H A Dcanvas_rendering_context_2d_state.h47 void FontsNeedUpdate(FontSelector*, FontInvalidationReason) override;
79 void SetFont(const FontDescription&, FontSelector*);
133 void SetTextLetterSpacing(float letter_space, FontSelector* selector);
136 void SetTextWordSpacing(float word_space, FontSelector* selector);
140 FontSelector* selector);
144 FontSelector* selector);
148 FontSelector* selector);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/css/
H A Dlocal_font_face_source.h16 class FontSelector; variable
32 LocalFontFaceSource(CSSFontFace*, FontSelector*, const String& font_name);
72 Member<FontSelector> font_selector_;
H A Dremote_font_face_source.h17 class FontSelector; variable
28 RemoteFontFaceSource(CSSFontFace*, FontSelector*, FontDisplay);
134 const FontSelector*,
139 Member<FontSelector> font_selector_;
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fonts/
H A DFontSelector.java35 public final class FontSelector { class
36 private FontSelector() { in FontSelector() method in FontSelector
68 return FontSelector.selectFontForCharacter(fobj.getCharacter(), fobj, in selectFontForCharacter()
85 return FontSelector.selectFontForCharacter(c, text, text in selectFontForCharacterInText()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/css/
H A Dlocal_font_face_source.h16 class FontSelector; variable
30 LocalFontFaceSource(CSSFontFace*, FontSelector*, const String& font_name);
74 Member<FontSelector> font_selector_;
H A Dremote_font_face_source.h17 class FontSelector; variable
27 RemoteFontFaceSource(CSSFontFace*, FontSelector*, FontDisplay);
142 const FontSelector*,
147 Member<FontSelector> font_selector_;

123456789