forked from blue/squawk
some initial classes for keys form
This commit is contained in:
parent
b45a73b723
commit
5aa0f4bca9
11 changed files with 361 additions and 159 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue