summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/browserline.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-16 11:00:32 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-16 11:00:32 +0000
commita0e634e43fac3862a9362d8a81de78d26f1cb41e (patch)
tree23babafbfd6c119ffe41013bfd442eb8b45de2aa /extensions/source/propctrlr/browserline.hxx
parent8d48a8f88ed69c0fdf73c3b72fc30a923f81c546 (diff)
INTEGRATION: CWS eforms2 (1.5.24); FILE MERGED
2004/07/16 15:41:43 fs 1.5.24.2: #114856# +DateTime type, and some cleanup at the IBrowserControl 2004/04/26 11:23:59 fs 1.5.24.1: some cleanup/consolidation / (optionally) allow for a second button per line
Diffstat (limited to 'extensions/source/propctrlr/browserline.hxx')
-rw-r--r--extensions/source/propctrlr/browserline.hxx83
1 files changed, 48 insertions, 35 deletions
diff --git a/extensions/source/propctrlr/browserline.hxx b/extensions/source/propctrlr/browserline.hxx
index cdbac7590538..15fd81d30852 100644
--- a/extensions/source/propctrlr/browserline.hxx
+++ b/extensions/source/propctrlr/browserline.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: browserline.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: obo $ $Date: 2004-03-19 12:00:07 $
+ * last change: $Author: obo $ $Date: 2004-11-16 12:00:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,45 +80,54 @@ namespace pcr
{
//............................................................................
+ class OBrowserLine;
class IBrowserControl;
+
+ //========================================================================
+ class IButtonClickListener
+ {
+ public:
+ virtual void buttonClicked( OBrowserLine* _pLine, bool _bPrimary ) = 0;
+ };
+
+#define ENABLED_LINE ((sal_uInt16)0x0001)
+#define ENABLED_INPUT ((sal_uInt16)0x0002)
+#define ENABLED_PRIMARY ((sal_uInt16)0x0004)
+#define ENABLED_SECONDARY ((sal_uInt16)0x0008)
+#define ENABLED_ALL ((sal_uInt16)0xFFFF)
+
//========================================================================
class OBrowserLine
{
private:
- FixedText m_aFtTitle;
- Size m_aOutputSize;
- Point m_aLinePos;
- IBrowserControl* m_pBrowserControl;
- PushButton* m_pBrowseButton;
- Window* m_pTheParent;
- void* m_pData;
- BrowserControlType m_eControlType;
- sal_uInt16 m_nNameWidth;
- sal_Bool m_bNewNameWidth:1;
- sal_Bool m_bNeedsRepaint:1;
- sal_Bool m_bIsLocked:1;
- sal_Bool m_bIsHyperlink:1;
-
- DECL_LINK(GetFocusHdl,PushButton*);
-
+ FixedText m_aFtTitle;
+ Size m_aOutputSize;
+ Point m_aLinePos;
+ IBrowserControl* m_pBrowserControl;
+ PushButton* m_pBrowseButton;
+ PushButton* m_pAdditionalBrowseButton;
+ IButtonClickListener* m_pClickListener;
+ Window* m_pTheParent;
+ sal_uInt16 m_nFlags;
+ BrowserControlType m_eControlType;
+ sal_uInt16 m_nNameWidth;
+ sal_uInt16 m_nEnableFlags;
+ sal_Bool m_bIndentTitle : 1;
protected:
- virtual void Resize();
- void SetControlPosSize(Point aPos,Size aSize);
+ void layoutComponents();
public:
OBrowserLine( Window* pParent);
~OBrowserLine();
- sal_Bool NeedsRepaint();
- void SetNeedsRepaint(sal_Bool bFlag);
void setControl(IBrowserControl*);
IBrowserControl* getControl();
void SetKindOfControl(BrowserControlType);
BrowserControlType GetKindOfControl();
- void SetHelpId(sal_uInt32 nCtrHelpId,sal_uInt32 nBtUniqueId);
+ void SetComponentHelpIds( sal_uInt32 _nControlId, sal_uInt32 _bPrimaryButtonId, sal_uInt32 _nSecondaryButtonId );
void SetTitle(const String& rString );
// #99102# ---------------
@@ -126,31 +135,35 @@ namespace pcr
String GetTitle() const;
void SetTitleWidth(sal_uInt16);
- void SetSizePixel(Size aSize);
void SetPosPixel(Point aPos);
void SetPosSizePixel(Point aPos,Size aSize);
Size GetSizePixel();
void Show(sal_Bool bFlag=sal_True);
- void Enable( sal_Bool _bDoEnable = sal_True );
void Hide();
sal_Bool IsVisible();
- void Invalidate();
- void Update();
Window* GetRefWindow();
void SetTabOrder(Window* pRefWindow, sal_uInt16 nFlags );
sal_Bool GrabFocus();
- void ShowBrowseButton();
- void HideBrowseButton();
- void EnableInputControls( bool _bEnableInput = true, bool _bEnableBrowseButton = true );
+ void ShowBrowseButton( const Image& _rImage, bool _bPrimary );
+ void HideBrowseButton( bool _bPrimary );
+
+ void EnablePropertyControls( bool _bEnableInput, bool _bEnablePrimaryButton, bool _bEnableSecondaryButton );
+ void EnablePropertyLine( bool _bEnable );
+ sal_Bool IsPropertyInputEnabled( ) const;
- void Locked(sal_Bool nFlag=sal_True);
- sal_Bool IsLocked();
+ void SetClickListener( IButtonClickListener* _pListener );
+ void SetFlags( sal_uInt16 _nFlags );
+ sal_uInt16 GetFlags();
+
+ void IndentTitle( sal_Bool _bIndent );
+ private:
+ DECL_LINK( OnButtonClicked, PushButton* );
+ DECL_LINK( OnButtonFocus, PushButton* );
- void SetClickHdl(const Link&);
- void SetData(void* pDat);
- void* GetData();
+ void implHideBrowseButton( bool _bPrimary, bool _bReLayout );
+ void implUpdateEnabledDisabled();
};
DECLARE_STL_VECTOR( OBrowserLine*, OBrowserLinesArray );