This commit is huge but there are no non-white-space changes in it. Some files containing third-party sources (src/msw/wince/time.cpp, src/x11/pango*.cpp) were left unchanged. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61724 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/gtk/gnome/gvfs.h
 | |
| // Author:      Robert Roebling
 | |
| // Purpose:     GNOME VFS support
 | |
| // Created:     17/03/06
 | |
| // RCS-ID:      $Id$
 | |
| // Copyright:   Robert Roebling
 | |
| // Licence:     wxWindows Licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_GTK_GVFS_H_
 | |
| #define _WX_GTK_GVFS_H_
 | |
| 
 | |
| #include "wx/defs.h"
 | |
| 
 | |
| #if wxUSE_MIMETYPE && wxUSE_LIBGNOMEVFS
 | |
| 
 | |
| #include "wx/string.h"
 | |
| #include "wx/unix/mimetype.h"
 | |
| 
 | |
| //----------------------------------------------------------------------------
 | |
| // wxGnomeVFSMimeTypesManagerImpl
 | |
| //----------------------------------------------------------------------------
 | |
| 
 | |
| class wxGnomeVFSMimeTypesManagerImpl: public wxMimeTypesManagerImpl
 | |
| {
 | |
| public:
 | |
|     wxGnomeVFSMimeTypesManagerImpl() { }
 | |
| 
 | |
| protected:
 | |
|     virtual bool DoAssociation(const wxString& strType,
 | |
|                        const wxString& strIcon,
 | |
|                        wxMimeTypeCommands *entry,
 | |
|                        const wxArrayString& strExtensions,
 | |
|                        const wxString& strDesc);
 | |
| };
 | |
| 
 | |
| //----------------------------------------------------------------------------
 | |
| // wxGnomeVFSMimeTypesManagerFactory
 | |
| //----------------------------------------------------------------------------
 | |
| 
 | |
| class wxGnomeVFSMimeTypesManagerFactory: public wxMimeTypesManagerFactory
 | |
| {
 | |
| public:
 | |
|     wxGnomeVFSMimeTypesManagerFactory() {}
 | |
| 
 | |
|     virtual wxMimeTypesManagerImpl *CreateMimeTypesManagerImpl();
 | |
| };
 | |
| 
 | |
| #endif
 | |
|   // wxUSE_MIMETYPE
 | |
| 
 | |
| #endif
 |