/usr/include/fox-1.6/FXRecentFiles.h is in libfox-1.6-dev 1.6.50-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | /********************************************************************************
* *
* R e c e n t F i l e s L i s t *
* *
*********************************************************************************
* Copyright (C) 1998,2006 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
*********************************************************************************
* $Id: FXRecentFiles.h,v 1.24 2006/01/22 17:58:08 fox Exp $ *
********************************************************************************/
#ifndef FXRECENTFILES_H
#define FXRECENTFILES_H
#ifndef FXOBJECT_H
#include "FXObject.h"
#endif
namespace FX {
class FXApp;
/**
* The recent files object manages a most recently used (MRU) file list by
* means of the standard system registry.
* When connected to a widget, like a menu command, the recent files object
* updates the menu commands label to the associated recent file name; when
* the menu command is invoked, the recent file object sends its target a
* SEL_COMMAND message with the message data set to the associated file name,
* of the type const char*.
* When adding or removing file names, the recent files object automatically
* updates the system registry to record these changes.
*/
class FXAPI FXRecentFiles : public FXObject {
FXDECLARE(FXRecentFiles)
private:
FXApp *app; // Backlink to application
FXObject *target; // Target object to send message
FXSelector message; // Message to send
FXString group; // MRU File group
FXint maxfiles; // Maximum number of files to track
private:
FXRecentFiles(const FXRecentFiles&);
FXRecentFiles &operator=(const FXRecentFiles&);
public:
long onCmdClear(FXObject*,FXSelector,void*);
long onCmdFile(FXObject*,FXSelector,void*);
long onUpdFile(FXObject*,FXSelector,void*);
long onUpdAnyFiles(FXObject*,FXSelector,void*);
public:
enum{
ID_CLEAR,
ID_ANYFILES,
ID_FILE_1,
ID_FILE_2,
ID_FILE_3,
ID_FILE_4,
ID_FILE_5,
ID_FILE_6,
ID_FILE_7,
ID_FILE_8,
ID_FILE_9,
ID_FILE_10,
ID_LAST
};
public:
/// Make new recent files group, using global application instance
FXRecentFiles();
/// Make new recent files group with default groupname
FXRecentFiles(FXApp* a);
/// Make new recent files group with groupname gp
FXRecentFiles(FXApp* a,const FXString& gp,FXObject *tgt=NULL,FXSelector sel=0);
/// Get application
FXApp* getApp() const { return app; }
/// Change number of files we're tracking
void setMaxFiles(FXint mx){ maxfiles=mx; }
/// Return the maximum number of files being tracked
FXint getMaxFiles() const { return maxfiles; }
/// Set group name
void setGroupName(const FXString& name){ group=name; }
/// Return group name
FXString getGroupName() const { return group; }
/// Change the target
void setTarget(FXObject *t){ target=t; }
/// Get the target
FXObject *getTarget() const { return target; }
/// Change the message
void setSelector(FXSelector sel){ message=sel; }
/// Return the message id
FXSelector getSelector() const { return message; }
/// Obtain the filename at index
FXString getFile(FXint index) const;
/// Change the filename at index
void setFile(FXint index,const FXString& filename);
/// Append a file
void appendFile(const FXString& filename);
/// Remove a file
void removeFile(const FXString& filename);
/// Clear the list of files
void clear();
/// Save to a stream
virtual void save(FXStream& store) const;
/// Load from a stream
virtual void load(FXStream& store);
/// Destructor
virtual ~FXRecentFiles();
};
}
#endif
|