Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
|
benwells
2013/03/12 04:58:11
super important nit: no (c)
koz (OOO until 15th September)
2013/03/13 00:30:36
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_APP_LIST_VIEWS_CACHED_LABEL_H_ | |
| 6 #define UI_APP_LIST_VIEWS_CACHED_LABEL_H_ | |
| 7 | |
| 8 #include "third_party/skia/include/core/SkBitmap.h" | |
| 9 #include "ui/gfx/image/image_skia.h" | |
| 10 #include "ui/views/controls/label.h" | |
| 11 #include "ui/views/view.h" | |
| 12 | |
| 13 namespace gfx { | |
| 14 class Canvas; | |
| 15 } | |
| 16 | |
| 17 namespace app_list { | |
| 18 | |
| 19 // Subclass of views::Label that caches the rendered text in a SkBitmap. | |
| 20 class CachedLabel : public views::Label { | |
| 21 public: | |
| 22 CachedLabel(); | |
| 23 | |
| 24 // Have the next call to OnPaint() update the backing image. | |
| 25 void Invalidate() { needs_repaint_ = true; } | |
| 26 | |
| 27 // views::View overrides. | |
| 28 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | |
| 29 | |
| 30 private: | |
| 31 // Calls the base label's OnPaint() to paint into a backing image. | |
| 32 void PaintToBackingImage(); | |
| 33 | |
| 34 bool needs_repaint_; | |
| 35 SkBitmap bitmap_; | |
| 36 gfx::ImageSkia image_; | |
| 37 }; | |
| 38 | |
| 39 } // namespace app_list | |
| 40 | |
| 41 #endif // UI_APP_LIST_VIEWS_CACHED_LABEL_H_ | |
| OLD | NEW |