diff options
Diffstat (limited to 'views/controls/message_box_view.h')
-rw-r--r-- | views/controls/message_box_view.h | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/views/controls/message_box_view.h b/views/controls/message_box_view.h new file mode 100644 index 0000000..6356d84 --- /dev/null +++ b/views/controls/message_box_view.h @@ -0,0 +1,94 @@ +// Copyright (c) 2006-2008 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. + +#ifndef VIEWS_CONTROLS_MESSAGE_BOX_VIEW_VIEW_H_ +#define VIEWS_CONTROLS_MESSAGE_BOX_VIEW_VIEW_H_ + +#include <string> + +#include "base/task.h" +#include "views/controls/image_view.h" +#include "views/controls/label.h" +#include "views/controls/text_field.h" +#include "views/view.h" + +namespace views { +class Checkbox; +} + +// This class displays the contents of a message box. It is intended for use +// within a constrained window, and has options for a message, prompt, OK +// and Cancel buttons. +class MessageBoxView : public views::View { + public: + MessageBoxView(int dialog_flags, + const std::wstring& message, + const std::wstring& default_prompt, + int message_width); + + MessageBoxView(int dialog_flags, + const std::wstring& message, + const std::wstring& default_prompt); + + // Returns the text box. + views::TextField* text_box() { return prompt_field_; } + + // Returns user entered data in the prompt field. + std::wstring GetInputText(); + + // Returns true if a checkbox is selected, false otherwise. (And false if + // the message box has no checkbox.) + bool IsCheckBoxSelected(); + + // Adds |icon| to the upper left of the message box or replaces the current + // icon. To start out, the message box has no icon. + void SetIcon(const SkBitmap& icon); + + // Adds a checkbox with the specified label to the message box if this is the + // first call. Otherwise, it changes the label of the current checkbox. To + // start, the message box has no checkbox until this function is called. + void SetCheckBoxLabel(const std::wstring& label); + + // Sets the state of the check-box. + void SetCheckBoxSelected(bool selected); + + protected: + // Layout and Painting functions. + virtual void ViewHierarchyChanged(bool is_add, + views::View* parent, + views::View* child); + + // Handles Ctrl-C and writes the message in the system clipboard. + virtual bool AcceleratorPressed(const views::Accelerator& accelerator); + + private: + // Sets up the layout manager and initializes the prompt field. This should + // only be called once, from the constructor. + void Init(int dialog_flags, const std::wstring& default_prompt); + + // Sets up the layout manager based on currently initialized views. Should be + // called when a view is initialized or changed. + void ResetLayoutManager(); + + // Message for the message box. + views::Label* message_label_; + + // Input text field for the message box. + views::TextField* prompt_field_; + + // Icon displayed in the upper left corner of the message box. + views::ImageView* icon_; + + // Checkbox for the message box. + views::Checkbox* checkbox_; + + // Maximum width of the message label. + int message_width_; + + ScopedRunnableMethodFactory<MessageBoxView> focus_grabber_factory_; + + DISALLOW_EVIL_CONSTRUCTORS(MessageBoxView); +}; + +#endif // VIEWS_CONTROLS_MESSAGE_BOX_VIEW_VIEW_H_ |