aboutsummaryrefslogtreecommitdiff
path: root/include/aobutton.h
blob: f575885661f42f9349821a83216faf3ef8ce2329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef AOBUTTON_H
#define AOBUTTON_H

#include "aoapplication.h"

#include <QDebug>
#include <QPushButton>

class AOButton : public QPushButton {
  Q_OBJECT

public:
  AOButton(QWidget *parent, AOApplication *p_ao_app);
  ~AOButton();

  AOApplication *ao_app;

  void set_image(QString p_image);
};

#endif // AOBUTTON_H