Home | History | Annotate | Download | only in window

Lines Matching defs:NonClientView

21 const char NonClientView::kViewClassName[] =
22 "ui/views/window/NonClientView";
33 // NonClientView, public:
35 NonClientView::NonClientView()
40 NonClientView::~NonClientView() {
46 void NonClientView::SetFrameView(NonClientFrameView* frame_view) {
56 void NonClientView::SetOverlayView(View* view) {
68 bool NonClientView::CanClose() {
72 void NonClientView::WindowClosing() {
76 void NonClientView::UpdateFrame(bool layout) {
86 void NonClientView::SetInactiveRenderingDisabled(bool disable) {
90 gfx::Rect NonClientView::GetWindowBoundsForClientBounds(
95 int NonClientView::NonClientHitTest(const gfx::Point& point) {
100 void NonClientView::GetWindowMask(const gfx::Size& size,
105 void NonClientView::ResetWindowControls() {
109 void NonClientView::UpdateWindowIcon() {
113 void NonClientView::UpdateWindowTitle() {
117 void NonClientView::LayoutFrameView() {
132 void NonClientView::SetAccessibleName(const string16& name) {
137 // NonClientView, View overrides:
139 gfx::Size NonClientView::GetPreferredSize() {
147 gfx::Size NonClientView::GetMinimumSize() {
151 gfx::Size NonClientView::GetMaximumSize() {
155 void NonClientView::Layout() {
169 void NonClientView::ViewHierarchyChanged(
182 void NonClientView::GetAccessibleState(ui::AccessibleViewState* state) {
187 const char* NonClientView::GetClassName() const {
191 views::View* NonClientView::GetEventHandlerForPoint(const gfx::Point& point) {
202 // removed from the NonClientView.
212 views::View* NonClientView::GetTooltipHandlerForPoint(const gfx::Point& point) {
217 // removed from the NonClientView.
318 // Overridden to do nothing. The NonClientView manually calls Layout on the
319 // FrameView when it is itself laid out, see comment in NonClientView::Layout.