[][src]Struct qt_gui::QIconEnginePlugin

#[repr(C)]pub struct QIconEnginePlugin { /* fields omitted */ }

The QIconEnginePlugin class provides an abstract base for custom QIconEngine plugins.

C++ class: QIconEnginePlugin.

C++ documentation:

The QIconEnginePlugin class provides an abstract base for custom QIconEngine plugins.

The icon engine plugin is a simple plugin interface that makes it easy to create custom icon engines that can be loaded dynamically into applications through QIcon. QIcon uses the file or resource name's suffix to determine what icon engine to use.

Writing a icon engine plugin is achieved by subclassing this base class, reimplementing the pure virtual function create(), and exporting the class with the Q_PLUGIN_METADATA() macro.

The json metadata should contain a list of icon engine keys that this plugin supports. The keys correspond to the suffix of the file or resource name used when the plugin was created. Keys are case insensitive.

{ "Keys": [ "myiconengine" ] }

Methods

impl QIconEnginePlugin[src]

pub unsafe fn create_1a(
    &self,
    filename: impl CastInto<Ref<QString>>
) -> Ptr<QIconEngine>
[src]

Creates and returns a QIconEngine object for the icon with the given filename.

Calls C++ function: pure virtual QIconEngine* QIconEnginePlugin::create(const QString& filename = …).

C++ documentation:

Creates and returns a QIconEngine object for the icon with the given filename.

pub unsafe fn create_0a(&self) -> Ptr<QIconEngine>[src]

Creates and returns a QIconEngine object for the icon with the given filename.

Calls C++ function: pure virtual QIconEngine* QIconEnginePlugin::create().

C++ documentation:

Creates and returns a QIconEngine object for the icon with the given filename.

pub unsafe fn meta_object(&self) -> Ptr<QMetaObject>[src]

Calls C++ function: virtual const QMetaObject* QIconEnginePlugin::metaObject() const.

pub unsafe fn qt_metacall(
    &self,
    arg1: Call,
    arg2: c_int,
    arg3: *mut *mut c_void
) -> c_int
[src]

Calls C++ function: virtual int QIconEnginePlugin::qt_metacall(QMetaObject::Call arg1, int arg2, void** arg3).

pub unsafe fn qt_metacast(&self, arg1: *const c_char) -> *mut c_void[src]

Calls C++ function: virtual void* QIconEnginePlugin::qt_metacast(const char* arg1).

pub unsafe fn static_meta_object() -> Ref<QMetaObject>[src]

Returns a reference to the staticMetaObject field.

pub unsafe fn tr(
    s: *const c_char,
    c: *const c_char,
    n: c_int
) -> CppBox<QString>
[src]

Calls C++ function: static QString QIconEnginePlugin::tr(const char* s, const char* c, int n).

pub unsafe fn tr_utf8(
    s: *const c_char,
    c: *const c_char,
    n: c_int
) -> CppBox<QString>
[src]

Calls C++ function: static QString QIconEnginePlugin::trUtf8(const char* s, const char* c, int n).

Trait Implementations

impl CppDeletable for QIconEnginePlugin[src]

unsafe fn delete(&self)[src]

Destroys the icon engine plugin.

Calls C++ function: virtual [destructor] void QIconEnginePlugin::~QIconEnginePlugin().

C++ documentation:

Destroys the icon engine plugin.

You never have to call this explicitly. Qt destroys a plugin automatically when it is no longer used.

impl Deref for QIconEnginePlugin[src]

type Target = QObject

The resulting type after dereferencing.

fn deref(&self) -> &QObject[src]

Calls C++ function: QObject* static_cast<QObject*>(QIconEnginePlugin* ptr).

impl DynamicCast<QIconEnginePlugin> for QObject[src]

unsafe fn dynamic_cast(ptr: Ptr<QObject>) -> Ptr<QIconEnginePlugin>[src]

Calls C++ function: QIconEnginePlugin* dynamic_cast<QIconEnginePlugin*>(QObject* ptr).

impl StaticDowncast<QIconEnginePlugin> for QObject[src]

unsafe fn static_downcast(ptr: Ptr<QObject>) -> Ptr<QIconEnginePlugin>[src]

Calls C++ function: QIconEnginePlugin* static_cast<QIconEnginePlugin*>(QObject* ptr).

impl StaticUpcast<QObject> for QIconEnginePlugin[src]

unsafe fn static_upcast(ptr: Ptr<QIconEnginePlugin>) -> Ptr<QObject>[src]

Calls C++ function: QObject* static_cast<QObject*>(QIconEnginePlugin* ptr).

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> StaticUpcast<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.