~ubuntu-branches/ubuntu/karmic/partitionmanager/karmic

« back to all changes in this revision

Viewing changes to src/gui/partpropswidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold, Christian Mangold, Jonathan Thomas
  • Date: 2009-06-04 20:19:38 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090604201938-lqvh7rjvoixc9w1u
Tags: 1.0.0~beta3-0ubuntu1
[ Christian Mangold ]
* New upstream beta release (LP: #383702)
* debian/rules:
  - Remove /usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk
  - Use /usr/share/cdbs/1/rules/debhelper.mk
  - Use /usr/share/pkg-kde-tools/makefiles/1/cdbs/kde.mk

[ Jonathan Thomas ]
* Bump debhelper build-depend version to 7 since we use pkg-kde-tools (bumped
  compat too)
* partitionmanager depends on ${misc:Depends}, to satisfy lintain

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/***************************************************************************
2
 
 *   Copyright (C) 2008 by Volker Lanz <vl@fidra.de>                       *
 
2
 *   Copyright (C) 2008,2009 by Volker Lanz <vl@fidra.de>                  *
3
3
 *                                                                         *
4
4
 *   This program is free software; you can redistribute it and/or modify  *
5
5
 *   it under the terms of the GNU General Public License as published by  *
37
37
                QLabel& mountPoint() { Q_ASSERT(m_LabelMountPoint); return *m_LabelMountPoint; }
38
38
                QLabel& role() { Q_ASSERT(m_LabelRole); return *m_LabelRole; }
39
39
                QLabel& capacity() { Q_ASSERT(m_LabelCapacity); return *m_LabelCapacity; }
40
 
                
 
40
 
41
41
                QLabel& textAvailable() { Q_ASSERT(m_LabelTextAvailable); return *m_LabelTextAvailable; }
42
42
                QLabel& available() { Q_ASSERT(m_LabelAvailable); return *m_LabelAvailable; }
43
43
 
55
55
                QLabel& numSectors() { Q_ASSERT(m_LabelNumSectors); return *m_LabelNumSectors; }
56
56
                QLabel& status() { Q_ASSERT(m_LabelStatus); return *m_LabelStatus; }
57
57
 
 
58
                QLabel& textUuid() { Q_ASSERT(m_LabelTextUuid); return *m_LabelTextUuid; }
 
59
                QLabel& uuid() { Q_ASSERT(m_LabelUuid); return *m_LabelUuid; }
 
60
 
58
61
                QLabel& textLabel() { Q_ASSERT(m_LabelTextLabel); return *m_LabelTextLabel; }
59
62
                KLineEdit& label() { Q_ASSERT(m_EditLabel); return *m_EditLabel; }
60
63
                const KLineEdit& label() const { Q_ASSERT(m_EditLabel); return *m_EditLabel; }
71
74
                void showCheckRecreate(bool b) { checkRecreate().setVisible(b); }
72
75
                void showListFlags(bool b) { listFlags().setVisible(b); textFlags().setVisible(b); lineFlags().setVisible(b); }
73
76
                void showLabel(bool b) { textLabel().setVisible(b); label().setVisible(b); }
 
77
                void showUuid(bool b) { textUuid().setVisible(b); uuid().setVisible(b); }
74
78
};
75
79
 
76
80
#endif