OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ClientView
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/views/window/
client_view.h
16
//
ClientView
18
// A
ClientView
is a View subclass that is used to occupy the "client area"
21
//
ClientView
are used to create more elaborate contents, e.g.
23
class VIEWS_EXPORT
ClientView
: public View {
28
// Constructs a
ClientView
object for the specified widget with the specified
32
ClientView
(Widget* widget, View* contents_view);
33
virtual ~
ClientView
() {}
40
//
ClientView
subclasses can override this default behavior to allow the
53
// Subclasses of
ClientView
can extend this logic by overriding this method
80
// The View that this
ClientView
contains
[
all
...]
client_view.cc
16
const char
ClientView
::kViewClassName[] =
17
"ui/views/window/
ClientView
";
20
//
ClientView
, public:
22
ClientView
::
ClientView
(Widget* widget, View* contents_view)
26
int
ClientView
::NonClientHitTest(const gfx::Point& point) {
30
DialogClientView*
ClientView
::AsDialogClientView() {
34
const DialogClientView*
ClientView
::AsDialogClientView() const {
38
bool
ClientView
::CanClose() {
42
void
ClientView
::WidgetClosing()
[
all
...]
Completed in 333 milliseconds