2009-09-04 00:10:01 +00:00
|
|
|
//this file is part of notepad++
|
|
|
|
//Copyright (C)2003 Don HO <donho@altern.org>
|
|
|
|
//
|
|
|
|
//This program is free software; you can redistribute it and/or
|
|
|
|
//modify it under the terms of the GNU General Public License
|
|
|
|
//as published by the Free Software Foundation; either
|
|
|
|
//version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
//This program 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 General Public License for more details.
|
|
|
|
//
|
|
|
|
//You should have received a copy of the GNU General Public License
|
|
|
|
//along with this program; if not, write to the Free Software
|
|
|
|
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
2009-04-24 23:34:47 +00:00
|
|
|
#ifndef LASTRECENTFILELIST_H
|
|
|
|
#define LASTRECENTFILELIST_H
|
|
|
|
|
2009-09-04 00:10:01 +00:00
|
|
|
#ifndef PARAMETERS_H
|
2009-04-24 23:34:47 +00:00
|
|
|
#include "Parameters.h"
|
2009-09-04 00:10:01 +00:00
|
|
|
#endif //PARAMETERS_H
|
2009-04-24 23:34:47 +00:00
|
|
|
|
|
|
|
struct RecentItem {
|
|
|
|
int _id;
|
2009-08-03 00:37:30 +00:00
|
|
|
generic_string _name;
|
2009-04-24 23:34:47 +00:00
|
|
|
RecentItem(const TCHAR * name) : _name(name) {};
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::deque<RecentItem> recentList;
|
|
|
|
|
|
|
|
class LastRecentFileList
|
|
|
|
{
|
|
|
|
public :
|
|
|
|
LastRecentFileList() : _hasSeparators(false), _size(0), _locked(false) {
|
2011-06-26 02:09:56 +00:00
|
|
|
_userMax = (NppParameters::getInstance())->getNbMaxRecentFile();
|
2009-04-24 23:34:47 +00:00
|
|
|
};
|
|
|
|
|
2011-06-18 22:54:32 +00:00
|
|
|
void initMenu(HMENU hMenu, int idBase, int posBase, bool doSubMenu = false);
|
2011-06-27 01:23:58 +00:00
|
|
|
void switchMode();
|
2009-04-24 23:34:47 +00:00
|
|
|
void updateMenu();
|
|
|
|
|
|
|
|
void add(const TCHAR *fn);
|
|
|
|
void remove(const TCHAR *fn);
|
|
|
|
void remove(int index);
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
int getSize() {
|
|
|
|
return _size;
|
|
|
|
};
|
|
|
|
|
2011-06-18 22:54:32 +00:00
|
|
|
|
2009-04-24 23:34:47 +00:00
|
|
|
int getMaxNbLRF() const {
|
|
|
|
return NB_MAX_LRF_FILE;
|
|
|
|
};
|
|
|
|
|
|
|
|
int getUserMaxNbLRF() const {
|
|
|
|
return _userMax;
|
|
|
|
};
|
|
|
|
|
2009-08-03 00:37:30 +00:00
|
|
|
generic_string & getItem(int id); //use menu id
|
|
|
|
generic_string & getIndex(int index); //use menu id
|
2009-04-24 23:34:47 +00:00
|
|
|
|
|
|
|
void setUserMaxNbLRF(int size);
|
|
|
|
|
|
|
|
void saveLRFL();
|
|
|
|
|
|
|
|
void setLock(bool lock) {
|
|
|
|
_locked = lock;
|
|
|
|
};
|
2009-05-26 23:34:45 +00:00
|
|
|
|
|
|
|
void setLangEncoding(int nativeLangEncoding) {
|
|
|
|
_nativeLangEncoding = nativeLangEncoding;
|
|
|
|
};
|
|
|
|
|
2011-06-18 22:54:32 +00:00
|
|
|
bool isSubMenuMode() const {
|
|
|
|
return (_hParentMenu != NULL);
|
2011-06-27 01:23:58 +00:00
|
|
|
};
|
2011-06-18 22:54:32 +00:00
|
|
|
|
2009-04-24 23:34:47 +00:00
|
|
|
private:
|
|
|
|
recentList _lrfl;
|
|
|
|
int _userMax;
|
|
|
|
int _size;
|
2009-05-26 23:34:45 +00:00
|
|
|
int _nativeLangEncoding;
|
2009-04-24 23:34:47 +00:00
|
|
|
|
|
|
|
// For the menu
|
2011-06-18 22:54:32 +00:00
|
|
|
HMENU _hParentMenu;
|
2009-04-24 23:34:47 +00:00
|
|
|
HMENU _hMenu;
|
|
|
|
int _posBase;
|
|
|
|
int _idBase;
|
|
|
|
bool _idFreeArray[NB_MAX_LRF_FILE];
|
|
|
|
bool _hasSeparators;
|
|
|
|
bool _locked;
|
|
|
|
|
|
|
|
int find(const TCHAR *fn);
|
|
|
|
|
|
|
|
int popFirstAvailableID();
|
|
|
|
void setAvailable(int id);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //LASTRECENTFILELIST_H
|