Home | History | Annotate | Download | only in ui

Lines Matching defs:Listener

32   // Notifies the dialog box that the listener has been destroyed and it should
53 // An interface implemented by a Listener object wishing to know about the
56 class Listener {
58 // Notifies the Listener that a file/folder selection has been made. The
65 // Notifies the Listener that many files have been selected. The
70 // Notifies the Listener that the file/folder selection was aborted (via
76 virtual ~Listener() {}
81 static SelectFileDialog* Create(Listener* listener);
107 // block the calling window until the dialog box is complete. The listener
129 // the listener. Can be NULL.
147 explicit SelectFileDialog(Listener* listener);
163 // The listener to be notified of selection completion.
164 Listener* listener_;