#include "plugin_type.h"
#include "plugin_unknown.h"
Go to the source code of this file.
Data Structures | |
struct | IPluginDocNavigator |
Universal Document Shell Plugin Document Object Navigator interafce. Through IPluginDocNavigator, caller is able to navigate among different objects inside a document. Particularly, callers can get object(range) by input anchor; get text from specified range; compare position of two anchors. More... | |
Enumerations | |
enum | PluginDocObjectType { PLUGIN_DOC_OBJECT_NONE, PLUGIN_DOC_OBJECT_TEXT, PLUGIN_DOC_OBJECT_IMAGE, PLUGIN_DOC_OBJECT_HYPERLINK, PLUGIN_DOC_OBJECT_TEXT_HYPERLINK, PLUGIN_DOC_OBJECT_PAGE } |
Universal Document Shell Document Object Type declaration. More... |
enum PluginDocObjectType |
Universal Document Shell Document Object Type declaration.
Copyright (C) 2008 iRex Technologies B.V. All rights reserved.
Definition at line 40 of file plugin_doc_navigator.h.
00041 { 00042 PLUGIN_DOC_OBJECT_NONE, /**< No object. */ 00043 PLUGIN_DOC_OBJECT_TEXT, /**< Text object. */ 00044 PLUGIN_DOC_OBJECT_IMAGE, /**< Image object. */ 00045 PLUGIN_DOC_OBJECT_HYPERLINK, /**< Hyperlink object. */ 00046 PLUGIN_DOC_OBJECT_TEXT_HYPERLINK, /**< Text Hyperlink object. */ 00047 PLUGIN_DOC_OBJECT_PAGE, /**< The page object. */ 00048 } PluginDocObjectType;