From ef0467789bfc8406b57ba553e4d59f4d6c3f9be8 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Wed, 14 Dec 2011 10:13:54 +0100 Subject: Moved from Mate-Extra repository --- mate-dictionary/src/gdict-window.h | 129 +++++++++++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 mate-dictionary/src/gdict-window.h (limited to 'mate-dictionary/src/gdict-window.h') diff --git a/mate-dictionary/src/gdict-window.h b/mate-dictionary/src/gdict-window.h new file mode 100644 index 00000000..36455cba --- /dev/null +++ b/mate-dictionary/src/gdict-window.h @@ -0,0 +1,129 @@ +/* gdict-window.h - main application window + * + * This file is part of MATE Dictionary + * + * Copyright (C) 2005 Emmanuele Bassi + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + */ + +#ifndef __GDICT_WINDOW_H__ +#define __GDICT_WINDOW_H__ + +#include +#include +#include +#include + +G_BEGIN_DECLS + +#define GDICT_TYPE_WINDOW (gdict_window_get_type ()) +#define GDICT_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GDICT_TYPE_WINDOW, GdictWindow)) +#define GDICT_IS_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GDICT_TYPE_WINDOW)) + +typedef enum { + GDICT_WINDOW_ACTION_LOOKUP, + GDICT_WINDOW_ACTION_MATCH, + GDICT_WINDOW_ACTION_CLEAR +} GdictWindowAction; + +#define GDICT_TYPE_WINDOW_ACTION (gdict_window_action_get_type ()) +GType gdict_window_action_get_type (void) G_GNUC_CONST; + +typedef struct _GdictWindow GdictWindow; +typedef struct _GdictWindowClass GdictWindowClass; + +struct _GdictWindow +{ + GtkWindow parent_instance; + + GtkWidget *main_box; + GtkWidget *menubar; + GtkWidget *entry; + + /* sidebar widgets */ + GtkWidget *speller; + GtkWidget *db_chooser; + GtkWidget *strat_chooser; + GtkWidget *source_chooser; + + GtkWidget *sidebar; + GtkWidget *sidebar_frame; + + GtkWidget *defbox; + GtkWidget *defbox_frame; + + GtkWidget *status; + GtkWidget *progress; + + GtkUIManager *ui_manager; + GtkActionGroup *action_group; + + GtkEntryCompletion *completion; + GtkListStore *completion_model; + + GdictWindowAction action; + + gchar *word; + gint max_definition; + gint last_definition; + gint current_definition; + + gchar *source_name; + GdictSourceLoader *loader; + GdictContext *context; + guint definition_id; + guint lookup_start_id; + guint lookup_end_id; + guint error_id; + + gchar *database; + gchar *strategy; + gchar *print_font; + gchar *defbox_font; + + MateConfClient *mateconf_client; + guint notify_id; + guint font_notify_id; + + GdkCursor *busy_cursor; + + gint default_width; + gint default_height; + gint sidebar_width; + + guint is_maximized : 1; + guint sidebar_visible : 1; + guint statusbar_visible : 1; + + gulong window_id; +}; + +struct _GdictWindowClass +{ + GtkWindowClass parent_class; + + void (*created) (GdictWindow *parent_window, + GdictWindow *new_window); +}; + +GType gdict_window_get_type (void) G_GNUC_CONST; +GtkWidget *gdict_window_new (GdictWindowAction action, + GdictSourceLoader *loader, + const gchar *source_name, + const gchar *word); + +#endif /* __GDICT_WINDOW_H__ */ -- cgit v1.2.1