~lunarcloud/+junk/qgrub2editor

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef CUSTOMENTRIES_H
#define CUSTOMENTRIES_H

#include <QDialog>

namespace Ui {
    class CustomEntries;
}

class CustomEntries : public QDialog {
    Q_OBJECT
public:
    CustomEntries(QWidget *parent = 0);
    ~CustomEntries();

protected:
    void changeEvent(QEvent *e);
private:
    Ui::CustomEntries *ui;
    const static int LINUX = 0;
    const static int WINDOWS = 1;
    const static int SEPERATOR = 2;
    const static int OTHER = 3;
    void hideLinuxOptions();
    void showLinuxOptions();
private slots:
    void selectedType(int);
};

#endif // CUSTOMENTRIES_H