File: GNOME_DevHelp.idl

package info (click to toggle)
devhelp 0.3-10
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,056 kB
  • ctags: 1,261
  • sloc: ansic: 10,528; sh: 6,686; makefile: 422; yacc: 318; python: 253; lisp: 6
file content (30 lines) | stat: -rw-r--r-- 746 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Interface for DevHelp
 *
 */

#include <Bonobo.idl>

module GNOME {
	module DevHelp {
		interface HelpBrowser : Bonobo::Unknown {
			void   search            (in string str);
			void   searchInNewWindow (in string str);
		};

		interface Controller : Bonobo::Unknown {
			Bonobo::Control  getSearchEntry      ();
			Bonobo::Control  getSearchResultList ();
			Bonobo::Control  getBookIndex        ();

			/* Can this be done better, like adding interface */
			/* Bonobo_UIComponent in Controller               */
			void   addMenus     (in Bonobo::UIContainer uic);
			
			void   openURI      (in string uri);

			void   search       (in string str);
		};
	};
};