All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
VerticalRulerItem.cpp
Go to the documentation of this file.
1 /* Copyright (C) 2001-2014 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file VerticalRulerItem.cpp
22 
23  \brief
24 
25  \ingroup layout
26 */
27 
28 
29 // TerraLib
30 #include "VerticalRulerItem.h"
31 #include "ItemController.h"
32 #include "Context.h"
33 #include "AbstractScene.h"
34 #include "ItemModelObservable.h"
35 #include "../../../color/RGBAColor.h"
36 #include "../../../../qt/widgets/Utils.h"
37 #include "../../../../geometry/Envelope.h"
38 #include "../../../../common/STLUtils.h"
39 
41  ObjectItem(controller, o)
42 {
43  m_printable = false;
44 }
45 
47 {
48 
49 }
50 
52 {
53  if(!m_model)
54  return;
55 
56  te::color::RGBAColor** rgba = context.getPixmap();
57 
58  if(!rgba)
59  return;
60 
61  Utils* utils = Context::getInstance()->getUtils();
62 
63  if(!utils)
64  return;
65 
66  te::gm::Envelope box = utils->viewportBox(m_model->getBox());
67 
68  if(!box.isValid())
69  return;
70 
71  QPixmap pixmap;
72  QImage* img = 0;
73 
74  if(rgba)
75  {
76  img = te::qt::widgets::GetImage(rgba, box.getWidth(), box.getHeight());
77  pixmap = QPixmap::fromImage(*img);
78  }
79 
80  te::common::Free(rgba, box.getHeight());
81  if(img)
82  delete img;
83 
84  setPixmap(pixmap);
85  update();
86 }
87 
double getWidth() const
It returns the envelope width.
Definition: Envelope.h:443
virtual void updateObserver(ContextItem context)
te::color::RGBAColor ** getPixmap()
Definition: ContextItem.cpp:82
void Free(std::vector< T * > *v)
This function can be applied to a pointer to a vector of pointers.
Definition: STLUtils.h:131
An Envelope defines a 2D rectangular region.
Definition: Envelope.h:51
Utils * getUtils()
Definition: Context.cpp:126
virtual te::gm::Envelope viewportBox(te::gm::Envelope box)
Definition: Utils.cpp:164
TEQTWIDGETSEXPORT QImage * GetImage(te::color::RGBAColor **img, int width, int height)
It creates a QImage from an RGBA color array.
Definition: Utils.cpp:63
VerticalRulerItem(ItemController *controller=0, Observable *o=0)
A helper class for 32-bit RGBA (Red-Green-Blue-Alpha channel) color.
Definition: RGBAColor.h:57
static Context * getInstance()
This function is called to create an instance of the class.
Definition: Context.cpp:46
double getHeight() const
It returns the envelope height.
Definition: Envelope.h:448
bool isValid() const
It tells if the rectangle is valid or not.
Definition: Envelope.h:438