OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:text_button_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/views/examples/
button_example.cc
33
text_button_
(NULL),
51
text_button_
= new TextButton(this, ASCIIToUTF16(kTextButton));
52
text_button_
->SetFocusable(true);
53
container->AddChildView(
text_button_
);
86
text_button_
->SetMultiLine(!
text_button_
->multi_line());
87
text_button_
->SetText(ASCIIToUTF16(
88
text_button_
->multi_line() ? kMultiLineText : kTextButton));
90
switch (
text_button_
->icon_placement()) {
92
text_button_
->set_icon_placement(TextButton::ICON_ON_RIGHT)
[
all
...]
button_example.h
37
TextButton*
text_button_
;
member in class:views::examples::ButtonExample
/external/chromium_org/ui/views/controls/combobox/
combobox.cc
248
text_button_
(new TransparentButton(this)),
275
text_button_
->SetVisible(true);
277
text_button_
->SetFocusable(false);
279
AddChildView(
text_button_
);
366
text_button_
->SetBounds(0, 0, std::max(0, text_button_width), height());
481
text_button_
->SetState(Button::STATE_PRESSED);
566
if (sender ==
text_button_
) {
688
text_button_
->state() == Button::STATE_PRESSED ? 0 :
689
static_cast<int>(static_cast<TransparentButton*>(
text_button_
)->
695
text_button_
->state() == Button::STATE_HOVERED
[
all
...]
combobox.h
209
CustomButton*
text_button_
;
member in class:views::Combobox
Completed in 39 milliseconds