Add missing files
This commit is contained in:
parent
1d71f3477a
commit
f138f0b89d
2 changed files with 42 additions and 0 deletions
21
src/seaprintdbusadaptor.cpp
Normal file
21
src/seaprintdbusadaptor.cpp
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
#include "seaprintdbusadaptor.h"
|
||||||
|
#include <QtQuick>
|
||||||
|
|
||||||
|
SeaPrintDBusAdaptor::SeaPrintDBusAdaptor(QQuickView *view)
|
||||||
|
: QDBusAbstractAdaptor(view)
|
||||||
|
, DBusAdaptorBase(view)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
SeaPrintDBusAdaptor::~SeaPrintDBusAdaptor()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void SeaPrintDBusAdaptor::Open(const QString& fileName)
|
||||||
|
{
|
||||||
|
doOpen(fileName);
|
||||||
|
}
|
||||||
|
void SeaPrintDBusAdaptor::OpenPlaintext(const QString& fileContents, const QString& name)
|
||||||
|
{
|
||||||
|
doCreateFileAndOpen(fileContents, name);
|
||||||
|
}
|
21
src/seaprintdbusadaptor.h
Normal file
21
src/seaprintdbusadaptor.h
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
#ifndef SEAPRINTDBUSADAPTOR_H
|
||||||
|
#define SEAPRINTDBUSADAPTOR_H
|
||||||
|
|
||||||
|
#include "dbusadaptorbase.h"
|
||||||
|
|
||||||
|
class SeaPrintDBusAdaptor : public QDBusAbstractAdaptor, public DBusAdaptorBase
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
Q_CLASSINFO("D-Bus Interface", "net.attah.seaprint")
|
||||||
|
|
||||||
|
public:
|
||||||
|
SeaPrintDBusAdaptor(QQuickView *view);
|
||||||
|
~SeaPrintDBusAdaptor();
|
||||||
|
|
||||||
|
public Q_SLOTS:
|
||||||
|
Q_NOREPLY void Open(const QString& fileName);
|
||||||
|
Q_NOREPLY void OpenPlaintext(const QString& fileContents, const QString& name);
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SEAPRINTDBUSADAPTOR_H
|
Loading…
Reference in a new issue