Eneboo - Documentación para desarrolladores
|
#include <filterinterface.h>
Métodos públicos | |
virtual QStringList | import (const QString &filter, const QString &filename)=0 |
If you write a filter plugin to import dialogs or other user interfaces from a different format than .ui into the Qt Designer, implement this interface in that plugin.
You also have to implement the function featureList() (
virtual QStringList ImportFilterInterface::import | ( | const QString & | filter, |
const QString & | filename | ||
) | [pure virtual] |
This function is called by Qt Designer to open the file filename using the filter filter. Qt Designer expects to get back one or more .ui files, which it can open then. In the implementation of the interface you have to return these filenames, which the filter created, in this function.
Implementado en DlgFilter, GladeFilter, KDevDlgFilter y RCFilter.