RetroArch
coreinfodialog.h
Go to the documentation of this file.
1 #ifndef COREINFODIALOG_H
2 #define COREINFODIALOG_H
3 
4 #include <QDialog>
5 
6 class QFormLayout;
7 class MainWindow;
8 
9 class CoreInfoDialog : public QDialog
10 {
11  Q_OBJECT
12 public:
13  CoreInfoDialog(MainWindow *mainwindow, QWidget *parent = 0);
14 public slots:
15  void showCoreInfo();
16 private:
17  QFormLayout *m_formLayout;
19 };
20 
21 #endif
MainWindow * m_mainwindow
Definition: coreinfodialog.h:18
void showCoreInfo()
Definition: coreinfodialog.cpp:35
CoreInfoDialog(MainWindow *mainwindow, QWidget *parent=0)
Definition: coreinfodialog.cpp:13
Definition: ui_qt.h:236
QFormLayout * m_formLayout
Definition: coreinfodialog.h:17
joypad_connection_t * slots
Definition: btstack_hid.c:629
Definition: coreinfodialog.h:9