Lines Matching refs:sal_uInt16

39 #define BUTTONDIALOG_BUTTON_NOTFOUND			((sal_uInt16)0xFFFF)
41 #define BUTTONDIALOG_DEFBUTTON ((sal_uInt16)0x0001)
42 #define BUTTONDIALOG_OKBUTTON ((sal_uInt16)0x0002)
43 #define BUTTONDIALOG_CANCELBUTTON ((sal_uInt16)0x0004)
44 #define BUTTONDIALOG_HELPBUTTON ((sal_uInt16)0x0008)
45 #define BUTTONDIALOG_FOCUSBUTTON ((sal_uInt16)0x0010)
58 sal_uInt16 mnCurButtonId;
59 sal_uInt16 mnFocusButtonId;
64 SAL_DLLPRIVATE PushButton* ImplCreatePushButton( sal_uInt16 nBtnFlags );
65 SAL_DLLPRIVATE ImplBtnDlgItem* ImplGetItem( sal_uInt16 nId ) const;
89 sal_uInt16 GetCurButtonId() const { return mnCurButtonId; } in GetCurButtonId()
91 …void AddButton( const XubString& rText, sal_uInt16 nId, sal_uInt16 nBtnFlags, long nSepPixel = …
92 …void AddButton( StandardButtonType eType, sal_uInt16 nId, sal_uInt16 nBtnFlags, long nSepPixel …
93 void AddButton( PushButton* pBtn, sal_uInt16 nId, sal_uInt16 nBtnFlags, long nSepPixel = 0 );
94 void RemoveButton( sal_uInt16 nId );
96 sal_uInt16 GetButtonCount() const;
97 sal_uInt16 GetButtonId( sal_uInt16 nButton ) const;
98 PushButton* GetPushButton( sal_uInt16 nId ) const;
99 void SetButtonText( sal_uInt16 nId, const XubString& rText );
100 XubString GetButtonText( sal_uInt16 nId ) const;
101 void SetButtonHelpText( sal_uInt16 nId, const XubString& rText );
102 XubString GetButtonHelpText( sal_uInt16 nId ) const;
103 void SetButtonHelpId( sal_uInt16 nId, const rtl::OString& rHelpId );
104 rtl::OString GetButtonHelpId( sal_uInt16 nId ) const;
106 void SetFocusButton( sal_uInt16 nId = BUTTONDIALOG_BUTTON_NOTFOUND ) { mnFocusButtonId = nId; } in SetFocusButton()
107 sal_uInt16 GetFocusButton() const { return mnFocusButtonId; } in GetFocusButton()