summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-09-02 12:02:54 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-09-02 15:26:54 +0100
commitdc5e8921530e811d0154af39504e4c149a6eae13 (patch)
tree78be59ebfed6a3f2b6ca71681d67f5dd677df447 /sfx2
parentb6cc10ecf28d2e0ae25383f2dc82b66e67971b08 (diff)
convert SID_RECORDING_FLOATWINDOW to .ui
Change-Id: Iae3f0269e5e7f830465580dc4a520ba01ef87a79
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/UIConfig_sfx.mk1
-rw-r--r--sfx2/source/dialog/basedlgs.cxx4
-rw-r--r--sfx2/source/dialog/recfloat.cxx23
-rw-r--r--sfx2/source/dialog/recfloat.src24
-rw-r--r--sfx2/source/inc/recfloat.hxx2
-rw-r--r--sfx2/uiconfig/ui/floatingrecord.ui53
6 files changed, 67 insertions, 40 deletions
diff --git a/sfx2/UIConfig_sfx.mk b/sfx2/UIConfig_sfx.mk
index 5142f9249d96..9a555b95b0d3 100644
--- a/sfx2/UIConfig_sfx.mk
+++ b/sfx2/UIConfig_sfx.mk
@@ -22,6 +22,7 @@ $(eval $(call gb_UIConfig_add_uifiles,sfx,\
sfx2/uiconfig/ui/documentpropertiesdialog \
sfx2/uiconfig/ui/editdurationdialog \
sfx2/uiconfig/ui/errorfindemaildialog \
+ sfx2/uiconfig/ui/floatingrecord \
sfx2/uiconfig/ui/helpbookmarkpage \
sfx2/uiconfig/ui/helpcontrol \
sfx2/uiconfig/ui/helpcontentpage \
diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx
index e17c77f19285..a15dd9913c23 100644
--- a/sfx2/source/dialog/basedlgs.cxx
+++ b/sfx2/source/dialog/basedlgs.cxx
@@ -483,8 +483,8 @@ SfxFloatingWindow::SfxFloatingWindow( SfxBindings *pBindinx,
SfxFloatingWindow::SfxFloatingWindow( SfxBindings *pBindinx,
SfxChildWindow *pCW,
Window* pParent,
- const OString& rID, const OUString& rUIXMLDescription) :
- FloatingWindow(pParent, rID, rUIXMLDescription),
+ const OString& rID, const OUString& rUIXMLDescription, const css::uno::Reference<css::frame::XFrame> &rFrame) :
+ FloatingWindow(pParent, rID, rUIXMLDescription, rFrame),
pBindings(pBindinx),
pImp( new SfxFloatingWindow_Impl )
{
diff --git a/sfx2/source/dialog/recfloat.cxx b/sfx2/source/dialog/recfloat.cxx
index 9b8faba9f52d..2b0b42944553 100644
--- a/sfx2/source/dialog/recfloat.cxx
+++ b/sfx2/source/dialog/recfloat.cxx
@@ -167,25 +167,22 @@ SfxRecordingFloat_Impl::SfxRecordingFloat_Impl(
: SfxFloatingWindow( pBind,
pChildWin,
pParent,
- SfxResId( SID_RECORDING_FLOATWINDOW ) )
- , aTbx( this, SfxResId(SID_RECORDING_FLOATWINDOW) )
+ "FloatingRecord", "sfx/ui/floatingrecord.ui", pBind->GetActiveFrame() )
{
+ get(m_pTbx, "toolbar");
+
// Retrieve label from helper function
- uno::Reference< frame::XFrame > xFrame = GetBindings().GetActiveFrame();
+ uno::Reference< frame::XFrame > xFrame = getFrame();
OUString aCommandStr( ".uno:StopRecording" );
- aTbx.SetItemText( SID_STOP_RECORDING, GetLabelFromCommandURL( aCommandStr, xFrame ));
-
- // Determine size of toolbar
- Size aTbxSize = aTbx.CalcWindowSizePixel();
- aTbx.SetPosSizePixel( Point(), aTbxSize );
- SetOutputSizePixel( aTbxSize );
+ sal_uInt16 nItemId = m_pTbx->GetItemId(aCommandStr);
+ m_pTbx->SetItemText( nItemId, GetLabelFromCommandURL( aCommandStr, xFrame ));
// create a generic toolbox controller for our internal toolbox
svt::GenericToolboxController* pController = new svt::GenericToolboxController(
::comphelper::getProcessComponentContext(),
xFrame,
- &aTbx,
- SID_STOP_RECORDING,
+ m_pTbx,
+ nItemId,
aCommandStr );
xStopRecTbxCtrl = uno::Reference< frame::XToolbarController >(
static_cast< cppu::OWeakObject* >( pController ),
@@ -194,7 +191,7 @@ SfxRecordingFloat_Impl::SfxRecordingFloat_Impl(
if ( xUpdate.is() )
xUpdate->update();
- aTbx.SetSelectHdl( LINK( this, SfxRecordingFloat_Impl, Select ) );
+ m_pTbx->SetSelectHdl( LINK( this, SfxRecordingFloat_Impl, Select ) );
// start recording
SfxBoolItem aItem( SID_RECORDMACRO, true );
@@ -248,7 +245,7 @@ void SfxRecordingFloat_Impl::StateChanged( StateChangedType nStateChange )
IMPL_LINK( SfxRecordingFloat_Impl, Select, ToolBox*, pToolBar )
{
(void)pToolBar;
- sal_Int16 nKeyModifier( (sal_Int16)aTbx.GetModifier() );
+ sal_Int16 nKeyModifier( (sal_Int16)m_pTbx->GetModifier() );
if ( xStopRecTbxCtrl.is() )
xStopRecTbxCtrl->execute( nKeyModifier );
diff --git a/sfx2/source/dialog/recfloat.src b/sfx2/source/dialog/recfloat.src
index 119374b173f7..8a5c4843af78 100644
--- a/sfx2/source/dialog/recfloat.src
+++ b/sfx2/source/dialog/recfloat.src
@@ -22,30 +22,6 @@
#define STD_MASKCOLOR Color { Red = 0xC000; Green = 0xC000; Blue = 0xC000; }
-FloatingWindow SID_RECORDING_FLOATWINDOW
-{
- HelpID = "sfx2:FloatingWindow:SID_RECORDING_FLOATWINDOW";
- Moveable = TRUE ;
- Closeable = TRUE ;
- Hide = TRUE ;
- SVLook = TRUE ;
- Text [ en-US ] = "Record Macro";
-};
-
-ToolBox SID_RECORDING_FLOATWINDOW
-{
- SVLook = TRUE ;
- ButtonType = BUTTON_TEXT;
- ItemList =
- {
- ToolBoxItem
- {
- Identifier = SID_STOP_RECORDING;
- Command = ".uno:StopRecording";
- };
- };
-};
-
String STR_MACRO_LOSS
{
Text [ en-US ] = "Do you really want to cancel the recording? Any steps recorded up to this point will be lost.";
diff --git a/sfx2/source/inc/recfloat.hxx b/sfx2/source/inc/recfloat.hxx
index 5369b16cef57..23c9b362ccc3 100644
--- a/sfx2/source/inc/recfloat.hxx
+++ b/sfx2/source/inc/recfloat.hxx
@@ -39,7 +39,7 @@ public:
class SfxRecordingFloat_Impl : public SfxFloatingWindow
{
- ToolBox aTbx;
+ ToolBox* m_pTbx;
::com::sun::star::uno::Reference< ::com::sun::star::frame::XToolbarController > xStopRecTbxCtrl;
public:
SfxRecordingFloat_Impl( SfxBindings* pBindings ,
diff --git a/sfx2/uiconfig/ui/floatingrecord.ui b/sfx2/uiconfig/ui/floatingrecord.ui
new file mode 100644
index 000000000000..653867a2dfe1
--- /dev/null
+++ b/sfx2/uiconfig/ui/floatingrecord.ui
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated with glade 3.16.1 -->
+<interface>
+ <requires lib="gtk+" version="3.0"/>
+ <object class="GtkWindow" id="FloatingRecord">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="no_show_all">True</property>
+ <property name="border_width">6</property>
+ <property name="title" translatable="yes">Record Macro</property>
+ <property name="type_hint">utility</property>
+ <property name="deletable">False</property>
+ <child>
+ <object class="GtkBox" id="box1">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="hexpand">True</property>
+ <property name="vexpand">True</property>
+ <property name="orientation">vertical</property>
+ <child>
+ <object class="GtkToolbar" id="toolbar">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="hexpand">True</property>
+ <property name="vexpand">True</property>
+ <property name="toolbar_style">text</property>
+ <property name="show_arrow">False</property>
+ <child>
+ <object class="GtkToolButton" id="stop">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="hexpand">True</property>
+ <property name="vexpand">True</property>
+ <property name="action_name">.uno:StopRecording</property>
+ <property name="label" translatable="yes">Stop Recording</property>
+ <property name="use_underline">True</property>
+ </object>
+ <packing>
+ <property name="expand">True</property>
+ <property name="homogeneous">True</property>
+ </packing>
+ </child>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="fill">True</property>
+ <property name="position">0</property>
+ </packing>
+ </child>
+ </object>
+ </child>
+ </object>
+</interface>