Changeset 103538 in vbox
- Timestamp:
- Feb 22, 2024 5:06:26 PM (11 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 49 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataManager.cpp
r103537 r103538 58 58 #include "UIExtraDataManager.h" 59 59 #include "UIHostComboEditor.h" 60 #include "UILoggingDefs.h" 60 61 #include "UIMainEventListener.h" 61 62 #include "UIMessageCenter.h" -
trunk/src/VBox/Frontends/VirtualBox/src/globals/COMDefs.cpp
r101567 r103538 31 31 /* GUI includes: */ 32 32 #include "COMDefs.h" 33 #include "UILoggingDefs.h" 33 34 34 35 /* COM includes: */ … … 37 38 /* VirtualBox interface declarations: */ 38 39 #include <VBox/com/VirtualBox.h> 39 40 /* Other VBox includes: */41 #include <iprt/log.h>42 40 43 41 #ifdef VBOX_WITH_XPCOM -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
r103537 r103538 68 68 #include "UIFDCreationDialog.h" 69 69 #include "UIIconPool.h" 70 #include "UILoggingDefs.h" 70 71 #include "UIMedium.h" 71 72 #include "UIMediumEnumerator.h" -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDefs.h
r103537 r103538 32 32 #endif 33 33 34 /* Define GUI log group: */35 // WORKAROUND:36 // This define should go *before* VBox/log.h include!37 #ifndef LOG_GROUP38 # define LOG_GROUP LOG_GROUP_GUI39 #endif40 41 34 /* Qt includes: */ 42 35 #include <QEvent> … … 45 38 /* GUI includes: */ 46 39 #include "UILibraryDefs.h" 47 48 /* Other VBox includes: */49 #include <VBox/log.h>50 40 51 41 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDesktopWidgetWatchdog.cpp
r103321 r103538 42 42 /* GUI includes: */ 43 43 #include "UIDesktopWidgetWatchdog.h" 44 #include "UILoggingDefs.h" 44 45 #ifdef VBOX_WS_MAC 45 46 # include "VBoxUtils-darwin.h" … … 60 61 #include <iprt/assert.h> 61 62 #include <iprt/ldr.h> 62 #include <VBox/log.h>63 63 #ifdef VBOX_WS_WIN 64 64 # include <iprt/win/windows.h> -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UILoggingDefs.h
r103537 r103538 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - Global definitions.3 * VBox Qt GUI - Global logging definitions. 4 4 */ 5 5 … … 26 26 */ 27 27 28 #ifndef FEQT_INCLUDED_SRC_globals_UI Defs_h29 #define FEQT_INCLUDED_SRC_globals_UI Defs_h28 #ifndef FEQT_INCLUDED_SRC_globals_UILoggingDefs_h 29 #define FEQT_INCLUDED_SRC_globals_UILoggingDefs_h 30 30 #ifndef RT_WITHOUT_PRAGMA_ONCE 31 31 # pragma once 32 32 #endif 33 33 34 /* Define GUI log group: */ 35 // WORKAROUND: 36 // This define should go *before* VBox/log.h include! 34 /* Define GUI logging group, 35 * this define should go *before* VBox/log.h include! */ 37 36 #ifndef LOG_GROUP 38 37 # define LOG_GROUP LOG_GROUP_GUI 39 38 #endif 40 39 41 /* Qt includes: */42 #include <QEvent>43 #include <QStringList>44 45 /* GUI includes: */46 #include "UILibraryDefs.h"47 48 40 /* Other VBox includes: */ 49 41 #include <VBox/log.h> 50 42 51 52 /** Global namespace. */ 53 namespace UIDefs 54 { 55 /** Additional Qt event types. */ 56 enum UIEventType 57 { 58 ActivateActionEventType = QEvent::User + 101, 59 #ifdef VBOX_WS_MAC 60 ShowWindowEventType, 61 #endif 62 }; 63 64 /** Default guest additions image name. */ 65 SHARED_LIBRARY_STUFF extern const char* GUI_GuestAdditionsName; 66 /** Default extension pack name. */ 67 SHARED_LIBRARY_STUFF extern const char* GUI_ExtPackName; 68 69 /** Allowed VBox file extensions. */ 70 SHARED_LIBRARY_STUFF extern QStringList VBoxFileExts; 71 /** Allowed VBox Extension Pack file extensions. */ 72 SHARED_LIBRARY_STUFF extern QStringList VBoxExtPackFileExts; 73 /** Allowed OVF file extensions. */ 74 SHARED_LIBRARY_STUFF extern QStringList OVFFileExts; 75 } 76 using namespace UIDefs /* if header included */; 77 78 79 #ifdef VBOX_WS_MAC 80 /** Known macOS releases. */ 81 enum MacOSXRelease 82 { 83 MacOSXRelease_Old, 84 MacOSXRelease_FirstUnknown = 9, 85 MacOSXRelease_SnowLeopard = 10, 86 MacOSXRelease_Lion = 11, 87 MacOSXRelease_MountainLion = 12, 88 MacOSXRelease_Mavericks = 13, 89 MacOSXRelease_Yosemite = 14, 90 MacOSXRelease_ElCapitan = 15, 91 MacOSXRelease_Sierra = 16, 92 MacOSXRelease_HighSierra = 17, 93 MacOSXRelease_Mojave = 18, 94 MacOSXRelease_Catalina = 19, 95 MacOSXRelease_BigSur = 20, 96 MacOSXRelease_Monterey = 21, 97 MacOSXRelease_Ventura = 22, 98 MacOSXRelease_Sonoma = 23, 99 MacOSXRelease_LastUnknown = 24, 100 MacOSXRelease_New, 101 }; 102 #endif /* VBOX_WS_MAC */ 103 104 105 /** VM launch modes. */ 106 enum UILaunchMode 107 { 108 UILaunchMode_Invalid, 109 UILaunchMode_Default, 110 UILaunchMode_Headless, 111 UILaunchMode_Separate 112 }; 113 114 115 #endif /* !FEQT_INCLUDED_SRC_globals_UIDefs_h */ 43 #endif /* !FEQT_INCLUDED_SRC_globals_UILoggingDefs_h */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.cpp
r100737 r103538 32 32 /* GUI includes: */ 33 33 #include "UICommon.h" 34 #include "UILoggingDefs.h" 34 35 #include "UIMainEventListener.h" 35 36 #include "UIMousePointerShapeData.h" -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIPopupCenter.cpp
r98103 r103538 32 32 #include "UIExtraDataManager.h" 33 33 #include "UIHostComboEditor.h" 34 #include "UILoggingDefs.h" 34 35 #include "UIPopupCenter.h" 35 36 #include "UIPopupStack.h" -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerDialog.cpp
r100896 r103538 31 31 32 32 /* GUI includes: */ 33 #include "UICommon.h" 33 34 #include "UIDesktopWidgetWatchdog.h" 34 35 #include "UIExtraDataManager.h" … … 36 37 #include "UIFileManager.h" 37 38 #include "UIFileManagerDialog.h" 38 #include "UI Common.h"39 #include "UILoggingDefs.h" 39 40 #ifdef VBOX_WS_MAC 40 41 # include "VBoxUtils-darwin.h" -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIGuestProcessControlDialog.cpp
r100896 r103538 37 37 #include "UIGuestControlConsole.h" 38 38 #include "UIGuestProcessControlDialog.h" 39 #include "UILoggingDefs.h" 39 40 #include "UIMachine.h" 40 41 #include "UISession.h" -
trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerDialog.cpp
r102732 r103538 39 39 #include "UIExtraDataManager.h" 40 40 #include "UIIconPool.h" 41 #include "UILoggingDefs.h" 41 42 #include "UIVMLogViewerDialog.h" 42 43 #include "UIVMLogViewerWidget.h" -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r103464 r103538 37 37 /* GUI includes: */ 38 38 #include "UICommon.h" 39 #include "UILoggingDefs.h" 39 40 #include "UIStarter.h" 40 41 #include "UIModalWindowManager.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManager.cpp
r103362 r103538 63 63 #include "UIHelpBrowserDialog.h" 64 64 #include "UIIconPool.h" 65 #include "UILoggingDefs.h" 65 66 #include "UIMedium.h" 66 67 #include "UIMediumManager.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManagerWidget.cpp
r103128 r103538 40 40 #include "UIExtraDataManager.h" 41 41 #include "UIChooser.h" 42 #include "UILoggingDefs.h" 42 43 #include "UIMessageCenter.h" 43 44 #include "UINotificationCenter.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserAbstractModel.cpp
r103362 r103538 40 40 #include "UICloudNetworkingStuff.h" 41 41 #include "UIExtraDataManager.h" 42 #include "UILoggingDefs.h" 42 43 #include "UIMessageCenter.h" 43 44 #include "UINotificationCenter.h" -
trunk/src/VBox/Frontends/VirtualBox/src/manager/tools/UIToolsModel.cpp
r102813 r103538 39 39 #include "UIActionPoolManager.h" 40 40 #include "UIIconPool.h" 41 #include "UILoggingDefs.h" 41 42 #include "UITools.h" 42 43 #include "UIToolsHandlerMouse.h" -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumEnumerator.cpp
r98103 r103538 32 32 #include "UICommon.h" 33 33 #include "UIErrorString.h" 34 #include "UILoggingDefs.h" 34 35 #include "UIMediumEnumerator.h" 35 36 #include "UINotificationCenter.h" -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp
r102269 r103538 45 45 #include "UIExtraDataManager.h" 46 46 #include "UIIconPool.h" 47 #include "UILoggingDefs.h" 47 48 #include "UIMediumDetailsWidget.h" 48 49 #include "UIMediumItem.h" -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumSelector.cpp
r102480 r103538 43 43 #include "UIDesktopWidgetWatchdog.h" 44 44 #include "UIExtraDataManager.h" 45 #include "UILoggingDefs.h" 45 46 #include "UIMediumSearchWidget.h" 46 47 #include "UIMediumSelector.h" -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.cpp
r102515 r103538 48 48 #include "UIExtraDataManager.h" 49 49 #include "UIIconPool.h" 50 #include "UILoggingDefs.h" 51 #include "UIModalWindowManager.h" 50 52 #include "UIPaneContainer.h" 51 #include "UIModalWindowManager.h"52 53 #include "UIVisoCreator.h" 53 54 #include "UIVisoContentBrowser.h" -
trunk/src/VBox/Frontends/VirtualBox/src/networking/UINetworkReply.cpp
r103399 r103538 34 34 35 35 /* GUI includes: */ 36 #include "UILoggingDefs.h" 36 37 #include "UINetworkReply.h" 37 38 #include "UINetworkRequestManager.h" … … 53 54 #include <iprt/string.h> 54 55 #include <iprt/zip.h> 55 #include <VBox/log.h>56 56 57 57 -
trunk/src/VBox/Frontends/VirtualBox/src/platform/darwin/DarwinKeyboard.cpp
r100108 r103538 27 27 28 28 /* Defines: */ 29 #define LOG_GROUP LOG_GROUP_GUI30 29 #define VBOX_WITH_KBD_LEDS_SYNC 31 30 //#define VBOX_WITHOUT_KBD_LEDS_SYNC_FILTERING 32 31 33 32 /* GUI includes: */ 33 #include "UILoggingDefs.h" 34 34 #include "DarwinKeyboard.h" 35 35 #ifndef USE_HID_FOR_MODIFIERS … … 42 42 #include <iprt/mem.h> 43 43 #include <iprt/time.h> 44 #include <VBox/log.h>45 44 #ifdef DEBUG_PRINTF 46 45 # include <iprt/stream.h> -
trunk/src/VBox/Frontends/VirtualBox/src/platform/nix/VBoxUtils-nix.cpp
r101571 r103538 39 39 40 40 /* GUI includes: */ 41 #include "UILoggingDefs.h" 41 42 #include "VBoxUtils-nix.h" 42 43 … … 46 47 #include <iprt/process.h> 47 48 #include <iprt/string.h> 48 #include <VBox/log.h>49 49 50 50 /* Other includes: */ -
trunk/src/VBox/Frontends/VirtualBox/src/platform/nix/XKeyboard-new.cpp
r99826 r103538 26 26 */ 27 27 28 /* Define GUI log group.29 * This define should go *before* VBox/log.h include: */30 #define LOG_GROUP LOG_GROUP_GUI31 32 28 /* Qt includes: */ 33 29 #include <QString> 34 30 #include <QStringList> 35 31 36 /* Other VBox includes: */37 #include <VBox/log.h>38 39 32 /* GUI includes: */ 33 #include "UILoggingDefs.h" 40 34 #include "XKeyboard.h" 41 35 -
trunk/src/VBox/Frontends/VirtualBox/src/platform/win/WinKeyboard.cpp
r98103 r103538 26 26 */ 27 27 28 /* Defines: */29 #define LOG_GROUP LOG_GROUP_GUI30 31 28 /* GUI includes: */ 29 #include "UILoggingDefs.h" 32 30 #include "WinKeyboard.h" 33 31 34 32 /* Other VBox includes: */ 35 33 #include <iprt/assert.h> 36 #include <VBox/log.h>37 34 38 35 /* External includes: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r100064 r103538 37 37 #include "UIExtraDataManager.h" 38 38 #include "UIFrameBuffer.h" 39 #include "UILoggingDefs.h" 39 40 #include "UIMachine.h" 40 41 #include "UIMachineLogic.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp
r102599 r103538 43 43 #include "UISession.h" 44 44 #include "UIActionPoolRuntime.h" 45 #include "UILoggingDefs.h" 45 46 #include "UIMachineLogic.h" 46 47 #include "UIMachineWindow.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r103362 r103538 56 56 #include "UIIconPool.h" 57 57 #include "UIKeyboardHandler.h" 58 #include "UILoggingDefs.h" 58 59 #include "UIMachine.h" 59 60 #include "UIMachineLogic.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r101571 r103538 39 39 #include "UIDesktopWidgetWatchdog.h" 40 40 #include "UIExtraDataManager.h" 41 #include "UILoggingDefs.h" 41 42 #include "UIMachine.h" 42 43 #include "UIMessageCenter.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineWindow.cpp
r102419 r103538 39 39 #include "UIModalWindowManager.h" 40 40 #include "UIExtraDataManager.h" 41 #include "UILoggingDefs.h" 41 42 #include "UIMachine.h" 42 43 #include "UIMessageCenter.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r103246 r103538 38 38 #include "UIFrameBuffer.h" 39 39 #include "UIKeyboardHandler.h" 40 #include "UILoggingDefs.h" 40 41 #include "UIMachine.h" 41 42 #include "UIMachineLogic.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMultiScreenLayout.cpp
r98670 r103538 31 31 #include "UIDesktopWidgetWatchdog.h" 32 32 #include "UIExtraDataManager.h" 33 #include "UILoggingDefs.h" 33 34 #include "UIMachine.h" 34 35 #include "UIMachineLogic.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r103464 r103538 41 41 #include "UIIconPool.h" 42 42 #include "UIGuestOSType.h" 43 #include "UILoggingDefs.h" 43 44 #include "UIMachine.h" 44 45 #include "UIMachineLogic.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineLogicFullscreen.cpp
r100064 r103538 34 34 #include "UICommon.h" 35 35 #include "UIDesktopWidgetWatchdog.h" 36 #include "UILoggingDefs.h" 36 37 #include "UIMachine.h" 37 38 #include "UIMachineLogicFullscreen.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineViewFullscreen.cpp
r100064 r103538 32 32 #ifdef VBOX_WS_MAC 33 33 # include <QMenuBar> 34 #endif /* VBOX_WS_MAC */34 #endif 35 35 36 36 /* GUI includes: */ … … 39 39 #include "UIExtraDataManager.h" 40 40 #include "UIFrameBuffer.h" 41 #include "UILoggingDefs.h" 41 42 #include "UIMachine.h" 42 43 #include "UIMachineLogicFullscreen.h" … … 44 45 #include "UIMachineWindow.h" 45 46 46 /* Other VBox includes: */47 #include "VBox/log.h"48 49 47 /* External includes: */ 50 48 #ifdef VBOX_WS_NIX 51 49 # include <limits.h> 52 #endif /* VBOX_WS_NIX */50 #endif 53 51 54 52 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.cpp
r100064 r103538 38 38 #include "UIDesktopWidgetWatchdog.h" 39 39 #include "UIExtraDataManager.h" 40 #include "UILoggingDefs.h" 40 41 #include "UIMachine.h" 41 42 #include "UIMachineView.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIVMInformationDialog.cpp
r102147 r103538 41 41 #include "UIInformationRuntime.h" 42 42 #include "UIGuestProcessControlWidget.h" 43 #include "UILoggingDefs.h" 43 44 #include "UIMachineLogic.h" 44 45 #include "UIMachine.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.cpp
r101013 r103538 37 37 #include "UIExtraDataManager.h" 38 38 #include "UIFrameBuffer.h" 39 #include "UILoggingDefs.h" 39 40 #include "UIMachine.h" 40 41 #include "UIMachineLogicNormal.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineViewNormal.cpp
r98859 r103538 38 38 #include "UIExtraDataManager.h" 39 39 #include "UIFrameBuffer.h" 40 #include "UILoggingDefs.h" 40 41 #include "UIMachine.h" 41 42 #include "UIMachineLogic.h" 42 43 #include "UIMachineViewNormal.h" 43 44 #include "UIMachineWindow.h" 44 45 /* Other VBox includes: */46 #include "VBox/log.h"47 45 48 46 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.cpp
r100064 r103538 44 44 #include "UIIndicatorsPool.h" 45 45 #include "UIKeyboardHandler.h" 46 #include "UILoggingDefs.h" 46 47 #include "UIMachine.h" 47 48 #include "UIMouseHandler.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineViewScale.cpp
r100064 r103538 35 35 #include "UIExtraDataManager.h" 36 36 #include "UIFrameBuffer.h" 37 #include "UILoggingDefs.h" 37 38 #include "UIMachine.h" 38 39 #include "UIMachineLogic.h" … … 44 45 45 46 /* Other VBox includes: */ 46 #include "VBox/log.h" 47 #include <VBox/VBoxOGL.h> 47 #include <VBox/VBoxOGL.h> // For VBOX_OGL_SCALE_FACTOR_MULTIPLIER 48 48 49 49 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineWindowScale.cpp
r100064 r103538 39 39 #include "UIDesktopWidgetWatchdog.h" 40 40 #include "UIExtraDataManager.h" 41 #include "UILoggingDefs.h" 41 42 #include "UIMachine.h" 42 43 #include "UIMachineLogic.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.cpp
r100064 r103538 34 34 #include "UIActionPoolRuntime.h" 35 35 #include "UICommon.h" 36 #include "UILoggingDefs.h" 36 37 #include "UIMachine.h" 37 38 #include "UIMachineLogicSeamless.h" -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.cpp
r100064 r103538 38 38 #include "UIExtraDataManager.h" 39 39 #include "UIFrameBuffer.h" 40 #include "UILoggingDefs.h" 40 41 #include "UIMachine.h" 41 42 #include "UIMachineLogicSeamless.h" … … 46 47 #include "CConsole.h" 47 48 48 /* Other VBox includes: */49 #include "VBox/log.h"50 51 49 /* External includes: */ 52 50 #ifdef VBOX_WS_NIX 53 51 # include <limits.h> 54 #endif /* VBOX_WS_NIX */ 55 52 #endif 56 53 57 54 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineWindowSeamless.cpp
r100064 r103538 36 36 #include "UIDesktopWidgetWatchdog.h" 37 37 #include "UIExtraDataManager.h" 38 #include "UILoggingDefs.h" 38 39 #include "UIMachine.h" 39 40 #include "UIMachineLogicSeamless.h" -
trunk/src/VBox/Frontends/VirtualBox/src/settings/UIAdvancedSettingsDialog.cpp
r103169 r103538 58 58 #include "UIIconPool.h" 59 59 #include "UIImageTools.h" 60 #include "UILoggingDefs.h" 60 61 #include "UIMessageCenter.h" 61 62 #include "UIModalWindowManager.h" -
trunk/src/VBox/Frontends/VirtualBox/src/settings/UISettingsPageValidator.cpp
r103320 r103538 27 27 28 28 /* GUI includes: */ 29 #include "UILoggingDefs.h" 29 30 #include "UISettingsPage.h" 30 31 #include "UISettingsPageValidator.h" 31 32 /* Other VBox includes: */33 #include <iprt/log.h>34 32 35 33 -
trunk/src/VBox/Frontends/VirtualBox/src/snapshots/UISnapshotPane.cpp
r103362 r103538 49 49 #include "UIExtraDataManager.h" 50 50 #include "UIIconPool.h" 51 #include "UILoggingDefs.h" 51 52 #include "UIMessageCenter.h" 52 53 #include "UIModalWindowManager.h" -
trunk/src/VBox/Frontends/VirtualBox/src/softkeyboard/UISoftKeyboard.cpp
r102548 r103538 55 55 #include "UIHelpBrowserDialog.h" 56 56 #include "UIIconPool.h" 57 #include "UILoggingDefs.h" 57 58 #include "UIMachine.h" 58 59 #include "UIMessageCenter.h" -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMiniToolBar.cpp
r101562 r103538 45 45 46 46 /* GUI includes: */ 47 #include "UICommon.h" 48 #include "UIAnimationFramework.h" 49 #include "UIDesktopWidgetWatchdog.h" 50 #include "UIIconPool.h" 51 #include "UILoggingDefs.h" 47 52 #include "UIMiniToolBar.h" 48 #include "UIAnimationFramework.h"49 #include "UIIconPool.h"50 #include "UIDesktopWidgetWatchdog.h"51 #include "UICommon.h"52 53 #ifdef VBOX_WS_NIX 53 54 # include "UIExtraDataManager.h"
Note:
See TracChangeset
for help on using the changeset viewer.