summaryrefslogtreecommitdiffstats
path: root/kexi/widget/kexiscrollview.h
blob: c313f2d7a57872e4e320b33a4d8797741eeca0eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/* This file is part of the KDE project
   Copyright (C) 2004 Cedric Pasteur <cedric.pasteur@free.fr>
   Copyright (C) 2004 Jaroslaw Staniek <js@iidea.pl>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef KEXISCROLLVIEW_H
#define KEXISCROLLVIEW_H

#include <qscrollview.h>
#include <qtimer.h>

class QColor;
class QFont;
class KexiRecordNavigator;

//! The scrollview which includes KexiDBForm
/*! It allows to resize its m_widget, following snapToGrid setting. 
 Its contents is resized so the widget can always be resized. */
class KEXIEXTWIDGETS_EXPORT KexiScrollView : public QScrollView
{
	Q_OBJECT

	public:
		KexiScrollView(QWidget *parent, bool preview);
		virtual ~KexiScrollView();

		void setWidget(QWidget *w);
		void setSnapToGrid(bool enable, int gridSize=10);

		void setResizingEnabled(bool enabled) { m_enableResizing = enabled; }
		void setRecordNavigatorVisible(bool visible);

		void setOuterAreaIndicatorVisible(bool visible)  { m_outerAreaVisible = visible; }

		void refreshContentsSizeLater(bool horizontal, bool vertical);
		void updateNavPanelGeometry();

		KexiRecordNavigator* recordNavigator() const;

		inline bool preview() const { return m_preview; }

	public slots:
		/*! Make sure there is a 300px margin around the form contents to allow resizing. */
		virtual void refreshContentsSize();

	signals:
		void outerAreaClicked();
		void resizingStarted();
		void resizingEnded();

	protected:
		virtual void contentsMousePressEvent(QMouseEvent * ev);
		virtual void contentsMouseReleaseEvent(QMouseEvent * ev);
		virtual void contentsMouseMoveEvent(QMouseEvent * ev);
		virtual void drawContents( QPainter * p, int clipx, int clipy, int clipw, int cliph );
		virtual void leaveEvent( QEvent *e );
		virtual void setHBarGeometry( QScrollBar & hbar, int x, int y, int w, int h );
		void setupPixmapBuffer(QPixmap& pixmap, const QString& text, int lines);

		bool m_resizing;
		bool m_enableResizing;
		QWidget *m_widget;

		int m_gridSize;
		QFont m_helpFont;
		QColor m_helpColor;
		QTimer m_delayedResize;
		//! for refreshContentsSizeLater()
		QScrollView::ScrollBarMode m_vsmode, m_hsmode;
		bool m_snapToGrid : 1;
		bool m_preview : 1;
		bool m_smodeSet : 1;
		bool m_outerAreaVisible : 1;
		KexiRecordNavigator* m_scrollViewNavPanel;
};

#endif