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
4c612cd0
Kaydet (Commit)
4c612cd0
authored
Ara 17, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
RID_CMDBOXWINDOW is so hacky and src entry so small just hardcode in cxx
Change-Id: I63e97e91792fcf2bf8758a1444bb29e3c1ccd541
üst
49236240
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
26 deletions
+6
-26
smres.src
starmath/source/smres.src
+1
-18
view.cxx
starmath/source/view.cxx
+5
-8
No files found.
starmath/source/smres.src
Dosyayı görüntüle @
4c612cd0
...
...
@@ -104,23 +104,6 @@ Menu RID_VIEWMENU
};
};
#define CMDBOXWINDOW_TEXT \
Text [ en-US ] = "Commands" ; \
DockingWindow RID_CMDBOXWINDOW\
{
HelpId = HID_SMA_COMMAND_WIN ;
Moveable = TRUE ;
Closeable = FALSE ;
Sizeable = TRUE ;
OutputSize = TRUE ;
HideWhenDeactivate = FALSE ;
SVLook = TRUE ;
Size = MAP_APPFONT ( 292 , 94 ) ;
Dockable = TRUE ;
CMDBOXWINDOW_TEXT
};
String STR_BLACK
{
Text [ en-US ] = "black" ;
...
...
@@ -218,7 +201,7 @@ String STR_ALIGN_RIGHT
String STR_CMDBOXWINDOW
{
CMDBOXWINDOW_TEXT
Text [ en-US ] = "Commands" ;
};
String RID_DOCUMENTSTR
...
...
starmath/source/view.cxx
Dosyayı görüntüle @
4c612cd0
...
...
@@ -702,30 +702,30 @@ void SmEditController::StateChanged(sal_uInt16 nSID, SfxItemState eState, const
SfxControllerItem
::
StateChanged
(
nSID
,
eState
,
pState
);
}
/**************************************************************************/
SmCmdBoxWindow
::
SmCmdBoxWindow
(
SfxBindings
*
pBindings_
,
SfxChildWindow
*
pChildWindow
,
vcl
::
Window
*
pParent
)
:
SfxDockingWindow
(
pBindings_
,
pChildWindow
,
pParent
,
SmResId
(
RID_CMDBOXWINDOW
)
),
SfxDockingWindow
(
pBindings_
,
pChildWindow
,
pParent
,
WB_MOVEABLE
|
WB_CLOSEABLE
|
WB_SIZEABLE
|
WB_DOCKABLE
),
aEdit
(
*
this
),
aController
(
aEdit
,
SID_TEXT
,
*
pBindings_
),
bExiting
(
false
)
{
SetHelpId
(
HID_SMA_COMMAND_WIN
);
SetSizePixel
(
LogicToPixel
(
Size
(
292
,
94
),
MapMode
(
MAP_APPFONT
)));
SetText
(
SM_RESSTR
(
STR_CMDBOXWINDOW
));
Hide
();
aInitialFocusTimer
.
SetTimeoutHdl
(
LINK
(
this
,
SmCmdBoxWindow
,
InitialFocusTimerHdl
));
aInitialFocusTimer
.
SetTimeout
(
100
);
}
SmCmdBoxWindow
::~
SmCmdBoxWindow
()
{
aInitialFocusTimer
.
Stop
();
bExiting
=
true
;
}
SmViewShell
*
SmCmdBoxWindow
::
GetView
()
{
SfxDispatcher
*
pDispatcher
=
GetBindings
().
GetDispatcher
();
...
...
@@ -749,7 +749,6 @@ void SmCmdBoxWindow::Resize()
Invalidate
();
}
void
SmCmdBoxWindow
::
Paint
(
const
Rectangle
&
/*rRect*/
)
{
Rectangle
aRect
=
Rectangle
(
Point
(
0
,
0
),
GetOutputSizePixel
());
...
...
@@ -762,7 +761,6 @@ void SmCmdBoxWindow::Paint(const Rectangle& /*rRect*/)
aView
.
DrawFrame
(
aRect
,
FRAME_DRAW_IN
);
}
Size
SmCmdBoxWindow
::
CalcDockingSize
(
SfxChildAlignment
eAlign
)
{
switch
(
eAlign
)
...
...
@@ -776,7 +774,6 @@ Size SmCmdBoxWindow::CalcDockingSize(SfxChildAlignment eAlign)
return
SfxDockingWindow
::
CalcDockingSize
(
eAlign
);
}
SfxChildAlignment
SmCmdBoxWindow
::
CheckAlignment
(
SfxChildAlignment
eActual
,
SfxChildAlignment
eWish
)
{
...
...
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