FilenameComboBoxView.st
author mawalch
Wed, 20 Apr 2016 23:17:26 +0200
changeset 5029 5f1d1837cbdf
parent 3250 e016b4cd8e65
child 5175 aecc83695a41
permissions -rw-r--r--
#DOCUMENTATION by mawalch class: ImageEditView comment/format in: #loadFromFile: s/exeption/exception/g

"
 COPYRIGHT (c) 2002 by eXept Software AG 
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libwidg2' }"

ComboBoxView subclass:#FilenameComboBoxView
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Views-Interactors'
!

!FilenameComboBoxView class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2002 by eXept Software AG 
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    Like A ComboBoxView, but does fileNameCompletion when the Tab key is hit.

    [author:]
        Claus Gittinger

    [see also:]
        ComboBoxView
        FilenameEditField
"
!

examples
"
                                                                        [exBegin]
     |top b|

     top := StandardSystemView new.
     top extent:(300 @ 200).

     b := FilenameComboBoxView in:top.
     b origin:(0.0 @ 0.0) corner:(1.0 @ 0.0).
     b bottomInset:(b preferredExtent y negated).

     b list:#('c:\' 'd:\' 'c:\users').
     top open.
                                                                        [exEnd]
"
! !

!FilenameComboBoxView methodsFor:'initialization'!

editFieldClass
    ^ FilenameEditField
! !

!FilenameComboBoxView class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libwidg2/FilenameComboBoxView.st,v 1.3 2007-10-19 13:57:42 cg Exp $'
! !