From 59c214159f0017b5c623772d4d6f34f940ac1113 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 9 Jun 2010 15:08:32 -0500 Subject: Autogen and adding new Makefiles --- .../reference/html/Genericmenuitem.html | 360 +++++++++++++++++++++ .../reference/html/api-index-full.html | 172 ++++++++++ docs/libdbusmenu-gtk/reference/html/ch01.html | 44 +++ docs/libdbusmenu-gtk/reference/html/home.png | Bin 0 -> 654 bytes docs/libdbusmenu-gtk/reference/html/index.html | 42 +++ docs/libdbusmenu-gtk/reference/html/index.sgml | 47 +++ docs/libdbusmenu-gtk/reference/html/left.png | Bin 0 -> 459 bytes .../html/libdbusmenu-gtk-DbusmenuGtkClient.html | 273 ++++++++++++++++ .../html/libdbusmenu-gtk-DbusmenuGtkMenu.html | 166 ++++++++++ .../reference/html/libdbusmenu-gtk-menuitem.html | 133 ++++++++ .../reference/html/libdbusmenu-gtk.devhelp | 45 +++ .../reference/html/libdbusmenu-gtk.devhelp2 | 45 +++ .../reference/html/object-tree.html | 42 +++ docs/libdbusmenu-gtk/reference/html/right.png | Bin 0 -> 472 bytes docs/libdbusmenu-gtk/reference/html/style.css | 257 +++++++++++++++ docs/libdbusmenu-gtk/reference/html/up.png | Bin 0 -> 406 bytes 16 files changed, 1626 insertions(+) create mode 100644 docs/libdbusmenu-gtk/reference/html/Genericmenuitem.html create mode 100644 docs/libdbusmenu-gtk/reference/html/api-index-full.html create mode 100644 docs/libdbusmenu-gtk/reference/html/ch01.html create mode 100644 docs/libdbusmenu-gtk/reference/html/home.png create mode 100644 docs/libdbusmenu-gtk/reference/html/index.html create mode 100644 docs/libdbusmenu-gtk/reference/html/index.sgml create mode 100644 docs/libdbusmenu-gtk/reference/html/left.png create mode 100644 docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-DbusmenuGtkClient.html create mode 100644 docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-DbusmenuGtkMenu.html create mode 100644 docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-menuitem.html create mode 100644 docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk.devhelp create mode 100644 docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk.devhelp2 create mode 100644 docs/libdbusmenu-gtk/reference/html/object-tree.html create mode 100644 docs/libdbusmenu-gtk/reference/html/right.png create mode 100644 docs/libdbusmenu-gtk/reference/html/style.css create mode 100644 docs/libdbusmenu-gtk/reference/html/up.png (limited to 'docs/libdbusmenu-gtk/reference/html') diff --git a/docs/libdbusmenu-gtk/reference/html/Genericmenuitem.html b/docs/libdbusmenu-gtk/reference/html/Genericmenuitem.html new file mode 100644 index 0000000..1869e60 --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/Genericmenuitem.html @@ -0,0 +1,360 @@ + + + + +Genericmenuitem + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+

Genericmenuitem

+

Genericmenuitem

+
+ +
+

Object Hierarchy

+
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkItem
+                                       +----GtkMenuItem
+                                             +----GtkCheckMenuItem
+                                                   +----Genericmenuitem
+
+
+
+

Implemented Interfaces

+

+Genericmenuitem implements + AtkImplementorIface, GtkBuildable and GtkActivatable.

+
+
+

Description

+

+

+
+
+

Details

+
+

GENERICMENUITEM_TYPE

+
#define GENERICMENUITEM_TYPE            (genericmenuitem_get_type ())
+
+

+

+
+
+
+

GENERICMENUITEM()

+
#define GENERICMENUITEM(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GENERICMENUITEM_TYPE, Genericmenuitem))
+
+

+

+
++ + + + +

obj :

+
+
+
+
+

GENERICMENUITEM_CLASS()

+
#define GENERICMENUITEM_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GENERICMENUITEM_TYPE, GenericmenuitemClass))
+
+

