2011-07-31 10:06:33 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: include/wx/osx/webhistoryitem.h
|
|
|
|
// Purpose: wxWebHistoryItem header for OSX
|
|
|
|
// Author: Steven Lamerton
|
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 2011 Steven Lamerton
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_OSX_WEBHISTORYITEM_H_
|
|
|
|
#define _WX_OSX_WEBHISTORYITEM_H_
|
|
|
|
|
|
|
|
#include "wx/setup.h"
|
|
|
|
|
2011-08-01 13:41:14 -04:00
|
|
|
#if wxUSE_WEBVIEW_WEBKIT && (defined(__WXOSX_COCOA__) \
|
|
|
|
|| defined(__WXOSX_CARBON__))
|
2011-07-31 10:06:33 -04:00
|
|
|
|
|
|
|
class WXDLLIMPEXP_WEB wxWebHistoryItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxWebHistoryItem(const wxString& url, const wxString& title) :
|
|
|
|
m_url(url), m_title(title) {}
|
|
|
|
wxString GetUrl() { return m_url; }
|
|
|
|
wxString GetTitle() { return m_title; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxString m_url, m_title;
|
|
|
|
};
|
|
|
|
|
2011-08-01 06:10:20 -04:00
|
|
|
#endif // wxUSE_WEBVIEW_WEBKIT && defined(__WXOSX_MAC__)
|
2011-07-31 10:06:33 -04:00
|
|
|
|
|
|
|
#endif // _WX_OSX_WEBHISTORYITEM_H_
|