summaryrefslogtreecommitdiffstats
path: root/views/controls
diff options
context:
space:
mode:
Diffstat (limited to 'views/controls')
-rw-r--r--views/controls/button/custom_button.cc7
-rw-r--r--views/controls/button/custom_button.h6
2 files changed, 13 insertions, 0 deletions
diff --git a/views/controls/button/custom_button.cc b/views/controls/button/custom_button.cc
index ebca6ff..7a3eca2 100644
--- a/views/controls/button/custom_button.cc
+++ b/views/controls/button/custom_button.cc
@@ -13,6 +13,9 @@ namespace views {
// How long the hover animation takes if uninterrupted.
static const int kHoverFadeDurationMs = 150;
+// static
+const char CustomButton::kViewClassName[] = "views/CustomButton";
+
////////////////////////////////////////////////////////////////////////////////
// CustomButton, public:
@@ -103,6 +106,10 @@ bool CustomButton::IsMouseHovered() const {
return HitTest(cursor_pos);
}
+std::string CustomButton::GetClassName() const {
+ return kViewClassName;
+}
+
////////////////////////////////////////////////////////////////////////////////
// CustomButton, protected:
diff --git a/views/controls/button/custom_button.h b/views/controls/button/custom_button.h
index 4de3bd6..0126a9e 100644
--- a/views/controls/button/custom_button.h
+++ b/views/controls/button/custom_button.h
@@ -21,6 +21,9 @@ namespace views {
class CustomButton : public Button,
public AnimationDelegate {
public:
+ // The menu button's class name.
+ static const char kViewClassName[];
+
virtual ~CustomButton();
// Possible states
@@ -73,6 +76,9 @@ class CustomButton : public Button,
// when it's disabled.
bool IsMouseHovered() const;
+ // Returns views/CustomButton.
+ virtual std::string GetClassName() const;
+
protected:
// Construct the Button with a Listener. See comment for Button's ctor.
explicit CustomButton(ButtonListener* listener);