home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / awt / filedialog.java < prev    next >
Text File  |  1995-08-11  |  2KB  |  62 lines

  1. /*
  2.  * @(#)FileDialog.java    1.10 95/01/31 Sami Shaio
  3.  *
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19. package awt;
  20.  
  21. /**
  22.  * A class that brings up a file dialog using the native gui
  23.  * platform's dialog.
  24.  *
  25.  * @version 1.10 31 Jan 1995
  26.  * @author Sami Shaio
  27.  */
  28. public class FileDialog {
  29.     int        pData;
  30.     public String title;
  31.     public Frame parent;
  32.  
  33.  
  34.     /**
  35.      * Create a FileDialog, str is the title of the FileDialog. It can
  36.      * be null in which case a default title is chosen.
  37.      */
  38.     public FileDialog(String str, Frame p) {
  39.     title = str;
  40.     parent = p;
  41.     parent.wServer.fileDialogCreate(this, title, parent);
  42.     }
  43.  
  44.  
  45.     /**
  46.      * Put up a FileDialog and wait for the user to either select a
  47.      * file or cancel. If a file was chosen it will be returned,
  48.      * otherwise, null is returned. If initValue is not null, then it
  49.      * will be used as the initial value for the file dialog.
  50.      */
  51.     public String chooseFile(String initValue) {
  52.     return parent.wServer.fileDialogChooseFile(this, initValue);
  53.     }
  54.  
  55.     /**
  56.      * Disposes of this FileDialog.
  57.      */
  58.     public void dispose() {
  59.     parent.wServer.fileDialogDispose(this);
  60.     }
  61. }
  62.