git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31151 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.9 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 "filedlggtk.h"
 | 
						|
#endif
 | 
						|
 | 
						|
#include "wx/generic/filedlgg.h"
 | 
						|
 | 
						|
//-------------------------------------------------------------------------
 | 
						|
// wxFileDialog
 | 
						|
//-------------------------------------------------------------------------
 | 
						|
 | 
						|
class wxFileDialog: public wxGenericFileDialog
 | 
						|
{
 | 
						|
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);
 | 
						|
                 
 | 
						|
    ~wxFileDialog();
 | 
						|
    
 | 
						|
    virtual void GetPaths(wxArrayString& paths) const;
 | 
						|
    virtual void GetFilenames(wxArrayString& files) const;
 | 
						|
    
 | 
						|
    virtual void SetMessage(const wxString& message);
 | 
						|
    virtual void SetPath(const wxString& path);
 | 
						|
    virtual void SetDirectory(const wxString& dir);
 | 
						|
    virtual void SetFilename(const wxString& name);
 | 
						|
    virtual void SetWildcard(const wxString& wildCard);
 | 
						|
    virtual void SetFilterIndex(int filterIndex);
 | 
						|
            
 | 
						|
    virtual int ShowModal();
 | 
						|
    virtual bool Show( bool show = true );
 | 
						|
 | 
						|
    void OnFakeOk( wxCommandEvent &event );
 | 
						|
 | 
						|
//private:
 | 
						|
    bool m_destroyed_by_delete;
 | 
						|
    
 | 
						|
    void UpdateFromDialog();
 | 
						|
    void UpdateDialog();
 | 
						|
 | 
						|
private:    
 | 
						|
    DECLARE_DYNAMIC_CLASS(wxFileDialog)
 | 
						|
    DECLARE_EVENT_TABLE()
 | 
						|
};
 | 
						|
 | 
						|
#endif // __GTKFILEDLGH__
 |