ckb-next  v0.2.8 at branch master
ckb-next driver for corsair devices
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
layoutdialog.h
Go to the documentation of this file.
1 #ifndef LAYOUTDIALOG_H
2 #define LAYOUTDIALOG_H
3 
4 #include <QDialog>
5 #include "keymap.h"
6 
7 // Dialog for choosing a keyboard layout
8 
9 namespace Ui {
10 class LayoutDialog;
11 }
12 
13 class LayoutDialog : public QDialog
14 {
15  Q_OBJECT
16 
17 public:
18  explicit LayoutDialog(QWidget *parent = 0);
19  ~LayoutDialog();
20 
21  KeyMap::Layout selected() const;
22 
23 private:
25 };
26 
27 #endif // LAYOUTDIALOG_H
Layout
Definition: keymap.h:70
KeyMap::Layout selected() const
LayoutDialog(QWidget *parent=0)
Definition: layoutdialog.cpp:5
Ui::LayoutDialog * ui
Definition: layoutdialog.h:24