summaryrefslogtreecommitdiffstats
path: root/sip/qt/qdial.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/qt/qdial.sip')
-rw-r--r--sip/qt/qdial.sip56
1 files changed, 28 insertions, 28 deletions
diff --git a/sip/qt/qdial.sip b/sip/qt/qdial.sip
index 9587e8c..cbf80e1 100644
--- a/sip/qt/qdial.sip
+++ b/sip/qt/qdial.sip
@@ -1,51 +1,51 @@
-// This is the SIP interface definition for QDial.
+// This is the SIP interface definition for TQDial.
//
// Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
//
-// This file is part of PyQt.
+// This file is part of PyTQt.
//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
+// This copy of PyTQt is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 2, or (at your option) any later
// version.
//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
+// PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
+// PyTQt; see the file LICENSE. If not, write to the Free Software Foundation,
// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
%ExportedDoc
-<Sect2><Title>QDial (Qt v2.2+)</Title>
+<Sect2><Title>TQDial (TQt v2.2+)</Title>
<Para>
-<Literal>QDial</Literal> is fully implemented.
+<Literal>TQDial</Literal> is fully implemented.
</Para>
</Sect2>
%End
-%If (Qt_2_2_0 -)
-%If (Qt_DIAL)
+%If (TQt_2_2_0 -)
+%If (TQt_DIAL)
-class QDial : QWidget, QRangeControl
+class TQDial : TQWidget, TQRangeControl
{
%TypeHeaderCode
#include <qdial.h>
%End
public:
-%If (- Qt_3_0_0)
- QDial(QWidget * /TransferThis/ = 0,const char * = 0);
+%If (- TQt_3_0_0)
+ TQDial(TQWidget * /TransferThis/ = 0,const char * = 0);
%End
-%If (Qt_3_0_0 -)
- QDial(QWidget * /TransferThis/ = 0,const char * = 0,WFlags = 0);
+%If (TQt_3_0_0 -)
+ TQDial(TQWidget * /TransferThis/ = 0,const char * = 0,WFlags = 0);
%End
- QDial(int,int,int,int,QWidget * /TransferThis/ = 0,const char * = 0);
+ TQDial(int,int,int,int,TQWidget * /TransferThis/ = 0,const char * = 0);
bool tracking() const;
@@ -58,8 +58,8 @@ public:
bool notchesVisible() const;
- QSize sizeHint() const;
- QSize minimumSizeHint() const;
+ TQSize sizeHint() const;
+ TQSize minimumSizeHint() const;
int minValue() const;
int maxValue() const;
@@ -88,24 +88,24 @@ signals:
void dialReleased();
protected:
- void resizeEvent(QResizeEvent *);
- void paintEvent(QPaintEvent *);
+ void resizeEvent(TQResizeEvent *);
+ void paintEvent(TQPaintEvent *);
- void keyPressEvent(QKeyEvent *);
- void mousePressEvent(QMouseEvent *);
- void mouseReleaseEvent(QMouseEvent *);
- void mouseMoveEvent(QMouseEvent *);
- void wheelEvent(QWheelEvent *);
- void focusInEvent(QFocusEvent *);
- void focusOutEvent(QFocusEvent *);
+ void keyPressEvent(TQKeyEvent *);
+ void mousePressEvent(TQMouseEvent *);
+ void mouseReleaseEvent(TQMouseEvent *);
+ void mouseMoveEvent(TQMouseEvent *);
+ void wheelEvent(TQWheelEvent *);
+ void focusInEvent(TQFocusEvent *);
+ void focusOutEvent(TQFocusEvent *);
void valueChange();
void rangeChange();
- virtual void repaintScreen(const QRect * = 0);
+ virtual void repaintScreen(const TQRect * = 0);
private:
- QDial(const QDial &);
+ TQDial(const TQDial &);
};
%End