diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-11-18 02:41:29 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-11-18 02:41:29 +0800 |
commit | 5952680d6a09d98c301711e8188881f3a65a2e12 (patch) | |
tree | c0dfa32b7ba4c5a75b0ea4e8dee58603892a0fb8 /embed/mozilla/GtkNSSClientAuthDialogs.h | |
parent | 5f152449ad08cd5d2d77e052aff3c40cf8ce5b9d (diff) | |
download | gsoc2013-epiphany-5952680d6a09d98c301711e8188881f3a65a2e12.tar gsoc2013-epiphany-5952680d6a09d98c301711e8188881f3a65a2e12.tar.gz gsoc2013-epiphany-5952680d6a09d98c301711e8188881f3a65a2e12.tar.bz2 gsoc2013-epiphany-5952680d6a09d98c301711e8188881f3a65a2e12.tar.lz gsoc2013-epiphany-5952680d6a09d98c301711e8188881f3a65a2e12.tar.xz gsoc2013-epiphany-5952680d6a09d98c301711e8188881f3a65a2e12.tar.zst gsoc2013-epiphany-5952680d6a09d98c301711e8188881f3a65a2e12.zip |
Ported the Crispin's GtkNSSClientAuthDialogs from galeon. Changes: - use
2003-11-17 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/GtkNSSClientAuthDialogs.cpp:
* embed/mozilla/GtkNSSClientAuthDialogs.h:
* embed/mozilla/Makefile.am:
* embed/mozilla/MozRegisterComponents.cpp:
* lib/ephy-state.c: (ephy_state_add_paned), (expander_activate_cb),
(ephy_state_add_expander):
* lib/ephy-state.h:
Ported the Crispin's GtkNSSClientAuthDialogs from galeon.
Changes:
- use GtkExpander instead of the CDDB disclosure thingy
- persist state in ephy-state
- assing a mnemonic to expander label.
Diffstat (limited to 'embed/mozilla/GtkNSSClientAuthDialogs.h')
-rw-r--r-- | embed/mozilla/GtkNSSClientAuthDialogs.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/embed/mozilla/GtkNSSClientAuthDialogs.h b/embed/mozilla/GtkNSSClientAuthDialogs.h new file mode 100644 index 000000000..5b0187c26 --- /dev/null +++ b/embed/mozilla/GtkNSSClientAuthDialogs.h @@ -0,0 +1,32 @@ +/* + * GtkNSSClientAuthDialogs.h + * + * Copyright (C) 2003 Crispin Flowerday <gnome@flowerday.cx> + * Available under the terms of the GNU General Public License version 2. + */ + +#ifndef GTKNSSCLIENTAUTHDIALOGS_H +#define GTKNSSCLIENTAUTHDIALOGS_H 1 + +#include <nsError.h> +#include "nsIClientAuthDialogs.h" + +// 55b3837e-dbde-4c24-9247-f328e3012485 +#define GTK_NSSCLIENTAUTHDIALOGS_CID \ + {0x55b3837e, 0xdbde, 0x4c24, {0x92, 0x47, 0xf3, 0x28, 0xe3, 0x01, 0x24, 0x85}} + +#define GTK_NSSCLIENTAUTHDIALOGS_CLASSNAME "Gtk NSS Client Auth Dialogs" + +class GtkNSSClientAuthDialogs +: public nsIClientAuthDialogs +{ +public: + NS_DECL_ISUPPORTS + NS_DECL_NSICLIENTAUTHDIALOGS + + GtkNSSClientAuthDialogs(); + virtual ~GtkNSSClientAuthDialogs(); +}; + + +#endif /* GTKNSSCLIENTAUTHDIALOGS_H */ |