initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
24
libs/wxWidgets-3.3.1/include/wx/gtk/filehistory.h
Normal file
24
libs/wxWidgets-3.3.1/include/wx/gtk/filehistory.h
Normal file
@@ -0,0 +1,24 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/gtk/filehistory.h
|
||||
// Purpose: GTK+ bits for wxFileHistory
|
||||
// Author: Vaclav Slavik
|
||||
// Created: 2010-05-06
|
||||
// Copyright: (c) 2010 Vaclav Slavik
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_GTK_FILEHISTORY_H_
|
||||
#define _WX_GTK_FILEHISTORY_H_
|
||||
|
||||
class WXDLLIMPEXP_CORE wxFileHistory : public wxFileHistoryBase
|
||||
{
|
||||
public:
|
||||
wxFileHistory(size_t maxFiles = 9, wxWindowID idBase = wxID_FILE1)
|
||||
: wxFileHistoryBase(maxFiles, idBase) {}
|
||||
|
||||
virtual void AddFileToHistory(const wxString& file) override;
|
||||
|
||||
wxDECLARE_DYNAMIC_CLASS(wxFileHistory);
|
||||
};
|
||||
|
||||
#endif // _WX_GTK_FILEHISTORY_H_
|
||||
Reference in New Issue
Block a user