Home | History | Annotate | Download | only in gfx

Lines Matching defs:Insets

5 #include "ui/gfx/insets.h"
15 template class InsetsBase<Insets, int>;
17 Insets::Insets() : InsetsBase<Insets, int>(0, 0, 0, 0) {}
19 Insets::Insets(int top, int left, int bottom, int right)
20 : InsetsBase<Insets, int>(top, left, bottom, right) {}
23 Insets::Insets(const GtkBorder& border)
24 : InsetsBase<Insets, int>(border.top,
31 Insets::~Insets() {}
33 std::string Insets::ToString() const {