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