+

+
++ + + + +

klass :

+
+
+
+
+

IS_GENERICMENUITEM()

+
#define IS_GENERICMENUITEM(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GENERICMENUITEM_TYPE))
+
+

+

+
++ + + + +

obj :

+
+
+
+
+

IS_GENERICMENUITEM_CLASS()

+
#define IS_GENERICMENUITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GENERICMENUITEM_TYPE))
+
+

+

+
++ + + + +

klass :

+
+
+
+
+

GENERICMENUITEM_GET_CLASS()

+
#define GENERICMENUITEM_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GENERICMENUITEM_TYPE, GenericmenuitemClass))
+
+

+

+
++ + + + +

obj :

+
+
+
+
+

Genericmenuitem

+
typedef struct _Genericmenuitem Genericmenuitem;
+
++ +
+
+
+
+

GenericmenuitemClass

+
typedef struct {
+	GtkCheckMenuItemClass parent_class;
+} GenericmenuitemClass;
+
+
++ + + + +

GtkCheckMenuItemClass parent_class;

Our parent GtkCheckMenuItemClass +
+
+
+
+

GenericmenuitemPrivate

+
typedef struct _GenericmenuitemPrivate GenericmenuitemPrivate;
+
++ +
+
+
+
+

enum GenericmenuitemCheckType

+
enum GenericmenuitemCheckType {
+	GENERICMENUITEM_CHECK_TYPE_NONE,
+	GENERICMENUITEM_CHECK_TYPE_CHECKBOX,
+	GENERICMENUITEM_CHECK_TYPE_RADIO
+};
+
+

+

+
+
+
+

enum GenericmenuitemState

+
enum GenericmenuitemState {
+	GENERICMENUITEM_STATE_UNCHECKED,
+	GENERICMENUITEM_STATE_CHECKED,
+	GENERICMENUITEM_STATE_INDETERMINATE
+};
+
+

+

+
+
+
+

genericmenuitem_get_type ()

+
GType               genericmenuitem_get_type            (void);
+

+

+
++ + + + +

Returns :

+
+
+
+
+

genericmenuitem_set_check_type ()

+
void                genericmenuitem_set_check_type      (Genericmenuitem *item,
+                                                         GenericmenuitemCheckType check_type);
+

+This function changes the type of the checkmark that + appears in the left hand gutter for the menuitem. +

+
++ + + + + + + + + + +

item :

+Genericmenuitem to set the type on +

check_type :

Which type of check should be displayed +
+
+
+
+

genericmenuitem_set_state ()

+
void                genericmenuitem_set_state           (Genericmenuitem *item,
+                                                         GenericmenuitemState state);
+

+Sets the state of the check in the menu item. It does + not require, but isn't really useful if the type of + check that the menuitem is set to GENERICMENUITEM_CHECK_TYPE_NONE. +

+
++ + + + + + + + + + +

item :

+Genericmenuitem to set the type on +

state :

+
+
+
+
+

genericmenuitem_set_image ()

+
void                genericmenuitem_set_image           (Genericmenuitem *item,
+                                                         GtkWidget *image);
+

+Sets the image of the menu item. +

+
++ + + + + + + + + + +

item :

A Genericmenuitem +

image :

The image to set as the image of item +
+
+
+
+

genericmenuitem_get_image ()

+
GtkWidget *         genericmenuitem_get_image           (Genericmenuitem *item);
+

+Returns the image if there is one. +

+
++ + + + + + + + + + +

item :

A Genericmenuitem +

Returns :

A pointer to the image of the item or NULL + if there isn't one. +
+
+
+
+ + + \ No newline at end of file diff --git a/docs/libdbusmenu-gtk/reference/html/api-index-full.html b/docs/libdbusmenu-gtk/reference/html/api-index-full.html new file mode 100644 index 0000000..5b1fe4e --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/api-index-full.html @@ -0,0 +1,172 @@ + + + + +API Index + + + + + + + + + + + + + + + + + + +
+

+API Index

+

+
+GENERICMENUITEM, macro in Genericmenuitem +
+
+
+Genericmenuitem, struct in Genericmenuitem +
+
+

