]>
Commit | Line | Data |
---|---|---|
eafdb19c | 1 | ///////////////////////////////////////////////////////////////////////////// |
c13d6ac1 SL |
2 | // Name: include/wx/gtk/webviewhistoryitem.h |
3 | // Purpose: wxWebViewHistoryItem header for GTK | |
eafdb19c | 4 | // Author: Steven Lamerton |
eafdb19c SL |
5 | // Copyright: (c) 2011 Steven Lamerton |
6 | // Licence: wxWindows licence | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
c13d6ac1 SL |
9 | #ifndef _WX_GTK_WEBVIEWHISTORYITEM_H_ |
10 | #define _WX_GTK_WEBVIEWHISTORYITEM_H_ | |
eafdb19c SL |
11 | |
12 | #include "wx/setup.h" | |
13 | ||
9d2f31db | 14 | #if wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__) |
eafdb19c | 15 | |
467d261e | 16 | class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem |
eafdb19c SL |
17 | { |
18 | public: | |
34326da7 | 19 | wxWebViewHistoryItem(const wxString& url, const wxString& title) : |
eafdb19c SL |
20 | m_url(url), m_title(title) {} |
21 | wxString GetUrl() { return m_url; } | |
22 | wxString GetTitle() { return m_title; } | |
23 | ||
263e3a83 SL |
24 | friend class wxWebViewWebKit; |
25 | ||
eafdb19c SL |
26 | private: |
27 | wxString m_url, m_title; | |
a0ff3611 | 28 | void* m_histItem; |
eafdb19c SL |
29 | }; |
30 | ||
9d2f31db | 31 | #endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__) |
eafdb19c | 32 | |
c13d6ac1 | 33 | #endif // _WX_GTK_WEBVIEWHISTORYITEM_H_ |