LunaSysMgr
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pixmapjupocrefobject.h
Go to the documentation of this file.
1 /* @@@LICENSE
2 *
3 * Copyright (c) 2011-2012 Hewlett-Packard Development Company, L.P.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 * LICENSE@@@ */
18 
19 
20 
21 
22 #ifndef PIXMAPJUPOCREFOBJECT_H_
23 #define PIXMAPJUPOCREFOBJECT_H_
24 
25 #include "pixmapjupocrefobject.h"
26 #include "pixmapobject.h"
27 #include "pixmapjupocobject.h"
28 #include <QPointer>
29 
30 class PixmapJUPOCObject;
32 {
33  Q_OBJECT
34 
35 public:
36 
37  friend class PixmapJUPOCObject;
38 
39  virtual ~PixmapJUPOCRefObject();
40 
41  virtual bool valid() const;
42  virtual QSize size() const;
43  virtual int width() const;
44  virtual int height() const;
45  virtual QSizeF sizeF() const;
46  virtual quint64 sizeOf() const;
47  virtual bool isSquare() const;
48 
49  virtual QSize nativeSize() const;
50  virtual int nativeWidth() const;
51  virtual int nativeHeight() const;
52  virtual QSizeF nativeSizeF() const;
53 
54  virtual void fill(const QColor& c);
55  virtual void paint(QPainter * painter);
56  virtual void paint(QPainter * painter,const QPointF& targetOriginInPainterCS);
57  virtual void paint(QPainter * painter,const QRectF& targetRectInPainterCS);
58  virtual void paint(QPainter * painter,const QRect& targetRectInPainterCS,
59  const QRect& sourceRect);
60 
61 protected:
62 
63  PixmapJUPOCRefObject(PixmapJUPOCObject& rPmo,const QUuid& myUid,const QRect& sourceRect);
64 
65 private:
66 
68 
69 protected:
70 
72  QPointer<PixmapJUPOCObject> m_qp_refJupocPmo; //for potentially quicker access; it's the pmo whos uid is stored in m_refJupocPmoUid
74 };
75 
76 #endif /* PIXMAPJUPOCREFOBJECT_H_ */