1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef _VCL_VCLEVENT_HXX 25 #define _VCL_VCLEVENT_HXX 26 27 #include "tools/link.hxx" 28 #include "tools/rtti.hxx" 29 #include "vcl/dllapi.h" 30 #include "vcl/impdel.hxx" 31 32 #include <com/sun/star/uno/Reference.hxx> 33 34 #include <list> 35 #include <vector> 36 37 class Window; 38 class Menu; 39 40 namespace com { namespace sun { namespace star { 41 namespace accessibility { 42 class XAccessible; 43 } 44 }}} 45 46 #define VCLEVENT_OBJECT_DYING 1 47 48 // VclWindowEvent: 49 #define VCLEVENT_WINDOW_CHILDCREATED 500 // pData = Window* 50 #define VCLEVENT_WINDOW_CHILDDESTROYED 501 // pData = Window* 51 #define VCLEVENT_WINDOW_PAINT 1000 // pData = Rectangle* 52 #define VCLEVENT_WINDOW_MOVE 1001 53 #define VCLEVENT_WINDOW_RESIZE 1002 54 #define VCLEVENT_WINDOW_SHOW 1003 55 #define VCLEVENT_WINDOW_HIDE 1004 56 #define VCLEVENT_WINDOW_ACTIVATE 1005 57 #define VCLEVENT_WINDOW_DEACTIVATE 1006 // pData = Window* = pPrevActiveWindow 58 #define VCLEVENT_WINDOW_CLOSE 1007 59 #define VCLEVENT_WINDOW_GETFOCUS 1008 60 #define VCLEVENT_WINDOW_LOSEFOCUS 1009 61 #define VCLEVENT_WINDOW_MINIMIZE 1010 62 #define VCLEVENT_WINDOW_NORMALIZE 1011 63 #define VCLEVENT_WINDOW_KEYINPUT 1012 // pData = KeyEvent* 64 #define VCLEVENT_WINDOW_KEYUP 1013 // pData = KeyEvent* 65 #define VCLEVENT_WINDOW_COMMAND 1014 // pData = CommandEvent* 66 #define VCLEVENT_WINDOW_MOUSEMOVE 1015 // pData = MouseEvent* 67 #define VCLEVENT_WINDOW_MOUSEBUTTONDOWN 1016 // pData = MouseEvent* 68 #define VCLEVENT_WINDOW_MOUSEBUTTONUP 1017 // pData = MouseEvent* 69 #define VCLEVENT_WINDOW_FRAMETITLECHANGED 1018 // pData = XubString* = oldTitle 70 #define VCLEVENT_APPLICATION_DATACHANGED 1019 // pData = DataChangedEvent* 71 #define VCLEVENT_WINDOW_ENABLED 1020 72 #define VCLEVENT_WINDOW_DISABLED 1021 73 #define VCLEVENT_WINDOW_DATACHANGED 1022 // pData = DataChangedEvent* 74 75 // VclWindowEvent 76 #define VCLEVENT_CONTROL_GETFOCUS 1100 77 #define VCLEVENT_CONTROL_LOSEFOCUS 1101 78 #define VCLEVENT_BUTTON_CLICK 1102 79 #define VCLEVENT_PUSHBUTTON_TOGGLE 1103 80 #define VCLEVENT_RADIOBUTTON_TOGGLE 1104 81 #define VCLEVENT_CHECKBOX_TOGGLE 1105 82 #define VCLEVENT_COMBOBOX_SELECT 1106 83 #define VCLEVENT_COMBOBOX_DOUBLECLICK 1107 84 #define VCLEVENT_LISTBOX_SELECT 1108 85 #define VCLEVENT_LISTBOX_DOUBLECLICK 1109 86 #define VCLEVENT_EDIT_MODIFY 1110 87 #define VCLEVENT_SCROLLBAR_SCROLL 1111 88 #define VCLEVENT_SCROLLBAR_ENDSCROLL 1112 89 #define VCLEVENT_SPINBUTTON_UP 1113 90 #define VCLEVENT_SPINBUTTON_DOWN 1114 91 #define VCLEVENT_SPINFIELD_UP 1115 92 #define VCLEVENT_SPINFIELD_DOWN 1116 93 #define VCLEVENT_SPINFIELD_FIRST 1117 94 #define VCLEVENT_SPINFIELD_LAST 1118 95 #define VCLEVENT_STATUSBAR_CLICK 1119 96 #define VCLEVENT_STATUSBAR_DOUBLECLICK 1120 97 #define VCLEVENT_TOOLBOX_CLICK 1121 98 #define VCLEVENT_TOOLBOX_DOUBLECLICK 1122 99 #define VCLEVENT_TOOLBOX_ACTIVATE 1123 100 #define VCLEVENT_TOOLBOX_DEACTIVATE 1124 101 #define VCLEVENT_TOOLBOX_HIGHLIGHT 1125 102 #define VCLEVENT_TOOLBOX_SELECT 1126 103 // Resort later... 104 #define VCLEVENT_LISTBOX_SCROLLED 1127 105 #define VCLEVENT_COMBOBOX_SCROLLED 1128 106 #define VCLEVENT_EDIT_SELECTIONCHANGED 1129 107 #define VCLEVENT_DROPDOWN_OPEN 1130 108 #define VCLEVENT_DROPDOWN_CLOSE 1131 109 110 #define VCLEVENT_TOOLBOX_ITEMADDED 1132 // pData = itempos 111 #define VCLEVENT_TOOLBOX_ITEMREMOVED 1133 // pData = itempos 112 #define VCLEVENT_TOOLBOX_ALLITEMSCHANGED 1134 113 #define VCLEVENT_TOOLBOX_HIGHLIGHTOFF 1135 // pData = itempos 114 #define VCLEVENT_WINDOW_MENUBARADDED 1136 // pData = pMenuBar 115 #define VCLEVENT_TABPAGE_ACTIVATE 1137 // pData = pageid 116 #define VCLEVENT_TABPAGE_DEACTIVATE 1138 // pData = pageid 117 #define VCLEVENT_TABBAR_PAGEENABLED 1139 // pData = pageid 118 #define VCLEVENT_TABBAR_PAGEDISABLED 1140 // pData = pageid 119 #define VCLEVENT_TABBAR_PAGESELECTED 1141 // pData = pageid 120 #define VCLEVENT_TABBAR_PAGEACTIVATED 1142 // pData = pageid 121 #define VCLEVENT_TABBAR_PAGEDEACTIVATED 1143 // pData = pageid 122 #define VCLEVENT_TABBAR_PAGEINSERTED 1144 // pData = pageid 123 #define VCLEVENT_TABBAR_PAGEREMOVED 1145 // pData = pageid 124 #define VCLEVENT_TABBAR_PAGEMOVED 1146 // pData = Pair( pagepos_old, pagepos_new ) 125 #define VCLEVENT_TABBAR_PAGETEXTCHANGED 1147 // pData = pageid 126 #define VCLEVENT_COMBOBOX_DESELECT 1148 127 #define VCLEVENT_TOOLBOX_ITEMTEXTCHANGED 1149 // pData = itempos 128 #define VCLEVENT_TABPAGE_INSERTED 1150 // pData = pageid 129 #define VCLEVENT_TABPAGE_REMOVED 1151 // pData = pageid 130 #define VCLEVENT_TABPAGE_REMOVEDALL 1152 131 #define VCLEVENT_LISTBOX_ITEMADDED 1153 // pData = itempos 132 #define VCLEVENT_LISTBOX_ITEMREMOVED 1154 // pData = itempos, -1=ALL 133 #define VCLEVENT_COMBOBOX_ITEMADDED 1155 // pData = itempos 134 #define VCLEVENT_COMBOBOX_ITEMREMOVED 1156 // pData = itempos, -1=ALL 135 // free 1157 136 #define VCLEVENT_WINDOW_MENUBARREMOVED 1158 // pData = pMenuBar 137 #define VCLEVENT_STATUSBAR_ITEMADDED 1159 // pData = itemid 138 #define VCLEVENT_STATUSBAR_ITEMREMOVED 1160 // pData = itemid 139 #define VCLEVENT_STATUSBAR_ALLITEMSREMOVED 1161 140 #define VCLEVENT_STATUSBAR_SHOWITEM 1162 // pData = itemid 141 #define VCLEVENT_STATUSBAR_HIDEITEM 1163 // pData = itemid 142 #define VCLEVENT_STATUSBAR_SHOWALLITEMS 1164 143 #define VCLEVENT_STATUSBAR_HIDEALLITEMS 1165 144 #define VCLEVENT_STATUSBAR_DRAWITEM 1166 // pData = itemid 145 #define VCLEVENT_STATUSBAR_NAMECHANGED 1167 // pData = itemid 146 #define VCLEVENT_TOOLBOX_ITEMENABLED 1168 // pData = itempos 147 #define VCLEVENT_TOOLBOX_ITEMDISABLED 1169 // pData = itempos 148 #define VCLEVENT_TABPAGE_PAGETEXTCHANGED 1170 // pData = pageid 149 #define VCLEVENT_ROADMAP_ITEMSELECTED 1171 150 #define VCLEVENT_TOOLBOX_FORMATCHANGED 1172 // request new layout 151 #define VCLEVENT_COMBOBOX_SETTEXT 1173 152 // --> OD 2009-04-01 #i92103# 153 #define VCLEVENT_ITEM_EXPANDED 1174 154 #define VCLEVENT_ITEM_COLLAPSED 1175 155 // <-- 156 #define VCLEVENT_DROPDOWN_PRE_OPEN 1176 157 158 // VclMenuEvent 159 #define VCLEVENT_MENU_ACTIVATE 1200 160 #define VCLEVENT_MENU_DEACTIVATE 1201 161 #define VCLEVENT_MENU_HIGHLIGHT 1202 162 #define VCLEVENT_MENU_SELECT 1203 163 #define VCLEVENT_MENU_ENABLE 1204 164 #define VCLEVENT_MENU_INSERTITEM 1205 165 #define VCLEVENT_MENU_REMOVEITEM 1206 166 #define VCLEVENT_MENU_SUBMENUACTIVATE 1207 167 #define VCLEVENT_MENU_SUBMENUDEACTIVATE 1208 168 #define VCLEVENT_MENU_SUBMENUCHANGED 1209 169 #define VCLEVENT_MENU_DEHIGHLIGHT 1210 170 #define VCLEVENT_MENU_DISABLE 1211 171 #define VCLEVENT_MENU_ITEMTEXTCHANGED 1212 172 #define VCLEVENT_MENU_ITEMCHECKED 1213 173 #define VCLEVENT_MENU_ITEMUNCHECKED 1214 174 #define VCLEVENT_MENU_ACCESSIBLENAMECHANGED 1215 175 176 #define VCLEVENT_MENU_SHOW 1250 177 #define VCLEVENT_MENU_HIDE 1251 178 179 #define VCLEVENT_TOOLBOX_ITEMWINDOWCHANGED 1216 180 181 // DockingWindow 182 #define VCLEVENT_WINDOW_STARTDOCKING 1217 // pData = DockingData 183 #define VCLEVENT_WINDOW_DOCKING 1218 184 #define VCLEVENT_WINDOW_ENDDOCKING 1219 // pData = EndDockingData 185 #define VCLEVENT_WINDOW_PREPARETOGGLEFLOATING 1220 // pData = sal_Bool 186 #define VCLEVENT_WINDOW_TOGGLEFLOATING 1221 187 #define VCLEVENT_WINDOW_ENDPOPUPMODE 1222 // pData = EndPopupModeData 188 189 #define VCLEVENT_TOOLBOX_BUTTONSTATECHANGED 1223 // pData = itempos 190 #define VCLEVENT_TABLECELL_NAMECHANGED 1224 // pData = struct(Entry, Column, oldText) 191 #define VCLEVENT_TABLEROW_SELECT 1225 192 193 class VCL_DLLPUBLIC VclSimpleEvent 194 { 195 private: 196 sal_uLong nId; 197 198 public: 199 VclSimpleEvent( sal_uLong n ) { nId = n; } 200 TYPEINFO(); 201 202 sal_uLong GetId() const { return nId; } 203 }; 204 205 class VCL_DLLPUBLIC VclWindowEvent : public VclSimpleEvent 206 { 207 private: 208 Window* pWindow; 209 void* pData; 210 211 public: 212 VclWindowEvent( Window* pWin, sal_uLong n, void* pDat = NULL ) : VclSimpleEvent(n) { pWindow = pWin; pData = pDat; } 213 TYPEINFO(); 214 215 Window* GetWindow() const { return pWindow; } 216 void* GetData() const { return pData; } 217 }; 218 219 /* 220 class VclMouseEvent : public VclWindowEvent 221 { 222 private: 223 MouseEvent aEvent; 224 225 public: 226 VclMouseEvent( Window* pWin, sal_uLong n, const MouseEvent& rEvent ) : VclWindowEvent( pWin, n ), aEvent(rEvent) { ; } 227 TYPEINFO(); 228 229 const MouseEvent& GetEvent() const { return aEvent; } 230 }; 231 */ 232 233 class VCL_DLLPUBLIC VclMenuEvent : public VclSimpleEvent 234 { 235 private: 236 Menu* pMenu; 237 sal_uInt16 mnPos; 238 239 public: 240 VclMenuEvent( Menu* pM, sal_uLong n, sal_uInt16 nPos ) : VclSimpleEvent(n) { pMenu = pM; mnPos = nPos; } 241 TYPEINFO(); 242 243 Menu* GetMenu() const { return pMenu; } 244 sal_uInt16 GetItemPos() const { return mnPos; } 245 }; 246 247 class VCL_DLLPUBLIC VclAccessibleEvent: public VclSimpleEvent 248 { 249 public: 250 VclAccessibleEvent( sal_uLong n, const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& rxAccessible ); 251 virtual ~VclAccessibleEvent(); 252 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > GetAccessible() const; 253 254 private: 255 ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > mxAccessible; 256 }; 257 258 class VCL_DLLPUBLIC VclEventListeners : public std::list<Link> 259 { 260 public: 261 void Call( VclSimpleEvent* pEvent ) const; 262 263 // stops notifying when any handler has processed the event 264 // and returns sal_True in that case 265 // a handler must return sal_True to signal that it has processed the event 266 sal_Bool Process( VclSimpleEvent* pEvent ) const; 267 }; 268 269 class VCL_DLLPUBLIC VclEventListeners2 : public vcl::DeletionNotifier 270 { 271 std::list< Link > m_aListeners; 272 273 struct ListenerIt 274 { 275 std::list< Link >::iterator m_aIt; 276 bool m_bWasInvalidated; 277 278 ListenerIt(const std::list<Link>::iterator& rIt) 279 : m_aIt(rIt) 280 , m_bWasInvalidated( false ) 281 {} 282 }; 283 284 std::vector< ListenerIt > m_aIterators; 285 286 287 public: 288 VclEventListeners2(); 289 ~VclEventListeners2(); 290 291 void addListener( const Link& ); 292 void removeListener( const Link& ); 293 294 void callListeners( VclSimpleEvent* ); 295 }; 296 297 #endif // _VCL_VCLEVENT_HXX 298