summaryrefslogtreecommitdiff
path: root/noncore/tools/formatter/formatter.h
blob: faf0b30af5d668dc338d774088762eb0f193662c (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/****************************************************************************
** formatter.h
**
** Copyright: Thu Apr 11 11:01:01 2002
**      by:  L.J. Potter
**
****************************************************************************/

#ifndef FORMATTERAPP_H
#define FORMATTERAPP_H

#include <qvariant.h>
//#include <qdialog.h>
#include <qmainwindow.h>

class QVBoxLayout; 
class QHBoxLayout; 
class QGridLayout; 
class QComboBox;
class QLabel;
class QLineEdit;
class QPushButton;
class QTabWidget;
class QWidget;
class QStringList;

class FormatterApp : public QMainWindow
//public QDialog
{ 
    Q_OBJECT

public:
    static QString appName() { return QString::fromLatin1("formatter"); }
    FormatterApp( QWidget* parent = 0, const char* name = 0, WFlags fl = 0, bool modal = FALSE );
    ~FormatterApp();

    QTabWidget *TabWidget;
    QWidget *tab, *tab_2;;
    QLabel *TextLabel1, *TextLabel2, *TextLabel3, *TextLabel4, *TextLabel5;
    QComboBox *storageComboBox, *fileSystemsCombo, *deviceComboBox;
    QPushButton *formatPushButton, *editPushButton, *fsckButton;
    QLineEdit* mountPointLineEdit;
    QStringList fileSystemTypeList, fsList, deviceList;
protected:
    QGridLayout *FormatterAppLayout, *tabLayout, *tabLayout_2;
    QString getFileSystemType(const QString &);

    void fillCombos();
    void parsetab(const QString &);
    bool doFdisk();
    int formatCheck(const QString &);
    int runCommand(const QString &);
    
protected slots:
    void cleanUp();
    void doFormat();
    void editFstab();
    bool doFsck();
    bool doFsckCheck();

    void fsComboSelected(int); 
    void storageComboSelected(int );
    void deviceComboSelected(int );
};

#endif // FORMATTERAPP_H