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
d29f6eb1
Kaydet (Commit)
d29f6eb1
authored
Şub 13, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
extend signatures to make some coverity rework easier
Change-Id: I670eaa51aa95bf29f51bc6542eae2f562987d5a4
üst
17bb5abb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
22 deletions
+66
-22
dndhelp.hxx
include/vcl/dndhelp.hxx
+33
-11
dndhelp.cxx
vcl/source/app/dndhelp.cxx
+33
-11
No files found.
include/vcl/dndhelp.hxx
Dosyayı görüntüle @
d29f6eb1
...
...
@@ -56,21 +56,43 @@ public:
virtual
~
DragAndDropClient
();
// ::com::sun::star::datatransfer::dnd::XDragGestureListener
virtual
void
dragGestureRecognized
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragGestureEvent
&
dge
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dragGestureRecognized
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragGestureEvent
&
dge
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
// ::com::sun::star::datatransfer::dnd::XDragSourceListener
virtual
void
dragDropEnd
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDropEvent
&
dsde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dragEnter
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
dsde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dragExit
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceEvent
&
dse
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dragOver
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
dsde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dropActionChanged
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
dsde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dragDropEnd
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDropEvent
&
dsde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
dragEnter
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
dsde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
dragExit
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceEvent
&
dse
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
dragOver
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
dsde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
dropActionChanged
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
dsde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
// ::com::sun::star::datatransfer::dnd::XDropTargetListener
virtual
void
drop
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDropEvent
&
dtde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dragEnter
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEnterEvent
&
dtdee
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dragExit
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetEvent
&
dte
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dragOver
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEvent
&
dtde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
dropActionChanged
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEvent
&
dtde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
drop
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDropEvent
&
dtde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
dragEnter
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEnterEvent
&
dtdee
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
dragExit
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetEvent
&
dte
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
dragOver
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEvent
&
dtde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
void
dropActionChanged
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEvent
&
dtde
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
};
class
VCL_DLLPUBLIC
DragAndDropWrapper
:
...
...
vcl/source/app/dndhelp.cxx
Dosyayı görüntüle @
d29f6eb1
...
...
@@ -23,47 +23,69 @@ using namespace ::com::sun::star;
vcl
::
unohelper
::
DragAndDropClient
::~
DragAndDropClient
()
{}
void
vcl
::
unohelper
::
DragAndDropClient
::
dragGestureRecognized
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragGestureEvent
&
/*dge*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dragGestureRecognized
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragGestureEvent
&
/*dge*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
dragDropEnd
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDropEvent
&
/*dsde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dragDropEnd
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDropEvent
&
/*dsde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
dragEnter
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
/*dsde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dragEnter
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
/*dsde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
dragExit
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceEvent
&
/*dse*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dragExit
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceEvent
&
/*dse*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
dragOver
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
/*dsde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dragOver
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
/*dsde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
dropActionChanged
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
/*dsde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dropActionChanged
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DragSourceDragEvent
&
/*dsde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
drop
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDropEvent
&
/*dtde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
drop
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDropEvent
&
/*dtde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
dragEnter
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEnterEvent
&
/*dtdee*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dragEnter
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEnterEvent
&
/*dtdee*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
dragExit
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetEvent
&
/*dte*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dragExit
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetEvent
&
/*dte*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
dragOver
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEvent
&
/*dtde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dragOver
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEvent
&
/*dtde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
void
vcl
::
unohelper
::
DragAndDropClient
::
dropActionChanged
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEvent
&
/*dtde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
void
vcl
::
unohelper
::
DragAndDropClient
::
dropActionChanged
(
const
::
com
::
sun
::
star
::
datatransfer
::
dnd
::
DropTargetDragEvent
&
/*dtde*/
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
}
...
...
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