1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22#include "mediacontrol.hrc" 23 24String AVMEDIA_STR_OPEN 25{ 26 Text [ en-US ] = "Open" ; 27}; 28 29// ------------------------------------------------------------------------------ 30 31String AVMEDIA_STR_INSERT 32{ 33 Text [ en-US ] = "Apply" ; 34}; 35 36// ------------------------------------------------------------------------------ 37 38String AVMEDIA_STR_PLAY 39{ 40 Text [ en-US ] = "Play" ; 41}; 42 43// ------------------------------------------------------------------------------ 44 45String AVMEDIA_STR_PAUSE 46{ 47 Text [ en-US ] = "Pause" ; 48}; 49 50// ------------------------------------------------------------------------------ 51 52String AVMEDIA_STR_STOP 53{ 54 Text [ en-US ] = "Stop" ; 55}; 56 57// ------------------------------------------------------------------------------ 58 59String AVMEDIA_STR_ENDLESS 60{ 61 Text [ en-US ] = "Repeat" ; 62}; 63 64// ------------------------------------------------------------------------------ 65 66String AVMEDIA_STR_MUTE 67{ 68 Text [ en-US ] = "Mute" ; 69}; 70 71// ------------------------------------------------------------------------------ 72 73String AVMEDIA_STR_ZOOM 74{ 75 Text [ en-US ] = "View" ; 76}; 77 78// ------------------------------------------------------------------------------ 79 80String AVMEDIA_STR_ZOOM_50 81{ 82 Text [ en-US ] = "50%" ; 83}; 84 85// ------------------------------------------------------------------------------ 86 87String AVMEDIA_STR_ZOOM_100 88{ 89 Text [ en-US ] = "100%" ; 90}; 91 92// ------------------------------------------------------------------------------ 93 94String AVMEDIA_STR_ZOOM_200 95{ 96 Text [ en-US ] = "200%" ; 97}; 98 99// ------------------------------------------------------------------------------ 100 101String AVMEDIA_STR_ZOOM_FIT 102{ 103 Text [ en-US ] = "Scaled" ; 104}; 105 106// ------------------------------------------------------------------------------ 107 108String AVMEDIA_STR_MEDIAPLAYER 109{ 110 Text [ en-US ] = "Media Player" ; 111}; 112 113// ------------------------------------------------------------------------------ 114 115ImageList AVMEDIA_IMGLST 116{ 117 Prefix = "av" ; 118 MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; }; 119 IdList = 120 { 121 AVMEDIA_IMG_OPEN ; 122 AVMEDIA_IMG_PLAY ; 123 AVMEDIA_IMG_PAUSE ; 124 AVMEDIA_IMG_STOP ; 125 AVMEDIA_IMG_ENDLESS ; 126 AVMEDIA_IMG_INSERT ; 127 AVMEDIA_IMG_MUTE ; 128 }; 129 IdCount = 7 ; 130}; 131 132// ------------------------------------------------------------------------------ 133 134ImageList AVMEDIA_IMGLST_L 135{ 136 Prefix = "avl" ; 137 MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; }; 138 IdList = 139 { 140 AVMEDIA_IMG_OPEN ; 141 AVMEDIA_IMG_PLAY ; 142 AVMEDIA_IMG_PAUSE ; 143 AVMEDIA_IMG_STOP ; 144 AVMEDIA_IMG_ENDLESS ; 145 AVMEDIA_IMG_INSERT ; 146 AVMEDIA_IMG_MUTE ; 147 }; 148 IdCount = 7 ; 149}; 150 151// ------------------------------------------------------------------------------ 152 153ImageList AVMEDIA_IMGLST_HC 154{ 155 Prefix = "avh" ; 156 MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; }; 157 IdList = 158 { 159 AVMEDIA_IMG_OPEN ; 160 AVMEDIA_IMG_PLAY ; 161 AVMEDIA_IMG_PAUSE ; 162 AVMEDIA_IMG_STOP ; 163 AVMEDIA_IMG_ENDLESS ; 164 AVMEDIA_IMG_INSERT ; 165 AVMEDIA_IMG_MUTE ; 166 }; 167 IdCount = 7 ; 168}; 169 170// ------------------------------------------------------------------------------ 171 172ImageList AVMEDIA_IMGLST_L_HC 173{ 174 Prefix = "avlh" ; 175 MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; }; 176 IdList = 177 { 178 AVMEDIA_IMG_OPEN ; 179 AVMEDIA_IMG_PLAY ; 180 AVMEDIA_IMG_PAUSE ; 181 AVMEDIA_IMG_STOP ; 182 AVMEDIA_IMG_ENDLESS ; 183 AVMEDIA_IMG_INSERT ; 184 AVMEDIA_IMG_MUTE ; 185 }; 186 IdCount = 7 ; 187}; 188 189// ********************************************************************** EOF 190