mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-10 06:49:50 -05:00
64 lines
2.0 KiB
C++
64 lines
2.0 KiB
C++
|
/*
|
||
|
* This file was generated by qdbusxml2cpp version 0.7
|
||
|
* Command line was: qdbusxml2cpp -c MainWindowAdaptor -a MainWindowAdaptor.h:MainWindowAdaptor.cpp org.keepassxc.MainWindow.xml
|
||
|
*
|
||
|
* qdbusxml2cpp is Copyright (C) 2015 The Qt Company Ltd.
|
||
|
*
|
||
|
* This is an auto-generated file.
|
||
|
* This file may have been hand-edited. Look for HAND-EDIT comments
|
||
|
* before re-generating it.
|
||
|
*/
|
||
|
|
||
|
#ifndef MAINWINDOWADAPTOR_H_1486736200
|
||
|
#define MAINWINDOWADAPTOR_H_1486736200
|
||
|
|
||
|
#include <QtCore/QObject>
|
||
|
#include <QtDBus/QtDBus>
|
||
|
class QByteArray;
|
||
|
template<class T> class QList;
|
||
|
template<class Key, class Value> class QMap;
|
||
|
class QString;
|
||
|
class QStringList;
|
||
|
class QVariant;
|
||
|
|
||
|
/*
|
||
|
* Adaptor class for interface org.keepassxc.MainWindow
|
||
|
*/
|
||
|
class MainWindowAdaptor: public QDBusAbstractAdaptor
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_CLASSINFO("D-Bus Interface", "org.keepassxc.MainWindow")
|
||
|
Q_CLASSINFO("D-Bus Introspection", ""
|
||
|
" <interface name=\"org.keepassxc.MainWindow\">\n"
|
||
|
" <method name=\"openDatabase\">\n"
|
||
|
" <arg direction=\"in\" type=\"s\" name=\"fileName\"/>\n"
|
||
|
" <arg direction=\"in\" type=\"s\" name=\"pw\"/>\n"
|
||
|
" <arg direction=\"in\" type=\"s\" name=\"keyFile\"/>\n"
|
||
|
" </method>\n"
|
||
|
" <method name=\"openDatabase\">\n"
|
||
|
" <arg direction=\"in\" type=\"s\" name=\"fileName\"/>\n"
|
||
|
" <arg direction=\"in\" type=\"s\" name=\"pw\"/>\n"
|
||
|
" </method>\n"
|
||
|
" <method name=\"openDatabase\">\n"
|
||
|
" <arg direction=\"in\" type=\"s\" name=\"fileName\"/>\n"
|
||
|
" </method>\n"
|
||
|
" <method name=\"appExit\"/>\n"
|
||
|
" <method name=\"closeAllDatabases\"/>\n"
|
||
|
" </interface>\n"
|
||
|
"")
|
||
|
public:
|
||
|
MainWindowAdaptor(QObject *parent);
|
||
|
virtual ~MainWindowAdaptor();
|
||
|
|
||
|
public: // PROPERTIES
|
||
|
public Q_SLOTS: // METHODS
|
||
|
void appExit();
|
||
|
void closeAllDatabases();
|
||
|
void openDatabase(const QString &fileName);
|
||
|
void openDatabase(const QString &fileName, const QString &pw);
|
||
|
void openDatabase(const QString &fileName, const QString &pw, const QString &keyFile);
|
||
|
Q_SIGNALS: // SIGNALS
|
||
|
};
|
||
|
|
||
|
#endif
|