1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 #ifndef GTV_LOKDOCVIEW_SIGNAL_HANDLERS_H
11 #define GTV_LOKDOCVIEW_SIGNAL_HANDLERS_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
);
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */