1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// Copyright (c) 2012 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 "chrome/browser/ui/views/password_generation_bubble_view.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/autofill/password_generator.h"
#include "chrome/common/autofill_messages.h"
#include "content/public/browser/render_view_host.h"
#include "ui/views/controls/button/text_button.h"
#include "ui/views/controls/label.h"
#include "ui/views/controls/textfield/textfield.h"
#include "ui/views/layout/grid_layout.h"
#include "ui/views/layout/layout_constants.h"
using views::ColumnSet;
using views::GridLayout;
PasswordGenerationBubbleView::PasswordGenerationBubbleView(
const gfx::Rect& anchor_rect,
views::View* anchor_view,
content::RenderViewHost* render_view_host)
: BubbleDelegateView(anchor_view, views::BubbleBorder::TOP_LEFT),
accept_button_(NULL),
text_field_(NULL),
anchor_rect_(anchor_rect),
render_view_host_(render_view_host) {}
PasswordGenerationBubbleView::~PasswordGenerationBubbleView() {}
void PasswordGenerationBubbleView::Init() {
// TODO(gcasto): Localize text after we have finalized the UI.
// crbug.com/118062
accept_button_ = new views::NativeTextButton(this,
ASCIIToUTF16("Try It"));
text_field_ = new views::Textfield();
text_field_->SetText(ASCIIToUTF16(password_generator_.Generate()));
views::Label* title_label = new views::Label(
ASCIIToUTF16("Password Suggestion"));
GridLayout* layout = new GridLayout(this);
SetLayoutManager(layout);
// Title row.
ColumnSet* cs = layout->AddColumnSet(0);
cs->AddColumn(GridLayout::CENTER, GridLayout::CENTER, 0,
GridLayout::USE_PREF, 0, 0);
// Input row
cs = layout->AddColumnSet(1);
cs->AddColumn(GridLayout::FILL, GridLayout::CENTER, 0,
GridLayout::USE_PREF, 0, 100);
cs->AddPaddingColumn(1, views::kRelatedControlHorizontalSpacing);
cs->AddColumn(GridLayout::TRAILING, GridLayout::CENTER, 0,
GridLayout::USE_PREF, 0, 0);
layout->StartRow(0, 0);
layout->AddView(title_label);
layout->StartRow(0, 1);
layout->AddView(text_field_);
layout->AddView(accept_button_);
}
gfx::Rect PasswordGenerationBubbleView::GetAnchorRect() {
return anchor_rect_;
}
void PasswordGenerationBubbleView::ButtonPressed(views::Button* sender,
const views::Event& event) {
if (sender == accept_button_) {
render_view_host_->Send(new AutofillMsg_GeneratedPasswordAccepted(
render_view_host_->GetRoutingID(), text_field_->text()));
StartFade(false);
}
}
|