summaryrefslogtreecommitdiff
path: root/chromium/ash/system/tray/tray_popup_label_button.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ash/system/tray/tray_popup_label_button.cc')
-rw-r--r--chromium/ash/system/tray/tray_popup_label_button.cc32
1 files changed, 32 insertions, 0 deletions
diff --git a/chromium/ash/system/tray/tray_popup_label_button.cc b/chromium/ash/system/tray/tray_popup_label_button.cc
new file mode 100644
index 00000000000..5b00c02a060
--- /dev/null
+++ b/chromium/ash/system/tray/tray_popup_label_button.cc
@@ -0,0 +1,32 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ash/system/tray/tray_popup_label_button.h"
+
+#include "ash/ash_constants.h"
+#include "ash/system/tray/tray_popup_label_button_border.h"
+#include "ui/gfx/canvas.h"
+#include "ui/gfx/rect.h"
+#include "ui/views/painter.h"
+
+namespace ash {
+namespace internal {
+
+TrayPopupLabelButton::TrayPopupLabelButton(views::ButtonListener* listener,
+ const base::string16& text)
+ : views::LabelButton(listener, text) {
+ set_border(new TrayPopupLabelButtonBorder);
+ SetFocusable(true);
+ set_request_focus_on_press(false);
+ set_animate_on_state_change(false);
+ SetHorizontalAlignment(gfx::ALIGN_CENTER);
+ SetFocusPainter(views::Painter::CreateSolidFocusPainter(
+ kFocusBorderColor,
+ gfx::Insets(1, 1, 2, 2)));
+}
+
+TrayPopupLabelButton::~TrayPopupLabelButton() {}
+
+} // namespace internal
+} // namespace ash