CFx SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
FxRecentFiles.h
Go to the documentation of this file.
1//
2// (C) Copyright 2005-2023 by Graebert GmbH.
3//
4// Permission to use, copy, modify, and distribute this software in
5// object code form for any purpose and without fee is hereby granted,
6// provided that the above copyright notice appears in all copies and
7// that both that copyright notice and the limited warranty and
8// restricted rights notice below appear in all supporting
9// documentation.
10//
11// GRAEBERT PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
12// GRAEBERT SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
13// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. GRAEBERT GMBH
14// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
15// UNINTERRUPTED OR ERROR FREE.
16
17#pragma once
18
19#include "DDKERNEL.h"
20#include "FxString.h"
21
22#include "FxPragmaPush.h"
23
30{
31public:
33 virtual ~CFxRecentFiles();
34
35 //clears recent files list
36 virtual void Clear() = 0;
37
38 //adds one item to the recent files list,
39 //if there are more than MAX_ITEMS items then it will discard last item
40 virtual void Add(const CFxString& fileName) = 0;
41
42 //removes all occurences of an item in the recent files list,
43 virtual void Remove( const CFxString &fileName ) = 0;
44
45 //returns list with maximum MAX_ITEMS recent file names
47
48protected:
49 static const int MAX_ITEMS = 10;
50};
51
52#include "FxPragmaPop.h"
#define DDKERNEL_API
Definition: DDKERNEL.h:32
std::vector< CFxString > CFxStringArray
Definition: FxString.h:35
virtual ~CFxRecentFiles()
virtual CFxStringArray GetFileNames()=0
virtual void Add(const CFxString &fileName)=0
virtual void Remove(const CFxString &fileName)=0
virtual void Clear()=0