![]() |
LeechCraft
0.6.70-3565-g2d86529
Modular cross-platform feature rich live environment.
|
A settings widget for configuring WebKit fonts. More...
#include "wkfontswidget.h"
Public Slots | |
void | accept () |
void | reject () |
Signals | |
void | fontChanged (QWebSettings::FontFamily family, const QFont &font) |
Notifies the font for the given family has been changed. More... | |
Public Member Functions | |
WkFontsWidget (Util::BaseSettingsManager *bsm, QWidget *parent=nullptr) | |
Creates the fonts settings widget. More... | |
void | RegisterSettable (IWkFontsSettable *settable) |
Registers an object to be automatically updated whenever font settings change. More... | |
A settings widget for configuring WebKit fonts.
Provides a common widget for configuring QtWebKit fonts for standard WebKit font types.
This widget works through LeechCraft's XML Settings Dialog system, storing the configuration in an BaseSettingsManager instance.
This widget also supports automatically updating font settings for objects implementing the IWkFontsSettable interface if the user changes them.
Typical usage includes creating an item of type customwidget
in the XML file describing the settings and then setting an instance of the WkFontsWidget as the widget for that item. On the C++ side this looks like:
assuming the Util::BaseSettingsManager
is provided by a singleton XmlSettingsManager class, and XmlSettingsDialog_
is an instance of Util::XmlSettingsDialog
.
The code above also stores the WkFontsWidget as a class variable, which may be a good idea if one wishes to use the settings autoupdate feature. For example, assuming a class ChatTab
properly implements the IWkFontsSettable interface:
Definition at line 89 of file wkfontswidget.h.
LeechCraft::Util::WkFontsWidget::WkFontsWidget | ( | Util::BaseSettingsManager * | bsm, |
QWidget * | parent = nullptr |
||
) |
Creates the fonts settings widget.
[in] | bsm | The settings manager to use for storing settings. |
[in] | parent | The parent widget for this widget. |
Definition at line 42 of file wkfontswidget.cpp.
|
slot |
Definition at line 141 of file wkfontswidget.cpp.
References fontChanged(), and LeechCraft::Util::Stlize().
|
signal |
Notifies the font for the given family has been changed.
[out] | family | The font family for which the font has been changed. |
[out] | font | The new fonr for the given family. |
Referenced by accept().
void LeechCraft::Util::WkFontsWidget::RegisterSettable | ( | IWkFontsSettable * | settable | ) |
Registers an object to be automatically updated whenever font settings change.
[in] | settable | An object implementing IWkFontsSettable. |
Definition at line 75 of file wkfontswidget.cpp.
References LeechCraft::Util::Stlize().
|
slot |
Definition at line 155 of file wkfontswidget.cpp.