mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-20 05:18:08 +00:00
28 lines
423 B
C
28 lines
423 B
C
|
#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_listAccount_clicked(const QModelIndex &index);
|
||
|
|
||
|
private:
|
||
|
Ui::MainWindow *ui;
|
||
|
};
|
||
|
|
||
|
#endif // MAINWINDOW_H
|