ProjectBrowser.st
changeset 1236 a7dbf8ace3f4
parent 1235 2eb4b86bd0a6
child 1237 6d473fbfdf7d
equal deleted inserted replaced
1235:2eb4b86bd0a6 1236:a7dbf8ace3f4
    72 "
    72 "
    73 
    73 
    74 
    74 
    75 ! !
    75 ! !
    76 
    76 
       
    77 !ProjectBrowser class methodsFor:'class initialization'!
       
    78 
       
    79 initialize
       
    80     "add myself to the launchers tool menu"
       
    81 
       
    82     NewLauncher allInstancesDo:[:l |
       
    83         l addUserTool:'Project Builder' 
       
    84           action:[ProjectBrowser open] 
       
    85           in:#menu 
       
    86           icon:self projectBrowserIcon 
       
    87           space:true
       
    88     ].
       
    89 
       
    90     "
       
    91      self initialize
       
    92     "
       
    93 
       
    94 ! !
       
    95 
    77 !ProjectBrowser class methodsFor:'help specs'!
    96 !ProjectBrowser class methodsFor:'help specs'!
    78 
    97 
    79 helpSpec
    98 helpSpec
    80     "This resource specification was automatically generated
    99     "This resource specification was automatically generated
    81      by the UIHelpTool of ST/X."
   100      by the UIHelpTool of ST/X."
   340     <resource: #image>
   359     <resource: #image>
   341 
   360 
   342     ^Icon
   361     ^Icon
   343         constantNamed:#'ProjectBrowser prerequisitesIcon'
   362         constantNamed:#'ProjectBrowser prerequisitesIcon'
   344         ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@Q@@@@@@@@@AD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DP@@@@@AD@@Q@@@@@@DP@@@@@@@@@Q@@@@@@@@@@@@@@@@@@@@@@@AD@@@@@@@@@DP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 127 127 127]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A8@G(@^PA80@C@^@=8S7//^D<@C7#@^LA9@G(@@@@b') ; yourself); yourself]!
   363         ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@Q@@@@@@@@@AD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DP@@@@@AD@@Q@@@@@@DP@@@@@@@@@Q@@@@@@@@@@@@@@@@@@@@@@@AD@@@@@@@@@DP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 127 127 127]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A8@G(@^PA80@C@^@=8S7//^D<@C7#@^LA9@G(@@@@b') ; yourself); yourself]!
       
   364 
       
   365 projectBrowserIcon
       
   366     "This resource specification was automatically generated
       
   367      by the ImageEditor of ST/X."
       
   368 
       
   369     "Do not manually edit this!! If it is corrupted,
       
   370      the ImageEditor may not be able to read the specification."
       
   371 
       
   372     "
       
   373      self projectBrowserIcon inspect
       
   374      ImageEditor openOnClass:self andSelector:#projectBrowserIcon
       
   375     "
       
   376 
       
   377     <resource: #image>
       
   378 
       
   379     ^Icon
       
   380         constantNamed:#'ProjectBrowser projectBrowserIcon'
       
   381         ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@L0@@@3L0@@@@@@@3L3@@L3L3@@@@@@L3@3@CL@@3@@@@@CL@@3@CL@@3@@@@@CL@@3@CL@@3@@@@@CL@@3@CLCL3@@@@@@L3P3QCL3MDP@@@@@L3L3P3L3QDA@@@@@L3L3L3L3L3Q@@@@@QDQCL3QDPCQ@@@@@QDP3L4QDACQ@@@@@@@L3L@@@QCQ@@@ADQDL3QDQ@QCQ@@@ADQDL3QDQ@QCQ@@@ADQDL3QDQ@QCQ@@@ADQDL3QDQ@QCQ@@@ADQDL3QDQ@QCQ@@@ADQDL3QDQ@QCQ@@@ADQDL3QDQ@QCP@@@ADQDL3QDQ@QC@@@@ADQDL3QDQ@QC@@@@ADQDL3QDQ@P@@@@@ADQDL3QDQ@@@@@@@@@@@L3@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 132 132 0 0 132 0 132 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@FC0@_G8@;LXA#LXA#LXA''??@???@???@???A???A???G???G???G???G???G???G???G???G??>G??<G??8G??0G?? G??@') ; yourself); yourself]!
   345 
   382 
   346 projectsIcon
   383 projectsIcon
   347     "This resource specification was automatically generated
   384     "This resource specification was automatically generated
   348      by the ImageEditor of ST/X."
   385      by the ImageEditor of ST/X."
   349 
   386 
  5277 !ProjectBrowser class methodsFor:'documentation'!
  5314 !ProjectBrowser class methodsFor:'documentation'!
  5278 
  5315 
  5279 version
  5316 version
  5280     ^ '$Header$'
  5317     ^ '$Header$'
  5281 ! !
  5318 ! !
       
  5319 ProjectBrowser initialize!