File: texture.h

package info (click to toggle)
google-gadgets 0.11.2-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 16,820 kB
  • ctags: 20,323
  • sloc: cpp: 116,722; ansic: 18,000; sh: 9,269; makefile: 2,676; xml: 2,138; lex: 459
file content (98 lines) | stat: -rw-r--r-- 2,695 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
  Copyright 2008 Google Inc.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

#ifndef GGADGET_TEXTURE_H__
#define GGADGET_TEXTURE_H__

#include <ggadget/basic_element.h>
#include <ggadget/scriptable_helper.h>
#include <ggadget/canvas_interface.h>
#include <ggadget/image_interface.h>
#include <ggadget/small_object.h>

namespace ggadget {

class FontInterface;

/**
 * @ingroup Utilities
 *
 * A helper class to handle color or image texture.
 */
class Texture : public SmallObject<> {
 public:
  /**
   * Creates a texture with an image. Ownership of the specified image will be
   * assumed by the texture.
   */
  Texture(ImageInterface *image);

  /**
   * Creates a new texture from a given color and opacity.
   */
  Texture(const Color &color, double opacity);

  ~Texture();

  /**
   * Draws the texture onto a canvas.
   * If the texture is an image, the image is repeated to fill the specified
   * area.
   */
  void Draw(CanvasInterface *canvas, double x, double y,
            double width, double height) const;

  /**
   * Draws the specified text on canvas.
   */
  void DrawText(CanvasInterface *canvas, double x, double y, double width,
                double height, const char *text, const FontInterface *f,
                CanvasInterface::Alignment align,
                CanvasInterface::VAlignment valign,
                CanvasInterface::Trimming trimming,
                int text_flags) const;

  /**
   * @return the file name this texture is loaded from a file; returns the
   *     color name if this texture is a color; otherwise returns an empty
   *     string.
   */
  std::string GetSrc() const;

  /** Utility function to get the src of a texture which can be @c NULL. */
  static std::string GetSrc(const Texture *texture) {
    return texture ? texture->GetSrc() : "";
  }

  const ImageInterface *GetImage() const;

  /**
   * Check if the texture is fully opaque, that is:
   *  - For color texture, the opacity equals to 1.0
   *  - For image texture, there is no alpha channel.
   */
  bool IsFullyOpaque() const;

 private:
  class Impl;
  Impl *impl_;

  DISALLOW_EVIL_CONSTRUCTORS(Texture);
};

} // namespace ggadget

#endif // GGADGET_IMAGE_H__