Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
ae412b57
Kaydet (Commit)
ae412b57
authored
Ara 01, 2017
tarafından
Pranav Kant
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
lokdialog: Rename postDialogKeyEvent -> postWindowKeyEvent
Change-Id: I78b434106fbef153adde255d4fcc8f74a7169175
üst
b5e27fd8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
init.cxx
desktop/source/lib/init.cxx
+3
-3
LibreOfficeKit.h
include/LibreOfficeKit/LibreOfficeKit.h
+2
-2
LibreOfficeKit.hxx
include/LibreOfficeKit/LibreOfficeKit.hxx
+2
-2
gtv-lok-dialog.cxx
libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx
+1
-1
No files found.
desktop/source/lib/init.cxx
Dosyayı görüntüle @
ae412b57
...
...
@@ -544,7 +544,7 @@ static void doc_postKeyEvent(LibreOfficeKitDocument* pThis,
int
nType
,
int
nCharCode
,
int
nKeyCode
);
static
void
doc_post
Dialog
KeyEvent
(
LibreOfficeKitDocument
*
pThis
,
static
void
doc_post
Window
KeyEvent
(
LibreOfficeKitDocument
*
pThis
,
unsigned
nLOKWindowId
,
int
nType
,
int
nCharCode
,
...
...
@@ -644,7 +644,7 @@ LibLODocument_Impl::LibLODocument_Impl(const uno::Reference <css::lang::XCompone
m_pDocumentClass
->
initializeForRendering
=
doc_initializeForRendering
;
m_pDocumentClass
->
registerCallback
=
doc_registerCallback
;
m_pDocumentClass
->
postKeyEvent
=
doc_postKeyEvent
;
m_pDocumentClass
->
post
DialogKeyEvent
=
doc_postDialog
KeyEvent
;
m_pDocumentClass
->
post
WindowKeyEvent
=
doc_postWindow
KeyEvent
;
m_pDocumentClass
->
postMouseEvent
=
doc_postMouseEvent
;
m_pDocumentClass
->
postDialogMouseEvent
=
doc_postDialogMouseEvent
;
m_pDocumentClass
->
postDialogChildMouseEvent
=
doc_postDialogChildMouseEvent
;
...
...
@@ -2250,7 +2250,7 @@ static void doc_postKeyEvent(LibreOfficeKitDocument* pThis, int nType, int nChar
pDoc
->
postKeyEvent
(
nType
,
nCharCode
,
nKeyCode
);
}
static
void
doc_post
Dialog
KeyEvent
(
LibreOfficeKitDocument
*
/*pThis*/
,
unsigned
nLOKWindowId
,
int
nType
,
int
nCharCode
,
int
nKeyCode
)
static
void
doc_post
Window
KeyEvent
(
LibreOfficeKitDocument
*
/*pThis*/
,
unsigned
nLOKWindowId
,
int
nType
,
int
nCharCode
,
int
nKeyCode
)
{
SolarMutexGuard
aGuard
;
...
...
include/LibreOfficeKit/LibreOfficeKit.h
Dosyayı görüntüle @
ae412b57
...
...
@@ -280,8 +280,8 @@ struct _LibreOfficeKitDocumentClass
/// @see lok::Document::postWindow().
void
(
*
postWindow
)
(
LibreOfficeKitDocument
*
pThis
,
unsigned
nWindowId
,
int
nAction
);
/// @see lok::Document::post
Dialog
KeyEvent().
void
(
*
post
Dialog
KeyEvent
)
(
LibreOfficeKitDocument
*
pThis
,
/// @see lok::Document::post
Window
KeyEvent().
void
(
*
post
Window
KeyEvent
)
(
LibreOfficeKitDocument
*
pThis
,
unsigned
nDialogId
,
int
nType
,
int
nCharCode
,
...
...
include/LibreOfficeKit/LibreOfficeKit.hxx
Dosyayı görüntüle @
ae412b57
...
...
@@ -259,9 +259,9 @@ public:
* @param nCharCode contains the Unicode character generated by this event or 0
* @param nKeyCode contains the integer code representing the key of the event (non-zero for control keys)
*/
void
post
Dialog
KeyEvent
(
unsigned
nDialogId
,
int
nType
,
int
nCharCode
,
int
nKeyCode
)
void
post
Window
KeyEvent
(
unsigned
nDialogId
,
int
nType
,
int
nCharCode
,
int
nKeyCode
)
{
mpDoc
->
pClass
->
post
Dialog
KeyEvent
(
mpDoc
,
nDialogId
,
nType
,
nCharCode
,
nKeyCode
);
mpDoc
->
pClass
->
post
Window
KeyEvent
(
mpDoc
,
nDialogId
,
nType
,
nCharCode
,
nKeyCode
);
}
/**
...
...
libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx
Dosyayı görüntüle @
ae412b57
...
...
@@ -339,7 +339,7 @@ gtv_lok_dialog_signal_key(GtkWidget* pDialogDrawingArea, GdkEventKey* pEvent)
ss
<<
"gtv_lok_dialog::postKey("
<<
pEvent
->
type
<<
", "
<<
nCharCode
<<
", "
<<
nKeyCode
<<
")"
;
g_info
(
"%s"
,
ss
.
str
().
c_str
());
pDocument
->
pClass
->
post
Dialog
KeyEvent
(
pDocument
,
pDocument
->
pClass
->
post
Window
KeyEvent
(
pDocument
,
priv
->
dialogid
,
pEvent
->
type
==
GDK_KEY_RELEASE
?
LOK_KEYEVENT_KEYUP
:
LOK_KEYEVENT_KEYINPUT
,
nCharCode
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment