import SDK release
[hildon] / hildon-widgets / hildon-find-object-dialog.h
1 /*
2  * This file is part of hildon-libs
3  *
4  * Copyright (C) 2005 Nokia Corporation.
5  *
6  * Contact: Luc Pionchon <luc.pionchon@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #ifndef __HILDON_FIND_OBJECT_DIALOG_H__
26 #define __HILDON_FIND_OBJECT_DIALOG_H__
27
28 #ifndef __DEPRACATED__
29 #define __DEPRACATED__
30 #endif
31
32 #include <gtk/gtkdialog.h>
33
34 G_BEGIN_DECLS
35 #define HILDON_TYPE_FIND_OBJECT_DIALOG \
36   ( hildon_find_object_dialog_get_type() )
37 #define HILDON_FIND_OBJECT_DIALOG(obj) \
38   (GTK_CHECK_CAST (obj, HILDON_TYPE_FIND_OBJECT_DIALOG,\
39    HildonFindObjectDialog))
40 #define HILDON_FIND_OBJECT_DIALOG_CLASS(klass) \
41   (GTK_CHECK_CLASS_CAST ((klass), HILDON_TYPE_FIND_OBJECT_DIALOG, \
42   HildonFindObjectDialogClass))
43 #define HILDON_IS_FIND_OBJECT_DIALOG(obj) \
44   (GTK_CHECK_TYPE (obj, HILDON_TYPE_FIND_OBJECT_DIALOG))
45 #define HILDON_IS_FIND_OBJECT_DIALOG_CLASS(klass) \
46   (GTK_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_FIND_OBJECT_DIALOG))
47 typedef struct _HildonFindObjectDialog HildonFindObjectDialog;
48 typedef struct _HildonFindObjectDialogClass HildonFindObjectDialogClass;
49
50 struct _HildonFindObjectDialog {
51     GtkDialog parent;
52 };
53
54 struct _HildonFindObjectDialogClass {
55     GtkDialogClass parent_class;
56 };
57
58 GType hildon_find_object_dialog_get_type(void);
59
60 GtkWidget *hildon_find_object_dialog_new(GtkWindow * parent);
61 GtkWidget *hildon_find_object_dialog_new_with_options(GtkWindow * parent,
62                                                       GtkDialog * dialog);
63 const gchar *hildon_find_object_dialog_get_text(HildonFindObjectDialog *
64                                                 dialog);
65 void hildon_find_object_dialog_set_label(HildonFindObjectDialog * dialog,
66                                          const gchar * label);
67
68 G_END_DECLS
69 #endif