Class: Wx::WEB::WebViewBrowsingDataTypes

Inherits:
Enum
  • Object
show all
Defined in:
lib/wx/doc/gen/web/web_view.rb

Overview

Types of browsing data that can be cleared.

Note that different constants can be combined using the bitwise OR operator and that WEBVIEW_BROWSING_DATA_ALL is a shorthand for specifying all of them.

Requires:

  • USE_WEBVIEW

Constant Summary collapse

WEBVIEW_BROWSING_DATA_COOKIES =

All stored and session cookies.

Wx::WEB::WebViewBrowsingDataTypes.new(1)
WEBVIEW_BROWSING_DATA_CACHE =

Cached data from disk and memory.

Wx::WEB::WebViewBrowsingDataTypes.new(2)
WEBVIEW_BROWSING_DATA_DOM_STORAGE =

All DOM Storage: File Systems, Indexed DB, Local Storage, Web SQL, Cache Storage.

Wx::WEB::WebViewBrowsingDataTypes.new(4)
WEBVIEW_BROWSING_DATA_OTHER =

Other browsing data like history, settings, auto fill, passwords, etc.

Wx::WEB::WebViewBrowsingDataTypes.new(8)
WEBVIEW_BROWSING_DATA_ALL =

All browsing data, including data corresponding to all the other constants.

Wx::WEB::WebViewBrowsingDataTypes.new(15)

Method Summary

Methods inherited from Enum

#!, #&, #<=>, [], #allbits?, #anybits?, #coerce, enumerators, #eql?, #initialize, #inspect, #integer?, #method_missing, #nobits?, non_distinct, #real?, set_non_distinct, #succ, #to_int, #to_s, #|, #~

Constructor Details

This class inherits a constructor from Wx::Enum

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Wx::Enum