1 /************************************************************************
3 * Copyright 2010 Jakob Leben (jakob.leben@gmail.com)
5 * This file is part of SuperCollider Qt GUI.
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 ************************************************************************/
22 #ifndef QC_SCROLL_AREA_H
23 #define QC_SCROLL_AREA_H
26 #include "../QcHelper.h"
28 #include <QScrollArea>
32 class QcScrollWidget
: public QcCanvas
36 QcScrollWidget( QWidget
*parent
= 0 );
37 QSize
sizeHint() const;
39 virtual bool event ( QEvent
* );
40 virtual bool eventFilter ( QObject
*, QEvent
* );
43 class QcScrollArea
: public QScrollArea
, public QcHelper
46 Q_PROPERTY( bool hasBorder READ dummyBool WRITE setHasBorder
);
47 Q_PROPERTY( QRectF innerBounds READ innerBounds
);
48 Q_PROPERTY( QPointF visibleOrigin READ visibleOrigin WRITE setVisibleOrigin
);
51 Q_INVOKABLE
void setWidget( QObjectProxy
* );
52 Q_INVOKABLE
void addChild( QWidget
* w
);
53 void setHasBorder( bool b
);
54 QRectF
innerBounds() const;
55 QPointF
visibleOrigin() const;
56 void setVisibleOrigin( const QPointF
& );
57 QSize
sizeHint() const { return QSize( 300,200 ); }
58 QSize
minimumSizeHint() const { return QSize( 50, 50 ); }
61 #endif //QC_SCROLL_AREA_H