]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-chat-view.h
Merge branch 'sasl'
[empathy.git] / libempathy-gtk / empathy-chat-view.h
index 875ef39834e8327e936404ad8b26e740a38a2228..96365a618d1615f8bf4034aedbe1d59bee5ee9d3 100644 (file)
  *
  * 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.
- * 
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA  02110-1301  USA
+ *
  * Authors: Xavier Claessens <xclaesse@gmail.com>
  */
 
 #ifndef __EMPATHY_CHAT_VIEW_H__
 #define __EMPATHY_CHAT_VIEW_H__
 
-#include <gtk/gtktextview.h>
+#include <gtk/gtk.h>
 
 #include <libempathy/empathy-contact.h>
 #include <libempathy/empathy-message.h>
@@ -38,8 +38,6 @@ G_BEGIN_DECLS
 typedef struct _EmpathyChatView      EmpathyChatView;
 typedef struct _EmpathyChatViewIface EmpathyChatViewIface;
 
-#include "empathy-theme.h"
-
 struct _EmpathyChatViewIface {
        GTypeInterface   base_iface;
 
@@ -55,16 +53,20 @@ struct _EmpathyChatViewIface {
        void             (*clear)                (EmpathyChatView *view);
        gboolean         (*find_previous)        (EmpathyChatView *view,
                                                  const gchar     *search_criteria,
-                                                 gboolean         new_search);
+                                                 gboolean         new_search,
+                                                 gboolean         match_case);
        gboolean         (*find_next)            (EmpathyChatView *view,
                                                  const gchar     *search_criteria,
-                                                 gboolean         new_search);
+                                                 gboolean         new_search,
+                                                 gboolean         match_case);
        void             (*find_abilities)       (EmpathyChatView *view,
                                                  const gchar     *search_criteria,
+                                                 gboolean         match_case,
                                                  gboolean        *can_do_previous,
                                                  gboolean        *can_do_next);
        void             (*highlight)            (EmpathyChatView *view,
-                                                 const gchar     *text);
+                                                 const gchar     *text,
+                                                 gboolean         match_case);
        void             (*copy_clipboard)       (EmpathyChatView *view);
 };
 
@@ -80,16 +82,20 @@ gboolean         empathy_chat_view_get_has_selection    (EmpathyChatView *view);
 void             empathy_chat_view_clear                (EmpathyChatView *view);
 gboolean         empathy_chat_view_find_previous        (EmpathyChatView *view,
                                                         const gchar     *search_criteria,
-                                                        gboolean         new_search);
+                                                        gboolean         new_search,
+                                                        gboolean         match_case);
 gboolean         empathy_chat_view_find_next            (EmpathyChatView *view,
                                                         const gchar     *search_criteria,
-                                                        gboolean         new_search);
+                                                        gboolean         new_search,
+                                                        gboolean         match_case);
 void             empathy_chat_view_find_abilities       (EmpathyChatView *view,
                                                         const gchar     *search_criteria,
+                                                        gboolean         match_case,
                                                         gboolean        *can_do_previous,
                                                         gboolean        *can_do_next);
 void             empathy_chat_view_highlight            (EmpathyChatView *view,
-                                                        const gchar     *text);
+                                                        const gchar     *text,
+                                                        gboolean         match_case);
 void             empathy_chat_view_copy_clipboard       (EmpathyChatView *view);
 
 G_END_DECLS