You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
231 lines
6.8 KiB
231 lines
6.8 KiB
13 years ago
|
// This is the SIP interface definition for TQScrollView.
|
||
13 years ago
|
//
|
||
|
// Copyright (c) 2007
|
||
|
// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
|
||
|
//
|
||
13 years ago
|
// This file is part of PyTQt.
|
||
13 years ago
|
//
|
||
13 years ago
|
// This copy of PyTQt is free software; you can redistribute it and/or modify it
|
||
13 years ago
|
// 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.
|
||
|
//
|
||
13 years ago
|
// PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY
|
||
13 years ago
|
// 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
|
||
13 years ago
|
// PyTQt; see the file LICENSE. If not, write to the Free Software Foundation,
|
||
13 years ago
|
// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
|
|
||
|
|
||
|
%ExportedDoc
|
||
13 years ago
|
<Sect2><Title>TQScrollView</Title>
|
||
13 years ago
|
<FuncSynopsis>
|
||
|
<FuncDef>void <Function>contentsToViewport</Function></FuncDef>
|
||
|
<ParamDef>int <Parameter>x</Parameter></ParamDef>
|
||
|
<ParamDef>int <Parameter>y</Parameter></ParamDef>
|
||
|
<ParamDef>int &<Parameter>vx</Parameter></ParamDef>
|
||
|
<ParamDef>int &<Parameter>vy</Parameter></ParamDef>
|
||
|
</FuncSynopsis>
|
||
|
<Para>
|
||
|
This takes the <Literal>x</Literal> and <Literal>y</Literal> parameters and
|
||
|
returns a tuple containing the <Literal>vx</Literal> and <Literal>vy</Literal>
|
||
13 years ago
|
values. (TQt v2+)
|
||
13 years ago
|
</Para>
|
||
|
|
||
|
<FuncSynopsis>
|
||
|
<FuncDef>void <Function>viewportToContents</Function></FuncDef>
|
||
|
<ParamDef>int <Parameter>vx</Parameter></ParamDef>
|
||
|
<ParamDef>int <Parameter>vy</Parameter></ParamDef>
|
||
|
<ParamDef>int &<Parameter>x</Parameter></ParamDef>
|
||
|
<ParamDef>int &<Parameter>y</Parameter></ParamDef>
|
||
|
</FuncSynopsis>
|
||
|
<Para>
|
||
|
This takes the <Literal>vx</Literal> and <Literal>vy</Literal> parameters and
|
||
|
returns a tuple containing the <Literal>x</Literal> and <Literal>y</Literal>
|
||
13 years ago
|
values. (TQt v2+)
|
||
13 years ago
|
</Para>
|
||
|
</Sect2>
|
||
|
%End
|
||
|
|
||
|
|
||
13 years ago
|
class TQScrollView : TQFrame
|
||
13 years ago
|
{
|
||
|
%TypeHeaderCode
|
||
13 years ago
|
#include <tqscrollview.h>
|
||
13 years ago
|
%End
|
||
|
|
||
|
public:
|
||
13 years ago
|
TQScrollView(TQWidget * /TransferThis/ = 0,const char * = 0,WFlags = 0);
|
||
13 years ago
|
|
||
|
enum ResizePolicy {
|
||
|
Default,
|
||
|
Manual,
|
||
|
AutoOne,
|
||
|
AutoOneFit,
|
||
|
};
|
||
|
|
||
|
virtual void setResizePolicy(ResizePolicy);
|
||
|
ResizePolicy resizePolicy() const;
|
||
|
|
||
13 years ago
|
void styleChange(TQStyle &);
|
||
13 years ago
|
// The child was reparented when it was added, and it stays that way,
|
||
|
// so we don't transfer it back here.
|
||
13 years ago
|
void removeChild(TQWidget *);
|
||
|
virtual void addChild(TQWidget * /Transfer/,int = 0,int = 0);
|
||
|
virtual void moveChild(TQWidget *,int,int);
|
||
|
int childX(TQWidget *);
|
||
|
int childY(TQWidget *);
|
||
13 years ago
|
|
||
|
enum ScrollBarMode {
|
||
|
Auto,
|
||
|
AlwaysOff,
|
||
|
AlwaysOn
|
||
|
};
|
||
|
|
||
|
ScrollBarMode vScrollBarMode() const;
|
||
|
virtual void setVScrollBarMode(ScrollBarMode);
|
||
|
|
||
|
ScrollBarMode hScrollBarMode() const;
|
||
|
virtual void setHScrollBarMode(ScrollBarMode);
|
||
|
|
||
13 years ago
|
TQWidget *cornerWidget() const;
|
||
|
virtual void setCornerWidget(TQWidget * /Transfer/);
|
||
13 years ago
|
|
||
13 years ago
|
TQScrollBar *horizontalScrollBar() const;
|
||
|
TQScrollBar *verticalScrollBar() const;
|
||
|
TQWidget *viewport() const;
|
||
|
TQWidget *clipper() const;
|
||
13 years ago
|
|
||
|
int visibleWidth() const;
|
||
|
int visibleHeight() const;
|
||
|
|
||
|
int contentsWidth() const;
|
||
|
int contentsHeight() const;
|
||
|
int contentsX() const;
|
||
|
int contentsY() const;
|
||
|
|
||
|
void resize(int,int);
|
||
13 years ago
|
void resize(const TQSize &);
|
||
13 years ago
|
void show();
|
||
|
|
||
|
void updateContents(int,int,int,int);
|
||
13 years ago
|
void updateContents(const TQRect &);
|
||
13 years ago
|
void updateContents();
|
||
|
void repaintContents(int,int,int,int,bool = 1);
|
||
13 years ago
|
void repaintContents(const TQRect &,bool = 1);
|
||
13 years ago
|
void repaintContents(bool = 1);
|
||
|
|
||
13 years ago
|
// Note that this wasn't actually const until TQt v3.0.0.
|
||
13 years ago
|
void contentsToViewport(int,int,int &,int &) const;
|
||
|
|
||
13 years ago
|
// Note that this wasn't actually const until TQt v3.0.0.
|
||
13 years ago
|
void viewportToContents(int,int,int &,int &) const;
|
||
|
|
||
13 years ago
|
TQPoint contentsToViewport(const TQPoint &) const;
|
||
|
TQPoint viewportToContents(const TQPoint &) const;
|
||
13 years ago
|
void enableClipper(bool);
|
||
|
|
||
|
void setStaticBackground(bool);
|
||
|
bool hasStaticBackground() const;
|
||
|
|
||
13 years ago
|
TQSize viewportSize(int,int) const;
|
||
|
TQSize sizeHint() const;
|
||
|
TQSize minimumSizeHint() const;
|
||
13 years ago
|
|
||
13 years ago
|
void removeChild(TQObject * /TransferBack/);
|
||
13 years ago
|
|
||
|
bool isHorizontalSliderPressed();
|
||
|
bool isVerticalSliderPressed();
|
||
|
|
||
13 years ago
|
%If (TQt_DRAGANDDROP)
|
||
13 years ago
|
virtual void setDragAutoScroll(bool);
|
||
|
bool dragAutoScroll() const;
|
||
|
%End
|
||
|
|
||
|
signals:
|
||
|
void contentsMoving(int,int);
|
||
|
void horizontalSliderPressed();
|
||
|
void horizontalSliderReleased();
|
||
|
void verticalSliderPressed();
|
||
|
void verticalSliderReleased();
|
||
|
|
||
|
public slots:
|
||
|
virtual void resizeContents(int,int);
|
||
|
void scrollBy(int,int);
|
||
|
virtual void setContentsPos(int,int);
|
||
|
void ensureVisible(int,int);
|
||
|
void ensureVisible(int,int,int,int);
|
||
|
void center(int,int);
|
||
|
void center(int,int,float,float);
|
||
|
|
||
|
void updateScrollBars();
|
||
|
void setEnabled(bool);
|
||
|
|
||
|
protected:
|
||
13 years ago
|
virtual void drawContents(TQPainter *,int,int,int,int);
|
||
|
virtual void drawContentsOffset(TQPainter *,int,int,int,int,int,int);
|
||
13 years ago
|
|
||
13 years ago
|
virtual void contentsMousePressEvent(TQMouseEvent *);
|
||
|
virtual void contentsMouseReleaseEvent(TQMouseEvent *);
|
||
|
virtual void contentsMouseDoubleClickEvent(TQMouseEvent *);
|
||
|
virtual void contentsMouseMoveEvent(TQMouseEvent *);
|
||
|
%If (TQt_DRAGANDDROP)
|
||
|
virtual void contentsDragEnterEvent(TQDragEnterEvent *);
|
||
|
virtual void contentsDragMoveEvent(TQDragMoveEvent *);
|
||
|
virtual void contentsDragLeaveEvent(TQDragLeaveEvent *);
|
||
|
virtual void contentsDropEvent(TQDropEvent *);
|
||
13 years ago
|
%End
|
||
13 years ago
|
virtual void contentsWheelEvent(TQWheelEvent *);
|
||
|
virtual void contentsContextMenuEvent(TQContextMenuEvent *);
|
||
13 years ago
|
|
||
13 years ago
|
virtual void viewportPaintEvent(TQPaintEvent *);
|
||
|
virtual void viewportResizeEvent(TQResizeEvent *);
|
||
|
virtual void viewportMousePressEvent(TQMouseEvent *);
|
||
|
virtual void viewportMouseReleaseEvent(TQMouseEvent *);
|
||
|
virtual void viewportMouseDoubleClickEvent(TQMouseEvent *);
|
||
|
virtual void viewportMouseMoveEvent(TQMouseEvent *);
|
||
|
%If (TQt_DRAGANDDROP)
|
||
|
virtual void viewportDragEnterEvent(TQDragEnterEvent *);
|
||
|
virtual void viewportDragMoveEvent(TQDragMoveEvent *);
|
||
|
virtual void viewportDragLeaveEvent(TQDragLeaveEvent *);
|
||
|
virtual void viewportDropEvent(TQDropEvent *);
|
||
13 years ago
|
%End
|
||
13 years ago
|
virtual void viewportWheelEvent(TQWheelEvent *);
|
||
|
virtual void viewportContextMenuEvent(TQContextMenuEvent *);
|
||
13 years ago
|
|
||
|
void frameChanged();
|
||
|
|
||
|
virtual void setMargins(int,int,int,int);
|
||
|
int leftMargin() const;
|
||
|
int topMargin() const;
|
||
|
int rightMargin() const;
|
||
|
int bottomMargin() const;
|
||
|
|
||
|
bool focusNextPrevChild(bool);
|
||
|
|
||
13 years ago
|
virtual void setHBarGeometry(TQScrollBar &,int,int,int,int);
|
||
|
virtual void setVBarGeometry(TQScrollBar &,int,int,int,int);
|
||
13 years ago
|
|
||
13 years ago
|
void resizeEvent(TQResizeEvent *);
|
||
|
void mousePressEvent(TQMouseEvent *);
|
||
|
void mouseReleaseEvent(TQMouseEvent *);
|
||
|
void mouseDoubleClickEvent(TQMouseEvent *);
|
||
|
void mouseMoveEvent(TQMouseEvent *);
|
||
|
void wheelEvent(TQWheelEvent *);
|
||
|
void contextMenuEvent(TQContextMenuEvent *);
|
||
|
bool eventFilter(TQObject *,TQEvent *);
|
||
13 years ago
|
|
||
13 years ago
|
void setCachedSizeHint(const TQSize &) const;
|
||
|
TQSize cachedSizeHint() const;
|
||
|
void fontChange(const TQFont &);
|
||
13 years ago
|
|
||
|
private:
|
||
13 years ago
|
TQScrollView(const TQScrollView &);
|
||
13 years ago
|
|
||
|
public:
|
||
|
void disableSizeHintCaching();
|
||
|
};
|