Home | History | Annotate | Download | only in wx

Lines Matching refs:wxWebView

107 // wxWebView Events
272 void wxWebView::SetCachePolicy(const wxWebViewCachePolicy& cachePolicy)
284 wxWebViewCachePolicy wxWebView::GetCachePolicy()
313 BEGIN_EVENT_TABLE(wxWebView, wxWindow)
314 EVT_PAINT(wxWebView::OnPaint)
315 EVT_SIZE(wxWebView::OnSize)
316 EVT_MOUSE_EVENTS(wxWebView::OnMouseEvents)
317 EVT_CONTEXT_MENU(wxWebView::OnContextMenuEvents)
318 EVT_KEY_DOWN(wxWebView::OnKeyEvents)
319 EVT_KEY_UP(wxWebView::OnKeyEvents)
320 EVT_CHAR(wxWebView::OnKeyEvents)
321 EVT_SET_FOCUS(wxWebView::OnSetFocus)
322 EVT_KILL_FOCUS(wxWebView::OnKillFocus)
325 IMPLEMENT_DYNAMIC_CLASS(wxWebView, wxWindow)
329 wxWebView::wxWebView() :
338 wxWebView::wxWebView(wxWindow* parent, int id, const wxPoint& position,
349 bool wxWebView::Create(wxWindow* parent, int id, const wxPoint& position,
418 wxWebView::~wxWebView()
432 // NOTE: binding to this event in the wxWebView constructor is too early in
435 void wxWebView::OnTLWActivated(wxActivateEvent& event)
444 void wxWebView::Stop()
450 void wxWebView::Reload()
456 wxString wxWebView::GetPageSource()
464 void wxWebView::SetPageSource(const wxString& source, const wxString& baseUrl, const wxString& mimetype)
470 wxString wxWebView::GetInnerText()
478 wxString wxWebView::GetAsMarkup()
486 wxString wxWebView::GetExternalRepresentation()
494 wxWebKitSelection wxWebView::GetSelection()
502 wxString wxWebView::GetSelectionAsHTML()
510 wxString wxWebView::GetSelectionAsText()
518 void wxWebView::SetTransparent(bool transparent)
530 bool wxWebView::IsTransparent() const
542 wxString wxWebView::RunScript(const wxString& javascript)
550 bool wxWebView::ExecuteEditCommand(const wxString& command, const wxString& parameter)
556 EditState wxWebView::GetEditCommandState(const wxString& command) const
562 wxString wxWebView::GetEditCommandValue(const wxString& command) const
570 void wxWebView::LoadURL(const wxString& url)
576 bool wxWebView::GoBack()
584 bool wxWebView::GoForward()
592 bool wxWebView::CanGoBack()
600 bool wxWebView::CanGoForward()
608 bool wxWebView::CanIncreaseTextSize() const
616 void wxWebView::IncreaseTextSize()
622 bool wxWebView::CanDecreaseTextSize() const
630 void wxWebView::DecreaseTextSize()
636 void wxWebView::ResetTextSize()
642 void wxWebView::MakeEditable(bool enable)
648 bool wxWebView
662 void wxWebView::OnPaint(wxPaintEvent& event)
694 bool wxWebView::FindString(const wxString& string, bool forward, bool caseSensitive, bool wrapSelection, bool startInSelection)
702 void wxWebView::OnSize(wxSizeEvent& event)
722 void wxWebView::OnMouseEvents(wxMouseEvent& event)
794 void wxWebView::OnContextMenuEvents(wxContextMenuEvent& event)
796 Connect(wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(wxWebView::OnMenuSelectEvents), NULL, this);
827 Disconnect(wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(wxWebView::OnMenuSelectEvents), NULL, this);
830 void wxWebView::OnMenuSelectEvents(wxCommandEvent& event)
846 bool wxWebView::CanCopy()
854 void wxWebView::Copy()
860 bool wxWebView::CanCut()
868 void wxWebView::Cut()
874 bool wxWebView::CanPaste()
882 void wxWebView::Paste()
888 void wxWebView::OnKeyEvents(wxKeyEvent& event)
1023 void wxWebView::OnSetFocus(wxFocusEvent& event)
1036 void wxWebView::OnKillFocus(wxFocusEvent& event)
1057 wxWebViewDOMElementInfo wxWebView::HitTest(const wxPoint& pos) const
1065 bool wxWebView::ShouldClose() const
1074 void wxWebView::SetDatabaseDirectory(const wxString& databaseDirectory)
1082 wxString wxWebView::GetDatabaseDirectory()
1092 void wxWebView::SetDatabasesEnabled(bool enabled)
1100 bool wxWebView::AreDatabasesEnabled()
1123 void wxWebView::SetProxyInfo(const wxString& host,
1134 wxWebSettings wxWebView::GetWebSettings()
1143 wxWebKitCompatibilityMode wxWebView::GetCompatibilityMode() const
1151 void wxWebView::GrantUniversalAccess()