~bcurtiswx/ubuntu/precise/empathy/3.4.2.1-0ubuntu1

« back to all changes in this revision

Viewing changes to libempathy-gtk/empathy-chat-view.h

Tags: upstream-2.29.6
ImportĀ upstreamĀ versionĀ 2.29.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
        void             (*clear)                (EmpathyChatView *view);
54
54
        gboolean         (*find_previous)        (EmpathyChatView *view,
55
55
                                                  const gchar     *search_criteria,
56
 
                                                  gboolean         new_search);
 
56
                                                  gboolean         new_search,
 
57
                                                  gboolean         match_case);
57
58
        gboolean         (*find_next)            (EmpathyChatView *view,
58
59
                                                  const gchar     *search_criteria,
59
 
                                                  gboolean         new_search);
 
60
                                                  gboolean         new_search,
 
61
                                                  gboolean         match_case);
60
62
        void             (*find_abilities)       (EmpathyChatView *view,
61
63
                                                  const gchar     *search_criteria,
 
64
                                                  gboolean         match_case,
62
65
                                                  gboolean        *can_do_previous,
63
66
                                                  gboolean        *can_do_next);
64
67
        void             (*highlight)            (EmpathyChatView *view,
65
 
                                                  const gchar     *text);
 
68
                                                  const gchar     *text,
 
69
                                                  gboolean         match_case);
66
70
        void             (*copy_clipboard)       (EmpathyChatView *view);
67
71
};
68
72
 
78
82
void             empathy_chat_view_clear                (EmpathyChatView *view);
79
83
gboolean         empathy_chat_view_find_previous        (EmpathyChatView *view,
80
84
                                                         const gchar     *search_criteria,
81
 
                                                         gboolean         new_search);
 
85
                                                         gboolean         new_search,
 
86
                                                         gboolean         match_case);
82
87
gboolean         empathy_chat_view_find_next            (EmpathyChatView *view,
83
88
                                                         const gchar     *search_criteria,
84
 
                                                         gboolean         new_search);
 
89
                                                         gboolean         new_search,
 
90
                                                         gboolean         match_case);
85
91
void             empathy_chat_view_find_abilities       (EmpathyChatView *view,
86
92
                                                         const gchar     *search_criteria,
 
93
                                                         gboolean         match_case,
87
94
                                                         gboolean        *can_do_previous,
88
95
                                                         gboolean        *can_do_next);
89
96
void             empathy_chat_view_highlight            (EmpathyChatView *view,
90
 
                                                         const gchar     *text);
 
97
                                                         const gchar     *text,
 
98
                                                         gboolean         match_case);
91
99
void             empathy_chat_view_copy_clipboard       (EmpathyChatView *view);
92
100
 
93
101
G_END_DECLS