2014-11-13 01:04:59 +02:00
|
|
|
#ifndef KXMLGUITEST_H
|
|
|
|
#define KXMLGUITEST_H
|
|
|
|
|
|
|
|
#include <kxmlguiclient.h>
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
|
|
|
|
class Client : public QObject, public KXMLGUIClient
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Client() {}
|
|
|
|
|
|
|
|
void setXMLFile( const QString &f, bool merge = true, bool setXMLDoc = true ) { KXMLGUIClient::setXMLFile( f, merge, setXMLDoc ); }
|
2016-01-08 04:42:26 +02:00
|
|
|
void setComponentData(const KComponentData &inst, bool loadPlugins = true) { KXMLGUIClient::setComponentData(inst, loadPlugins); }
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void slotSec();
|
|
|
|
};
|
|
|
|
#endif
|