⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nsiwebbrowserfind.h

📁 linux下的一款播放器
💻 H
📖 第 1 页 / 共 2 页
字号:
/* * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIWebBrowserFind.idl */#ifndef __gen_nsIWebBrowserFind_h__#define __gen_nsIWebBrowserFind_h__#ifndef __gen_nsISupports_h__#include "nsISupports.h"#endif#ifndef __gen_domstubs_h__#include "domstubs.h"#endif/* For IDL files that don't want to include root IDL files. */#ifndef NS_NO_VTABLE#define NS_NO_VTABLE#endif/* starting interface:    nsIWebBrowserFind */#define NS_IWEBBROWSERFIND_IID_STR "2f977d44-5485-11d4-87e2-0010a4e75ef2"#define NS_IWEBBROWSERFIND_IID \  {0x2f977d44, 0x5485, 0x11d4, \    { 0x87, 0xe2, 0x00, 0x10, 0xa4, 0xe7, 0x5e, 0xf2 }}/** * nsIWebBrowserFind * * Searches for text in a web browser. * * Get one by doing a GetInterface on an nsIWebBrowser. * * By default, the implementation will search the focussed frame, or * if there is no focussed frame, the web browser content area. It * does not by default search subframes or iframes. To change this * behaviour, and to explicitly set the frame to search,  * QueryInterface to nsIWebBrowserFindInFrames. * * @status FROZEN */class NS_NO_VTABLE nsIWebBrowserFind : public nsISupports { public:   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IWEBBROWSERFIND_IID)  /**     * findNext     *     * Finds, highlights, and scrolls into view the next occurrence of the     * search string, using the current search settings. Fails if the     * search string is empty.     *     * @return  Whether an occurrence was found     */  /* boolean findNext (); */  NS_IMETHOD FindNext(PRBool *_retval) = 0;  /**     * searchString     *     * The string to search for. This must be non-empty to search.     */  /* attribute wstring searchString; */  NS_IMETHOD GetSearchString(PRUnichar * *aSearchString) = 0;  NS_IMETHOD SetSearchString(const PRUnichar * aSearchString) = 0;  /**     * findBackwards     *     * Whether to find backwards (towards the beginning of the document).     * Default is false (search forward).     */  /* attribute boolean findBackwards; */  NS_IMETHOD GetFindBackwards(PRBool *aFindBackwards) = 0;  NS_IMETHOD SetFindBackwards(PRBool aFindBackwards) = 0;  /**     * wrapFind     *     * Whether the search wraps around to the start (or end) of the document     * if no match was found between the current position and the end (or     * beginning). Works correctly when searching backwards. Default is     * false.     */  /* attribute boolean wrapFind; */  NS_IMETHOD GetWrapFind(PRBool *aWrapFind) = 0;  NS_IMETHOD SetWrapFind(PRBool aWrapFind) = 0;  /**     * entireWord     *     * Whether to match entire words only. Default is false.     */  /* attribute boolean entireWord; */  NS_IMETHOD GetEntireWord(PRBool *aEntireWord) = 0;  NS_IMETHOD SetEntireWord(PRBool aEntireWord) = 0;  /**     * matchCase     *     * Whether to match case (case sensitive) when searching. Default is false.     */  /* attribute boolean matchCase; */  NS_IMETHOD GetMatchCase(PRBool *aMatchCase) = 0;  NS_IMETHOD SetMatchCase(PRBool aMatchCase) = 0;  /**     * searchFrames     *     * Whether to search through all frames in the content area. Default is true.     *      * Note that you can control whether the search propagates into child or     * parent frames explicitly using nsIWebBrowserFindInFrames, but if one,     * but not both, of searchSubframes and searchParentFrames are set, this     * returns false.     */  /* attribute boolean searchFrames; */  NS_IMETHOD GetSearchFrames(PRBool *aSearchFrames) = 0;  NS_IMETHOD SetSearchFrames(PRBool aSearchFrames) = 0;};/* Use this macro when declaring classes that implement this interface. */#define NS_DECL_NSIWEBBROWSERFIND \  NS_IMETHOD FindNext(PRBool *_retval); \  NS_IMETHOD GetSearchString(PRUnichar * *aSearchString); \  NS_IMETHOD SetSearchString(const PRUnichar * aSearchString); \  NS_IMETHOD GetFindBackwards(PRBool *aFindBackwards); \  NS_IMETHOD SetFindBackwards(PRBool aFindBackwards); \  NS_IMETHOD GetWrapFind(PRBool *aWrapFind); \  NS_IMETHOD SetWrapFind(PRBool aWrapFind); \  NS_IMETHOD GetEntireWord(PRBool *aEntireWord); \  NS_IMETHOD SetEntireWord(PRBool aEntireWord); \  NS_IMETHOD GetMatchCase(PRBool *aMatchCase); \  NS_IMETHOD SetMatchCase(PRBool aMatchCase); \  NS_IMETHOD GetSearchFrames(PRBool *aSearchFrames); \  NS_IMETHOD SetSearchFrames(PRBool aSearchFrames); /* Use this macro to declare functions that forward the behavior of this interface to another object. */#define NS_FORWARD_NSIWEBBROWSERFIND(_to) \  NS_IMETHOD FindNext(PRBool *_retval) { return _to FindNext(_retval); } \  NS_IMETHOD GetSearchString(PRUnichar * *aSearchString) { return _to GetSearchString(aSearchString); } \  NS_IMETHOD SetSearchString(const PRUnichar * aSearchString) { return _to SetSearchString(aSearchString); } \  NS_IMETHOD GetFindBackwards(PRBool *aFindBackwards) { return _to GetFindBackwards(aFindBackwards); } \  NS_IMETHOD SetFindBackwards(PRBool aFindBackwards) { return _to SetFindBackwards(aFindBackwards); } \  NS_IMETHOD GetWrapFind(PRBool *aWrapFind) { return _to GetWrapFind(aWrapFind); } \  NS_IMETHOD SetWrapFind(PRBool aWrapFind) { return _to SetWrapFind(aWrapFind); } \  NS_IMETHOD GetEntireWord(PRBool *aEntireWord) { return _to GetEntireWord(aEntireWord); } \  NS_IMETHOD SetEntireWord(PRBool aEntireWord) { return _to SetEntireWord(aEntireWord); } \  NS_IMETHOD GetMatchCase(PRBool *aMatchCase) { return _to GetMatchCase(aMatchCase); } \  NS_IMETHOD SetMatchCase(PRBool aMatchCase) { return _to SetMatchCase(aMatchCase); } \  NS_IMETHOD GetSearchFrames(PRBool *aSearchFrames) { return _to GetSearchFrames(aSearchFrames); } \  NS_IMETHOD SetSearchFrames(PRBool aSearchFrames) { return _to SetSearchFrames(aSearchFrames); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */#define NS_FORWARD_SAFE_NSIWEBBROWSERFIND(_to) \  NS_IMETHOD FindNext(PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->FindNext(_retval); } \  NS_IMETHOD GetSearchString(PRUnichar * *aSearchString) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSearchString(aSearchString); } \  NS_IMETHOD SetSearchString(const PRUnichar * aSearchString) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSearchString(aSearchString); } \  NS_IMETHOD GetFindBackwards(PRBool *aFindBackwards) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFindBackwards(aFindBackwards); } \  NS_IMETHOD SetFindBackwards(PRBool aFindBackwards) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFindBackwards(aFindBackwards); } \  NS_IMETHOD GetWrapFind(PRBool *aWrapFind) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWrapFind(aWrapFind); } \  NS_IMETHOD SetWrapFind(PRBool aWrapFind) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWrapFind(aWrapFind); } \  NS_IMETHOD GetEntireWord(PRBool *aEntireWord) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEntireWord(aEntireWord); } \  NS_IMETHOD SetEntireWord(PRBool aEntireWord) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEntireWord(aEntireWord); } \  NS_IMETHOD GetMatchCase(PRBool *aMatchCase) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMatchCase(aMatchCase); } \  NS_IMETHOD SetMatchCase(PRBool aMatchCase) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMatchCase(aMatchCase); } \  NS_IMETHOD GetSearchFrames(PRBool *aSearchFrames) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSearchFrames(aSearchFrames); } \  NS_IMETHOD SetSearchFrames(PRBool aSearchFrames) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSearchFrames(aSearchFrames); } #if 0/* Use the code below as a template for the implementation class for this interface. *//* Header file */class nsWebBrowserFind : public nsIWebBrowserFind{public:  NS_DECL_ISUPPORTS  NS_DECL_NSIWEBBROWSERFIND  nsWebBrowserFind();  virtual ~nsWebBrowserFind();  /* additional members */};/* Implementation file */NS_IMPL_ISUPPORTS1(nsWebBrowserFind, nsIWebBrowserFind)nsWebBrowserFind::nsWebBrowserFind(){  /* member initializers and constructor code */}nsWebBrowserFind::~nsWebBrowserFind(){  /* destructor code */}/* boolean findNext (); */NS_IMETHODIMP nsWebBrowserFind::FindNext(PRBool *_retval){    return NS_ERROR_NOT_IMPLEMENTED;}/* attribute wstring searchString; */NS_IMETHODIMP nsWebBrowserFind::GetSearchString(PRUnichar * *aSearchString){    return NS_ERROR_NOT_IMPLEMENTED;}NS_IMETHODIMP nsWebBrowserFind::SetSearchString(const PRUnichar * aSearchString){    return NS_ERROR_NOT_IMPLEMENTED;}/* attribute boolean findBackwards; */NS_IMETHODIMP nsWebBrowserFind::GetFindBackwards(PRBool *aFindBackwards){    return NS_ERROR_NOT_IMPLEMENTED;}NS_IMETHODIMP nsWebBrowserFind::SetFindBackwards(PRBool aFindBackwards)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -