mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -06:00
wxWidgets3: update to svn r70933
This commit is contained in:
34
Externals/wxWidgets3/include/wx/gtk/webviewhistoryitem_webkit.h
vendored
Normal file
34
Externals/wxWidgets3/include/wx/gtk/webviewhistoryitem_webkit.h
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: include/wx/gtk/webviewhistoryitem.h
|
||||
// Purpose: wxWebViewHistoryItem header for GTK
|
||||
// Author: Steven Lamerton
|
||||
// Id: $Id: webviewhistoryitem_webkit.h 69770 2011-11-17 01:23:03Z RD $
|
||||
// Copyright: (c) 2011 Steven Lamerton
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_GTK_WEBVIEWHISTORYITEM_H_
|
||||
#define _WX_GTK_WEBVIEWHISTORYITEM_H_
|
||||
|
||||
#include "wx/setup.h"
|
||||
|
||||
#if wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__)
|
||||
|
||||
class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
|
||||
{
|
||||
public:
|
||||
wxWebViewHistoryItem(const wxString& url, const wxString& title) :
|
||||
m_url(url), m_title(title) {}
|
||||
wxString GetUrl() { return m_url; }
|
||||
wxString GetTitle() { return m_title; }
|
||||
|
||||
friend class wxWebViewWebKit;
|
||||
|
||||
private:
|
||||
wxString m_url, m_title;
|
||||
void* m_histItem;
|
||||
};
|
||||
|
||||
#endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__)
|
||||
|
||||
#endif // _WX_GTK_WEBVIEWHISTORYITEM_H_
|
Reference in New Issue
Block a user