~ubuntu-branches/ubuntu/vivid/regina-normal/vivid-proposed

« back to all changes in this revision

Viewing changes to kdeui/src/common/qtcompat.h

  • Committer: Package Import Robot
  • Author(s): Ben Burton
  • Date: 2011-09-10 07:17:25 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: package-import@ubuntu.com-20110910071725-97n90tywdq60w2cr
Tags: 4.90-1
* New upstream release!
* The user interface has been ported from KDE3 to KDE4 (closes: #556318).
  Re-enabled the GUI as a result.
* The build system has been ported from autotools to cmake.
* The new upstream release builds fine on amd64 (closes: #624882).
* Moved the users' handbook into regina-normal-doc.
* Upgraded several suggests/recommends.  Upgraded regina-normal-mpi to
  depend on mpi-default-bin, and regina-normal to depend on both graphviz
  and regina-normal-doc (which the GUI expends to be present).  Upgraded
  regina-normal to recommend gap.
* Bumped standards-version to 3.9.2.0 (no changes required).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
/**************************************************************************
3
 
 *                                                                        *
4
 
 *  Regina - A Normal Surface Theory Calculator                           *
5
 
 *  KDE User Interface                                                    *
6
 
 *                                                                        *
7
 
 *  Copyright (c) 1999-2009, Ben Burton                                   *
8
 
 *  For further details contact Ben Burton (bab@debian.org).              *
9
 
 *                                                                        *
10
 
 *  This program is free software; you can redistribute it and/or         *
11
 
 *  modify it under the terms of the GNU General Public License as        *
12
 
 *  published by the Free Software Foundation; either version 2 of the    *
13
 
 *  License, or (at your option) any later version.                       *
14
 
 *                                                                        *
15
 
 *  This program is distributed in the hope that it will be useful, but   *
16
 
 *  WITHOUT ANY WARRANTY; without even the implied warranty of            *
17
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
18
 
 *  General Public License for more details.                              *
19
 
 *                                                                        *
20
 
 *  You should have received a copy of the GNU General Public             *
21
 
 *  License along with this program; if not, write to the Free            *
22
 
 *  Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,       *
23
 
 *  MA 02110-1301, USA.                                                   *
24
 
 *                                                                        *
25
 
 **************************************************************************/
26
 
 
27
 
/* end stub */
28
 
 
29
 
/*! \file qtcompat.h
30
 
 *  \brief Provides routines for maintaining compatibility with old
31
 
 *  versions of Qt.
32
 
 */
33
 
 
34
 
#ifndef __QTCOMPAT_H
35
 
#define __QTCOMPAT_H
36
 
 
37
 
class QListView;
38
 
 
39
 
/**
40
 
 * Contains routines for maintaining compatibility with old versions
41
 
 * of Qt.  Unless otherwise specified, these routines are copied
42
 
 * directly (or with minor modifications) from newer Qt distributions,
43
 
 * and are licensed under the GPL accordingly.
44
 
 */
45
 
namespace QtCompat {
46
 
 
47
 
    /**
48
 
     * A backport of QListView::adjustColumn(int).
49
 
     */
50
 
    void adjustColumn(QListView* view, int col);
51
 
 
52
 
}
53
 
 
54
 
#endif