< prev index next >

src/java.desktop/macosx/native/libawt_lwawt/awt/CFileDialog.h

Print this page
rev 54098 : 8260616: Removing remaining JNF dependencies in the java.desktop module
8259729: Missed JNFInstanceOf -> IsInstanceOf conversion


   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #import <Cocoa/Cocoa.h>
  27 #import <JavaNativeFoundation/JavaNativeFoundation.h>
  28 
  29 @interface CFileDialog : NSObject <NSOpenSavePanelDelegate> {
  30     // Should we query back to Java for a file filter?
  31     jboolean fHasFileFilter;
  32 
  33     // sun.awt.CFileDialog
  34     jobject fFileDialog;
  35 
  36     // Return value from dialog
  37     NSInteger fPanelResult;
  38 
  39     // Dialog's title
  40     NSString *fTitle;
  41 
  42     // Starting directory and file
  43     NSString *fDirectory;
  44     NSString *fFile;
  45 
  46     // File dialog's mode
  47     jint fMode;




   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #import <Cocoa/Cocoa.h>

  27 
  28 @interface CFileDialog : NSObject <NSOpenSavePanelDelegate> {
  29     // Should we query back to Java for a file filter?
  30     jboolean fHasFileFilter;
  31 
  32     // sun.awt.CFileDialog
  33     jobject fFileDialog;
  34 
  35     // Return value from dialog
  36     NSInteger fPanelResult;
  37 
  38     // Dialog's title
  39     NSString *fTitle;
  40 
  41     // Starting directory and file
  42     NSString *fDirectory;
  43     NSString *fFile;
  44 
  45     // File dialog's mode
  46     jint fMode;


< prev index next >