source: trunk/third/gnome-utils/gdictsrc/gdict-applet.h @ 18366

Revision 18366, 815 bytes checked in by ghudson, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18365, which included commits to RCS files with non-trunk default branches.
Line 
1#ifndef __GDICT_APPLET_H_
2#define __GDICT_APPLET_H_
3
4/* $Id: gdict-applet.h,v 1.1.1.3 2003-01-04 21:13:19 ghudson Exp $ */
5
6/*
7 *  Papadimitriou Spiros <spapadim@cs.cmu.edu>
8 *
9 *  This code released under the GNU GPL.
10 *  Read the file COPYING for more information.
11 *
12 *  GDict panel applet
13 *
14 */
15 
16#include <panel-applet.h>
17
18/* This structure contains the internal state of the gdict applet.
19 * Everything the functions and signal handlers need to be able to
20 * manipulate the applet should be contained within. */
21typedef struct _GDictApplet {
22        GtkWidget *applet_widget;
23        GtkWidget *button_widget;
24        GtkWidget *image;
25        GtkWidget *vbox_widget;
26        GtkWidget *entry_widget;
27        GtkWidget *handlebox_widget;
28        PanelAppletOrient orient;
29        gboolean handle;
30        gint panel_size;
31} GDictApplet;
32
33
34
35#endif /* __GDICT_APPLET_H_ */
Note: See TracBrowser for help on using the repository browser.