~ubuntu-branches/ubuntu/oneiric/partitionmanager/oneiric

« back to all changes in this revision

Viewing changes to src/gui/partwidgetbase.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-01-23 17:57:36 UTC
  • Revision ID: james.westby@ubuntu.com-20090123175736-2ltrhgg3m55dokbm
Tags: upstream-1.0.0~beta1a
ImportĀ upstreamĀ versionĀ 1.0.0~beta1a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008 by Volker Lanz <vl@fidra.de>                       *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
 
18
 ***************************************************************************/
 
19
 
 
20
#if !defined(PARTWIDGETBASE__H)
 
21
 
 
22
#define PARTWIDGETBASE__H
 
23
 
 
24
#include "core/partitionnode.h"
 
25
 
 
26
#include <QList>
 
27
 
 
28
class Partition;
 
29
class PartWidget;
 
30
class QWidget;
 
31
 
 
32
/** @brief Base class for all widgets that need to position Partitions.
 
33
        @author vl@fidra.de
 
34
*/
 
35
class PartWidgetBase
 
36
{
 
37
        protected:
 
38
                PartWidgetBase() {}
 
39
 
 
40
        public:
 
41
                static qint32 borderWidth() { return m_BorderWidth; } /**< @return border width */
 
42
                static qint32 borderHeight() { return m_BorderHeight; } /**< @return border height */
 
43
                static qint32 spacing() { return m_Spacing; } /**< @return spacing between Partitions */
 
44
                static qint32 minWidth() { return m_MinWidth; } /**< @return minimum width for a Partition widget */
 
45
 
 
46
        protected:
 
47
                static void positionChildren(const QWidget* destWidget, const PartitionNode::Partitions& partitions, QList<PartWidget*>& widgets);
 
48
 
 
49
        private:
 
50
                static const qint32 m_Spacing;
 
51
                static const qint32 m_BorderWidth;
 
52
                static const qint32 m_BorderHeight;
 
53
                static const qint32 m_MinWidth;
 
54
};
 
55
 
 
56
#endif
 
57