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
6108d06c
Kaydet (Commit)
6108d06c
authored
Haz 13, 2012
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tubes: add File -> Collaborate menu entry to launch contacts widget
üst
603c2cb9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
47 additions
and
0 deletions
+47
-0
CalcCommands.xcu
...g/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+5
-0
sc.hrc
sc/inc/sc.hrc
+1
-0
cellsh.sdi
sc/sdi/cellsh.sdi
+1
-0
scalc.sdi
sc/sdi/scalc.sdi
+25
-0
cellsh3.cxx
sc/source/ui/view/cellsh3.cxx
+13
-0
menubar.xml
sc/uiconfig/scalc/menubar/menubar.xml
+2
-0
No files found.
officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
Dosyayı görüntüle @
6108d06c
...
@@ -763,6 +763,11 @@
...
@@ -763,6 +763,11 @@
<value
xml:lang=
"en-US"
>
Sheet Area Input Field
</value>
<value
xml:lang=
"en-US"
>
Sheet Area Input Field
</value>
</prop>
</prop>
</node>
</node>
<node
oor:name=
".uno:Collaborate"
oor:op=
"replace"
>
<prop
oor:name=
"Label"
oor:type=
"xs:string"
>
<value
xml:lang=
"en-US"
>
Collaborate...
</value>
</prop>
</node>
<node
oor:name=
".uno:UnderlineNone"
oor:op=
"replace"
>
<node
oor:name=
".uno:UnderlineNone"
oor:op=
"replace"
>
<prop
oor:name=
"Label"
oor:type=
"xs:string"
>
<prop
oor:name=
"Label"
oor:type=
"xs:string"
>
<value
xml:lang=
"en-US"
>
Underline: Off
</value>
<value
xml:lang=
"en-US"
>
Underline: Off
</value>
...
...
sc/inc/sc.hrc
Dosyayı görüntüle @
6108d06c
...
@@ -158,6 +158,7 @@
...
@@ -158,6 +158,7 @@
#define SID_CHOOSE_DESIGN (SC_VIEW_START + 82)
#define SID_CHOOSE_DESIGN (SC_VIEW_START + 82)
#define SID_EURO_CONVERTER (SC_VIEW_START + 83)
#define SID_EURO_CONVERTER (SC_VIEW_START + 83)
#define SID_COLLABORATION (SC_VIEW_START + 84)
#define SID_EXTERNAL_SOURCE (SC_VIEW_START + 85)
#define SID_EXTERNAL_SOURCE (SC_VIEW_START + 85)
#define SID_SC_INPUT_TEXTWYSIWYG (SC_VIEW_START + 86)
#define SID_SC_INPUT_TEXTWYSIWYG (SC_VIEW_START + 86)
...
...
sc/sdi/cellsh.sdi
Dosyayı görüntüle @
6108d06c
...
@@ -181,6 +181,7 @@ interface CellSelection
...
@@ -181,6 +181,7 @@ interface CellSelection
SID_INSERT_POSTIT [ ExecMethod = ExecuteEdit; StateMethod = GetCellState; ]
SID_INSERT_POSTIT [ ExecMethod = ExecuteEdit; StateMethod = GetCellState; ]
SID_COLLABORATION [ ExecMethod = Execute; ]
SID_TABOP [ ExecMethod = ExecuteEdit; StateMethod = GetState; ]
SID_TABOP [ ExecMethod = ExecuteEdit; StateMethod = GetState; ]
SID_CONSOLIDATE [ ExecMethod = ExecuteEdit; StateMethod = GetState; ]
SID_CONSOLIDATE [ ExecMethod = ExecuteEdit; StateMethod = GetState; ]
FID_INSERT_NAME [ ExecMethod = ExecuteEdit; StateMethod = GetState; ]
FID_INSERT_NAME [ ExecMethod = ExecuteEdit; StateMethod = GetState; ]
...
...
sc/sdi/scalc.sdi
Dosyayı görüntüle @
6108d06c
...
@@ -2647,6 +2647,31 @@ SfxVoidItem FocusCellAddress FID_FOCUS_POSWND
...
@@ -2647,6 +2647,31 @@ SfxVoidItem FocusCellAddress FID_FOCUS_POSWND
GroupId = GID_APPLICATION;
GroupId = GID_APPLICATION;
]
]
//--------------------------------------------------------------------------
SfxVoidItem Collaborate SID_COLLABORATION
()
[
/* flags: */
AutoUpdate = FALSE,
Cachable = Cachable,
FastCall = FALSE,
HasCoreId = FALSE,
HasDialog = TRUE,
ReadOnlyDoc = TRUE,
Toggle = FALSE,
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
Synchron;
/* config: */
AccelConfig = TRUE,
MenuConfig = TRUE,
StatusBarConfig = FALSE,
ToolBoxConfig = TRUE,
GroupId = GID_FORMAT;
]
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
SfxVoidItem FormatCellDialog FID_CELL_FORMAT
SfxVoidItem FormatCellDialog FID_CELL_FORMAT
()
()
...
...
sc/source/ui/view/cellsh3.cxx
Dosyayı görüntüle @
6108d06c
...
@@ -52,6 +52,13 @@
...
@@ -52,6 +52,13 @@
#include "markdata.hxx"
#include "markdata.hxx"
#include "scabstdlg.hxx"
#include "scabstdlg.hxx"
#ifdef ENABLE_TELEPATHY
#include <tubes/manager.hxx>
namespace
tubes
{
void
createContacts
(
const
TeleManager
&
rContacts
);
}
#endif
#define IS_EDITMODE() GetViewData()->HasEditView( GetViewData()->GetActivePart() )
#define IS_EDITMODE() GetViewData()->HasEditView( GetViewData()->GetActivePart() )
using
sc
::
HMMToTwips
;
using
sc
::
HMMToTwips
;
...
@@ -111,6 +118,12 @@ void ScCellShell::Execute( SfxRequest& rReq )
...
@@ -111,6 +118,12 @@ void ScCellShell::Execute( SfxRequest& rReq )
case
SID_ATTR_SIZE
:
//XXX ???
case
SID_ATTR_SIZE
:
//XXX ???
break
;
break
;
case
SID_COLLABORATION
:
#ifdef ENABLE_TELEPATHY
tubes
::
createContacts
(
TeleManager
::
get
(
true
)
);
#endif
break
;
case
SID_STATUS_SELMODE
:
case
SID_STATUS_SELMODE
:
if
(
pReqArgs
)
if
(
pReqArgs
)
{
{
...
...
sc/uiconfig/scalc/menubar/menubar.xml
Dosyayı görüntüle @
6108d06c
...
@@ -16,6 +16,8 @@
...
@@ -16,6 +16,8 @@
<menu:menuitem
menu:id=
".uno:Reload"
/>
<menu:menuitem
menu:id=
".uno:Reload"
/>
<menu:menuitem
menu:id=
".uno:VersionDialog"
/>
<menu:menuitem
menu:id=
".uno:VersionDialog"
/>
<menu:menuseparator/>
<menu:menuseparator/>
<menu:menuitem
menu:id=
".uno:Collaborate"
/>
<menu:menuseparator/>
<menu:menuitem
menu:id=
".uno:ExportTo"
/>
<menu:menuitem
menu:id=
".uno:ExportTo"
/>
<menu:menuitem
menu:id=
".uno:ExportToPDF"
/>
<menu:menuitem
menu:id=
".uno:ExportToPDF"
/>
<menu:menu
menu:id=
".uno:SendTo"
>
<menu:menu
menu:id=
".uno:SendTo"
>
...
...
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