git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22722 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        filedlg.h
 | 
						|
// Purpose:
 | 
						|
// Author:      Robert Roebling
 | 
						|
// Id:          $Id$
 | 
						|
// Copyright:   (c) 1998 Robert Roebling
 | 
						|
// Licence:     wxWindows licence
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
 | 
						|
#ifndef __GTKFILEDLGH__
 | 
						|
#define __GTKFILEDLGH__
 | 
						|
 | 
						|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 | 
						|
#pragma interface
 | 
						|
#endif
 | 
						|
 | 
						|
//-------------------------------------------------------------------------
 | 
						|
// wxFileDialog
 | 
						|
//-------------------------------------------------------------------------
 | 
						|
 | 
						|
class wxFileDialog: public wxFileDialogBase
 | 
						|
{
 | 
						|
public:
 | 
						|
    wxFileDialog() { }
 | 
						|
 | 
						|
    wxFileDialog(wxWindow *parent,
 | 
						|
                 const wxString& message = wxFileSelectorPromptStr,
 | 
						|
                 const wxString& defaultDir = wxEmptyString,
 | 
						|
                 const wxString& defaultFile = wxEmptyString,
 | 
						|
                 const wxString& wildCard = wxFileSelectorDefaultWildcardStr,
 | 
						|
                 long style = 0,
 | 
						|
                 const wxPoint& pos = wxDefaultPosition);
 | 
						|
    
 | 
						|
    virtual void SetPath(const wxString& path);
 | 
						|
    
 | 
						|
private:
 | 
						|
    DECLARE_DYNAMIC_CLASS(wxFileDialog)
 | 
						|
};
 | 
						|
 | 
						|
#endif // __GTKFILEDLGH__
 |