Kaydet (Commit) 2633947b authored tarafından Oliver Bolte's avatar Oliver Bolte

INTEGRATION: CWS pathoptions01 (1.3.446); FILE MERGED

2006/07/07 04:54:58 pb 1.3.446.1: fix: #i67100# new: RadioButtonMode
üst a2b6b491
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: multipat.hxx,v $ * $RCSfile: multipat.hxx,v $
* *
* $Revision: 1.3 $ * $Revision: 1.4 $
* *
* last change: $Author: rt $ $Date: 2005-09-08 21:35:21 $ * last change: $Author: obo $ $Date: 2006-07-13 12:00:25 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -50,6 +50,8 @@ ...@@ -50,6 +50,8 @@
#include <vcl/fixed.hxx> #include <vcl/fixed.hxx>
#endif #endif
#include "radiobtnbox.hxx"
// define ---------------------------------------------------------------- // define ----------------------------------------------------------------
// different delimiter for Unix (:) and Windows (;) // different delimiter for Unix (:) and Windows (;)
...@@ -69,19 +71,22 @@ struct MultiPath_Impl; ...@@ -69,19 +71,22 @@ struct MultiPath_Impl;
class SvxMultiPathDialog : public ModalDialog class SvxMultiPathDialog : public ModalDialog
{ {
protected: protected:
ListBox aPathLB; FixedLine aPathFL;
PushButton aAddBtn; ListBox aPathLB;
PushButton aDelBtn; svx::SvxRadioButtonListBox aRadioLB;
FixedLine aPathGB; FixedText aRadioFT;
OKButton aOKBtn; PushButton aAddBtn;
CancelButton aCancelBtn; PushButton aDelBtn;
HelpButton aHelpButton; OKButton aOKBtn;
CancelButton aCancelBtn;
HelpButton aHelpButton;
MultiPath_Impl* pImpl; MultiPath_Impl* pImpl;
DECL_LINK( AddHdl_Impl, PushButton * ); DECL_LINK( AddHdl_Impl, PushButton * );
DECL_LINK( DelHdl_Impl, PushButton * ); DECL_LINK( DelHdl_Impl, PushButton * );
DECL_LINK( SelectHdl_Impl, ListBox * ); DECL_LINK( SelectHdl_Impl, void * );
DECL_LINK( CheckHdl_Impl, svx::SvxRadioButtonListBox * );
public: public:
SvxMultiPathDialog( Window* pParent, BOOL bEmptyAllowed = FALSE ); SvxMultiPathDialog( Window* pParent, BOOL bEmptyAllowed = FALSE );
...@@ -91,6 +96,7 @@ public: ...@@ -91,6 +96,7 @@ public:
void SetPath( const String& rPath ); void SetPath( const String& rPath );
void SetClassPathMode(); void SetClassPathMode();
sal_Bool IsClassPathMode() const; sal_Bool IsClassPathMode() const;
void EnableRadioButtonMode();
}; };
#endif // #ifndef _SVX_MULTIPAT_HXX #endif // #ifndef _SVX_MULTIPAT_HXX
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment