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
83a597af
Kaydet (Commit)
83a597af
authored
Ara 01, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: -Werror=switch
Change-Id: Ic5b7f1da92ac5a936857fe122cb8db0441b6d291
üst
2dc8ed69
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
78 additions
and
103 deletions
+78
-103
ebbcontrols.cxx
svtools/source/brwbox/ebbcontrols.cxx
+36
-55
editbrowsebox.cxx
svtools/source/brwbox/editbrowsebox.cxx
+0
-0
fileurlbox.cxx
svtools/source/control/fileurlbox.cxx
+4
-5
addresstemplate.cxx
svtools/source/dialogs/addresstemplate.cxx
+38
-43
No files found.
svtools/source/brwbox/ebbcontrols.cxx
Dosyayı görüntüle @
83a597af
...
...
@@ -52,37 +52,29 @@ namespace svt
bool
ComboBoxControl
::
PreNotify
(
NotifyEvent
&
rNEvt
)
{
switch
(
rNEvt
.
GetType
())
if
(
rNEvt
.
GetType
()
==
MouseNotifyEvent
::
KEYINPUT
&&
!
IsInDropDown
())
{
case
MouseNotifyEvent
:
:
KEYINPUT
:
if
(
!
IsInDropDown
())
const
KeyEvent
*
pEvt
=
rNEvt
.
GetKeyEvent
();
const
vcl
::
KeyCode
rKey
=
pEvt
->
GetKeyCode
();
if
((
rKey
.
GetCode
()
==
KEY_UP
||
rKey
.
GetCode
()
==
KEY_DOWN
)
&&
(
!
pEvt
->
GetKeyCode
().
IsShift
()
&&
pEvt
->
GetKeyCode
().
IsMod1
()))
{
// select next resp. previous entry
sal_Int32
nPos
=
GetEntryPos
(
GetText
());
int
nDir
=
(
rKey
.
GetCode
()
==
KEY_DOWN
?
1
:
-
1
);
if
(
!
((
nPos
==
0
&&
nDir
==
-
1
)
||
(
nPos
>=
GetEntryCount
()
&&
nDir
==
1
)))
{
const
KeyEvent
*
pEvt
=
rNEvt
.
GetKeyEvent
();
const
vcl
::
KeyCode
rKey
=
pEvt
->
GetKeyCode
();
if
((
rKey
.
GetCode
()
==
KEY_UP
||
rKey
.
GetCode
()
==
KEY_DOWN
)
&&
(
!
pEvt
->
GetKeyCode
().
IsShift
()
&&
pEvt
->
GetKeyCode
().
IsMod1
()))
{
// select next resp. previous entry
sal_Int32
nPos
=
GetEntryPos
(
GetText
());
int
nDir
=
(
rKey
.
GetCode
()
==
KEY_DOWN
?
1
:
-
1
);
if
(
!
((
nPos
==
0
&&
nDir
==
-
1
)
||
(
nPos
>=
GetEntryCount
()
&&
nDir
==
1
)))
{
nPos
+=
nDir
;
SetText
(
GetEntry
(
nPos
));
}
return
true
;
}
nPos
+=
nDir
;
SetText
(
GetEntry
(
nPos
));
}
break
;
return
true
;
}
}
return
ComboBox
::
PreNotify
(
rNEvt
);
}
//= ComboBoxCellController
ComboBoxCellController
::
ComboBoxCellController
(
ComboBoxControl
*
pWin
)
:
CellController
(
pWin
)
{
...
...
@@ -133,22 +125,17 @@ namespace svt
return
GetComboBox
().
IsValueChangedFromSaved
();
}
void
ComboBoxCellController
::
ClearModified
()
{
GetComboBox
().
SaveValue
();
}
void
ComboBoxCellController
::
SetModifyHdl
(
const
Link
&
rLink
)
{
GetComboBox
().
SetModifyHdl
(
rLink
);
}
//= ListBoxControl
ListBoxControl
::
ListBoxControl
(
vcl
::
Window
*
pParent
,
WinBits
nWinStyle
)
:
ListBox
(
pParent
,
nWinStyle
|
WB_DROPDOWN
|
WB_NOBORDER
)
{
...
...
@@ -157,43 +144,34 @@ namespace svt
SetDropDownLineCount
(
20
);
}
bool
ListBoxControl
::
PreNotify
(
NotifyEvent
&
rNEvt
)
{
switch
(
rNEvt
.
GetType
())
switch
(
rNEvt
.
GetType
()
==
MouseNotifyEvent
::
KEYINPUT
&&
!
IsInDropDown
()
)
{
case
MouseNotifyEvent
:
:
KEYINPUT
:
if
(
!
IsInDropDown
())
const
KeyEvent
*
pEvt
=
rNEvt
.
GetKeyEvent
();
const
vcl
::
KeyCode
rKey
=
pEvt
->
GetKeyCode
();
if
((
rKey
.
GetCode
()
==
KEY_UP
||
rKey
.
GetCode
()
==
KEY_DOWN
)
&&
(
!
pEvt
->
GetKeyCode
().
IsShift
()
&&
pEvt
->
GetKeyCode
().
IsMod1
()))
{
// select next resp. previous entry
sal_Int32
nPos
=
GetSelectEntryPos
();
int
nDir
=
(
rKey
.
GetCode
()
==
KEY_DOWN
?
1
:
-
1
);
if
(
!
((
nPos
==
0
&&
nDir
==
-
1
)
||
(
nPos
>=
GetEntryCount
()
&&
nDir
==
1
)))
{
const
KeyEvent
*
pEvt
=
rNEvt
.
GetKeyEvent
();
const
vcl
::
KeyCode
rKey
=
pEvt
->
GetKeyCode
();
if
((
rKey
.
GetCode
()
==
KEY_UP
||
rKey
.
GetCode
()
==
KEY_DOWN
)
&&
(
!
pEvt
->
GetKeyCode
().
IsShift
()
&&
pEvt
->
GetKeyCode
().
IsMod1
()))
{
// select next resp. previous entry
sal_Int32
nPos
=
GetSelectEntryPos
();
int
nDir
=
(
rKey
.
GetCode
()
==
KEY_DOWN
?
1
:
-
1
);
if
(
!
((
nPos
==
0
&&
nDir
==
-
1
)
||
(
nPos
>=
GetEntryCount
()
&&
nDir
==
1
)))
{
nPos
+=
nDir
;
SelectEntryPos
(
nPos
);
}
Select
();
// for calling Modify
return
true
;
}
else
if
(
GetParent
()
->
PreNotify
(
rNEvt
))
return
true
;
nPos
+=
nDir
;
SelectEntryPos
(
nPos
);
}
break
;
Select
();
// for calling Modify
return
true
;
}
else
if
(
GetParent
()
->
PreNotify
(
rNEvt
))
return
true
;
}
return
ListBox
::
PreNotify
(
rNEvt
);
}
//= ListBoxCellController
ListBoxCellController
::
ListBoxCellController
(
ListBoxControl
*
pWin
)
:
CellController
(
pWin
)
{
...
...
@@ -333,6 +311,9 @@ namespace svt
break
;
case
MouseNotifyEvent
:
:
LOSEFOCUS
:
HideFocus
();
break
;
default
:
break
;
}
return
Control
::
PreNotify
(
rEvt
);
}
...
...
svtools/source/brwbox/editbrowsebox.cxx
Dosyayı görüntüle @
83a597af
This diff is collapsed.
Click to expand it.
svtools/source/control/fileurlbox.cxx
Dosyayı görüntüle @
83a597af
...
...
@@ -68,17 +68,18 @@ namespace svt
if
(
IsWindowOrChild
(
_rNEvt
.
GetWindow
()
)
)
DisplayURL
(
GetText
()
);
break
;
default
:
break
;
}
return
SvtURLBox
::
PreNotify
(
_rNEvt
);
}
bool
FileURLBox
::
Notify
(
NotifyEvent
&
_rNEvt
)
{
switch
(
_rNEvt
.
GetType
()
)
switch
(
_rNEvt
.
GetType
()
==
MouseNotifyEvent
::
KEYINPUT
)
{
case
MouseNotifyEvent
:
:
KEYINPUT
:
if
(
(
GetSubEdit
()
==
_rNEvt
.
GetWindow
()
)
&&
(
KEY_RETURN
==
_rNEvt
.
GetKeyEvent
()
->
GetKeyCode
().
GetCode
()
)
&&
(
IsInDropDown
()
)
...
...
@@ -88,13 +89,11 @@ namespace svt
DisplayURL
(
m_sPreservedText
);
return
nReturn
;
}
break
;
}
return
SvtURLBox
::
Notify
(
_rNEvt
);
}
}
// namespace svt
...
...
svtools/source/dialogs/addresstemplate.cxx
Dosyayı görüntüle @
83a597af
...
...
@@ -1225,58 +1225,53 @@ void AssignmentPersistentData::Commit()
return
0L
;
}
bool
AddressBookSourceDialog
::
PreNotify
(
NotifyEvent
&
_rNEvt
)
{
switch
(
_rNEvt
.
GetType
())
switch
(
_rNEvt
.
GetType
()
==
MouseNotifyEvent
::
KEYINPUT
)
{
case
MouseNotifyEvent
:
:
KEYINPUT
:
{
const
KeyEvent
*
pKeyEvent
=
_rNEvt
.
GetKeyEvent
();
sal_uInt16
nCode
=
pKeyEvent
->
GetKeyCode
().
GetCode
();
bool
bShift
=
pKeyEvent
->
GetKeyCode
().
IsShift
();
bool
bCtrl
=
pKeyEvent
->
GetKeyCode
().
IsMod1
();
bool
bAlt
=
pKeyEvent
->
GetKeyCode
().
IsMod2
();
if
(
KEY_TAB
==
nCode
)
{
// somebody pressed the tab key
if
(
!
bAlt
&&
!
bCtrl
&&
!
bShift
)
{
// it's really the only the key (no modifiers)
if
(
m_pImpl
->
pFields
[
m_pImpl
->
nLastVisibleListIndex
]
->
HasChildPathFocus
())
// the last of our visible list boxes has the focus
if
(
m_pImpl
->
nFieldScrollPos
<
m_pFieldScroller
->
GetRangeMax
())
{
// we can still scroll down
sal_Int32
nNextFocusList
=
m_pImpl
->
nLastVisibleListIndex
+
1
-
2
;
// -> scroll down
implScrollFields
(
m_pImpl
->
nFieldScrollPos
+
1
,
false
,
true
);
// give the left control in the "next" line the focus
m_pImpl
->
pFields
[
nNextFocusList
]
->
GrabFocus
();
// return saying "have handled this"
return
true
;
}
}
else
if
(
!
bAlt
&&
!
bCtrl
&&
bShift
)
{
// it's shift-tab
if
(
m_pImpl
->
pFields
[
0
]
->
HasChildPathFocus
())
// our first list box has the focus
if
(
m_pImpl
->
nFieldScrollPos
>
0
)
{
// we can still scroll up
// -> scroll up
implScrollFields
(
m_pImpl
->
nFieldScrollPos
-
1
,
false
,
true
);
// give the right control in the "prebious" line the focus
m_pImpl
->
pFields
[
0
-
1
+
2
]
->
GrabFocus
();
// return saying "have handled this"
return
true
;
}
}
const
KeyEvent
*
pKeyEvent
=
_rNEvt
.
GetKeyEvent
();
sal_uInt16
nCode
=
pKeyEvent
->
GetKeyCode
().
GetCode
();
bool
bShift
=
pKeyEvent
->
GetKeyCode
().
IsShift
();
bool
bCtrl
=
pKeyEvent
->
GetKeyCode
().
IsMod1
();
bool
bAlt
=
pKeyEvent
->
GetKeyCode
().
IsMod2
();
if
(
KEY_TAB
==
nCode
)
{
// somebody pressed the tab key
if
(
!
bAlt
&&
!
bCtrl
&&
!
bShift
)
{
// it's really the only the key (no modifiers)
if
(
m_pImpl
->
pFields
[
m_pImpl
->
nLastVisibleListIndex
]
->
HasChildPathFocus
())
// the last of our visible list boxes has the focus
if
(
m_pImpl
->
nFieldScrollPos
<
m_pFieldScroller
->
GetRangeMax
())
{
// we can still scroll down
sal_Int32
nNextFocusList
=
m_pImpl
->
nLastVisibleListIndex
+
1
-
2
;
// -> scroll down
implScrollFields
(
m_pImpl
->
nFieldScrollPos
+
1
,
false
,
true
);
// give the left control in the "next" line the focus
m_pImpl
->
pFields
[
nNextFocusList
]
->
GrabFocus
();
// return saying "have handled this"
return
true
;
}
}
else
if
(
!
bAlt
&&
!
bCtrl
&&
bShift
)
{
// it's shift-tab
if
(
m_pImpl
->
pFields
[
0
]
->
HasChildPathFocus
())
// our first list box has the focus
if
(
m_pImpl
->
nFieldScrollPos
>
0
)
{
// we can still scroll up
// -> scroll up
implScrollFields
(
m_pImpl
->
nFieldScrollPos
-
1
,
false
,
true
);
// give the right control in the "prebious" line the focus
m_pImpl
->
pFields
[
0
-
1
+
2
]
->
GrabFocus
();
// return saying "have handled this"
return
true
;
}
}
}
break
;
}
return
ModalDialog
::
PreNotify
(
_rNEvt
);
}
}
// namespace svt
...
...
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