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
b0184eba
Kaydet (Commit)
b0184eba
authored
Eyl 03, 2013
tarafından
Ivan Timofeev
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
completition->completion :)
Change-Id: I7a5ae7cc0d6a253bbc27db076babedd65c89be1a
üst
0d1a2c1e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
11 deletions
+11
-11
baside2.hxx
basctl/source/basicide/baside2.hxx
+2
-2
baside2b.cxx
basctl/source/basicide/baside2b.cxx
+4
-4
optbasicidepage.ui
cui/uiconfig/ui/optbasicidepage.ui
+2
-2
codecompletecache.hxx
include/basic/codecompletecache.hxx
+2
-2
BasicIDE.xcs
officecfg/registry/schema/org/openoffice/Office/BasicIDE.xcs
+1
-1
No files found.
basctl/source/basicide/baside2.hxx
Dosyayı görüntüle @
b0184eba
...
@@ -128,8 +128,8 @@ private:
...
@@ -128,8 +128,8 @@ private:
void
HandleAutoCorrect
();
void
HandleAutoCorrect
();
void
HandleAutoCloseParen
();
void
HandleAutoCloseParen
();
void
HandleAutoCloseDoubleQuotes
();
void
HandleAutoCloseDoubleQuotes
();
void
HandleCodeCompleti
ti
on
();
void
HandleCodeCompletion
();
void
HandleProcedureCompleti
ti
on
();
void
HandleProcedureCompletion
();
TextSelection
GetLastHighlightPortionTextSelection
();
TextSelection
GetLastHighlightPortionTextSelection
();
protected
:
protected
:
...
...
basctl/source/basicide/baside2b.cxx
Dosyayı görüntüle @
b0184eba
...
@@ -536,12 +536,12 @@ void EditorWindow::KeyInput( const KeyEvent& rKEvt )
...
@@ -536,12 +536,12 @@ void EditorWindow::KeyInput( const KeyEvent& rKEvt )
if
(
rKEvt
.
GetKeyCode
().
GetCode
()
==
KEY_RETURN
&&
CodeCompleteOptions
::
IsProcedureAutoCompleteOn
()
)
if
(
rKEvt
.
GetKeyCode
().
GetCode
()
==
KEY_RETURN
&&
CodeCompleteOptions
::
IsProcedureAutoCompleteOn
()
)
{
//autoclose implementation
{
//autoclose implementation
HandleProcedureCompleti
ti
on
();
HandleProcedureCompletion
();
}
}
if
(
rKEvt
.
GetKeyCode
().
GetCode
()
==
KEY_POINT
&&
CodeCompleteOptions
::
IsCodeCompleteOn
()
)
if
(
rKEvt
.
GetKeyCode
().
GetCode
()
==
KEY_POINT
&&
CodeCompleteOptions
::
IsCodeCompleteOn
()
)
{
{
HandleCodeCompleti
ti
on
();
HandleCodeCompletion
();
}
}
if
(
!
bDone
&&
(
!
TextEngine
::
DoesKeyChangeText
(
rKEvt
)
||
ImpCanModify
()
)
)
if
(
!
bDone
&&
(
!
TextEngine
::
DoesKeyChangeText
(
rKEvt
)
||
ImpCanModify
()
)
)
{
{
...
@@ -729,7 +729,7 @@ void EditorWindow::HandleAutoCloseDoubleQuotes()
...
@@ -729,7 +729,7 @@ void EditorWindow::HandleAutoCloseDoubleQuotes()
}
}
}
}
void
EditorWindow
::
HandleProcedureCompleti
ti
on
()
void
EditorWindow
::
HandleProcedureCompletion
()
{
{
TextSelection
aSel
=
GetEditView
()
->
GetSelection
();
TextSelection
aSel
=
GetEditView
()
->
GetSelection
();
sal_uLong
nLine
=
aSel
.
GetStart
().
GetPara
();
sal_uLong
nLine
=
aSel
.
GetStart
().
GetPara
();
...
@@ -809,7 +809,7 @@ void EditorWindow::HandleProcedureCompletition()
...
@@ -809,7 +809,7 @@ void EditorWindow::HandleProcedureCompletition()
}
}
}
}
void
EditorWindow
::
HandleCodeCompleti
ti
on
()
void
EditorWindow
::
HandleCodeCompletion
()
{
{
rModulWindow
.
UpdateModule
();
rModulWindow
.
UpdateModule
();
rModulWindow
.
GetSbModule
()
->
GetCodeCompleteDataFromParse
(
aCodeCompleteCache
);
rModulWindow
.
GetSbModule
()
->
GetCodeCompleteDataFromParse
(
aCodeCompleteCache
);
...
...
cui/uiconfig/ui/optbasicidepage.ui
Dosyayı görüntüle @
b0184eba
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<child>
<child>
<object
class=
"GtkCheckButton"
id=
"codecomplete_enable"
>
<object
class=
"GtkCheckButton"
id=
"codecomplete_enable"
>
<property
name=
"label"
translatable=
"yes"
>
Enable Code Completi
ti
on
</property>
<property
name=
"label"
translatable=
"yes"
>
Enable Code Completion
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"receives_default"
>
False
</property>
<property
name=
"receives_default"
>
False
</property>
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
<object
class=
"GtkLabel"
id=
"label1"
>
<object
class=
"GtkLabel"
id=
"label1"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"label"
translatable=
"yes"
>
Code Completi
ti
on
</property>
<property
name=
"label"
translatable=
"yes"
>
Code Completion
</property>
<attributes>
<attributes>
<attribute
name=
"weight"
value=
"bold"
/>
<attribute
name=
"weight"
value=
"bold"
/>
</attributes>
</attributes>
...
...
include/basic/codecompletecache.hxx
Dosyayı görüntüle @
b0184eba
...
@@ -37,7 +37,7 @@ typedef boost::unordered_map< OUString, CodeCompleteVarTypes, OUStringHash > Cod
...
@@ -37,7 +37,7 @@ typedef boost::unordered_map< OUString, CodeCompleteVarTypes, OUStringHash > Cod
class
BASIC_DLLPUBLIC
CodeCompleteOptions
class
BASIC_DLLPUBLIC
CodeCompleteOptions
{
{
/*
/*
* class to store basic code completi
ti
on
* class to store basic code completion
* options
* options
* */
* */
private
:
private
:
...
@@ -75,7 +75,7 @@ class BASIC_DLLPUBLIC CodeCompleteDataCache
...
@@ -75,7 +75,7 @@ class BASIC_DLLPUBLIC CodeCompleteDataCache
{
{
/*
/*
* cache to store data for
* cache to store data for
* code completi
ti
on
* code completion
* */
* */
private
:
private
:
CodeCompleteVarScopes
aVarScopes
;
CodeCompleteVarScopes
aVarScopes
;
...
...
officecfg/registry/schema/org/openoffice/Office/BasicIDE.xcs
Dosyayı görüntüle @
b0184eba
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
</info>
</info>
<prop
oor:name=
"CodeComplete"
oor:type=
"xs:boolean"
oor:nillable=
"false"
>
<prop
oor:name=
"CodeComplete"
oor:type=
"xs:boolean"
oor:nillable=
"false"
>
<info>
<info>
<desc>
Sets the code completi
ti
on on/off. Default is false.
</desc>
<desc>
Sets the code completion on/off. Default is false.
</desc>
</info>
</info>
<value>
false
</value>
<value>
false
</value>
</prop>
</prop>
...
...
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