OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HorizontalPainter
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/views/
painter.h
91
//
HorizontalPainter
paints 3 images into a box: left, center and right. The
95
class VIEWS_EXPORT
HorizontalPainter
: public Painter {
97
// Constructs a new
HorizontalPainter
loading the specified image names.
99
explicit
HorizontalPainter
(const int image_resource_names[]);
100
virtual ~
HorizontalPainter
();
117
DISALLOW_COPY_AND_ASSIGN(
HorizontalPainter
);
painter.cc
291
//
HorizontalPainter
----------------------------------------------------------
293
HorizontalPainter
::
HorizontalPainter
(const int image_resource_names[]) {
301
HorizontalPainter
::~
HorizontalPainter
() {
304
gfx::Size
HorizontalPainter
::GetMinimumSize() const {
310
void
HorizontalPainter
::Paint(gfx::Canvas* canvas, const gfx::Size& size) {
Completed in 539 milliseconds