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_SIGNAL_HANDLERS_H
11 #define GTV_SIGNAL_HANDLERS_H
15 void btn_clicked(GtkWidget
* pWidget
, gpointer
);
17 void doCopy(GtkWidget
* pButton
, gpointer
/*pItem*/);
19 void doPaste(GtkWidget
* pButton
, gpointer
/*pItem*/);
21 void createView(GtkWidget
* pButton
, gpointer
/*pItem*/);
23 void getRulerState(GtkWidget
* pButton
, gpointer
/*pItem*/);
25 void recentUnoChanged( GtkWidget
* pSelector
, gpointer
/* pItem */ );
27 void unoCommandDebugger(GtkWidget
* pButton
, gpointer
/* pItem */);
29 void toggleEditing(GtkWidget
* pButton
, gpointer
/*pItem*/);
31 void changePartMode( GtkWidget
* pSelector
, gpointer
/* pItem */ );
33 void changePart( GtkWidget
* pSelector
, gpointer
/*pItem*/ );
35 void openLokDialog( GtkWidget
* pSelector
, gpointer
/*pItem*/ );
37 void changeZoom( GtkWidget
* pButton
, gpointer
/* pItem */ );
39 void toggleFindbar(GtkWidget
* pButton
, gpointer
/*pItem*/);
41 void documentRedline(GtkWidget
* pButton
, gpointer
/*pItem*/);
43 void documentRepair(GtkWidget
* pButton
, gpointer
/*pItem*/);
45 void docAdjustmentChanged(GtkAdjustment
*, gpointer
);
47 /// Click handler for the search next button.
48 void signalSearchNext(GtkWidget
* pButton
, gpointer
/*pItem*/);
50 /// Click handler for the search previous button.
51 void signalSearchPrev(GtkWidget
* pButton
, gpointer
/*pItem*/);
53 /// Handles the key-press-event of the search entry widget.
54 gboolean
signalFindbar(GtkWidget
* pWidget
, GdkEventKey
* pEvent
, gpointer
/*pData*/);
56 void toggleFindAll(GtkWidget
* pButton
, gpointer
/*pItem*/);
58 void editButtonClicked(GtkWidget
*, gpointer
);
60 void replyButtonClicked(GtkWidget
*, gpointer
);
62 void deleteCommentButtonClicked(GtkWidget
*, gpointer
);
64 /// Handles the key-press-event of the address bar entry widget.
65 gboolean
signalAddressbar(GtkWidget
* pWidget
, GdkEventKey
* pEvent
, gpointer
/*pData*/);
67 /// Handles the key-press-event of the formula entry widget.
68 gboolean
signalFormulabar(GtkWidget
* /*pWidget*/, GdkEventKey
* /*pEvent*/, gpointer
/*pData*/);
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */