HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HOM_HelpBrowser.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * COMMENTS:
7  */
8 
9 #ifndef __HOM_HelpBrowser_h__
10 #define __HOM_HelpBrowser_h__
11 
12 #include "HOM_PaneTab.h"
13 
14 SWIGOUT(%rename(HelpBrowser) HOM_HelpBrowser;)
15 
16 class HOM_API HOM_HelpBrowser : virtual public HOM_PaneTab
17 {
18 public:
20  { HOM_CONSTRUCT_OBJECT(this) }
22  : HOM_PaneTab(pane)
23  { HOM_CONSTRUCT_OBJECT(this) }
24  ~HOM_HelpBrowser() override
25  { HOM_DESTRUCT_OBJECT(this) }
26 
27  // Let swig know we're overriding __repr__ for this class so it doesn't
28  // provide its own __repr__.
29  SWIGOUT(virtual std::string __repr__() = 0;)
30 
31  virtual void displayHelp(HOM_NodeType &node_type) = 0;
32  virtual void displayHelpPath(const char *help_path) = 0;
33  virtual void displayHelpPyPanel(const char *interface_name) = 0;
34 
35  virtual std::string homePage() = 0;
36  virtual void setHomePage(const char *home_page) = 0;
37 
38  virtual std::string url() = 0;
39  virtual void setUrl(const char *url) = 0;
40 
41  virtual void showUI(bool show) = 0;
42 };
43 
44 #endif
#define HOM_DESTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1291
GLsizei const GLchar *const * string
Definition: glcorearb.h:814
#define SWIGOUT(x)
Definition: HOM_Defines.h:24
string __repr__(VtArray< T > const &self)
Definition: wrapArray.h:352
#define HOM_API
Definition: HOM_API.h:13
#define HOM_CONSTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1290
~HOM_HelpBrowser() override
OIIO_UTIL_API bool rename(string_view from, string_view to, std::string &err)
HOM_HelpBrowser(const HOM_HelpBrowser &pane)