File: gtr-window.h

package info (click to toggle)
gtranslator 1.9.11-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 15,232 kB
  • ctags: 2,784
  • sloc: ansic: 26,995; sh: 10,239; xml: 8,281; makefile: 869
file content (150 lines) | stat: -rw-r--r-- 4,161 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
 * Copyright (C) 2007  Ignacio Casal Quinteiro <nacho.resa@gmail.com>
 *               2008  Igalia
 *
 * 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 3 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, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *   Ignacio Casal Quinteiro <nacho.resa@gmail.com>
 *   Pablo Sanxiao <psanxiao@gmail.com>
 */

#ifndef __WINDOW_H__
#define __WINDOW_H__

#include <glib.h>
#include <glib-object.h>
#include <gtk/gtk.h>

#include "gtr-header.h"
#include "gtr-notebook.h"
#include "gtr-tab.h"
#include "gtr-view.h"

G_BEGIN_DECLS
/*
 * Type checking and casting macros
 */
#define GTR_TYPE_WINDOW		(gtr_window_get_type ())
#define GTR_WINDOW(o)		(G_TYPE_CHECK_INSTANCE_CAST ((o), GTR_TYPE_WINDOW, GtrWindow))
#define GTR_WINDOW_CLASS(k)	(G_TYPE_CHECK_CLASS_CAST((k), GTR_TYPE_WINDOW, GtrWindowClass))
#define GTR_IS_WINDOW(o)	(G_TYPE_CHECK_INSTANCE_TYPE ((o), GTR_TYPE_WINDOW))
#define GTR_IS_WINDOW_CLASS(k)	(G_TYPE_CHECK_CLASS_TYPE ((k), GTR_TYPE_WINDOW))
#define GTR_WINDOW_GET_CLASS(o)	(G_TYPE_INSTANCE_GET_CLASS ((o), GTR_TYPE_WINDOW, GtrWindowClass))
/* Private structure type */
typedef struct _GtrWindowPrivate GtrWindowPrivate;

/*
 * Main object structure
 */
typedef struct _GtrWindow GtrWindow;

struct _GtrWindow
{
  GtkWindow parent_instance;

  /*< private > */
  GtrWindowPrivate *priv;
};

/*
 * Class definition
 */
typedef struct _GtrWindowClass GtrWindowClass;

struct _GtrWindowClass
{
  GtkWindowClass parent_class;
};

typedef enum
{
  GTR_WINDOW_PLACEMENT_NONE = 0,
  GTR_WINDOW_PLACEMENT_TOP,
  GTR_WINDOW_PLACEMENT_BOTTOM,
  GTR_WINDOW_PLACEMENT_RIGHT,
  GTR_WINDOW_PLACEMENT_LEFT,
  GTR_WINDOW_PLACEMENT_CENTER,
  GTR_WINDOW_PLACEMENT_FLOATING
} GtrWindowPlacement;

/*
 * Public methods
 */
GType
gtr_window_get_type (void)
  G_GNUC_CONST;

     GType gtr_window_register_type (GTypeModule * module);

     GtrTab *gtr_window_create_tab (GtrWindow * window, GtrPo * po);

     GtrTab *gtr_window_get_active_tab (GtrWindow * window);

     GList *gtr_window_get_all_tabs (GtrWindow * window);

     GtrNotebook *gtr_window_get_notebook (GtrWindow * window);
GtrHeader * gtr_window_get_header_from_active_tab (GtrWindow * window);

     GtkWidget *
     gtr_window_get_statusbar (GtrWindow * window);

     GtkUIManager *
     gtr_window_get_ui_manager (GtrWindow * window);

     GtrView *
     gtr_window_get_active_view (GtrWindow * window);

     GList *
     gtr_window_get_all_views (GtrWindow * window,
                               gboolean original, gboolean translated);

     void
     set_sensitive_according_to_message (GtrWindow * window, GtrPo * po);

     void
     set_sensitive_according_to_window (GtrWindow * window);

     void
     gtr_window_add_widget (GtrWindow * window,
                            GtkWidget * widget,
                            const gchar * name,
                            const gchar * title,
                            const gchar * stock_id,
                            GtrWindowPlacement placement);

     void
     gtr_window_remove_widget (GtrWindow * window, GtkWidget * widget);

     GObject *
     _gtr_window_get_layout_manager (GtrWindow * window);

     GtkWidget *
     gtr_window_get_tab_from_location (GtrWindow * window, GFile * location);

     void
     gtr_window_set_active_tab (GtrWindow * window, GtkWidget * tab);

     void
     _gtr_window_close_tab (GtrWindow * window, GtrTab * tab);

     GtkWidget *
     gtr_window_get_tm_menu (GtrWindow * window);

     void
     _gtr_recent_add (GtrWindow * window,
                      GFile * location, gchar * project_id);

G_END_DECLS
#endif /* __WINDOW_H__ */