diff options
author | Jan Holesovsky <kendy@suse.cz> | 2010-09-14 11:46:59 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2010-09-14 13:35:00 +0200 |
commit | aaa59999755571532fe090245dcea99f57202b10 (patch) | |
tree | e982f74e0e3f9f5442afbdcd4f2a005a3ea13c33 /rsc/inc | |
parent | c2edb892cf8ddbac641737a04b58ab0db7e6cd21 (diff) |
toolbar-decorations-rsc.diff: Improved toolbar popups.
Diffstat (limited to 'rsc/inc')
-rw-r--r-- | rsc/inc/rscdb.hxx | 1 | ||||
-rw-r--r-- | rsc/inc/vclrsc.hxx | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index 1d5af35de9ff..4a32d954efa6 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -97,6 +97,7 @@ class RscTypCont Atom nMinimizeId; Atom nMaximizeId; Atom nCloseableId; + Atom nStdPopupId; Atom nAppId; Atom nTabstopId; Atom nGroupId; diff --git a/rsc/inc/vclrsc.hxx b/rsc/inc/vclrsc.hxx index 49847bd91e69..f84c11136700 100644 --- a/rsc/inc/vclrsc.hxx +++ b/rsc/inc/vclrsc.hxx @@ -84,6 +84,10 @@ typedef sal_Int64 WinBits; #define WB_AUTOVSCROLL ((WinBits)0x40000000) #define WB_HIDE ((WinBits)0x80000000) + +// system floating window +#define WB_POPUP ((WinBits)0x20000000) + #define WB_HSCROLL WB_HORZ #define WB_VSCROLL WB_VERT #define WB_TOPIMAGE WB_TOP @@ -152,6 +156,7 @@ typedef sal_Int64 WinBits; #define WB_STDMODAL (WB_STDDIALOG) #define WB_STDTABDIALOG (WB_STDDIALOG) #define WB_STDTABCONTROL 0 +#define WB_STDPOPUP (WB_BORDER | WB_POPUP | WB_SYSTEMWINDOW | WB_3DLOOK | WB_DIALOGCONTROL) // For TreeListBox #define WB_HASBUTTONS ((WinBits)0x00800000) |