]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/osx/webviewhistoryitem_webkit.h
Override MSWTranslateMessage for wxActiveXContainer. Calling IOleInPlaceActiveObject...
[wxWidgets.git] / include / wx / osx / webviewhistoryitem_webkit.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: include/wx/osx/webviewhistoryitem.h
3// Purpose: wxWebViewHistoryItem header for OSX
4// Author: Steven Lamerton
5// Id: $Id$
6// Copyright: (c) 2011 Steven Lamerton
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_OSX_WEBVIEWHISTORYITEM_H_
11#define _WX_OSX_WEBVIEWHISTORYITEM_H_
12
13#include "wx/setup.h"
14
15#if wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && (defined(__WXOSX_COCOA__) \
16 || defined(__WXOSX_CARBON__))
17
18class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
19{
20public:
21 wxWebViewHistoryItem(const wxString& url, const wxString& title) :
22 m_url(url), m_title(title) {}
23 wxString GetUrl() { return m_url; }
24 wxString GetTitle() { return m_title; }
25
26 friend class wxWebViewWebKit;
27
28private:
29 wxString m_url, m_title;
30 struct objc_object *m_histItem;
31};
32
33#endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT
34
35#endif // _WX_OSX_WEBVIEWHISTORYITEM_H_