tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / libreofficekit / qa / gtktiledviewer / gtv-lokdocview-signal-handlers.hxx
blob0c5bb7113e26e27ab33f33d447e2f4e1dcdda6ab
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef GTV_LOKDOCVIEW_SIGNAL_HANDLERS_H
11 #define GTV_LOKDOCVIEW_SIGNAL_HANDLERS_H
13 #include <gtk/gtk.h>
14 #include <LibreOfficeKit/LibreOfficeKitGtk.h>
16 namespace LOKDocViewSigHandlers {
17 void editChanged(LOKDocView* pDocView, gboolean bWasEdit, gpointer);
18 void commandChanged(LOKDocView* pDocView, char* pPayload, gpointer);
19 void commandResult(LOKDocView*, char*, gpointer);
20 void searchNotFound(LOKDocView*, char*, gpointer);
21 void searchResultCount(LOKDocView*, char*, gpointer);
22 void partChanged(LOKDocView*, int, gpointer);
23 void hyperlinkClicked(LOKDocView*, char*, gpointer);
24 void cursorChanged(LOKDocView* pDocView, gint nX, gint nY, gint nWidth, gint nHeight, gpointer);
25 void addressChanged(LOKDocView* pDocView, char* pPayload, gpointer);
26 void formulaChanged(LOKDocView* pDocView, char* pPayload, gpointer);
27 void passwordRequired(LOKDocView* pDocView, char* pUrl, gboolean bModify, gpointer);
28 void comment(LOKDocView* pDocView, gchar* pComment, gpointer);
29 void window(LOKDocView* pDocView, gchar* pPayload, gpointer);
30 void contentControl(LOKDocView* pDocView, gchar* pComment, gpointer);
32 gboolean configureEvent(GtkWidget* pWidget, GdkEventConfigure* pEvent, gpointer pData);
35 #endif
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */