1*70a4c360SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3*70a4c360SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*70a4c360SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*70a4c360SAndrew Rist * distributed with this work for additional information 6*70a4c360SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*70a4c360SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*70a4c360SAndrew Rist * "License"); you may not use this file except in compliance 9*70a4c360SAndrew Rist * with the License. You may obtain a copy of the License at 10*70a4c360SAndrew Rist * 11*70a4c360SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*70a4c360SAndrew Rist * 13*70a4c360SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*70a4c360SAndrew Rist * software distributed under the License is distributed on an 15*70a4c360SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*70a4c360SAndrew Rist * KIND, either express or implied. See the License for the 17*70a4c360SAndrew Rist * specific language governing permissions and limitations 18*70a4c360SAndrew Rist * under the License. 19*70a4c360SAndrew Rist * 20*70a4c360SAndrew Rist *************************************************************/ 21*70a4c360SAndrew Rist 22*70a4c360SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir#include <dtsodcmp.hrc> 25cdf0e10cSrcweir#include <soldep/soldlg.hrc> 26cdf0e10cSrcweir 27cdf0e10cSrcweir//======================================================================== 28cdf0e10cSrcweir// Dialogs 29cdf0e10cSrcweirModalDialog RID_SD_DIALOG_NEWPROJECT 30cdf0e10cSrcweir{ 31cdf0e10cSrcweir HelpID = "soldep:ModalDialog:RID_SD_DIALOG_NEWPROJECT"; 32cdf0e10cSrcweir OutputSize = TRUE; 33cdf0e10cSrcweir Text = "New Project"; 34cdf0e10cSrcweir PosSize = MAP_SYSFONT(18,18,142,142); 35cdf0e10cSrcweir SVLook = TRUE; 36cdf0e10cSrcweir MOVEABLE = TRUE; 37cdf0e10cSrcweir CLOSEABLE = TRUE; 38cdf0e10cSrcweir OKButton BTN_OK 39cdf0e10cSrcweir { 40cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,123,40,14); 41cdf0e10cSrcweir TabStop = TRUE; 42cdf0e10cSrcweir Hide = FALSE; 43cdf0e10cSrcweir DefButton = TRUE; 44cdf0e10cSrcweir }; 45cdf0e10cSrcweir CancelButton BTN_CANCEL { 46cdf0e10cSrcweir PosSize = MAP_SYSFONT(50,123,40,14); 47cdf0e10cSrcweir TabStop = TRUE; 48cdf0e10cSrcweir }; 49cdf0e10cSrcweir FixedText FT_PRJNAME { 50cdf0e10cSrcweir PosSize = MAP_SYSFONT( 5, 10, 100, 10 ); 51cdf0e10cSrcweir Text = "Project Name"; 52cdf0e10cSrcweir }; 53cdf0e10cSrcweir Edit EDIT_PRJNAME { 54cdf0e10cSrcweir HelpID = "soldep:Edit:RID_SD_DIALOG_NEWPROJECT:EDIT_PRJNAME"; 55cdf0e10cSrcweir Border = TRUE; 56cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,20,132,10); 57cdf0e10cSrcweir }; 58cdf0e10cSrcweir FixedText FT_PRJSHORT { 59cdf0e10cSrcweir PosSize = MAP_SYSFONT( 5, 30, 100, 10 ); 60cdf0e10cSrcweir Text = "Project Short Name"; 61cdf0e10cSrcweir }; 62cdf0e10cSrcweir Edit EDIT_PRJSHORT { 63cdf0e10cSrcweir HelpID = "soldep:Edit:RID_SD_DIALOG_NEWPROJECT:EDIT_PRJSHORT"; 64cdf0e10cSrcweir Border = TRUE; 65cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,40,132,10); 66cdf0e10cSrcweir }; 67cdf0e10cSrcweir FixedText FT_PRJDEPS { 68cdf0e10cSrcweir PosSize = MAP_SYSFONT( 5, 50, 100, 10 ); 69cdf0e10cSrcweir Text = "Project Depends on"; 70cdf0e10cSrcweir }; 71cdf0e10cSrcweir Edit EDIT_PRJDEPS { 72cdf0e10cSrcweir HelpID = "soldep:Edit:RID_SD_DIALOG_NEWPROJECT:EDIT_PRJDEPS"; 73cdf0e10cSrcweir Border = TRUE; 74cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,60,132,10); 75cdf0e10cSrcweir }; 76cdf0e10cSrcweir}; 77cdf0e10cSrcweir 78cdf0e10cSrcweirModalDialog RID_SD_DIALOG_NEWDIRECTORY 79cdf0e10cSrcweir{ 80cdf0e10cSrcweir HelpID = "soldep:ModalDialog:RID_SD_DIALOG_NEWDIRECTORY"; 81cdf0e10cSrcweir OutputSize = TRUE; 82cdf0e10cSrcweir Text = "New Directory"; 83cdf0e10cSrcweir PosSize = MAP_SYSFONT(18,18,142,142); 84cdf0e10cSrcweir SVLook = TRUE; 85cdf0e10cSrcweir MOVEABLE = TRUE; 86cdf0e10cSrcweir CLOSEABLE = TRUE; 87cdf0e10cSrcweir OKButton BTN_OK 88cdf0e10cSrcweir { 89cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,123,40,14); 90cdf0e10cSrcweir TabStop = TRUE; 91cdf0e10cSrcweir Hide = FALSE; 92cdf0e10cSrcweir DefButton = TRUE; 93cdf0e10cSrcweir }; 94cdf0e10cSrcweir CancelButton BTN_CANCEL { 95cdf0e10cSrcweir PosSize = MAP_SYSFONT(50,123,40,14); 96cdf0e10cSrcweir TabStop = TRUE; 97cdf0e10cSrcweir }; 98cdf0e10cSrcweir FixedText FT_DIRNAME { 99cdf0e10cSrcweir PosSize = MAP_SYSFONT( 5, 10, 132, 10 ); 100cdf0e10cSrcweir Text = "Directory Name ( with projectname )"; 101cdf0e10cSrcweir }; 102cdf0e10cSrcweir Edit EDIT_DIRNAME { 103cdf0e10cSrcweir HelpID = "soldep:Edit:RID_SD_DIALOG_NEWDIRECTORY:EDIT_DIRNAME"; 104cdf0e10cSrcweir Border = TRUE; 105cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,20,132,10); 106cdf0e10cSrcweir }; 107cdf0e10cSrcweir FixedText FT_DIRFLAG { 108cdf0e10cSrcweir PosSize = MAP_SYSFONT( 5, 30, 100, 10 ); 109cdf0e10cSrcweir Text = "Directory Flag"; 110cdf0e10cSrcweir }; 111cdf0e10cSrcweir Edit EDIT_DIRFLAG { 112cdf0e10cSrcweir HelpID = "soldep:Edit:RID_SD_DIALOG_NEWDIRECTORY:EDIT_DIRFLAG"; 113cdf0e10cSrcweir Border = TRUE; 114cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,40,132,10); 115cdf0e10cSrcweir }; 116cdf0e10cSrcweir FixedText FT_DIRDEPS { 117cdf0e10cSrcweir PosSize = MAP_SYSFONT( 5, 50, 100, 10 ); 118cdf0e10cSrcweir Text = "Directory Depends on"; 119cdf0e10cSrcweir }; 120cdf0e10cSrcweir Edit EDIT_DIRDEPS { 121cdf0e10cSrcweir HelpID = "soldep:Edit:RID_SD_DIALOG_NEWDIRECTORY:EDIT_DIRDEPS"; 122cdf0e10cSrcweir Border = TRUE; 123cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,60,132,10); 124cdf0e10cSrcweir }; 125cdf0e10cSrcweir FixedText FT_DIRACTION { 126cdf0e10cSrcweir PosSize = MAP_SYSFONT( 5, 70, 100, 10 ); 127cdf0e10cSrcweir Text = "What To Do"; 128cdf0e10cSrcweir }; 129cdf0e10cSrcweir Edit EDIT_DIRACTION { 130cdf0e10cSrcweir HelpID = "soldep:Edit:RID_SD_DIALOG_NEWDIRECTORY:EDIT_DIRACTION"; 131cdf0e10cSrcweir Border = TRUE; 132cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,80,132,10); 133cdf0e10cSrcweir }; 134cdf0e10cSrcweir FixedText FT_DIRENV { 135cdf0e10cSrcweir PosSize = MAP_SYSFONT( 5, 90, 100, 10 ); 136cdf0e10cSrcweir Text = "Which Environments"; 137cdf0e10cSrcweir }; 138cdf0e10cSrcweir Edit EDIT_DIRENV { 139cdf0e10cSrcweir HelpID = "soldep:Edit:RID_SD_DIALOG_NEWDIRECTORY:EDIT_DIRENV"; 140cdf0e10cSrcweir Border = TRUE; 141cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,100,132,10); 142cdf0e10cSrcweir }; 143cdf0e10cSrcweir}; 144cdf0e10cSrcweir 145cdf0e10cSrcweir 146cdf0e10cSrcweirModalDialog RID_SD_DIALOG_HELP 147cdf0e10cSrcweir{ 148cdf0e10cSrcweir HelpID = "soldep:ModalDialog:RID_SD_DIALOG_HELP"; 149cdf0e10cSrcweir OutputSize = TRUE; 150cdf0e10cSrcweir Text = "Help"; 151cdf0e10cSrcweir PosSize = MAP_SYSFONT(18,18,242,242); 152cdf0e10cSrcweir SVLook = TRUE; 153cdf0e10cSrcweir MOVEABLE = TRUE; 154cdf0e10cSrcweir CLOSEABLE = TRUE; 155cdf0e10cSrcweir OKButton BTN_OK 156cdf0e10cSrcweir { 157cdf0e10cSrcweir PosSize = MAP_SYSFONT(101,223,40,14); 158cdf0e10cSrcweir TabStop = TRUE; 159cdf0e10cSrcweir Hide = FALSE; 160cdf0e10cSrcweir DefButton = TRUE; 161cdf0e10cSrcweir }; 162cdf0e10cSrcweir MultiLineEdit EDIT_HELP { 163cdf0e10cSrcweir HelpID = "soldep:MultiLineEdit:RID_SD_DIALOG_HELP:EDIT_HELP"; 164cdf0e10cSrcweir Border = TRUE; 165cdf0e10cSrcweir PosSize = MAP_SYSFONT(5,5,232,213); 166cdf0e10cSrcweir }; 167cdf0e10cSrcweir}; 168cdf0e10cSrcweir 169cdf0e10cSrcweirModalDialog DLG_VERSIONSELECT { 170cdf0e10cSrcweir HelpID = "soldep:ModalDialog:DLG_VERSIONSELECT"; 171cdf0e10cSrcweir OutputSize = TRUE; 172cdf0e10cSrcweir Pos = MAP_APPFONT( 92, 40 ); 173cdf0e10cSrcweir Size = MAP_APPFONT( 161, 98 ); 174cdf0e10cSrcweir Text = "Open workspace"; 175cdf0e10cSrcweir Moveable = TRUE; 176cdf0e10cSrcweir Closeable = TRUE; 177cdf0e10cSrcweir ListBox DLG_VERSIONSELECT_LISTBOX { 178cdf0e10cSrcweir HelpID = "soldep:ListBox:DLG_VERSIONSELECT:DLG_VERSIONSELECT_LISTBOX"; 179cdf0e10cSrcweir Border = TRUE; 180cdf0e10cSrcweir Pos = MAP_APPFONT( 8, 16 ); 181cdf0e10cSrcweir Size = MAP_APPFONT( 96, 72 ); 182cdf0e10cSrcweir TabStop = TRUE; 183cdf0e10cSrcweir }; 184cdf0e10cSrcweir GroupBox DLG_VERSIONSELECT_GROUP { 185cdf0e10cSrcweir Pos = MAP_APPFONT( 4, 4 ); 186cdf0e10cSrcweir Size = MAP_APPFONT( 104, 88 ); 187cdf0e10cSrcweir Text = "Workspaces"; 188cdf0e10cSrcweir }; 189cdf0e10cSrcweir OKButton DLG_VERSIONSELECT_OK { 190cdf0e10cSrcweir Pos = MAP_APPFONT( 116, 64 ); 191cdf0e10cSrcweir Size = MAP_APPFONT( 40, 12 ); 192cdf0e10cSrcweir DefButton = TRUE; 193cdf0e10cSrcweir TabStop = TRUE; 194cdf0e10cSrcweir }; 195cdf0e10cSrcweir CancelButton DLG_VERSIONSELECT_CANCEL { 196cdf0e10cSrcweir Pos = MAP_APPFONT( 116, 80 ); 197cdf0e10cSrcweir Size = MAP_APPFONT( 40, 12 ); 198cdf0e10cSrcweir TabStop = TRUE; 199cdf0e10cSrcweir }; 200cdf0e10cSrcweir GroupBox DLG_MINORSELECT_GROUP { 201cdf0e10cSrcweir Pos = MAP_APPFONT( 110, 4 ); 202cdf0e10cSrcweir Size = MAP_APPFONT( 47, 30 ); 203cdf0e10cSrcweir Text = "Minor"; 204cdf0e10cSrcweir }; 205cdf0e10cSrcweir Edit DLG_MINORSELECT_EDIT { 206cdf0e10cSrcweir HelpID = "soldep:Edit:DLG_VERSIONSELECT:DLG_MINORSELECT_EDIT"; 207cdf0e10cSrcweir Border = TRUE; 208cdf0e10cSrcweir Pos = MAP_APPFONT( 115, 16 ); 209cdf0e10cSrcweir Size = MAP_APPFONT( 36, 12 ); 210cdf0e10cSrcweir TabStop = TRUE; 211cdf0e10cSrcweir }; 212cdf0e10cSrcweir}; 213cdf0e10cSrcweir 214cdf0e10cSrcweirModelessDialog DLG_AUTOARRANGE { 215cdf0e10cSrcweir HelpID = "soldep:ModelessDialog:DLG_AUTOARRANGE"; 216cdf0e10cSrcweir OutputSize = TRUE; 217cdf0e10cSrcweir Pos = MAP_APPFONT( 40, 12 ); 218cdf0e10cSrcweir Size = MAP_APPFONT( 225, 82 ); 219cdf0e10cSrcweir Text = "Autoarrange"; 220cdf0e10cSrcweir Moveable = TRUE; 221cdf0e10cSrcweir GroupBox DLG_AUTOARRANGE_GROUP { 222cdf0e10cSrcweir Pos = MAP_APPFONT( 4, 4 ); 223cdf0e10cSrcweir Size = MAP_APPFONT( 216, 72 ); 224cdf0e10cSrcweir Text = "Progress"; 225cdf0e10cSrcweir }; 226cdf0e10cSrcweir FixedText DLG_AUTOARRANGE_TEXT_MODULE { 227cdf0e10cSrcweir Pos = MAP_APPFONT( 8, 16 ); 228cdf0e10cSrcweir Size = MAP_APPFONT( 208, 10 ); 229cdf0e10cSrcweir Text = ""; 230cdf0e10cSrcweir }; 231cdf0e10cSrcweir FixedText DLG_AUTOARRANGE_TEXT_OVERALL { 232cdf0e10cSrcweir Pos = MAP_APPFONT( 8, 48 ); 233cdf0e10cSrcweir Size = MAP_APPFONT( 208, 10 ); 234cdf0e10cSrcweir Text = ""; 235cdf0e10cSrcweir }; 236cdf0e10cSrcweir}; 237cdf0e10cSrcweir 238cdf0e10cSrcweirModalDialog DLG_FIND_PROJECT { 239cdf0e10cSrcweir HelpID = "soldep:ModalDialog:DLG_FIND_PROJECT"; 240cdf0e10cSrcweir OutputSize = TRUE; 241cdf0e10cSrcweir Pos = MAP_APPFONT( 40, 12 ); 242cdf0e10cSrcweir Size = MAP_APPFONT( 155, 55 ); 243cdf0e10cSrcweir Text = "Find Project"; 244cdf0e10cSrcweir Moveable = TRUE; 245cdf0e10cSrcweir SVLook = TRUE; 246cdf0e10cSrcweir ComboBox DLG_FIND_PROJECT_COMBOBOX 247cdf0e10cSrcweir { 248cdf0e10cSrcweir HelpID = "soldep:ComboBox:DLG_FIND_PROJECT:DLG_FIND_PROJECT_COMBOBOX"; 249cdf0e10cSrcweir Pos = MAP_APPFONT ( 5 , 18 ) ; 250cdf0e10cSrcweir Size = MAP_APPFONT ( 100 , 90 ) ; 251cdf0e10cSrcweir TabStop = TRUE ; 252cdf0e10cSrcweir DropDown = TRUE ; 253cdf0e10cSrcweir VScroll = TRUE ; 254cdf0e10cSrcweir Sort = TRUE ; 255cdf0e10cSrcweir }; 256cdf0e10cSrcweir OKButton DLG_FIND_PROJECT_OK { 257cdf0e10cSrcweir Pos = MAP_APPFONT( 110, 10 ); 258cdf0e10cSrcweir Size = MAP_APPFONT( 40, 12 ); 259cdf0e10cSrcweir DefButton = TRUE; 260cdf0e10cSrcweir TabStop = TRUE; 261cdf0e10cSrcweir }; 262cdf0e10cSrcweir CancelButton DLG_FIND_PROJECT_CANCEL { 263cdf0e10cSrcweir Pos = MAP_APPFONT( 110, 26 ); 264cdf0e10cSrcweir Size = MAP_APPFONT( 40, 12 ); 265cdf0e10cSrcweir TabStop = TRUE; 266cdf0e10cSrcweir }; 267cdf0e10cSrcweir}; 268cdf0e10cSrcweir 269cdf0e10cSrcweirToolBox TID_SOLDEP_MAIN 270cdf0e10cSrcweir{ 271cdf0e10cSrcweir ButtonType = BUTTON_SYMBOL; 272cdf0e10cSrcweir Align = BOXALIGN_TOP; 273cdf0e10cSrcweir LineCount = 1; 274cdf0e10cSrcweir SVLook = TRUE; 275cdf0e10cSrcweir Border = TRUE; 276cdf0e10cSrcweir Sizeable = TRUE; 277cdf0e10cSrcweir Dockable = TRUE; 278cdf0e10cSrcweir Scroll = TRUE; 279cdf0e10cSrcweir Moveable = TRUE; 280cdf0e10cSrcweir Closeable = TRUE; 281cdf0e10cSrcweir Zoomable = TRUE; 282cdf0e10cSrcweir ItemList = 283cdf0e10cSrcweir { 284cdf0e10cSrcweir ToolBoxItem 285cdf0e10cSrcweir { 286cdf0e10cSrcweir Identifier = TID_SOLDEP_OPEN; 287cdf0e10cSrcweir Type = TOOLBOXITEM_BUTTON; 288cdf0e10cSrcweir Text = "Load"; 289cdf0e10cSrcweir HelpText = "Load"; 290cdf0e10cSrcweir Checkable = TRUE; 291cdf0e10cSrcweir ItemBitmap = Bitmap 292cdf0e10cSrcweir { 293cdf0e10cSrcweir File = "sx03190.png"; 294cdf0e10cSrcweir }; 295cdf0e10cSrcweir }; 296cdf0e10cSrcweir ToolBoxItem 297cdf0e10cSrcweir { 298cdf0e10cSrcweir Identifier = TID_SOLDEP_SAVE; 299cdf0e10cSrcweir Type = TOOLBOXITEM_BUTTON; 300cdf0e10cSrcweir Text = "Save"; 301cdf0e10cSrcweir HelpText = "Save"; 302cdf0e10cSrcweir Checkable = TRUE; 303cdf0e10cSrcweir ItemBitmap = Bitmap 304cdf0e10cSrcweir { 305cdf0e10cSrcweir File = "sc05505.png"; 306cdf0e10cSrcweir }; 307cdf0e10cSrcweir }; 308cdf0e10cSrcweir ToolBoxItem 309cdf0e10cSrcweir { 310cdf0e10cSrcweir Type = TOOLBOXITEM_SEPARATOR; 311cdf0e10cSrcweir }; 312cdf0e10cSrcweir ToolBoxItem 313cdf0e10cSrcweir { 314cdf0e10cSrcweir Identifier = TID_SOLDEP_SELECT_WORKSPACE; 315cdf0e10cSrcweir Type = TOOLBOXITEM_BUTTON; 316cdf0e10cSrcweir Text = "Select Workspace"; 317cdf0e10cSrcweir HelpText = "Select Workspace"; 318cdf0e10cSrcweir Checkable = TRUE; 319cdf0e10cSrcweir ItemBitmap = Bitmap 320cdf0e10cSrcweir { 321cdf0e10cSrcweir File = "selectupd_16.png"; 322cdf0e10cSrcweir }; 323cdf0e10cSrcweir }; 324cdf0e10cSrcweir ToolBoxItem 325cdf0e10cSrcweir { 326cdf0e10cSrcweir Identifier = TID_SOLDEP_FIND; 327cdf0e10cSrcweir Type = TOOLBOXITEM_BUTTON; 328cdf0e10cSrcweir Text = "Find Module"; 329cdf0e10cSrcweir HelpText = "Find Module"; 330cdf0e10cSrcweir Checkable = TRUE; 331cdf0e10cSrcweir ItemBitmap = Bitmap 332cdf0e10cSrcweir { 333cdf0e10cSrcweir File = "sc05961.png"; 334cdf0e10cSrcweir }; 335cdf0e10cSrcweir }; 336cdf0e10cSrcweir ToolBoxItem 337cdf0e10cSrcweir { 338cdf0e10cSrcweir Identifier = TID_SOLDEP_BACK; 339cdf0e10cSrcweir Type = TOOLBOXITEM_BUTTON; 340cdf0e10cSrcweir Text = "Back to Overview"; 341cdf0e10cSrcweir HelpText = "Back to Overview"; 342cdf0e10cSrcweir Checkable = TRUE; 343cdf0e10cSrcweir ItemBitmap = Bitmap 344cdf0e10cSrcweir { 345cdf0e10cSrcweir File = "arrowup_16.png"; 346cdf0e10cSrcweir }; 347cdf0e10cSrcweir }; 348cdf0e10cSrcweir ToolBoxItem 349cdf0e10cSrcweir { 350cdf0e10cSrcweir Identifier = TID_SOLDEP_HIDE_INDEPENDEND; 351cdf0e10cSrcweir Type = TOOLBOXITEM_BUTTON; 352cdf0e10cSrcweir Text = "Hide Independend Modules"; 353cdf0e10cSrcweir HelpText = "Hide Independend Modules"; 354cdf0e10cSrcweir Checkable = TRUE; 355cdf0e10cSrcweir ItemBitmap = Bitmap 356cdf0e10cSrcweir { 357cdf0e10cSrcweir File = "hidedependency_16.png"; 358cdf0e10cSrcweir }; 359cdf0e10cSrcweir }; 360cdf0e10cSrcweir ToolBoxItem 361cdf0e10cSrcweir { 362cdf0e10cSrcweir Identifier = TID_SOLDEP_CREATEMETA; 363cdf0e10cSrcweir Type = TOOLBOXITEM_BUTTON; 364cdf0e10cSrcweir Text = "Create MetaFile"; 365cdf0e10cSrcweir Checkable = TRUE; 366cdf0e10cSrcweir }; 367cdf0e10cSrcweir }; 368cdf0e10cSrcweir}; 369cdf0e10cSrcweir 370cdf0e10cSrcweir/*****************************************************************************/ 371cdf0e10cSrcweirBitmap TID_SMALL_PIN_PINED 372cdf0e10cSrcweir/*****************************************************************************/ 373cdf0e10cSrcweir{ 374cdf0e10cSrcweir File = "ballgreen_7.png"; 375cdf0e10cSrcweir}; 376cdf0e10cSrcweir 377cdf0e10cSrcweir/*****************************************************************************/ 378cdf0e10cSrcweirBitmap TID_SMALL_PIN_UNPINED 379cdf0e10cSrcweir/*****************************************************************************/ 380cdf0e10cSrcweir{ 381cdf0e10cSrcweir File = "ballred_7.png"; 382cdf0e10cSrcweir}; 383