15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1. Redistributions of source code must retain the above copyright
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2. Redistributions in binary form must reproduce the above copyright
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer in the
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    documentation and/or other materials provided with the distribution.
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2302772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
265c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#ifndef ThemeTypes_h
275c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#define ThemeTypes_h
285c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
295c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)namespace WebCore {
305c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
315c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)enum ControlState {
325c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    HoverState = 1,
335c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    PressedState = 1 << 1,
345c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    FocusState = 1 << 2,
355c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    EnabledState = 1 << 3,
365c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    CheckedState = 1 << 4,
375c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    ReadOnlyState = 1 << 5,
385c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    WindowInactiveState = 1 << 7,
395c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    IndeterminateState = 1 << 8,
405c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    SpinUpState = 1 << 9, // Sub-state for HoverState and PressedState.
415c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    AllStates = 0xffffffff
425c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
435c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
445c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)typedef unsigned ControlStates;
455c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
465c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)// Must follow CSSValueKeywords.in order
475c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)enum ControlPart {
485c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    NoControlPart, CheckboxPart, RadioPart, PushButtonPart, SquareButtonPart, ButtonPart,
4953e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)    ButtonBevelPart, InnerSpinButtonPart, InputSpeechButtonPart, ListboxPart, ListItemPart,
505c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    MediaEnterFullscreenButtonPart, MediaExitFullscreenButtonPart, MediaFullScreenVolumeSliderPart, MediaFullScreenVolumeSliderThumbPart, MediaMuteButtonPart, MediaPlayButtonPart,
515c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    MediaOverlayPlayButtonPart, MediaSeekBackButtonPart, MediaSeekForwardButtonPart, MediaRewindButtonPart, MediaReturnToRealtimeButtonPart, MediaToggleClosedCaptionsButtonPart,
525c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    MediaSliderPart, MediaSliderThumbPart, MediaVolumeSliderContainerPart, MediaVolumeSliderPart, MediaVolumeSliderThumbPart,
535c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    MediaVolumeSliderMuteButtonPart, MediaControlsBackgroundPart, MediaControlsFullscreenBackgroundPart, MediaCurrentTimePart, MediaTimeRemainingPart,
545c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    MenulistPart, MenulistButtonPart, MenulistTextPart, MenulistTextFieldPart, MeterPart, ProgressBarPart, ProgressBarValuePart,
555c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    SliderHorizontalPart, SliderVerticalPart, SliderThumbHorizontalPart,
565c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    SliderThumbVerticalPart, CaretPart, SearchFieldPart, SearchFieldDecorationPart,
5781a5157921f1d2a7ff6aae115bfe3c139b38a5c8Torne (Richard Coles)    SearchFieldResultsDecorationPart,
5853e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)    SearchFieldCancelButtonPart, TextFieldPart,
595c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    RelevancyLevelIndicatorPart, ContinuousCapacityLevelIndicatorPart, DiscreteCapacityLevelIndicatorPart, RatingLevelIndicatorPart,
605c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    TextAreaPart, CapsLockIndicatorPart
615c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
625c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
635c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)enum SelectionPart {
645c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    SelectionBackground, SelectionForeground
655c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
665c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
675c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)enum ThemeFont {
6802772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch    CaptionFont, IconFont, MenuFont, MessageBoxFont, SmallCaptionFont, StatusBarFont, MiniControlFont, SmallControlFont, ControlFont
695c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
705c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
715c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)enum ThemeColor {
725c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    ActiveBorderColor, ActiveCaptionColor, AppWorkspaceColor, BackgroundColor, ButtonFaceColor, ButtonHighlightColor, ButtonShadowColor,
735c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    ButtonTextColor, CaptionTextColor, GrayTextColor, HighlightColor, HighlightTextColor, InactiveBorderColor, InactiveCaptionColor,
745c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    InactiveCaptionTextColor, InfoBackgroundColor, InfoTextColor, MatchColor, MenuTextColor, ScrollbarColor, ThreeDDarkDhasowColor,
755c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    ThreeDFaceColor, ThreeDHighlightColor, ThreeDLightShadowColor, ThreeDShadowCLor, WindowColor, WindowFrameColor, WindowTextColor,
765267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    FocusRingColor, ActiveListBoxSelection, ActiveListBoxSelectionText, InactiveListBoxSelection, InactiveListBoxSelectionText
775c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
785c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
795c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)}
805c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#endif
81