summaryrefslogtreecommitdiffstats
path: root/include/svtools/dialogcontrolling.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-23 11:20:40 +0200
committerNoel Grandin <noel@peralex.com>2014-09-23 14:11:39 +0300
commit827c46e7d75000cb03b0ce21759f9d0825f0c096 (patch)
tree3a84ccc45d54607c61328b18f58f914c1d6ec240 /include/svtools/dialogcontrolling.hxx
parentDisable HTML export "hspace" and "vspace" check on OSX (diff)
downloadcore-827c46e7d75000cb03b0ce21759f9d0825f0c096.tar.gz
core-827c46e7d75000cb03b0ce21759f9d0825f0c096.zip
fdo#82577: Handle Window
Put the VCL Window class in the vcl namespace. Avoids clash with the X11 Window typedef. Change-Id: Ib1beb7ab4ad75562a42aeb252732a073d25eff1a
Diffstat (limited to 'include/svtools/dialogcontrolling.hxx')
-rw-r--r--include/svtools/dialogcontrolling.hxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/include/svtools/dialogcontrolling.hxx b/include/svtools/dialogcontrolling.hxx
index 1b7bf1ed5bc7..cf455bea9f3b 100644
--- a/include/svtools/dialogcontrolling.hxx
+++ b/include/svtools/dialogcontrolling.hxx
@@ -49,7 +49,7 @@ namespace svt
@param _rOperateOn
the window on which to operate
*/
- virtual void operateOn( const VclWindowEvent& _rTrigger, Window& _rOperateOn ) const = 0;
+ virtual void operateOn( const VclWindowEvent& _rTrigger, vcl::Window& _rOperateOn ) const = 0;
virtual ~IWindowOperator();
};
@@ -93,7 +93,7 @@ namespace svt
::std::auto_ptr< DialogController_Data > m_pImpl;
public:
- DialogController( Window& _rInstigator, const PWindowEventFilter& _pEventFilter, const PWindowOperator& _pOperator );
+ DialogController( vcl::Window& _rInstigator, const PWindowEventFilter& _pEventFilter, const PWindowOperator& _pOperator );
virtual ~DialogController();
/** adds a window to the list of dependent windows
@@ -104,7 +104,7 @@ namespace svt
The caller is responsible for life-time control: The given window
must live at least as long as the ->DialogController instance does.
*/
- void addDependentWindow( Window& _rWindow );
+ void addDependentWindow( vcl::Window& _rWindow );
/** resets the controller so that no actions happened anymore.
@@ -115,7 +115,7 @@ namespace svt
private:
void impl_Init();
void impl_updateAll( const VclWindowEvent& _rTriggerEvent );
- void impl_update( const VclWindowEvent& _rTriggerEvent, Window& _rWindow );
+ void impl_update( const VclWindowEvent& _rTriggerEvent, vcl::Window& _rWindow );
DECL_LINK( OnWindowEvent, const VclWindowEvent* );
@@ -156,10 +156,10 @@ namespace svt
denotes the window which should be enabled when ->_rRadio is checked, and
disabled when it's unchecked
*/
- void enableOnRadioCheck( RadioButton& _rRadio, Window& _rDependentWindow );
- void enableOnRadioCheck( RadioButton& _rRadio, Window& _rDependentWindow1, Window& _rDependentWindow2 );
- void enableOnRadioCheck( RadioButton& _rRadio, Window& _rDependentWindow1, Window& _rDependentWindow2, Window& _rDependentWindow3 );
- void enableOnRadioCheck( RadioButton& _rRadio, Window& _rDependentWindow1, Window& _rDependentWindow2, Window& _rDependentWindow3, Window& _rDependentWindow4, Window& _rDependentWindow5 );
+ void enableOnRadioCheck( RadioButton& _rRadio, vcl::Window& _rDependentWindow );
+ void enableOnRadioCheck( RadioButton& _rRadio, vcl::Window& _rDependentWindow1, vcl::Window& _rDependentWindow2 );
+ void enableOnRadioCheck( RadioButton& _rRadio, vcl::Window& _rDependentWindow1, vcl::Window& _rDependentWindow2, vcl::Window& _rDependentWindow3 );
+ void enableOnRadioCheck( RadioButton& _rRadio, vcl::Window& _rDependentWindow1, vcl::Window& _rDependentWindow2, vcl::Window& _rDependentWindow3, vcl::Window& _rDependentWindow4, vcl::Window& _rDependentWindow5 );
/** ensures that a given window is enabled or disabled, according to the mark state
of a given check box
@@ -169,9 +169,9 @@ namespace svt
denotes the window which should be enabled when ->_rBox is marked, and
disabled when it's unmarked
*/
- void enableOnCheckMark( CheckBox& _rBox, Window& _rDependentWindow );
- void enableOnCheckMark( CheckBox& _rBox, Window& _rDependentWindow1, Window& _rDependentWindow2 );
- void enableOnCheckMark( CheckBox& _rBox, Window& _rDependentWindow1, Window& _rDependentWindow2, Window& _rDependentWindow3, Window& _rDependentWindow4 );
+ void enableOnCheckMark( CheckBox& _rBox, vcl::Window& _rDependentWindow );
+ void enableOnCheckMark( CheckBox& _rBox, vcl::Window& _rDependentWindow1, vcl::Window& _rDependentWindow2 );
+ void enableOnCheckMark( CheckBox& _rBox, vcl::Window& _rDependentWindow1, vcl::Window& _rDependentWindow2, vcl::Window& _rDependentWindow3, vcl::Window& _rDependentWindow4 );
/** adds a non-standard controller whose functionality is not covered by the other methods
@@ -215,7 +215,7 @@ namespace svt
{
}
- virtual void operateOn( const VclWindowEvent& /*_rTrigger*/, Window& _rOperateOn ) const SAL_OVERRIDE
+ virtual void operateOn( const VclWindowEvent& /*_rTrigger*/, vcl::Window& _rOperateOn ) const SAL_OVERRIDE
{
_rOperateOn.Enable( m_rCheckable.IsChecked() );
}
@@ -232,9 +232,9 @@ namespace svt
*/
class SVT_DLLPUBLIC FilterForRadioOrCheckToggle : public IWindowEventFilter
{
- const Window& m_rWindow;
+ const vcl::Window& m_rWindow;
public:
- FilterForRadioOrCheckToggle( const Window& _rWindow )
+ FilterForRadioOrCheckToggle( const vcl::Window& _rWindow )
:m_rWindow( _rWindow )
{
}