C

+
+GenericmenuitemCheckType, enum in Genericmenuitem +
+
+
+GENERICMENUITEM_CLASS, macro in Genericmenuitem +
+
+
+GenericmenuitemClass, struct in Genericmenuitem +
+
+

D

+
+DbusmenuGtkClientClass, struct in DbusmenuGtkClient +
+
+
+DbusmenuGtkMenuClass, struct in DbusmenuGtkMenu +
+
+
+dbusmenu_gtkclient_menuitem_get, function in DbusmenuGtkClient +
+
+
+dbusmenu_gtkclient_menuitem_get_submenu, function in DbusmenuGtkClient +
+
+
+dbusmenu_gtkclient_new, function in DbusmenuGtkClient +
+
+
+dbusmenu_gtkclient_newitem_base, function in DbusmenuGtkClient +
+
+
+DBUSMENU_GTKCLIENT_SIGNAL_ROOT_CHANGED, macro in DbusmenuGtkClient +
+
+
+DBUSMENU_GTKCLIENT_TYPE, macro in DbusmenuGtkClient +
+
+
+dbusmenu_gtkmenu_get_client, function in DbusmenuGtkMenu +
+
+
+dbusmenu_gtkmenu_new, function in DbusmenuGtkMenu +
+
+
+DBUSMENU_GTKMENU_TYPE, macro in DbusmenuGtkMenu +
+
+
+dbusmenu_menuitem_property_get_image, function in menuitem +
+
+
+dbusmenu_menuitem_property_set_image, function in menuitem +
+
+

G

+
+GENERICMENUITEM_GET_CLASS, macro in Genericmenuitem +
+
+
+genericmenuitem_get_image, function in Genericmenuitem +
+
+
+genericmenuitem_get_type, function in Genericmenuitem +
+
+

I

+
+IS_GENERICMENUITEM, macro in Genericmenuitem +
+
+
+IS_GENERICMENUITEM_CLASS, macro in Genericmenuitem +
+
+

P

+
+GenericmenuitemPrivate, struct in Genericmenuitem +
+
+

S

+
+genericmenuitem_set_check_type, function in Genericmenuitem +
+
+
+genericmenuitem_set_image, function in Genericmenuitem +
+
+
+genericmenuitem_set_state, function in Genericmenuitem +
+
+
+GenericmenuitemState, enum in Genericmenuitem +
+
+

T

+
+GENERICMENUITEM_TYPE, macro in Genericmenuitem +
+
+
+ + + \ No newline at end of file diff --git a/docs/libdbusmenu-gtk/reference/html/ch01.html b/docs/libdbusmenu-gtk/reference/html/ch01.html new file mode 100644 index 0000000..fd0340b --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/ch01.html @@ -0,0 +1,44 @@ + + + + +API + + + + + + + + + + + + + + + + +
+

+API

+ +
+ + + \ No newline at end of file diff --git a/docs/libdbusmenu-gtk/reference/html/home.png b/docs/libdbusmenu-gtk/reference/html/home.png new file mode 100644 index 0000000..1700361 Binary files /dev/null and b/docs/libdbusmenu-gtk/reference/html/home.png differ diff --git a/docs/libdbusmenu-gtk/reference/html/index.html b/docs/libdbusmenu-gtk/reference/html/index.html new file mode 100644 index 0000000..177f34d --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/index.html @@ -0,0 +1,42 @@ + + + + +libdbusmenu-gtk Reference Manual + + + + + + + +
+
+
+
+
+ +
+ + + \ No newline at end of file diff --git a/docs/libdbusmenu-gtk/reference/html/index.sgml b/docs/libdbusmenu-gtk/reference/html/index.sgml new file mode 100644 index 0000000..14c0b37 --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/index.sgml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/libdbusmenu-gtk/reference/html/left.png b/docs/libdbusmenu-gtk/reference/html/left.png new file mode 100644 index 0000000..2d05b3d Binary files /dev/null and b/docs/libdbusmenu-gtk/reference/html/left.png differ diff --git a/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-DbusmenuGtkClient.html b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-DbusmenuGtkClient.html new file mode 100644 index 0000000..0bea229 --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-DbusmenuGtkClient.html @@ -0,0 +1,273 @@ + + + + +DbusmenuGtkClient + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DbusmenuGtkClient

