OpenStructure
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
gradient_level_color_op.hh
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 // This file is part of the OpenStructure project <www.openstructure.org>
3 //
4 // Copyright (C) 2008-2011 by the OpenStructure authors
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License as published by the Free
8 // Software Foundation; either version 3.0 of the License, or (at your option)
9 // any later version.
10 // This library is distributed in the hope that it will be useful, but WITHOUT
11 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13 // details.
14 //
15 // You should have received a copy of the GNU Lesser General Public License
16 // along with this library; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 //------------------------------------------------------------------------------
19 #ifndef OST_COLOR_OPS_GRADIENT_LEVEL_COLOR_OP_HH
20 #define OST_COLOR_OPS_GRADIENT_LEVEL_COLOR_OP_HH
21 
22 #include <ost/mol/property_id.hh>
23 
24 
25 
26 #include <ost/info/info.hh>
27 #include <ost/info/info_fw.hh>
28 
29 #include <ost/gfx/gradient.hh>
31 
32 /*
33  Author: Stefan Scheuber
34 */
35 
36 namespace ost { namespace gfx {
37 
39 public:
41  GradientLevelColorOp(const String& selection, const String& property, const gfx::Gradient& gradient,
42  float minv, float maxv,
44 
45  GradientLevelColorOp(const String& selection, int mask, const String& property, const gfx::Gradient& gradient,
46  float minv, float maxv,
48 
49  GradientLevelColorOp(const String& selection, const String& property, const gfx::Gradient& gradient,
51 
52  GradientLevelColorOp(const String& selection, int mask, const String& property, const gfx::Gradient& gradient,
54 
55  GradientLevelColorOp(const mol::QueryViewWrapper& query_view, const String& property, const gfx::Gradient& gradient,
56  float minv, float maxv,
58 
59  GradientLevelColorOp(const mol::QueryViewWrapper& query_view, int mask, const String& property, const gfx::Gradient& gradient,
60  float minv, float maxv,
62 
63  GradientLevelColorOp(const mol::QueryViewWrapper& query_view, const String& property, const gfx::Gradient& gradient,
65 
66  GradientLevelColorOp(const mol::QueryViewWrapper& query_view, int mask, const String& property, const gfx::Gradient& gradient,
68 
69  virtual bool CanApplyTo(const GfxObjP& obj) const;
70  virtual void ApplyTo(GfxObjP& obj) const;
71 
72  virtual void SetLevel(mol::Prop::Level level);
73  virtual mol::Prop::Level GetLevel() const;
74 
75  virtual void ToInfo(info::InfoGroup& group) const;
76  static gfx::GradientLevelColorOp FromInfo(info::InfoGroup& group);
77 
78 private:
79  void Init();
80  mol::Prop::Level level_;
81 };
82 
83 }}
84 
85 #endif
86