// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_CONTROLS_BUTTON_RADIO_BUTTON_H_ #define UI_VIEWS_CONTROLS_BUTTON_RADIO_BUTTON_H_ #include <string> #include "ui/views/controls/button/checkbox.h" #include "ui/views/controls/focus_ring.h" #include "ui/views/metadata/view_factory.h" namespace views { // A native themed class representing a radio button. This class does not use // platform specific objects to replicate the native platforms looks and feel. class VIEWS_EXPORT RadioButton : public Checkbox { … }; BEGIN_VIEW_BUILDER(VIEWS_EXPORT, RadioButton, Checkbox) VIEW_BUILDER_PROPERTY(bool, Checked) END_VIEW_BUILDER } // namespace views DEFINE_VIEW_BUILDER(…) #endif // UI_VIEWS_CONTROLS_BUTTON_RADIO_BUTTON_H_