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

« back to all changes in this revision

Viewing changes to sources/gui/diskwidget.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 DISKWIDGET_H
 
20
#define DISKWIDGET_H
 
21
 
 
22
#include <QtGui/QScrollArea>
 
23
#include <QtCore/QList>
 
24
 
 
25
class DiskDevice;
 
26
class QLabel;
 
27
class QGridLayout;
 
28
 
 
29
class DiskWidget : public QScrollArea
 
30
{
 
31
        Q_OBJECT
 
32
        private:
 
33
                QList<DiskDevice *> volumesList;
 
34
                QList<QLabel *> labels;
 
35
                QGridLayout *mainLayout;
 
36
                int currentLayoutRow;
 
37
        public:
 
38
                DiskWidget(DiskDevice *device);
 
39
                ~DiskWidget();
 
40
 
 
41
                void addVolume(DiskDevice *volumeDevice);
 
42
};
 
43
 
 
44
#endif