Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members
|
#include <FXFileDict.h>
Inheritance diagram for FX::FXFileDict:
Public Member Functions | |
FXFileDict (FXApp *a) | |
FXFileDict (FXApp *a, FXSettings *db) | |
FXApp * | getApp () const |
void | setIconPath (const FXString &path) |
FXString | getIconPath () const |
FXFileAssoc * | replace (const FXchar *ext, const FXchar *str) |
FXFileAssoc * | remove (const FXchar *ext) |
FXFileAssoc * | find (const FXchar *ext) |
FXFileAssoc * | associate (const FXchar *key) |
virtual FXFileAssoc * | findFileBinding (const FXchar *pathname) |
virtual FXFileAssoc * | findDirBinding (const FXchar *pathname) |
virtual FXFileAssoc * | findExecBinding (const FXchar *pathname) |
virtual void | save (FXStream &store) const |
virtual void | load (FXStream &store) |
virtual | ~FXFileDict () |
Static Public Attributes | |
const FXchar | defaultExecBinding [] |
const FXchar | defaultDirBinding [] |
const FXchar | defaultFileBinding [] |
The Registry is used as source of the file bindings; an alternative Settings database may be specified however.
|
Construct a dictionary mapping file-extension to file associations, using the application registry settings as a source for the bindings.
|
|
Construct a dictionary mapping file-extension to file associations, using the specified settings database as a source for the bindings.
|
|
Destructor.
|
|
Get application.
|
|
Set icon search path.
|
|
Return current icon search path.
|
|
Replace file association. The new association is written into the settings database under the FILETYPES section; the format of the association is as follows: <extension> = "<command> ; <type> ; <bigicon> [ : <bigopenicon> ] ; <smallicon> [ : <smalliconopen> ] ; <mimetype>" Where <command> is the command used to launch the application (e.g. "xv %s &"), and <type> is the file type string (e.g. "GIF Image"), <bigicon> and <bigiconopen> are the large icons shown in "Icons" mode, <smallicon> and <smalliconopen> are the small icons shown in "Details" mode, and <mimetype> is the RFC2045 mime type of the file. For example: [FILETYPES] gif="xv s &;GIF Image;big.xpm:bigopen.xpm;mini.xpm:miniopen.xpm;image/gif" /home/jeroen=";Home;home.xpm;minihome.xpm;application/x-folder" |
|
Remove file association.
Reimplemented from FX::FXDict. |
|
Find file association already in dictionary.
|
|
Find file association from registry.
|
|
Determine binding for the given file. The default implementation tries the whole filename first, then tries the extensions. For example, for a file "source.tar.gz": "source.tar.gz", "tar.gz", "gz" are tried in succession. If no association is found the key "defaultfilebinding" is tried as a fallback association. A NULL is returned if no association of any kind is found. |
|
Find directory binding from registry. The default implementation tries the whole pathname first, then tries successively smaller parts of the path. For example, a pathname "/usr/people/jeroen": "/usr/people/jeroen" "/people/jeroen" "/jeroen" are tried in succession. If no bindings are found, the key "defaultdirbinding" is tried as a fallback association. A NULL is returned if no association of any kind is found. |
|
Determine binding for the given executable. The default implementation returns the fallback binding associated with the key "defaultexecbinding". A NULL is returned if no association of any kind is found. |
|
Save to stream.
Reimplemented from FX::FXObject. |
|
Load from stream.
Reimplemented from FX::FXObject. |
|
Registry key used to find fallback executable icons.
|
|
Registry key used to find fallback directory icons.
|
|
Registry key used to find fallback document icons.
|
Copyright © 1997-2004 Jeroen van der Zijp |