~ubuntu-branches/ubuntu/trusty/fritzing/trusty-proposed

« back to all changes in this revision

Viewing changes to src/itemselection/resizablerectitem.h

  • Committer: Package Import Robot
  • Author(s): Enrique Hernández Bello
  • Date: 2012-11-11 21:38:56 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20121111213856-0825ywdrtdcshl91
Tags: 0.7.10b-1
* New upstream version. Closes: #661495, #692998
* Removed useless patches.
* Removed SetupAPI.lib from sourceless files.
* Skip dfsg tarball creation if there are no sourceless files.
* Added libqt4-sql-sqlite to dependencies. Thanks to Tom Hummel <tom@bluespice.org>.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*******************************************************************
2
 
 
3
 
Part of the Fritzing project - http://fritzing.org
4
 
Copyright (c) 2007-2009 Fachhochschule Potsdam - http://fh-potsdam.de
5
 
 
6
 
Fritzing is free software: you can redistribute it and/or modify
7
 
it under the terms of the GNU General Public License as published by
8
 
the Free Software Foundation, either version 3 of the License, or
9
 
(at your option) any later version.
10
 
 
11
 
Fritzing is distributed in the hope that it will be useful,
12
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
GNU General Public License for more details.
15
 
 
16
 
You should have received a copy of the GNU General Public License
17
 
along with Fritzing.  If not, see <http://www.gnu.org/licenses/>.
18
 
 
19
 
********************************************************************
20
 
 
21
 
$Revision: 3849 $:
22
 
$Author: cohen@irascible.com $:
23
 
$Date: 2009-12-10 12:50:56 +0100 (Thu, 10 Dec 2009) $
24
 
 
25
 
********************************************************************/
26
 
 
27
 
#ifndef RESIZABLERECTITEM_H_
28
 
#define RESIZABLERECTITEM_H_
29
 
 
30
 
#include <QGraphicsRectItem>
31
 
 
32
 
class ConnectorRectangle;
33
 
 
34
 
class ResizableRectItem {
35
 
friend class ConnectorRectangle;
36
 
public:
37
 
        ResizableRectItem();
38
 
        virtual ~ResizableRectItem() {}
39
 
 
40
 
        virtual qreal minWidth() = 0;
41
 
        virtual qreal minHeight() = 0;
42
 
        virtual void resizeRect(qreal x, qreal y, qreal width, qreal height) = 0;
43
 
        virtual void doPrepareGeometryChange() = 0;
44
 
 
45
 
        void setResizable(bool resizable);
46
 
        bool isResizable();
47
 
 
48
 
protected:
49
 
        ConnectorRectangle *m_handlers;
50
 
        bool m_resizable;
51
 
};
52
 
 
53
 
#endif /* RESIZABLERECTITEM_H_ */