some initial classes for keys form

This commit is contained in:
Blue 2023-01-03 18:27:03 +03:00
parent b45a73b723
commit 5aa0f4bca9
Signed by untrusted user: blue
GPG key ID: 9B203B252A63EE38
11 changed files with 361 additions and 159 deletions

View file

@ -14,30 +14,32 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef UI_OMEMO_H
#define UI_OMEMO_H
#ifndef VCARD_OMEMO_H
#define VCARD_OMEMO_H
#include <qwidget.h>
#include <QScopedPointer>
namespace Ui {
#include "keysmodel.h"
namespace Ui
{
class Omemo;
}
/**
* @todo write docs
*/
class Omemo : public QWidget
{
class Omemo : public QWidget {
Q_OBJECT
public:
Omemo(QWidget* parent = nullptr);
~Omemo();
private:
void generateMockData();
private:
QScopedPointer<Ui::Omemo> m_ui;
UI::KeysModel keysModel;
UI::KeysModel unusedKeysModel;
};
}
#endif // UI_OMEMO_H
#endif // VCARD_OMEMO_H