OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImagePainter
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/views/corewm/
image_grid.h
130
class
ImagePainter
: public ui::LayerDelegate {
132
ImagePainter
(const gfx::Image* image) : image_(image) {}
133
virtual ~
ImagePainter
() {}
151
DISALLOW_COPY_AND_ASSIGN(
ImagePainter
);
165
scoped_ptr<
ImagePainter
>* painter_ptr);
212
scoped_ptr<
ImagePainter
> top_left_painter_;
213
scoped_ptr<
ImagePainter
> top_painter_;
214
scoped_ptr<
ImagePainter
> top_right_painter_;
215
scoped_ptr<
ImagePainter
> left_painter_;
216
scoped_ptr<
ImagePainter
> center_painter_
[
all
...]
image_grid.cc
226
void ImageGrid::
ImagePainter
::SetClipRect(const gfx::Rect& clip_rect,
234
void ImageGrid::
ImagePainter
::OnPaintLayer(gfx::Canvas* canvas) {
240
void ImageGrid::
ImagePainter
::OnDeviceScaleFactorChanged(
245
base::Closure ImageGrid::
ImagePainter
::PrepareForLayerBoundsChange() {
265
scoped_ptr<
ImagePainter
>* painter_ptr) {
282
painter_ptr->reset(new
ImagePainter
(image));
/external/chromium_org/ui/views/
painter.cc
162
//
ImagePainter
---------------------------------------------------------------
164
//
ImagePainter
stores and paints nine images as a scalable grid.
165
class VIEWS_EXPORT
ImagePainter
: public Painter {
167
// Constructs an
ImagePainter
with the specified image resource ids.
169
explicit
ImagePainter
(const int image_ids[]);
171
// Constructs an
ImagePainter
with the specified image and insets.
172
ImagePainter
(const gfx::ImageSkia& image, const gfx::Insets& insets);
174
virtual ~
ImagePainter
();
199
DISALLOW_COPY_AND_ASSIGN(
ImagePainter
);
202
ImagePainter
::ImagePainter(const int image_ids[])
[
all
...]
/external/chromium/chrome/browser/ui/views/notifications/
balloon_view.h
31
class
ImagePainter
;
Completed in 178 milliseconds