summaryrefslogtreecommitdiffstats
path: root/kdgantt/qlayoutengine_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdgantt/qlayoutengine_p.h')
-rw-r--r--kdgantt/qlayoutengine_p.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/kdgantt/qlayoutengine_p.h b/kdgantt/qlayoutengine_p.h
index 2681ff73..a071dae3 100644
--- a/kdgantt/qlayoutengine_p.h
+++ b/kdgantt/qlayoutengine_p.h
@@ -1,4 +1,4 @@
-// THIS IS A COPY OF THE FILE FOUND IN $QTDIR/src/kernel. Needed to modify qsplitter
+// THIS IS A COPY OF THE FILE FOUND IN $TQTDIR/src/kernel. Needed to modify qsplitter
/****************************************************************************
** $Id$
@@ -9,27 +9,27 @@
**
** Copyright (C) 1998-99 by Trolltech AS. All rights reserved.
**
-** This file is part of the kernel module of the Qt GUI Toolkit.
+** This file is part of the kernel module of the TQt GUI Toolkit.
**
** This file may be distributed under the terms of the Q Public License
** as defined by Trolltech AS of Norway and appearing in the file
-** LICENSE.QPL included in the packaging of this file.
+** LICENSE.TQPL included in the packaging of this file.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
-** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
-** licenses may use this file in accordance with the Qt Commercial License
+** Licensees holding valid TQt Enterprise Edition or TQt Professional Edition
+** licenses may use this file in accordance with the TQt Commercial License
** Agreement provided with the Software.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
-** information about Qt Commercial License Agreements.
-** See http://www.trolltech.com/qpl/ for QPL licensing information.
+** information about TQt Commercial License Agreements.
+** See http://www.trolltech.com/qpl/ for TQPL licensing information.
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
@@ -37,15 +37,15 @@
**
**********************************************************************/
-#ifndef QLAYOUTENGINE_P_H
-#define QLAYOUTENGINE_P_H
+#ifndef TQLAYOUTENGINE_P_H
+#define TQLAYOUTENGINE_P_H
//
// W A R N I N G
// -------------
//
-// This file is not part of the Qt API. It exists for the convenience
+// This file is not part of the TQt API. It exists for the convenience
// of qtqlayout.cpp, qtqlayoutengine.cpp, qmainwindow.cpp and qsplitter.cpp.
// This header file may change from version to version without notice,
// or even be removed.
@@ -55,22 +55,22 @@
//
-#ifndef QT_H
+#ifndef TQT_H
#include "tqabstractqlayout.h"
-#endif // QT_H
+#endif // TQT_H
-#ifndef QT_NO_LAYOUT
+#ifndef TQT_NO_LAYOUT
struct QLayoutStruct
{
void initParameters() { tqminimumSize = tqsizeHint = 0;
- tqmaximumSize = QWIDGETSIZE_MAX; expansive = FALSE; empty = TRUE; }
+ tqmaximumSize = TQWIDGETSIZE_MAX; expansive = FALSE; empty = TRUE; }
void init() { stretch = 0; initParameters(); }
//permanent storage:
int stretch;
//parameters:
- QCOORD tqsizeHint;
- QCOORD tqmaximumSize;
- QCOORD tqminimumSize;
+ TQCOORD tqsizeHint;
+ TQCOORD tqmaximumSize;
+ TQCOORD tqminimumSize;
bool expansive;
bool empty;
//temporary storage:
@@ -92,20 +92,20 @@ void qGeomCalc( TQMemArray<QLayoutStruct> &chain, int start, int count, int pos,
Expansive boxes win over non-expansive boxes.
*/
-static inline void qMaxExpCalc( QCOORD & max, bool &exp,
- QCOORD boxmax, bool boxexp )
+static inline void qMaxExpCalc( TQCOORD & max, bool &exp,
+ TQCOORD boxmax, bool boxexp )
{
if ( exp ) {
if ( boxexp )
- max = QMAX( max, boxmax );
+ max = TQMAX( max, boxmax );
} else {
if ( boxexp )
max = boxmax;
else
- max = QMIN( max, boxmax );
+ max = TQMIN( max, boxmax );
}
exp = exp || boxexp;
}
-#endif //QT_NO_LAYOUT
+#endif //TQT_NO_LAYOUT
#endif