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.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/kdgantt/qlayoutengine_p.h b/kdgantt/qlayoutengine_p.h
index 3cfe7af37..342480627 100644
--- a/kdgantt/qlayoutengine_p.h
+++ b/kdgantt/qlayoutengine_p.h
@@ -1,7 +1,7 @@
-// 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: qlayoutengine_p.h 523435 2006-03-28 08:01:15Z mlaurent $
+** $Id: qtqlayoutengine_p.h 523435 2006-03-28 08:01:15Z mlaurent $
**
** Internal header file.
**
@@ -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,16 +37,16 @@
**
**********************************************************************/
-#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
-// of qlayout.cpp, qlayoutengine.cpp, qmainwindow.cpp and qsplitter.cpp.
+// 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
-#include "qabstractlayout.h"
-#endif // QT_H
+#ifndef TQT_H
+#include "tqabstracttqlayout.h"
+#endif // TQT_H
-#ifndef QT_NO_LAYOUT
+#ifndef TQT_NO_LAYOUT
struct QLayoutStruct
{
- void initParameters() { minimumSize = sizeHint = 0;
- maximumSize = QWIDGETSIZE_MAX; expansive = FALSE; empty = TRUE; }
+ void initParameters() { tqminimumSize = tqsizeHint = 0;
+ tqmaximumSize = TQWIDGETSIZE_MAX; expansive = FALSE; empty = TRUE; }
void init() { stretch = 0; initParameters(); }
//permanent storage:
int stretch;
//parameters:
- QCOORD sizeHint;
- QCOORD maximumSize;
- QCOORD minimumSize;
+ TQCOORD tqsizeHint;
+ TQCOORD tqmaximumSize;
+ TQCOORD tqminimumSize;
bool expansive;
bool empty;
//temporary storage:
@@ -81,7 +81,7 @@ struct QLayoutStruct
};
-void qGeomCalc( QMemArray<QLayoutStruct> &chain, int start, int count, int pos,
+void qGeomCalc( TQMemArray<QLayoutStruct> &chain, int start, int count, int pos,
int space, int spacer );
@@ -92,20 +92,20 @@ void qGeomCalc( QMemArray<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