+

DbusmenuGtkClient

+
+
+

Synopsis

+
#define             DBUSMENU_GTKCLIENT_TYPE
+#define             DBUSMENU_GTKCLIENT_SIGNAL_ROOT_CHANGED
+                    DbusmenuGtkClientClass;
+DbusmenuGtkClient * dbusmenu_gtkclient_new              (gchar *dbus_name,
+                                                         gchar *dbus_object);
+GtkMenuItem *       dbusmenu_gtkclient_menuitem_get     (DbusmenuGtkClient *client,
+                                                         DbusmenuMenuitem *item);
+GtkMenu *           dbusmenu_gtkclient_menuitem_get_submenu
+                                                        (DbusmenuGtkClient *client,
+                                                         DbusmenuMenuitem *item);
+void                dbusmenu_gtkclient_newitem_base     (DbusmenuGtkClient *client,
+                                                         DbusmenuMenuitem *item,
+                                                         GtkMenuItem *gmi,
+                                                         DbusmenuMenuitem *parent);
+
+
+
+

Description

+

+

+
+
+

Details

+
+

DBUSMENU_GTKCLIENT_TYPE

+
#define DBUSMENU_GTKCLIENT_TYPE            (dbusmenu_gtkclient_get_type ())
+
+

+

+
+
+
+

DBUSMENU_GTKCLIENT_SIGNAL_ROOT_CHANGED

+
#define DBUSMENU_GTKCLIENT_SIGNAL_ROOT_CHANGED  DBUSMENU_CLIENT_SIGNAL_ROOT_CHANGED
+
+

+

+
+
+
+

DbusmenuGtkClientClass

+
typedef struct {
+	DbusmenuClientClass parent_class;
+
+	/* Signals */
+	void (*root_changed) (DbusmenuMenuitem * newroot);
+
+	/* Reserved */
+	void (*reserved1) (void);
+	void (*reserved2) (void);
+	void (*reserved3) (void);
+	void (*reserved4) (void);
+} DbusmenuGtkClientClass;
+
+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +

DbusmenuClientClass parent_class;

+GtkMenuClass +

root_changed ()

+

reserved1 ()

Reserved for future use. +

reserved2 ()

Reserved for future use. +

reserved3 ()

Reserved for future use. +

reserved4 ()

Reserved for future use. +
+
+
+
+

dbusmenu_gtkclient_new ()

+
DbusmenuGtkClient * dbusmenu_gtkclient_new              (gchar *dbus_name,
+                                                         gchar *dbus_object);
+

+Creates a new DbusmenuGtkClient object and creates a DbusmenuClient + that connects across DBus to a DbusmenuServer. +

+
++ + + + + + + + + + + + + + +

dbus_name :

Name of the DbusmenuServer on DBus +

dbus_object :

+

Returns :

A new DbusmenuGtkClient sync'd with a server +
+
+
+
+

dbusmenu_gtkclient_menuitem_get ()

+
GtkMenuItem *       dbusmenu_gtkclient_menuitem_get     (DbusmenuGtkClient *client,
+                                                         DbusmenuMenuitem *item);
+

+This grabs the GtkMenuItem that is associated with the + DbusmenuMenuitem. +

+
++ + + + + + + + + + + + + + +

client :

A DbusmenuGtkClient with the item in it. +

item :

+DbusmenuMenuitem to get associated GtkMenuItem on. +

Returns :

The GtkMenuItem that can be played with. +
+
+
+
+

dbusmenu_gtkclient_menuitem_get_submenu ()

+
GtkMenu *           dbusmenu_gtkclient_menuitem_get_submenu
+                                                        (DbusmenuGtkClient *client,
+                                                         DbusmenuMenuitem *item);
+

+This grabs the submenu associated with the menuitem. +

+
++ + + + + + + + + + + + + + +

client :

A DbusmenuGtkClient with the item in it. +

