~ubuntu-branches/ubuntu/saucy/mountmanager/saucy

« back to all changes in this revision

Viewing changes to sources/gui/usbmanagerfscellwidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2008-08-20 10:22:14 UTC
  • Revision ID: james.westby@ubuntu.com-20080820102214-fv93myu0ncb1503r
Tags: upstream-0.2.4
ImportĀ upstreamĀ versionĀ 0.2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//MountManager - the program for easy mounting of storage devices in Linux
 
2
//Copyright (C) 2007-2008 Tikhonov Sergey
 
3
//
 
4
//This file is part of MountManager Gui
 
5
//
 
6
//This program is free software; you can redistribute it and/or
 
7
//modify it under the terms of the GNU General Public License
 
8
//as published by the Free Software Foundation; either version 2
 
9
//of the License, or (at your option) any later version.
 
10
//
 
11
//This program is distributed in the hope that it will be useful,
 
12
//but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
//GNU General Public License for more details.
 
15
//
 
16
//You should have received a copy of the GNU General Public License
 
17
//along with this program; if not, write to the Free Software
 
18
//Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
19
#ifndef USBMANAGERFSCELLWIDGET_H
 
20
#define USBMANAGERFSCELLWIDGET_H
 
21
 
 
22
#include <QWidget>
 
23
 
 
24
class QLabel;
 
25
class QPushButton;
 
26
 
 
27
class UsbManagerFsCellWidget : public QWidget
 
28
{
 
29
        Q_OBJECT
 
30
        public slots:
 
31
                void setFileSystem(const QString &fs);
 
32
                void setOptions(const QString &options);
 
33
        signals:
 
34
                void editFsOptionsSignal();
 
35
        private:
 
36
                QPushButton *editButton;
 
37
                QLabel *fileSystemLabel;
 
38
                QLabel *optionsLabel;
 
39
                int cellIndex;
 
40
 
 
41
                QString cellIdentifier;
 
42
                int cellRow;
 
43
        public:
 
44
                UsbManagerFsCellWidget(int index);
 
45
                ~UsbManagerFsCellWidget();
 
46
 
 
47
                int index() const;
 
48
 
 
49
                const QString &identifier() const;
 
50
                QString fileSystem() const;
 
51
                void setIdentifier(const QString &identifier);
 
52
                void setRow(int row);
 
53
                int row() const;
 
54
};
 
55
 
 
56
#endif