~3v1n0/unity/overlay-border-scale

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/IconTextureSource.h

  • Committer: Daniel van Vugt
  • Date: 2012-03-14 06:24:18 UTC
  • mfrom: (2108 unity)
  • mto: This revision was merged to the branch mainline in revision 2146.
  • Revision ID: daniel.van.vugt@canonical.com-20120314062418-nprucpbr0m7qky5e
MergedĀ latestĀ lp:unity

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
 
2
/*
 
3
 * Copyright (C) 2011 Canonical Ltd
 
4
 *
 
5
 * This program is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License version 3 as
 
7
 * published by the Free Software Foundation.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 * Authored by: Jason Smith <jason.smith@canonical.com>
 
18
 *
 
19
 */
 
20
 
 
21
#ifndef ICONTEXTURESOURCE_H
 
22
#define ICONTEXTURESOURCE_H
 
23
 
 
24
#include <Nux/Nux.h>
 
25
#include <NuxCore/Property.h>
 
26
#include <NuxCore/Math/MathInc.h>
 
27
 
 
28
namespace unity
 
29
{
 
30
namespace ui
 
31
{
 
32
 
 
33
class IconTextureSource : public nux::InitiallyUnownedObject
 
34
{
 
35
  NUX_DECLARE_OBJECT_TYPE(IconTextureSource, nux::InitiallyUnownedObject);
 
36
public:
 
37
  typedef nux::ObjectPtr<IconTextureSource> Ptr;
 
38
 
 
39
  enum TransformIndex
 
40
  {
 
41
    TRANSFORM_TILE,
 
42
    TRANSFORM_IMAGE,
 
43
    TRANSFORM_HIT_AREA,
 
44
    TRANSFORM_GLOW,
 
45
    TRANSFORM_EMBLEM,
 
46
  };
 
47
 
 
48
  IconTextureSource();
 
49
 
 
50
  std::vector<nux::Vector4> & GetTransform(TransformIndex index, int monitor);
 
51
 
 
52
  virtual nux::Color BackgroundColor() = 0;
 
53
 
 
54
  virtual nux::Color GlowColor() = 0;
 
55
 
 
56
  virtual nux::BaseTexture* TextureForSize(int size) = 0;
 
57
 
 
58
  virtual nux::BaseTexture* Emblem() = 0;
 
59
 
 
60
private:
 
61
  std::vector<std::map<TransformIndex, std::vector<nux::Vector4> > > transform_map;
 
62
};
 
63
 
 
64
}
 
65
}
 
66
 
 
67
#endif // LAUNCHERICON_H
 
68