item :

+DbusmenuMenuitem to get associated GtkMenu on. +

Returns :

The GtkMenu if there is one. +
+
+
+
+

dbusmenu_gtkclient_newitem_base ()

+
void                dbusmenu_gtkclient_newitem_base     (DbusmenuGtkClient *client,
+                                                         DbusmenuMenuitem *item,
+                                                         GtkMenuItem *gmi,
+                                                         DbusmenuMenuitem *parent);
+

+This function provides some of the basic connectivity for being in + the GTK world. Things like visibility and sensitivity of the item are + handled here so that the subclasses don't have to. If you're building + your on GTK menu item you can use this function to apply those basic + attributes so that you don't have to deal with them either. +

+

+ This also handles passing the "activate" signal back to the + DbusmenuMenuitem side of thing. +

+
++ + + + + + + + + + + + + + + + + + +

client :

The client handling everything on this connection +

item :

The DbusmenuMenuitem to attach the GTK-isms to +

gmi :

A GtkMenuItem representing the GTK world's view of this menuitem +

parent :

The parent DbusmenuMenuitem +
+
+
+
+ + + \ No newline at end of file diff --git a/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-DbusmenuGtkMenu.html b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-DbusmenuGtkMenu.html new file mode 100644 index 0000000..f36e8a5 --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-DbusmenuGtkMenu.html @@ -0,0 +1,166 @@ + + + + +DbusmenuGtkMenu + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+

DbusmenuGtkMenu

+

DbusmenuGtkMenu

+
+
+

Synopsis

+
#define             DBUSMENU_GTKMENU_TYPE
+                    DbusmenuGtkMenuClass;
+DbusmenuGtkMenu *   dbusmenu_gtkmenu_new                (gchar *dbus_name,
+                                                         gchar *dbus_object);
+DbusmenuGtkClient * dbusmenu_gtkmenu_get_client         (DbusmenuGtkMenu *menu);
+
+
+
+

Description

+

+

+
+
+

Details

+
+

DBUSMENU_GTKMENU_TYPE

+
#define DBUSMENU_GTKMENU_TYPE            (dbusmenu_gtkmenu_get_type ())
+
+

+

+
+
+
+

DbusmenuGtkMenuClass

+
typedef struct {
+	GtkMenuClass parent_class;
+
+	/* Reserved */
+	void (*reserved1) (void);
+	void (*reserved2) (void);
+	void (*reserved3) (void);
+	void (*reserved4) (void);
+} DbusmenuGtkMenuClass;
+
+
++ + + + + + + + + + + + + + + + + + + + + + +

GtkMenuClass parent_class;

+GtkMenuClass +

reserved1 ()

Reserved for future use. +

reserved2 ()

Reserved for future use. +

reserved3 ()

Reserved for future use. +

reserved4 ()

Reserved for future use. +
+
+
+
+

dbusmenu_gtkmenu_new ()

+
DbusmenuGtkMenu *   dbusmenu_gtkmenu_new                (gchar *dbus_name,
+                                                         gchar *dbus_object);
+

+Creates a new DbusmenuGtkMenu object and creates a DbusmenuClient + that connects across DBus to a DbusmenuServer. +

+
++ + + + + + + + + + + + + + +

dbus_name :

Name of the DbusmenuServer on DBus +

dbus_object :

+

Returns :

A new DbusmenuGtkMenu sync'd with a server +
+
+
+
+

dbusmenu_gtkmenu_get_client ()

+
DbusmenuGtkClient * dbusmenu_gtkmenu_get_client         (DbusmenuGtkMenu *menu);
+

+An accessor for the client that this menu is using to + communicate with the server. +

+
++ + + + + + + + + + +

menu :

The DbusmenuGtkMenu to get the client from +

Returns :

A valid DbusmenuGtkClient or NULL on error. +
+
+
+
+ + + \ No newline at end of file diff --git a/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-menuitem.html b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-menuitem.html new file mode 100644 index 0000000..b3f5058 --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk-menuitem.html @@ -0,0 +1,133 @@ + + + + +menuitem + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+

menuitem

+

menuitem

