Tools_SearchDialog.st
changeset 8165 d7d59fbdcd2b
parent 8124 efb41986ea62
child 8269 eb414f5f7bf1
equal deleted inserted replaced
8164:ee17624160a6 8165:d7d59fbdcd2b
   424     self addCheckBoxForInstanceMethodSearch.
   424     self addCheckBoxForInstanceMethodSearch.
   425 ].
   425 ].
   426 
   426 
   427 "/    rightVerticalPanel origin:0.75@0.0 corner:1.0@1.0.
   427 "/    rightVerticalPanel origin:0.75@0.0 corner:1.0@1.0.
   428     hPanel 
   428     hPanel 
   429         preferredExtent:(leftVerticalPanel preferredExtent y + rightVerticalPanel preferredExtent y)
   429         preferredExtent:(leftVerticalPanel preferredHeight + rightVerticalPanel preferredHeight)
   430                         @
   430                         @
   431                         (leftVerticalPanel preferredExtent y max:rightVerticalPanel preferredExtent y).
   431                         (leftVerticalPanel preferredHeight max:rightVerticalPanel preferredHeight).
   432     hPanel add:rightVerticalPanel.
   432     hPanel add:rightVerticalPanel.
   433     self addComponent:hPanel indent:0.
   433     self addComponent:hPanel indent:0.
   434 
   434 
   435     "/ panel has its own idea of indenting
   435     "/ panel has its own idea of indenting
   436     self addVerticalSpace.
   436     self addVerticalSpace.
   809     panel relativeCorners:#(0.6 1.0).
   809     panel relativeCorners:#(0.6 1.0).
   810 
   810 
   811     helpButton := Button label:(resources string:'Pattern Help') in:infoLabel.
   811     helpButton := Button label:(resources string:'Pattern Help') in:infoLabel.
   812     helpButton layout:((AlignmentOrigin fractionalFromPoint:0.5@1.0) 
   812     helpButton layout:((AlignmentOrigin fractionalFromPoint:0.5@1.0) 
   813                             leftOffset:2
   813                             leftOffset:2
   814                             topOffset:helpButton preferredExtent y negated;
   814                             topOffset:helpButton preferredHeight negated;
   815                             leftAlignmentFraction:0.5 topAlignmentFraction:0).
   815                             leftAlignmentFraction:0.5 topAlignmentFraction:0).
   816     helpButton topInset:0.75@1.0.
   816     helpButton topInset:0.75@1.0.
   817     helpButton action:[self showHelpOnCodePatterns].
   817     helpButton action:[self showHelpOnCodePatterns].
   818 
   818 
   819 
   819 
  1087 ! !
  1087 ! !
  1088 
  1088 
  1089 !SearchDialog class methodsFor:'documentation'!
  1089 !SearchDialog class methodsFor:'documentation'!
  1090 
  1090 
  1091 version
  1091 version
  1092     ^ '$Header: /cvs/stx/stx/libtool/Tools_SearchDialog.st,v 1.27 2008-05-13 13:28:05 cg Exp $'
  1092     ^ '$Header: /cvs/stx/stx/libtool/Tools_SearchDialog.st,v 1.28 2008-05-30 12:28:29 cg Exp $'
  1093 ! !
  1093 ! !