1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/filehistory.h
3 // Purpose: GTK+ bits for wxFileHistory
4 // Author: Vaclav Slavik
6 // Copyright: (c) 2010 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_GTK_FILEHISTORY_H_
11 #define _WX_GTK_FILEHISTORY_H_
13 class WXDLLIMPEXP_CORE wxFileHistory
: public wxFileHistoryBase
16 wxFileHistory(size_t maxFiles
= 9, wxWindowID idBase
= wxID_FILE1
)
17 : wxFileHistoryBase(maxFiles
, idBase
) {}
19 virtual void AddFileToHistory(const wxString
& file
);
21 DECLARE_DYNAMIC_CLASS(wxFileHistory
)
24 #endif // _WX_GTK_FILEHISTORY_H_