+
+
+

Synopsis

+
gboolean            dbusmenu_menuitem_property_set_image
+                                                        (DbusmenuMenuitem *menuitem,
+                                                         const gchar *property,
+                                                         const GdkPixbuf *data);
+GdkPixbuf *         dbusmenu_menuitem_property_get_image
+                                                        (DbusmenuMenuitem *menuitem,
+                                                         const gchar *property);
+
+
+
+

Description

+

+

+
+
+

Details

+
+

dbusmenu_menuitem_property_set_image ()

+
gboolean            dbusmenu_menuitem_property_set_image
+                                                        (DbusmenuMenuitem *menuitem,
+                                                         const gchar *property,
+                                                         const GdkPixbuf *data);
+

+This function takes the pixbuf that is stored in data and + turns it into a base64 encoded PNG so that it can be placed + onto a standard DbusmenuMenuitem property. +

+
++ + + + + + + + + + + + + + + + + + +

menuitem :

The DbusmenuMenuitem to set the property on. +

property :

Name of the property to set. +

data :

The image to place on the property. +

Returns :

Whether the function was able to set the property + or not. +
+
+
+
+

dbusmenu_menuitem_property_get_image ()

+
GdkPixbuf *         dbusmenu_menuitem_property_get_image
+                                                        (DbusmenuMenuitem *menuitem,
+                                                         const gchar *property);
+

+This function looks on the menu item for a property by the + name of property. If one exists it tries to turn it into + a GdkPixbuf. It assumes that the property is a base64 encoded + PNG file like the one created by dbusmenu_menuite_property_set_image. +

+
++ + + + + + + + + + + + + + +

menuitem :

The DbusmenuMenuite to look for the property on +

property :

The name of the property to look for. +

Returns :

