1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 18:09:00 +00:00
trezor-firmware/gui/mainwindow.h

28 lines
412 B
C
Raw Normal View History

2014-05-22 23:44:24 +00:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QModelIndex>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_buttonLoad_clicked();
void on_spinAccount_valueChanged(int arg1);
2014-05-22 23:44:24 +00:00
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H