A pixbuf or NULL to signal error. +
+
+
+
+ + + \ No newline at end of file diff --git a/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk.devhelp b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk.devhelp new file mode 100644 index 0000000..ce59ace --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk.devhelp @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk.devhelp2 b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk.devhelp2 new file mode 100644 index 0000000..8d7794f --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/libdbusmenu-gtk.devhelp2 @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/libdbusmenu-gtk/reference/html/object-tree.html b/docs/libdbusmenu-gtk/reference/html/object-tree.html new file mode 100644 index 0000000..7a7ee78 --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/object-tree.html @@ -0,0 +1,42 @@ + + + + +Object Hierarchy + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/libdbusmenu-gtk/reference/html/right.png b/docs/libdbusmenu-gtk/reference/html/right.png new file mode 100644 index 0000000..92832e3 Binary files /dev/null and b/docs/libdbusmenu-gtk/reference/html/right.png differ diff --git a/docs/libdbusmenu-gtk/reference/html/style.css b/docs/libdbusmenu-gtk/reference/html/style.css new file mode 100644 index 0000000..82115eb --- /dev/null +++ b/docs/libdbusmenu-gtk/reference/html/style.css @@ -0,0 +1,257 @@ +.synopsis, .classsynopsis +{ + /* tango:aluminium 1/2 */ + background: #eeeeec; + border: solid 1px #d3d7cf; + padding: 0.5em; +} +.programlisting +{ + /* tango:sky blue 0/1 */ + background: #e6f3ff; + border: solid 1px #729fcf; + padding: 0.5em; +} +.variablelist +{ + padding: 4px; + margin-left: 3em; +} +.variablelist td:first-child +{ + vertical-align: top; +} + +@media screen { + sup a.footnote + { + position: relative; + top: 0em ! important; + + } + /* this is needed so that the local anchors are displayed below the naviagtion */ + div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name] + { + position: relative; + padding-top:4.5em; + } + /* this seems to be a bug in the xsl style sheets when generating indexes */ + div.index div.index + { + top: 0em; + } + /* make space for the fixed navigation bar and add space at the bottom so that + * link targets appear somewhat close to top + */ + body + { + padding-top: 3.2em; + padding-bottom: 20em; + } + /* style and size the navigation bar */ + table.navigation#top + { + position: fixed; + /* tango:scarlet red 0/1 */ + background: #ffe6e6; + border: solid 1px #ef2929; + margin-top: 0; + margin-bottom: 0; + top: 0; + left: 0; + height: 3em; + z-index: 10; + } + .navigation a, .navigation a:visited + { + /* tango:scarlet red 3 */ + color: #a40000; + } + .navigation a:hover + { + /* tango:scarlet red 1 */ + color: #ef2929; + } + td.shortcuts + { + /* tango:scarlet red 1 */ + color: #ef2929; + font-size: 80%; + white-space: nowrap; + } +} +@media print { + table.navigation { + visibility: collapse; + display: none; + } + div.titlepage table.navigation { + visibility: visible; + display: table; + /* tango:scarlet red 0/1 */ + background: #ffe6e6; + border: solid 1px #ef2929; + margin-top: 0; + margin-bottom: 0; + top: 0; + left: 0; + height: 3em; + } +} + +.navigation .title +{ + font-size: 200%; +} + +div.gallery-float +{ + float: left; + padding: 10px; +} +div.gallery-float img +{ + border-style: none; +} +div.gallery-spacer +{ + clear: both; +} + +a, a:visited +{ + text-decoration: none; + /* tango:sky blue 2 */ + color: #3465a4; +} +a:hover +{ + text-decoration: underline; + /* tango:sky blue 1 */ + color: #729fcf; +} + +div.table table +{ + border-collapse: collapse; + border-spacing: 0px; + /* tango:aluminium 3 */ + border: solid 1px #babdb6; +} + +div.table table td, div.table table th +{ + /* tango:aluminium 3 */ + border: solid 1px #babdb6; + padding: 3px; + vertical-align: top; +} + +div.table table th +{ + /* tango:aluminium 2 */ + background-color: #d3d7cf; +} + +hr +{ + /* tango:aluminium 3 */ + color: #babdb6; + background: #babdb6; + border: none 0px; + height: 1px; + clear: both; +} + +.footer +{ + padding-top: 3.5em; + /* tango:aluminium 3 */ + color: #babdb6; + text-align: center; + font-size: 80%; +} + +.warning +{ + /* tango:orange 0/1 */ + background: #ffeed9; + border-color: #ffb04f; +} +.note +{ + /* tango:chameleon 0/0.5 */ + background: #d8ffb2; + border-color: #abf562; +} +.note, .warning +{ + padding: 0.5em; + border-width: 1px; + border-style: solid; +} +.note h3, .warning h3 +{ + margin-top: 0.0em +} +.note p, .warning p +{ + margin-bottom: 0.0em +} + +/* blob links */ +h2 .extralinks, h3 .extralinks +{ + float: right; + /* tango:aluminium 3 */ + color: #babdb6; + font-size: 80%; + font-weight: normal; +} + +/* code listings */ + +.listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */ +.listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */ +.listing_code .programlisting .function { color: #000000; font-weight: bold; } +.listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */ +.listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */ +.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */ +.listing_code .programlisting .normal { color: #000000; } +.listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */ +.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */ +.listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */ +.listing_code .programlisting .type { color: #000000; } +.listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */ +.listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */ + +.listing_frame { + /* tango:sky blue 1 */ + border: solid 1px #729fcf; + padding: 0px; +} + +.listing_lines, .listing_code { + margin-top: 0px; + margin-bottom: 0px; + padding: 0.5em; +} +.listing_lines { + /* tango:sky blue 0.5 */ + background: #a6c5e3; + /* tango:aluminium 6 */ + color: #2e3436; +} +.listing_code { + /* tango:sky blue 0 */ + background: #e6f3ff; +} +.listing_code .programlisting { + /* override from previous */ + border: none 0px; + padding: 0px; +} +.listing_lines pre, .listing_code pre { + margin: 0px; +} + diff --git a/docs/libdbusmenu-gtk/reference/html/up.png b/docs/libdbusmenu-gtk/reference/html/up.png new file mode 100644 index 0000000..85b3e2a Binary files /dev/null and b/docs/libdbusmenu-gtk/reference/html/up.png differ -- cgit v1.2.3